body.home .content-area,
body.home .site-main,
body.home .entry-content,
body.home .entry-content-wrap,
body.home .content-bg,
body.home .content-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
}

body.home #primary {
    width: 100%;
    min-width: 0;
}

body.home .content-container.site-container {
    width: 100%;
    max-width: none;
    padding: 0;
}

body.home .entry-content-wrap {
    border-radius: 0;
    box-shadow: none;
}

body.home .entry-content > * {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
}

.fg-home,
.fg-home *,
.fg-home *::before,
.fg-home *::after {
    box-sizing: border-box;
}

.fg-home {
    position: relative;
    width: 100%;
    overflow: clip;
    background: var(--fg-paper);
    color: var(--fg-ink);
}

.fg-home h1,
.fg-home h2,
.fg-home h3,
.fg-home p,
.fg-home ul,
.fg-home ol,
.fg-home dl,
.fg-home blockquote {
    margin: 0;
}

.fg-home ul,
.fg-home ol {
    padding: 0;
}

.fg-home a {
    color: inherit;
}

.fg-home img,
.fg-home svg {
    display: block;
}

.fg-home h1,
.fg-home h2,
.fg-home h3,
.fg-home p,
.fg-home li,
.fg-home dt,
.fg-home dd,
.fg-home a,
.fg-home span,
.fg-home strong {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.fg-shell {
    width: 100%;
    max-width: calc(1280px + (var(--fg-gutter) * 2));
    margin-inline: auto;
    padding-inline: var(--fg-gutter);
}

.fg-section {
    position: relative;
    padding-block: clamp(5.5rem, 9vw, 8.5rem);
}

.fg-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--fg-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.45;
    text-transform: uppercase;
}

.fg-kicker::before {
    width: 2.25rem;
    height: 1px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
}

.fg-section-title {
    max-width: 780px;
    margin-top: 1.35rem !important;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(3rem, 5.4vw, 5.8rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.01;
}

.fg-section-copy {
    max-width: 620px;
    color: var(--fg-muted);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.8;
}

.fg-button {
    position: relative;
    display: inline-flex;
    min-height: 3.4rem;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.92rem 1.35rem;
    overflow: hidden;
    border: 1px solid var(--fg-ink);
    border-radius: 999px;
    color: var(--fg-ink);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 240ms ease, border-color 240ms ease, transform 240ms var(--fg-ease);
}

.fg-button::before {
    position: absolute;
    inset: 100% 0 auto;
    height: 100%;
    background: var(--fg-ink);
    content: "";
    transition: transform 340ms var(--fg-ease);
}

.fg-button span,
.fg-button svg {
    position: relative;
    z-index: 1;
}

.fg-button svg,
.fg-text-link svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.fg-button:hover {
    transform: translateY(-2px);
    border-color: var(--fg-ink);
    color: var(--fg-white);
}

.fg-button:hover::before {
    transform: translateY(-100%);
}

.fg-button--blue {
    border-color: var(--fg-blue);
    background: var(--fg-blue);
    color: var(--fg-white);
}

.fg-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid currentColor;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-decoration: none;
    text-transform: uppercase;
}

.fg-hero {
    position: relative;
    display: flex;
    min-height: clamp(720px, calc(100svh - 70px), 980px);
    align-items: stretch;
    overflow: hidden;
    border-bottom: 1px solid var(--fg-line);
    isolation: isolate;
}

.fg-hero::before {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at var(--fg-pointer-x) var(--fg-pointer-y), rgba(49, 85, 255, 0.2), transparent 28rem),
        linear-gradient(180deg, rgba(255,255,255,0.78), rgba(243,240,232,0.98));
    content: "";
}

.fg-hero::after {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(14,17,17,0.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,17,17,0.052) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    -webkit-mask-image: linear-gradient(to bottom, #000 10%, transparent 88%);
    mask-image: linear-gradient(to bottom, #000 10%, transparent 88%);
}

.fg-hero__visual {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.fg-hero__ring {
    position: absolute;
    top: 7%;
    right: -10%;
    width: min(58vw, 800px);
    aspect-ratio: 1;
    border: 1px solid rgba(14,17,17,0.12);
    border-radius: 50%;
}

.fg-hero__ring--two {
    transform: scale(0.8);
}

.fg-hero__ring--three {
    transform: scale(0.5);
    border-color: rgba(49,85,255,0.28);
}

.fg-hero__point {
    position: absolute;
    top: 22%;
    right: 11%;
    width: 0.8rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--fg-blue);
    box-shadow: 0 0 0 12px rgba(49,85,255,0.1);
}

.fg-hero__inner {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(3.5rem, 7vw, 6.5rem);
    padding-top: clamp(6rem, 10vw, 9rem);
    padding-bottom: clamp(2.5rem, 5vw, 4.2rem);
}

.fg-hero__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.fg-hero__location {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--fg-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.45;
    text-transform: uppercase;
}

.fg-hero__location span {
    width: 0.5rem;
    height: 0.5rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--fg-blue);
    box-shadow: 0 0 0 5px rgba(49,85,255,0.12);
}

.fg-hero__title {
    max-width: 1180px;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(4.3rem, 7.3vw, 7.6rem);
    font-weight: 400;
    letter-spacing: -0.052em;
    line-height: 0.98;
}

.fg-hero__title em {
    color: var(--fg-blue);
    font-weight: 400;
}

.fg-title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.06em;
}

.fg-title-line > span {
    display: block;
}

.fg-hero__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.58fr);
    align-items: end;
    gap: clamp(3rem, 7vw, 7rem);
}

.fg-hero__intro-wrap {
    max-width: 720px;
}

.fg-hero__intro {
    color: var(--fg-ink-soft);
    font-size: clamp(1.03rem, 1.35vw, 1.25rem);
    line-height: 1.78;
}

.fg-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.fg-hero__aside {
    display: grid;
    gap: 1.6rem;
}

.fg-hero__proof {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--fg-line);
}

.fg-hero__proof strong {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(2.7rem, 4vw, 4.25rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

.fg-hero__proof span {
    color: var(--fg-muted);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.65;
}

.fg-scroll-cue {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.8rem;
    color: var(--fg-muted) !important;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1.3;
    text-decoration: none;
    text-transform: uppercase;
}

.fg-scroll-cue i {
    position: relative;
    display: block;
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 auto;
    border: 1px solid var(--fg-line);
    border-radius: 50%;
}

.fg-scroll-cue i::after {
    position: absolute;
    top: 47%;
    left: 50%;
    width: 0.4rem;
    height: 0.4rem;
    transform: translate(-50%, -50%) rotate(45deg);
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    content: "";
}

.fg-intro {
    overflow: hidden;
    background: var(--fg-ink);
    color: var(--fg-white);
}

.fg-intro::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 38%, rgba(49,85,255,0.11)),
        radial-gradient(circle at 84% 22%, rgba(49,85,255,0.17), transparent 28rem);
    content: "";
}

.fg-intro .fg-shell {
    position: relative;
}

.fg-intro__grid {
    display: grid;
    grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1.58fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.fg-intro .fg-kicker {
    color: rgba(255,255,255,0.58);
}

.fg-intro__statement {
    max-width: 960px;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(2.9rem, 5.25vw, 5.25rem);
    font-weight: 400;
    letter-spacing: -0.043em;
    line-height: 1.04;
}

.fg-intro__statement span {
    color: #92a2ff;
}

.fg-intro__copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 4rem);
    margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.fg-intro__copy p {
    color: rgba(255,255,255,0.68);
    font-size: 1rem;
    line-height: 1.85;
}

.fg-intro__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(4rem, 7vw, 6.5rem);
    border-top: 1px solid rgba(255,255,255,0.16);
    border-left: 1px solid rgba(255,255,255,0.16);
}

.fg-intro__fact {
    min-height: 12rem;
    padding: 1.35rem;
    border-right: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
}

.fg-intro__fact small {
    display: block;
    margin-bottom: 2.3rem;
    color: rgba(255,255,255,0.48);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.fg-intro__fact strong {
    display: block;
    max-width: 290px;
    font-size: clamp(0.96rem, 1.15vw, 1.1rem);
    font-weight: 500;
    line-height: 1.65;
}

.fg-services__head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.58fr);
    align-items: end;
    gap: clamp(2rem, 6vw, 6rem);
    margin-bottom: clamp(4rem, 7vw, 6.5rem);
}

.fg-service {
    display: grid;
    grid-template-columns: 0.18fr minmax(240px, 0.65fr) minmax(0, 1.17fr);
    align-items: start;
    gap: clamp(1.5rem, 4vw, 4.5rem);
    padding-block: clamp(2.8rem, 4.5vw, 4.25rem);
    border-top: 1px solid var(--fg-line);
}

.fg-service:last-of-type {
    border-bottom: 1px solid var(--fg-line);
}

.fg-service__number {
    color: var(--fg-blue);
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(3.4rem, 5vw, 5.5rem);
    line-height: 1;
}

.fg-service h3 {
    max-width: 390px;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(2.35rem, 3.7vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.038em;
    line-height: 1.03;
}

.fg-service__body > p {
    max-width: 620px;
    margin-bottom: 1.8rem !important;
    color: var(--fg-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.fg-service__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--fg-line);
    list-style: none;
}

.fg-service__list li {
    position: relative;
    display: flex;
    min-height: 3.75rem;
    align-items: center;
    padding: 0.95rem 0.9rem 0.95rem 1.35rem;
    border-bottom: 1px solid var(--fg-line);
    color: var(--fg-ink-soft);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

.fg-service__list li:nth-child(odd) {
    border-right: 1px solid var(--fg-line);
}

.fg-service__list li::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.4rem;
    height: 0.4rem;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--fg-blue);
    content: "";
}

.fg-services__footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 2rem;
}

.fg-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    background: var(--fg-blue);
    color: var(--fg-white);
}

.fg-marquee__track {
    display: flex;
    width: max-content;
    animation: fg-marquee 28s linear infinite;
}

.fg-marquee__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 1.2rem;
    padding-block: 1rem;
}

.fg-marquee__group span {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.fg-marquee__group span::after {
    width: 0.45rem;
    height: 0.45rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(255,255,255,0.68);
    content: "";
}

@keyframes fg-marquee {
    to { transform: translateX(-50%); }
}

.fg-work {
    overflow: hidden;
    background: #dfe4ff;
}

.fg-work__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.fg-work__metric {
    min-width: 0;
}

.fg-work__count {
    color: var(--fg-blue);
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(9rem, 18vw, 17rem);
    letter-spacing: -0.08em;
    line-height: 0.8;
    white-space: nowrap;
}

.fg-work__count sup {
    display: inline-block;
    margin-left: 0.05em;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 0.14em;
    font-weight: 700;
    letter-spacing: 0;
    vertical-align: top;
}

.fg-work__metric > span {
    display: block;
    margin-top: 1.5rem;
    color: #505873;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.fg-work__content h2 {
    max-width: 720px;
    margin-top: 1.25rem !important;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(3.2rem, 5.5vw, 5.9rem);
    font-weight: 400;
    letter-spacing: -0.048em;
    line-height: 1;
}

.fg-work__content > p:not(.fg-kicker) {
    max-width: 610px;
    margin-top: 1.6rem !important;
    color: #404861;
    font-size: 1rem;
    line-height: 1.8;
}

.fg-work__types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-block: 1.9rem 2rem;
}

.fg-work__types span {
    padding: 0.62rem 0.82rem;
    border: 1px solid rgba(14,17,17,0.2);
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.3;
    text-transform: uppercase;
}

.fg-proof__head {
    display: grid;
    grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1.58fr);
    align-items: start;
    gap: clamp(3rem, 8vw, 8rem);
    margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.fg-proof__head .fg-section-title {
    margin-top: 0 !important;
}

.fg-proof__list {
    border-top: 1px solid var(--fg-line);
    list-style: none;
}

.fg-proof__list li {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    padding-block: clamp(1.25rem, 2vw, 1.75rem);
    border-bottom: 1px solid var(--fg-line);
}

.fg-proof__list small {
    color: var(--fg-blue);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
}

.fg-proof__list strong {
    font-size: clamp(0.98rem, 1.25vw, 1.18rem);
    font-weight: 600;
    line-height: 1.45;
}

.fg-proof__list svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.fg-founder {
    overflow: hidden;
    background: var(--fg-ink);
    color: var(--fg-white);
}

.fg-founder__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(3.5rem, 8vw, 8rem);
}

.fg-founder__portrait {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4 / 5;
    min-height: 0;
    border-radius: 1.5rem;
}

.fg-founder__portrait::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.fg-founder__portrait img {
    object-fit: cover;
    object-position: center 15%;
    filter: saturate(0.9) contrast(1.03);
}

.fg-founder .fg-kicker {
    color: rgba(255,255,255,0.55);
}

.fg-founder blockquote {
    max-width: 760px;
    margin-top: 1.5rem !important;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(2.8rem, 4.5vw, 4.7rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.06;
}

.fg-founder blockquote span {
    color: #94a5ff;
}

.fg-founder__signature {
    margin-top: 2.3rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.16);
}

.fg-founder__name {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.4;
    text-transform: uppercase;
}

.fg-founder__role {
    margin-top: 0.35rem !important;
    color: rgba(255,255,255,0.52);
    font-size: 0.78rem;
    line-height: 1.5;
}

.fg-direction {
    background: var(--fg-paper-deep);
}

.fg-direction__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--fg-line);
    background: var(--fg-line);
}

.fg-direction__panel {
    min-height: 30rem;
    padding: clamp(1.7rem, 4vw, 3.5rem);
    background: var(--fg-paper-deep);
}

.fg-direction__panel small {
    display: block;
    color: var(--fg-blue);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.fg-direction__panel h3 {
    max-width: 560px;
    margin-top: clamp(3rem, 7vw, 5rem) !important;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.03;
}

.fg-direction__panel p {
    max-width: 560px;
    margin-top: 1.5rem !important;
    color: var(--fg-muted);
    font-size: 0.98rem;
    line-height: 1.82;
}

.fg-company {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 7vw, 7rem);
    margin-top: clamp(4.5rem, 8vw, 7rem);
}

.fg-company__table {
    border-top: 1px solid var(--fg-line);
}

.fg-company__row {
    display: grid;
    grid-template-columns: minmax(140px, 0.72fr) minmax(0, 1.28fr);
    gap: 1.25rem;
    padding-block: 1.1rem;
    border-bottom: 1px solid var(--fg-line);
}

.fg-company__row dt {
    color: var(--fg-muted);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.fg-company__row dd {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.55;
}

.fg-contact {
    overflow: hidden;
    background: var(--fg-blue);
    color: var(--fg-white);
}

.fg-contact::before {
    position: absolute;
    top: 50%;
    right: -10%;
    width: min(54vw, 720px);
    aspect-ratio: 1;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 7vw rgba(255,255,255,0.045), 0 0 0 14vw rgba(255,255,255,0.028);
}

.fg-contact__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
}

.fg-contact .fg-kicker {
    color: rgba(255,255,255,0.7);
}

.fg-contact h2 {
    max-width: 950px;
    margin-top: 1.4rem !important;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(4rem, 7.4vw, 7.9rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.fg-contact__details {
    display: grid;
    gap: 1rem;
}

.fg-contact__details p,
.fg-contact__details a:not(.fg-button) {
    color: var(--fg-white);
    font-size: clamp(0.95rem, 1.18vw, 1.08rem);
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

.fg-contact__details a:not(.fg-button) {
    padding-bottom: 0.48rem;
    border-bottom: 1px solid rgba(255,255,255,0.35);
}

.fg-contact__details .fg-button {
    width: fit-content;
    margin-top: 1.35rem;
    border-color: var(--fg-white);
    background: var(--fg-white);
    color: var(--fg-blue);
}

.fg-contact__details .fg-button:hover {
    color: var(--fg-white);
}
body.home .fg-intro .fg-intro__statement {
    color: #f5f3ed !important;
    -webkit-text-fill-color: #f5f3ed !important;
    opacity: 1 !important;
    background: none !important;
    mix-blend-mode: normal !important;
    filter: none !important;
}

body.home .fg-intro .fg-intro__statement span {
    color: #91a2ff !important;
    -webkit-text-fill-color: #91a2ff !important;
    opacity: 1 !important;
}