.afg-landing,
.afg-landing * {
    box-sizing: border-box;
}

.afg-landing {
    --afg-header-height: 76px;
    --afg-radius: 8px;
    --afg-border: rgba(7, 26, 61, 0.14);
    --afg-muted: rgba(17, 24, 39, 0.72);
    --afg-soft-blue: rgba(20, 87, 217, 0.09);
    --afg-white: #ffffff;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: clip;
    background: var(--afg-cool-white);
    color: var(--afg-graphite);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.afg-landing a {
    color: inherit;
    text-decoration: none;
}

.afg-landing img {
    display: block;
    max-width: 100%;
}

.afg-landing svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.afg-landing main {
    scroll-margin-top: var(--afg-header-height);
}

.afg-landing .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.afg-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.afg-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: var(--afg-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 14px max(24px, calc((100vw - 1180px) / 2));
    background: var(--afg-header-background);
    border-bottom: 1px solid rgba(7, 26, 61, 0.1);
    box-shadow: 0 18px 36px rgba(7, 26, 61, 0.06);
    backdrop-filter: blur(18px);
    transition:
        min-height 220ms ease,
        padding 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.afg-site-header.is-scrolled {
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: var(--afg-header-scrolled-background);
    border-bottom-color: rgba(247, 250, 252, 0.12);
    box-shadow: 0 20px 48px rgba(7, 26, 61, 0.2);
}

.admin-bar .afg-site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .afg-site-header {
        top: 46px;
    }
}

.afg-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    color: var(--afg-header-text);
    font-weight: 800;
    letter-spacing: 0;
}

.afg-site-header.is-scrolled .afg-brand {
    color: var(--afg-header-scrolled-text);
}

.afg-brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: var(--afg-radius);
    background: var(--afg-deep-blue);
    color: var(--afg-cool-white);
    font-size: 0.72rem;
    font-weight: 800;
}

.afg-brand__logo {
    --afg-header-logo-x: 0px;
    --afg-header-logo-y: 0px;
    --afg-sticky-logo-x: 0px;
    --afg-sticky-logo-y: 0px;
    display: inline-grid;
    min-width: 46px;
    min-height: 46px;
    place-items: center;
    border-radius: var(--afg-radius);
    transform: translate(var(--afg-header-logo-x), var(--afg-header-logo-y));
    transform-origin: left center;
    transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.afg-brand__logo-img {
    grid-area: 1 / 1;
    width: 120px;
    max-width: min(42vw, 520px);
    max-height: 64px;
    object-fit: contain;
    transform-origin: left center;
    transition: opacity 180ms ease, transform 220ms ease, max-height 220ms ease;
}

.afg-brand__logo-img--scrolled {
    opacity: 0;
}

.afg-site-header.is-scrolled .afg-brand__logo {
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: translate(var(--afg-sticky-logo-x), var(--afg-sticky-logo-y));
}

.afg-site-header.is-scrolled .afg-brand__logo-img {
    transform: none;
}

.afg-site-header.is-scrolled .afg-brand__logo.has-scrolled-logo .afg-brand__logo-img--default {
    opacity: 0;
}

.afg-site-header.is-scrolled .afg-brand__logo-img--scrolled {
    opacity: 1;
}

.afg-brand__text {
    font-size: 0.98rem;
}

.afg-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 2.2vw, 28px);
    color: var(--afg-header-text);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.afg-nav a {
    position: relative;
    padding: 10px 0;
}

.afg-site-header.is-scrolled .afg-nav {
    color: var(--afg-header-scrolled-text);
}

.afg-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--afg-primary-blue);
    transition: transform 180ms ease;
}

.afg-site-header.is-scrolled .afg-nav a::after {
    background: var(--afg-light-blue);
}

.afg-nav a:hover::after,
.afg-nav a:focus-visible::after,
.afg-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.afg-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(7, 26, 61, 0.18);
    border-radius: var(--afg-radius);
    background: var(--afg-white);
    color: var(--afg-deep-blue);
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.afg-site-header.is-scrolled .afg-menu-toggle {
    border-color: rgba(247, 250, 252, 0.28);
    background: rgba(247, 250, 252, 0.08);
    color: var(--afg-header-scrolled-text);
}

.afg-menu-toggle__line,
.afg-menu-toggle__line::before,
.afg-menu-toggle__line::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    content: "";
}

.afg-menu-toggle__line {
    position: relative;
}

.afg-menu-toggle__line::before,
.afg-menu-toggle__line::after {
    position: absolute;
    left: 0;
}

.afg-menu-toggle__line::before {
    top: -6px;
}

.afg-menu-toggle__line::after {
    top: 6px;
}

.afg-hero {
    position: relative;
    min-height: calc(88svh - var(--afg-header-height));
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--afg-section-bg, var(--afg-deep-blue));
    color: var(--afg-cool-white);
    box-shadow: var(--afg-section-shadow, none);
    isolation: isolate;
}

.afg-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.afg-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.afg-hero-photo {
    --afg-hero-photo-overlay: 0.48;
    --afg-hero-photo-x: 50%;
    --afg-hero-photo-y: 50%;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--afg-deep-blue);
}

.afg-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--afg-hero-photo-x) var(--afg-hero-photo-y);
    scale: 1.015;
}

.afg-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 26, 61, 0.96) 0%, rgba(7, 26, 61, 0.78) 43%, rgba(7, 26, 61, var(--afg-hero-photo-overlay)) 72%, rgba(7, 26, 61, 0.2) 100%),
        linear-gradient(180deg, rgba(7, 26, 61, 0.42) 0%, rgba(7, 26, 61, 0.86) 100%);
}

.afg-hero-video {
    --afg-hero-video-opacity: 0.42;
    --afg-hero-video-overlay: 0.62;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--afg-deep-blue);
    pointer-events: none;
}

.afg-hero--has-photo .afg-hero-globe,
.afg-hero--has-photo .afg-staff {
    opacity: 0.32;
}

.afg-hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 26, 61, 0.86) 0%, rgba(7, 26, 61, var(--afg-hero-video-overlay)) 52%, rgba(7, 26, 61, 0.82) 100%),
        linear-gradient(180deg, rgba(7, 26, 61, 0.58) 0%, rgba(7, 26, 61, 0.88) 100%);
}

.afg-hero-video__media {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100%, 177.78vh);
    width: max(100%, 177.78svh);
    height: max(100%, 56.25vw);
    border: 0;
    opacity: var(--afg-hero-video-opacity);
    filter: saturate(0.82) contrast(0.95);
    transform: translate(-50%, -50%);
}

video.afg-hero-video__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.afg-hero-globe {
    --afg-globe-size: 520px;
    --afg-globe-opacity: 0.34;
    position: absolute;
    z-index: 1;
    top: clamp(100px, 18vh, 190px);
    right: clamp(12px, 7vw, 150px);
    width: min(var(--afg-globe-size), 48vw);
    aspect-ratio: 1;
    opacity: var(--afg-globe-opacity);
    pointer-events: none;
}

.afg-hero-globe--soft-orbits {
    width: min(calc(var(--afg-globe-size) * 1.16), 56vw);
    opacity: calc(var(--afg-globe-opacity) * 0.72);
}

.afg-hero-globe--soft-orbits::before,
.afg-hero-globe--soft-orbits::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.afg-hero-globe--soft-orbits::before {
    inset: -10%;
    border: 1px solid rgba(121, 184, 255, 0.14);
    background:
        radial-gradient(circle at 50% 50%, rgba(121, 184, 255, 0.1), transparent 56%),
        radial-gradient(circle at 28% 28%, rgba(247, 250, 252, 0.12), transparent 18%);
}

.afg-hero-globe--soft-orbits::after {
    inset: 16%;
    border: 1px solid rgba(247, 250, 252, 0.08);
    box-shadow: 0 0 72px rgba(121, 184, 255, 0.08);
}

.afg-hero-globe__sphere {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(121, 184, 255, 0.38);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 25%, rgba(247, 250, 252, 0.36) 0 7%, transparent 18%),
        radial-gradient(circle at 64% 70%, rgba(20, 87, 217, 0.34) 0 18%, transparent 42%),
        radial-gradient(circle at center, rgba(121, 184, 255, 0.22), rgba(7, 26, 61, 0.04) 68%);
    box-shadow:
        inset -28px -20px 56px rgba(0, 0, 0, 0.22),
        inset 18px 14px 42px rgba(121, 184, 255, 0.14),
        0 0 70px rgba(121, 184, 255, 0.14);
}

.afg-hero-globe--rotating-globe .afg-hero-globe__sphere::before {
    content: "";
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 0 47%, rgba(247, 250, 252, 0.24) 48% 52%, transparent 53% 100%),
        repeating-radial-gradient(ellipse at center, transparent 0 18%, rgba(121, 184, 255, 0.18) 19% 20%, transparent 21% 33%),
        repeating-linear-gradient(90deg, transparent 0 13%, rgba(121, 184, 255, 0.18) 14% 15%, transparent 16% 28%);
    transform-origin: center;
    animation: afgGlobeSpin 28s linear infinite;
}

.afg-hero-globe--rotating-globe .afg-hero-globe__sphere::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(247, 250, 252, 0.3), transparent 28%),
        linear-gradient(110deg, transparent 0 42%, rgba(7, 26, 61, 0.24) 64% 100%);
}

.afg-hero-globe--soft-orbits .afg-hero-globe__sphere {
    inset: 20%;
    overflow: visible;
    border-color: rgba(121, 184, 255, 0.16);
    background:
        radial-gradient(circle at 50% 50%, rgba(121, 184, 255, 0.13), transparent 48%),
        radial-gradient(circle at center, rgba(247, 250, 252, 0.06), transparent 62%);
    box-shadow: none;
}

.afg-hero-globe--soft-orbits .afg-hero-globe__sphere::before,
.afg-hero-globe--soft-orbits .afg-hero-globe__sphere::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.afg-hero-globe--soft-orbits .afg-hero-globe__sphere::before {
    inset: -34%;
    border: 1px solid rgba(121, 184, 255, 0.16);
    border-top-color: transparent;
    border-bottom-color: transparent;
    transform: rotateX(68deg) rotateZ(-14deg);
    animation: afgSoftOrbitOne 24s ease-in-out infinite;
}

.afg-hero-globe--soft-orbits .afg-hero-globe__sphere::after {
    inset: -18%;
    border: 1px solid rgba(121, 184, 255, 0.12);
    border-left-color: transparent;
    border-right-color: transparent;
    transform: rotateX(72deg) rotateZ(38deg);
    animation: afgSoftOrbitTwo 30s ease-in-out infinite;
}

.afg-hero-globe__orbit {
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(121, 184, 255, 0.24);
    border-radius: 50%;
}

.afg-hero-globe__orbit--one {
    transform: rotateX(64deg) rotateZ(-18deg);
}

.afg-hero-globe__orbit--two {
    transform: rotateX(72deg) rotateZ(42deg);
}

.afg-hero-globe__dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--afg-accent-gold);
    box-shadow: 0 0 18px rgba(216, 167, 66, 0.54);
}

.afg-hero-globe__dot--one {
    top: 24%;
    right: 26%;
    animation: afgGlobePulse 3.8s ease-in-out infinite;
}

.afg-hero-globe__dot--two {
    right: 44%;
    bottom: 22%;
    animation: afgGlobePulse 3.8s ease-in-out 1.4s infinite;
}

.afg-hero-globe--soft-orbits .afg-hero-globe__orbit {
    inset: 8%;
    border-color: rgba(121, 184, 255, 0.12);
    border-left-color: transparent;
    border-right-color: transparent;
}

.afg-hero-globe--soft-orbits .afg-hero-globe__orbit--one {
    transform: rotateX(66deg) rotateZ(-22deg);
    animation: afgSoftOrbitOne 32s ease-in-out infinite;
}

.afg-hero-globe--soft-orbits .afg-hero-globe__orbit--two {
    transform: rotateX(74deg) rotateZ(34deg);
    animation: afgSoftOrbitTwo 36s ease-in-out infinite;
}

.afg-hero-globe--soft-orbits .afg-hero-globe__dot {
    width: 6px;
    height: 6px;
    background: rgba(216, 167, 66, 0.78);
    box-shadow: 0 0 14px rgba(216, 167, 66, 0.34);
}

.afg-staff {
    position: absolute;
    z-index: 1;
    display: block;
    height: 1px;
    background: rgba(121, 184, 255, 0.34);
    box-shadow:
        0 16px 0 rgba(121, 184, 255, 0.24),
        0 32px 0 rgba(121, 184, 255, 0.18),
        0 48px 0 rgba(121, 184, 255, 0.12);
}

.afg-staff--one {
    width: 58vw;
    top: 19%;
    right: -10vw;
    transform: rotate(-10deg);
}

.afg-staff--two {
    width: 72vw;
    left: -18vw;
    bottom: 24%;
    transform: rotate(8deg);
}

.afg-staff--three {
    width: 46vw;
    right: 14vw;
    bottom: 12%;
    transform: rotate(-4deg);
}

.afg-map-node {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--afg-radius);
    color: rgba(247, 250, 252, 0.86);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.afg-map-node::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--afg-accent-gold);
    content: "";
}

.afg-map-node--brazil {
    left: 12%;
    bottom: 21%;
}

.afg-map-node--portugal {
    right: 24%;
    top: 22%;
}

.afg-map-node--africa {
    right: 12%;
    bottom: 28%;
}

.afg-hero__content {
    position: relative;
    z-index: 2;
    padding: clamp(84px, 11vw, 142px) 0 clamp(70px, 9vw, 112px);
}

.afg-eyebrow {
    margin: 0 0 18px;
    color: var(--afg-primary-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.afg-hero .afg-eyebrow {
    color: var(--afg-light-blue);
}

.afg-hero h1,
.afg-section h2,
.afg-contact h2 {
    margin: 0;
    font-family: "Source Serif 4", Georgia, serif;
    letter-spacing: 0;
    line-height: 0.96;
}

.afg-hero h1 {
    max-width: 800px;
    font-size: clamp(4.2rem, 12vw, 9.7rem);
    font-weight: 700;
}

.afg-hero__logo {
    display: block;
    width: min(100%, 900px);
    transform-origin: left center;
}

.afg-hero__logo img {
    width: min(720px, 100%);
    max-height: min(42vh, 390px);
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.18));
}

.afg-hero__statement {
    max-width: 860px;
    margin: 28px 0 0;
    color: var(--afg-white);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(1.75rem, 3.8vw, 4rem);
    font-weight: 600;
    line-height: 1.04;
}

.afg-hero__body {
    max-width: 760px;
    margin-top: 28px;
    color: rgba(247, 250, 252, 0.82);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.afg-hero__body p,
.afg-section__body p,
.afg-impact-after p,
.afg-contact p {
    margin: 0;
}

.afg-hero__body p + p,
.afg-section__body p + p,
.afg-impact-after p + p {
    margin-top: 18px;
}

.afg-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1px;
    width: min(860px, 100%);
    margin-top: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--afg-radius);
    overflow: hidden;
}

.afg-metric {
    --afg-card-lift: 0px;
    --afg-tilt-x: 0deg;
    --afg-tilt-y: 0deg;
    position: relative;
    min-height: 126px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    isolation: isolate;
    transform: perspective(900px) rotateX(var(--afg-tilt-y)) rotateY(var(--afg-tilt-x)) translateY(var(--afg-card-lift));
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.afg-metric::before,
.afg-impact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(115deg, transparent 0%, rgba(121, 184, 255, 0.14) 45%, transparent 70%);
    transform: translateX(-120%);
}

.afg-metric::after,
.afg-impact-card::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    height: 2px;
    background: var(--afg-accent-gold);
    transform: scaleX(0.28);
    transform-origin: left;
    opacity: 0.78;
    transition: transform 260ms ease;
}

.afg-metric:hover,
.afg-impact-card:hover {
    --afg-card-lift: -3px;
}

.afg-metric:hover::after,
.afg-impact-card:hover::after {
    transform: scaleX(1);
}

.afg-metric strong {
    display: block;
    margin-top: 22px;
    color: var(--afg-accent-gold);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-variant-numeric: tabular-nums;
    line-height: 0.95;
}

.afg-metric span {
    display: block;
    margin-top: 12px;
    color: rgba(247, 250, 252, 0.82);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.afg-section {
    position: relative;
    padding: clamp(76px, 9vw, 124px) 0;
    overflow: hidden;
    background: var(--afg-section-bg, var(--afg-cool-white));
    box-shadow: var(--afg-section-shadow, inset 0 1px 0 rgba(7, 26, 61, 0.08));
    scroll-margin-top: calc(var(--afg-header-height) + 22px);
}

.afg-hero[data-afg-bg-decor]::before,
.afg-section[data-afg-bg-decor]::before,
.afg-contact[data-afg-bg-decor]::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: var(--afg-section-decor-opacity, 0.42);
    pointer-events: none;
}

.afg-hero[data-afg-bg-decor]::before {
    z-index: 1;
}

.afg-hero[data-afg-bg-decor="soft-glow"]::before,
.afg-section[data-afg-bg-decor="soft-glow"]::before,
.afg-contact[data-afg-bg-decor="soft-glow"]::before {
    background:
        radial-gradient(circle at 16% 18%, rgba(121, 184, 255, 0.34), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(20, 87, 217, 0.22), transparent 34%),
        radial-gradient(circle at 70% 92%, rgba(216, 167, 66, 0.12), transparent 26%);
}

.afg-hero[data-afg-bg-decor="diagonal-lines"]::before,
.afg-section[data-afg-bg-decor="diagonal-lines"]::before,
.afg-contact[data-afg-bg-decor="diagonal-lines"]::before {
    background:
        linear-gradient(115deg, transparent 0 44%, rgba(121, 184, 255, 0.12) 44.3% 44.8%, transparent 45.1% 100%),
        repeating-linear-gradient(115deg, transparent 0 44px, rgba(20, 87, 217, 0.08) 45px 46px, transparent 47px 112px);
}

.afg-hero[data-afg-bg-decor="music-lines"]::before,
.afg-section[data-afg-bg-decor="music-lines"]::before,
.afg-contact[data-afg-bg-decor="music-lines"]::before {
    background:
        linear-gradient(100deg, transparent 0 18%, rgba(121, 184, 255, 0.14) 18.2% 18.5%, transparent 18.7% 100%),
        repeating-linear-gradient(0deg, transparent 0 17px, rgba(121, 184, 255, 0.16) 18px 19px, transparent 20px 32px);
    mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.afg-hero[data-afg-bg-decor="quiet-grid"]::before,
.afg-section[data-afg-bg-decor="quiet-grid"]::before,
.afg-contact[data-afg-bg-decor="quiet-grid"]::before {
    background-image:
        linear-gradient(rgba(20, 87, 217, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 87, 217, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 74% 18%, rgba(121, 184, 255, 0.16), transparent 30%);
    background-size: 56px 56px, 56px 56px, auto;
}

.afg-hero[data-afg-bg-decor="gold-accent"]::before,
.afg-section[data-afg-bg-decor="gold-accent"]::before,
.afg-contact[data-afg-bg-decor="gold-accent"]::before {
    background:
        radial-gradient(circle at 8% 22%, rgba(216, 167, 66, 0.2), transparent 26%),
        radial-gradient(circle at 92% 74%, rgba(121, 184, 255, 0.2), transparent 30%),
        linear-gradient(125deg, transparent 0 64%, rgba(216, 167, 66, 0.08) 64.3% 64.9%, transparent 65.2% 100%);
}

.afg-section > .afg-shell,
.afg-contact > .afg-shell {
    position: relative;
    z-index: 1;
}

.afg-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: clamp(38px, 7vw, 96px);
    align-items: start;
}

.afg-section__heading {
    position: sticky;
    top: calc(var(--afg-header-height) + 34px);
}

.afg-section__heading-mark {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(20, 87, 217, 0.18);
    border-radius: var(--afg-radius);
    background:
        linear-gradient(135deg, rgba(20, 87, 217, 0.1), rgba(121, 184, 255, 0.08)),
        var(--afg-white);
    color: var(--afg-primary-blue);
    box-shadow: 0 16px 34px rgba(7, 26, 61, 0.1);
}

.afg-section--impact .afg-section__heading-mark,
.afg-contact .afg-section__heading-mark {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--afg-light-blue);
    box-shadow: none;
}

.afg-section-icon {
    width: 25px;
    height: 25px;
}

.afg-section h2,
.afg-contact h2 {
    color: var(--afg-deep-blue);
    font-size: clamp(2.2rem, 4.7vw, 5rem);
    font-weight: 650;
}

.afg-section__body {
    color: var(--afg-muted);
    font-size: clamp(1rem, 1.25vw, 1.13rem);
}

.afg-section__body p:first-child {
    color: var(--afg-graphite);
    font-size: clamp(1.08rem, 1.42vw, 1.28rem);
    font-weight: 600;
}

.afg-section--who {
    border-top: 1px solid rgba(7, 26, 61, 0.08);
}

.afg-section--method {
    background: var(--afg-section-bg, var(--afg-white));
}

.afg-method-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: clamp(44px, 6vw, 72px);
}

.afg-method-cards article {
    --afg-card-lift: 0px;
    --afg-tilt-x: 0deg;
    --afg-tilt-y: 0deg;
    min-height: 238px;
    padding: 26px;
    border: 1px solid var(--afg-border);
    border-radius: var(--afg-radius);
    background: var(--afg-cool-white);
    box-shadow: 0 18px 38px rgba(7, 26, 61, 0.08);
    transform: perspective(900px) rotateX(var(--afg-tilt-y)) rotateY(var(--afg-tilt-x)) translateY(var(--afg-card-lift));
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.afg-method-cards article:hover {
    --afg-card-lift: -3px;
    border-color: rgba(20, 87, 217, 0.22);
    box-shadow: 0 24px 52px rgba(7, 26, 61, 0.12);
    background: var(--afg-white);
}

.afg-method-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.afg-method-cards span {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: var(--afg-radius);
    background: var(--afg-deep-blue);
    color: var(--afg-light-blue);
    font-weight: 800;
}

.afg-method-cards h3,
.afg-impact-card h3 {
    margin: 24px 0 10px;
    color: var(--afg-deep-blue);
    font-size: 1.05rem;
    line-height: 1.2;
}

.afg-method-cards p,
.afg-impact-card p {
    margin: 0;
    color: var(--afg-muted);
}

.afg-section--impact {
    background: var(--afg-section-bg, var(--afg-deep-blue));
    color: var(--afg-cool-white);
}

.afg-section--impact .afg-eyebrow,
.afg-section--impact h2,
.afg-section--impact .afg-section__body,
.afg-section--impact .afg-section__body p:first-child {
    color: var(--afg-cool-white);
}

.afg-section--impact .afg-section__body {
    color: rgba(247, 250, 252, 0.78);
}

.afg-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 18px;
    margin-top: clamp(44px, 6vw, 70px);
}

.afg-impact-card {
    --afg-card-lift: 0px;
    --afg-tilt-x: 0deg;
    --afg-tilt-y: 0deg;
    position: relative;
    min-height: 280px;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--afg-radius);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    isolation: isolate;
    transform: perspective(900px) rotateX(var(--afg-tilt-y)) rotateY(var(--afg-tilt-x)) translateY(var(--afg-card-lift));
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.afg-impact-card strong {
    display: block;
    color: var(--afg-accent-gold);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(3.2rem, 7vw, 6.4rem);
    font-variant-numeric: tabular-nums;
    line-height: 0.88;
}

.afg-impact-card h3,
.afg-impact-card p {
    color: var(--afg-cool-white);
}

.afg-impact-card p {
    color: rgba(247, 250, 252, 0.72);
}

.afg-impact-after {
    max-width: 850px;
    margin-top: 42px;
    color: rgba(247, 250, 252, 0.78);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.afg-impact-story {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(260px, 0.68fr);
    gap: clamp(18px, 2.5vw, 30px);
    align-items: stretch;
    margin-top: clamp(46px, 6vw, 82px);
}

.afg-impact-story__main,
.afg-impact-story__thumb,
.afg-section-photo {
    --afg-card-lift: 0px;
    --afg-tilt-x: 0deg;
    --afg-tilt-y: 0deg;
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--afg-radius);
    isolation: isolate;
    transform: perspective(900px) rotateX(var(--afg-tilt-y)) rotateY(var(--afg-tilt-x)) translateY(var(--afg-card-lift));
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.afg-impact-story__main {
    min-height: clamp(520px, 54vw, 760px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 36px 92px rgba(0, 0, 0, 0.28);
}

.afg-impact-story__stack {
    display: grid;
    gap: clamp(16px, 2vw, 22px);
    grid-auto-rows: minmax(150px, 1fr);
}

.afg-impact-story__thumb {
    min-height: clamp(150px, 14vw, 230px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.afg-impact-story__main:hover,
.afg-impact-story__thumb:hover,
.afg-section-photo:hover {
    --afg-card-lift: -3px;
    border-color: rgba(121, 184, 255, 0.34);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.26);
}

.afg-impact-story__main img,
.afg-impact-story__thumb img,
.afg-section-photo img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 520ms ease;
}

.afg-impact-story__main:hover img,
.afg-impact-story__thumb:hover img,
.afg-section-photo:hover img {
    transform: scale(1.035);
}

.afg-impact-story__main::before {
    content: "";
    position: absolute;
    inset: 20px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.afg-impact-story__main::after,
.afg-impact-story__thumb::after,
.afg-section-photo::after {
    content: "";
    position: absolute;
    inset: 42% 0 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 26, 61, 0.9) 100%);
}

.afg-impact-story__main figcaption,
.afg-impact-story__thumb figcaption,
.afg-section-photo figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    gap: 7px;
    padding: 22px;
    color: var(--afg-cool-white);
}

.afg-impact-story__main figcaption {
    padding: clamp(26px, 4vw, 46px);
}

.afg-impact-story__main figcaption span,
.afg-impact-story__thumb figcaption span,
.afg-section-photo figcaption span {
    color: var(--afg-light-blue);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.afg-impact-story__main figcaption strong,
.afg-impact-story__thumb figcaption strong,
.afg-section-photo figcaption strong {
    max-width: 560px;
    font-family: "Source Serif 4", Georgia, serif;
    line-height: 1.05;
}

.afg-impact-story__main figcaption strong {
    font-size: clamp(1.25rem, 2vw, 2.2rem);
}

.afg-impact-story__thumb figcaption strong,
.afg-section-photo figcaption strong {
    font-size: clamp(1.05rem, 1.4vw, 1.45rem);
}

.afg-impact-story + .afg-impact-grid {
    margin-top: clamp(28px, 4vw, 48px);
}

.afg-section-photo-strip {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
    gap: 18px;
    margin-top: clamp(42px, 5vw, 68px);
}

.afg-section-photo {
    min-height: 300px;
    border: 1px solid rgba(7, 26, 61, 0.08);
    background: var(--afg-deep-blue);
    box-shadow: 0 22px 52px rgba(7, 26, 61, 0.13);
}

.afg-section-photo:first-child {
    min-height: 420px;
}

.afg-section-photo-strip--global .afg-section-photo:first-child,
.afg-section-photo-strip--method .afg-section-photo:first-child {
    grid-column: span 2;
}

.afg-section-photo:hover {
    box-shadow: 0 30px 72px rgba(7, 26, 61, 0.19);
}

.afg-section--accent .afg-section-photo,
.afg-section--partner .afg-section-photo {
    border-color: rgba(20, 87, 217, 0.12);
}

.afg-section--global {
    background: var(--afg-section-bg, var(--afg-white));
}

.afg-section--photos {
    background: var(--afg-section-bg, var(--afg-white));
}

.afg-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 18px;
    margin-top: clamp(42px, 6vw, 72px);
}

.afg-photo-card {
    --afg-card-lift: 0px;
    --afg-tilt-x: 0deg;
    --afg-tilt-y: 0deg;
    position: relative;
    min-height: 310px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--afg-radius);
    background: var(--afg-deep-blue);
    box-shadow: 0 24px 56px rgba(7, 26, 61, 0.16);
    isolation: isolate;
    transform: perspective(900px) rotateX(var(--afg-tilt-y)) rotateY(var(--afg-tilt-x)) translateY(var(--afg-card-lift));
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.afg-photo-card:hover {
    --afg-card-lift: -3px;
    box-shadow: 0 30px 68px rgba(7, 26, 61, 0.2);
}

.afg-photo-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 638px;
}

.afg-photo-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 500ms ease;
}

.afg-photo-card::after {
    content: "";
    position: absolute;
    inset: 42% 0 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 26, 61, 0.86) 100%);
}

.afg-photo-card:hover img {
    transform: scale(1.035);
}

.afg-photo-card figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    gap: 8px;
    padding: 24px;
    color: var(--afg-cool-white);
}

.afg-photo-card figcaption span {
    color: var(--afg-light-blue);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.afg-photo-card figcaption strong {
    max-width: 680px;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(1.35rem, 2.3vw, 2.55rem);
    line-height: 1.02;
}

.afg-presence-path {
    display: grid;
    gap: 1px;
    margin: 36px 0 0;
    padding: 0;
    border: 1px solid var(--afg-border);
    border-radius: var(--afg-radius);
    box-shadow: 0 18px 38px rgba(7, 26, 61, 0.08);
    overflow: hidden;
    list-style: none;
}

.afg-presence-path li {
    display: grid;
    grid-template-columns: 28px minmax(56px, 0.36fr) 1fr;
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 16px 18px;
    background: var(--afg-cool-white);
    color: var(--afg-deep-blue);
    font-weight: 800;
    transition: background 180ms ease, transform 180ms ease;
}

.afg-presence-path li:hover {
    background: var(--afg-white);
    transform: translateX(4px);
}

.afg-presence-path span {
    color: var(--afg-primary-blue);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.afg-presence-path__icon {
    width: 18px;
    height: 18px;
    color: var(--afg-accent-gold);
}

.afg-card-icon {
    width: 34px;
    height: 34px;
    color: var(--afg-primary-blue);
}

.afg-card-icon--light {
    color: var(--afg-light-blue);
}

.afg-metric .afg-card-icon {
    position: absolute;
    top: 22px;
    right: 22px;
    opacity: 0.72;
}

.afg-impact-card .afg-card-icon {
    margin-bottom: 28px;
    opacity: 0.84;
}

.afg-section--accent {
    background: var(--afg-section-bg, var(--afg-soft-blue));
}

.afg-section--partner {
    background: var(--afg-section-bg, var(--afg-cool-white));
}

.afg-section--chords {
    overflow: hidden;
    background: var(
        --afg-section-bg,
        radial-gradient(circle at 78% 20%, rgba(121, 184, 255, 0.16), transparent 34%),
        var(--afg-deep-blue)
    );
    color: var(--afg-cool-white);
}

.afg-section--chords .afg-eyebrow,
.afg-section--chords h2,
.afg-section--chords .afg-section__body,
.afg-section--chords .afg-section__body p:first-child {
    color: var(--afg-cool-white);
}

.afg-section--chords .afg-section__body {
    color: rgba(247, 250, 252, 0.78);
}

.afg-section--chords .afg-section__heading-mark {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--afg-light-blue);
    box-shadow: none;
}

.afg-chords-intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
}

.afg-chords-intro .afg-section__heading {
    position: static;
}

.afg-chords-intro .afg-section__body {
    padding-top: calc(54px + 20px + 1.05rem);
}

.afg-video-showcase {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: clamp(44px, 6vw, 76px) auto 0;
    overflow: visible;
}

.afg-video-showcase__controls {
    position: absolute;
    inset: 0 -12px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.afg-video-stage {
    position: relative;
    min-height: clamp(390px, 48vw, 640px);
    perspective: 1200px;
}

.afg-video-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(860px, 82%);
    margin: 0;
    border: 1px solid rgba(247, 250, 252, 0.16);
    border-radius: var(--afg-radius);
    background: #020b1c;
    box-shadow: 0 32px 82px rgba(0, 0, 0, 0.34);
    opacity: 0;
    overflow: hidden;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 260ms ease, transform 420ms ease, filter 420ms ease, box-shadow 420ms ease;
    pointer-events: none;
}

.afg-video-card.is-active {
    z-index: 3;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.afg-video-card.is-active:hover {
    transform: translate(-50%, -50%) scale(1.018);
    box-shadow: 0 42px 96px rgba(0, 0, 0, 0.42);
}

.afg-video-card.is-prev,
.afg-video-card.is-next {
    z-index: 2;
    opacity: 0.2;
    filter: saturate(0.58) brightness(0.7) blur(1px);
    cursor: pointer;
    pointer-events: auto;
}

.afg-video-card.is-prev {
    transform: translate(-118%, -50%) scale(0.72) rotateY(8deg);
}

.afg-video-card.is-next {
    transform: translate(18%, -50%) scale(0.72) rotateY(-8deg);
}

.afg-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #020b1c;
}

.afg-video-frame iframe,
.afg-video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.afg-video-card__copy {
    position: absolute;
    right: clamp(22px, 4vw, 64px);
    bottom: clamp(22px, 4vw, 64px);
    left: clamp(22px, 4vw, 64px);
    z-index: 3;
    display: grid;
    gap: 8px;
    max-width: 720px;
    padding: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 300ms ease, transform 300ms ease;
    pointer-events: none;
}

.afg-video-card.is-active:hover .afg-video-card__copy {
    opacity: 1;
    transform: translateY(0);
}

.afg-video-card__copy h3 {
    margin: 0;
    color: var(--afg-cool-white);
    font-size: clamp(1.15rem, 1.8vw, 1.6rem);
    line-height: 1.15;
}

.afg-video-card__copy p {
    margin: 0;
    color: rgba(247, 250, 252, 0.72);
}

.afg-video-arrow {
    position: relative;
    z-index: 4;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--afg-radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--afg-cool-white);
    cursor: pointer;
    pointer-events: auto;
    transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.afg-video-arrow:hover,
.afg-video-arrow:focus-visible {
    border-color: rgba(121, 184, 255, 0.46);
    background: rgba(121, 184, 255, 0.18);
    transform: translateY(-2px);
}

.afg-video-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.36;
    transform: none;
}

.afg-section--funding {
    background: var(--afg-section-bg, var(--afg-white));
}

.afg-partner-header {
    display: grid;
    justify-items: center;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.afg-partner-header .afg-section__heading-mark {
    margin-bottom: 20px;
}

.afg-partner-header h2 {
    max-width: 880px;
}

.afg-partner-header .afg-section__body {
    max-width: 720px;
    margin-top: 22px;
}

.afg-partner-header .afg-section__body p,
.afg-partner-header .afg-section__body p:first-child {
    color: var(--afg-muted);
    font-size: clamp(1rem, 1.16vw, 1.12rem);
    font-weight: 500;
}

.afg-partner-carousel {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 16px;
    align-items: center;
    margin-top: clamp(30px, 4vw, 48px);
}

.afg-carousel-button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--afg-border);
    border-radius: var(--afg-radius);
    background: var(--afg-cool-white);
    color: var(--afg-deep-blue);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.afg-carousel-button:hover,
.afg-carousel-button:focus-visible {
    border-color: var(--afg-primary-blue);
    background: var(--afg-primary-blue);
    color: var(--afg-white);
}

.afg-carousel-button:disabled {
    cursor: default;
    opacity: 0.42;
}

.afg-carousel-button:disabled:hover,
.afg-carousel-button:disabled:focus-visible {
    border-color: var(--afg-border);
    background: var(--afg-cool-white);
    color: var(--afg-deep-blue);
}

.afg-partner-window {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.afg-partner-window::-webkit-scrollbar {
    display: none;
}

.afg-partner-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 0;
    min-width: 100%;
}

.afg-partner-page {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    scroll-snap-align: start;
}

.afg-partner-card {
    display: grid;
    gap: 14px;
    align-content: center;
    justify-items: center;
    min-height: var(--afg-partner-card-min-height, 156px);
    place-items: center;
    padding: 24px;
    border: 1px solid var(--afg-border);
    border-radius: var(--afg-radius);
    background: var(--afg-partner-card-background, transparent);
    color: var(--afg-deep-blue);
    text-align: center;
    box-shadow: 0 18px 38px rgba(7, 26, 61, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.afg-partner-card:hover,
a.afg-partner-card:focus-visible {
    border-color: rgba(20, 87, 217, 0.4);
    box-shadow: 0 18px 34px rgba(7, 26, 61, 0.1);
    transform: translateY(-2px);
}

.afg-partner-card span {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(1.22rem, 1.8vw, 1.75rem);
    font-weight: 650;
    line-height: 1.1;
}

.afg-partner-card img {
    width: min(var(--afg-partner-logo-width, 300px), 100%);
    max-height: var(--afg-partner-logo-max-height, 110px);
    object-fit: contain;
}

.afg-partner-flag {
    display: inline-flex;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    border: 1px solid rgba(7, 26, 61, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 20px rgba(7, 26, 61, 0.08);
    line-height: 1;
}

.afg-partner-flag .afg-flag {
    width: 24px;
    height: 17px;
    box-shadow: 0 0 0 1px rgba(7, 26, 61, 0.1);
}

.afg-contact {
    position: relative;
    z-index: 1;
    padding: clamp(72px, 8vw, 116px) 0;
    overflow: hidden;
    background: var(--afg-section-bg, var(--afg-deep-blue));
    color: var(--afg-cool-white);
    scroll-margin-top: calc(var(--afg-header-height) + 22px);
    box-shadow: var(--afg-section-shadow, 0 34px 76px rgba(0, 0, 0, 0.32));
}

.afg-contact__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.afg-contact .afg-eyebrow,
.afg-contact h2,
.afg-contact .afg-section__body,
.afg-contact .afg-section__body p:first-child {
    color: var(--afg-cool-white);
}

.afg-contact .afg-section__body {
    max-width: 680px;
    margin-top: 20px;
    color: rgba(247, 250, 252, 0.76);
}

.afg-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
    border-radius: var(--afg-radius);
    background: var(--afg-section-button-background, var(--afg-accent-gold));
    color: var(--afg-section-button-text, var(--afg-deep-blue));
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform 180ms ease, background 180ms ease;
}

.afg-button:hover,
.afg-button:focus-visible {
    background: var(--afg-light-blue);
    transform: translateY(-2px);
}

.afg-bg-theme--light .afg-eyebrow {
    color: var(--afg-section-eyebrow-color, var(--afg-primary-blue));
}

.afg-bg-theme--light h2,
.afg-contact.afg-bg-theme--light h2,
.afg-hero.afg-bg-theme--light h1,
.afg-hero.afg-bg-theme--light .afg-hero__statement {
    color: var(--afg-section-title-color, var(--afg-deep-blue));
}

.afg-bg-theme--light .afg-section__body,
.afg-contact.afg-bg-theme--light .afg-section__body,
.afg-hero.afg-bg-theme--light .afg-hero__body {
    color: var(--afg-section-body-color, var(--afg-muted));
}

.afg-bg-theme--light .afg-section__body p:first-child,
.afg-contact.afg-bg-theme--light .afg-section__body p:first-child,
.afg-hero.afg-bg-theme--light .afg-hero__body p {
    color: var(--afg-section-lead-color, var(--afg-graphite));
}

.afg-bg-theme--light .afg-section__heading-mark,
.afg-contact.afg-bg-theme--light .afg-section__heading-mark {
    border-color: rgba(20, 87, 217, 0.18);
    background:
        linear-gradient(135deg, rgba(20, 87, 217, 0.1), rgba(121, 184, 255, 0.08)),
        var(--afg-white);
    color: var(--afg-section-icon-color, var(--afg-primary-blue));
    box-shadow: 0 16px 34px rgba(7, 26, 61, 0.1);
}

.afg-bg-theme--dark h2,
.afg-contact.afg-bg-theme--dark h2,
.afg-hero.afg-bg-theme--dark h1,
.afg-hero.afg-bg-theme--dark .afg-hero__statement,
.afg-bg-theme--dark .afg-section__body p:first-child,
.afg-contact.afg-bg-theme--dark .afg-section__body p:first-child {
    color: var(--afg-section-title-color, var(--afg-cool-white));
}

.afg-bg-theme--dark .afg-eyebrow {
    color: var(--afg-section-eyebrow-color, var(--afg-light-blue));
}

.afg-bg-theme--dark .afg-section__body,
.afg-contact.afg-bg-theme--dark .afg-section__body,
.afg-hero.afg-bg-theme--dark .afg-hero__body {
    color: var(--afg-section-body-color, rgba(247, 250, 252, 0.78));
}

.afg-bg-theme--dark .afg-section__body p:first-child,
.afg-contact.afg-bg-theme--dark .afg-section__body p:first-child,
.afg-hero.afg-bg-theme--dark .afg-hero__body p {
    color: var(--afg-section-lead-color, var(--afg-cool-white));
}

.afg-bg-theme--dark .afg-section__heading-mark,
.afg-contact.afg-bg-theme--dark .afg-section__heading-mark {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--afg-section-icon-color, var(--afg-light-blue));
    box-shadow: none;
}

.afg-footer {
    position: relative;
    z-index: 0;
    padding: clamp(48px, 6vw, 78px) 0 30px;
    border-top: 1px solid rgba(247, 250, 252, 0.12);
    background:
        radial-gradient(circle at 12% 0%, rgba(121, 184, 255, 0.12), transparent 28%),
        var(--afg-deep-blue);
    color: rgba(247, 250, 252, 0.78);
}

.afg-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 38px);
    align-items: center;
    justify-items: center;
    text-align: center;
}

.afg-footer__brand {
    display: grid;
    justify-items: center;
    gap: 20px;
    max-width: 640px;
}

.afg-footer__logo-surface {
    display: inline-grid;
    width: fit-content;
    max-width: 100%;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.afg-footer__logo-surface img {
    width: min(250px, 70vw);
    max-height: 96px;
    object-fit: contain;
}

.afg-footer__summary {
    max-width: 620px;
    font-size: 0.98rem;
}

.afg-footer__summary p {
    margin: 0;
}

.afg-footer__locations-wrap {
    margin-top: clamp(34px, 5vw, 58px);
    text-align: center;
}

.afg-footer__locations-wrap h2,
.afg-footer__social-wrap h2 {
    margin: 0 0 16px;
    color: var(--afg-cool-white);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.afg-footer__locations {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.afg-footer-location {
    display: grid;
    gap: 14px;
    min-height: 146px;
    padding: 18px;
    border: 1px solid rgba(247, 250, 252, 0.14);
    border-radius: var(--afg-radius);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(247, 250, 252, 0.76);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

a.afg-footer-location:hover,
a.afg-footer-location:focus-visible {
    border-color: rgba(121, 184, 255, 0.38);
    background: rgba(121, 184, 255, 0.1);
    transform: translateY(-2px);
}

.afg-footer-location__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.afg-footer-location strong {
    color: var(--afg-cool-white);
    font-size: 0.98rem;
    line-height: 1.15;
}

.afg-flag {
    width: 28px;
    height: 20px;
    flex: 0 0 auto;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(247, 250, 252, 0.22);
}

.afg-footer-location__address {
    display: block;
    color: rgba(247, 250, 252, 0.66);
    font-size: 0.9rem;
    line-height: 1.45;
}

.afg-footer__social-wrap {
    min-width: 210px;
    text-align: center;
}

.afg-footer__social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.afg-footer__social a {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(247, 250, 252, 0.18);
    border-radius: var(--afg-radius);
    background: rgba(255, 255, 255, 0.07);
    color: var(--afg-light-blue);
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.afg-footer__social a:hover,
.afg-footer__social a:focus-visible {
    border-color: rgba(216, 167, 66, 0.55);
    background: rgba(216, 167, 66, 0.14);
    color: var(--afg-accent-gold);
    transform: translateY(-2px);
}

.afg-footer__social-icon {
    width: 22px;
    height: 22px;
}

.afg-footer__bottom {
    margin-top: clamp(28px, 4vw, 48px);
    padding-top: 18px;
    border-top: 1px solid rgba(247, 250, 252, 0.12);
    color: rgba(247, 250, 252, 0.52);
    font-size: 0.84rem;
    text-align: center;
}

.afg-footer__bottom p {
    margin: 0;
}

.afg-js .afg-landing [data-afg-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.afg-js .afg-landing [data-afg-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.afg-js .afg-landing [data-afg-stagger] > * {
    opacity: 0;
    translate: 0 14px;
    transition:
        opacity 520ms ease,
        translate 520ms ease,
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.afg-js .afg-landing .is-visible [data-afg-stagger] > *,
.afg-js .afg-landing [data-afg-stagger].is-visible > * {
    animation: afgStaggerReveal 520ms ease both;
}

.afg-js .afg-landing [data-afg-stagger] > *:nth-child(2) {
    animation-delay: 80ms;
}

.afg-js .afg-landing [data-afg-stagger] > *:nth-child(3) {
    animation-delay: 160ms;
}

.afg-js .afg-landing [data-afg-stagger] > *:nth-child(4) {
    animation-delay: 240ms;
}

.afg-js .afg-landing [data-afg-stagger] > *:nth-child(5) {
    animation-delay: 320ms;
}

.afg-js .afg-landing [data-afg-stagger] > *:nth-child(6) {
    animation-delay: 400ms;
}

@media (prefers-reduced-motion: no-preference) {
    .afg-metrics.is-visible .afg-metric::before,
    .afg-impact-card::before {
        animation: afgMetricSweep 4.8s ease-in-out infinite;
    }

    .afg-metrics.is-visible .afg-metric:nth-child(2)::before,
    .afg-impact-card:nth-child(2)::before {
        animation-delay: 0.45s;
    }

    .afg-metrics.is-visible .afg-metric:nth-child(3)::before,
    .afg-impact-card:nth-child(3)::before {
        animation-delay: 0.9s;
    }

    .afg-section__heading-mark {
        animation: afgIconFloat 7s ease-in-out infinite;
    }

    .afg-method-cards article:hover .afg-card-icon,
    .afg-impact-card:hover .afg-card-icon,
    .afg-metric:hover .afg-card-icon {
        animation: afgIconPulse 900ms ease;
    }
}

@keyframes afgMetricSweep {
    0%,
    28% {
        transform: translateX(-120%);
    }

    58%,
    100% {
        transform: translateX(120%);
    }
}

@keyframes afgStaggerReveal {
    from {
        opacity: 0;
        translate: 0 14px;
    }

    to {
        opacity: 1;
        translate: 0 0;
    }
}

@keyframes afgIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes afgIconPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .afg-landing *,
    .afg-landing *::before,
    .afg-landing *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .afg-js .afg-landing [data-afg-reveal] {
        opacity: 1;
        transform: none;
    }

    .afg-js .afg-landing [data-afg-stagger] > * {
        opacity: 1;
        translate: 0 0;
        animation: none !important;
        animation-delay: 0ms !important;
    }

    .afg-hero-video__media {
        display: none;
    }
}

@keyframes afgGlobeSpin {
    0% {
        transform: translateX(-8%) rotateY(0deg);
    }

    100% {
        transform: translateX(8%) rotateY(360deg);
    }
}

@keyframes afgSoftOrbitOne {
    0%,
    100% {
        transform: rotateX(68deg) rotateZ(-14deg) scale(1);
    }

    50% {
        transform: rotateX(70deg) rotateZ(-8deg) scale(1.04);
    }
}

@keyframes afgSoftOrbitTwo {
    0%,
    100% {
        transform: rotateX(72deg) rotateZ(38deg) scale(1);
    }

    50% {
        transform: rotateX(70deg) rotateZ(44deg) scale(0.97);
    }
}

@keyframes afgGlobePulse {
    0%,
    100% {
        transform: scale(0.78);
        opacity: 0.64;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}

@media (max-width: 980px) {
    .afg-site-header {
        width: 100%;
        max-width: 100vw;
        min-height: 68px;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        align-items: center;
        justify-content: normal;
        padding: 12px 24px;
        gap: 10px;
    }

    .afg-menu-toggle {
        display: grid;
        position: relative;
        z-index: 4;
        grid-column: 3;
        justify-self: end;
        flex: 0 0 44px;
    }

    .afg-brand {
        grid-column: 2;
        min-width: 0;
        max-width: 100%;
        justify-content: center;
        overflow: visible;
    }

    .afg-brand__logo,
    .afg-site-header.is-scrolled .afg-brand__logo {
        transform: none;
    }

    .afg-nav {
        position: absolute;
        z-index: 3;
        top: calc(100% + 8px);
        right: 24px;
        left: 24px;
        display: grid;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        border: 0 solid rgba(7, 26, 61, 0.12);
        border-radius: var(--afg-radius);
        background: var(--afg-white);
        box-shadow: 0 24px 48px rgba(7, 26, 61, 0.14);
        transition: max-height 220ms ease, border-width 220ms ease;
    }

    .afg-site-header.is-scrolled .afg-nav {
        border-color: rgba(247, 250, 252, 0.18);
        background: var(--afg-header-scrolled-background);
        color: var(--afg-header-scrolled-text);
    }

    .afg-nav.is-open {
        max-height: 360px;
        border-width: 1px;
    }

    .afg-nav a {
        padding: 16px 18px;
        border-bottom: 1px solid rgba(7, 26, 61, 0.08);
    }

    .afg-nav a:last-child {
        border-bottom: 0;
    }

    .afg-nav a::after {
        display: none;
    }

    .afg-hero {
        min-height: calc(86svh - 68px);
    }

    .afg-section__grid,
    .afg-contact__inner {
        grid-template-columns: 1fr;
    }

    .afg-section__heading {
        position: static;
    }

    .afg-method-cards,
    .afg-impact-grid,
    .afg-impact-story,
    .afg-section-photo-strip,
    .afg-photo-grid {
        grid-template-columns: 1fr;
    }

    .afg-chords-intro {
        grid-template-columns: 1fr;
    }

    .afg-chords-intro .afg-section__body {
        padding-top: 0;
    }

    .afg-method-cards article,
    .afg-impact-card,
    .afg-impact-story__main,
    .afg-impact-story__thumb,
    .afg-section-photo,
    .afg-section-photo:first-child,
    .afg-photo-card,
    .afg-photo-card:first-child {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
    }

    .afg-photo-card,
    .afg-photo-card:first-child {
        min-height: 360px;
    }

    .afg-impact-story__main,
    .afg-impact-story__thumb,
    .afg-section-photo,
    .afg-section-photo:first-child {
        min-height: 360px;
    }

    .afg-video-showcase {
        width: 100%;
        margin-inline: auto;
    }

    .afg-video-stage {
        min-height: clamp(330px, 60vw, 520px);
    }

    .afg-video-card {
        width: min(720px, 100%);
    }

    .afg-video-card.is-prev,
    .afg-video-card.is-next {
        opacity: 0;
        pointer-events: none;
    }

    .afg-contact__inner {
        align-items: start;
    }

    .afg-button {
        justify-self: start;
    }

    .afg-footer__top,
    .afg-footer__locations {
        grid-template-columns: 1fr 1fr;
    }

    .afg-footer__top {
        grid-template-columns: 1fr;
    }

    .afg-footer__social-wrap {
        min-width: 0;
    }
}

@media (max-width: 700px) {
    .afg-shell {
        width: min(100% - 34px, 1180px);
    }

    .afg-brand__text {
        max-width: 180px;
        white-space: normal;
    }

    .afg-brand__logo-img {
        max-width: 156px;
        max-height: 58px !important;
    }

    .afg-hero h1 {
        font-size: clamp(3.35rem, 21vw, 5.6rem);
    }

    .afg-hero__logo img {
        width: min(100%, 560px) !important;
        max-height: 260px;
    }

    .afg-hero__statement {
        font-size: clamp(1.8rem, 9vw, 2.55rem);
    }

    .afg-metrics {
        grid-template-columns: 1fr;
    }

    .afg-metric {
        min-height: auto;
    }

    .afg-footer__top,
    .afg-footer__locations {
        grid-template-columns: 1fr;
    }

    .afg-footer__social-wrap {
        justify-self: center;
    }

    .afg-map-node {
        display: none;
    }

    .afg-hero-globe {
        top: auto;
        right: -28vw;
        bottom: 8%;
        width: 82vw;
        opacity: 0.2;
    }

    .afg-partner-carousel {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 10px;
    }

    .afg-carousel-button {
        width: 40px;
        height: 40px;
    }

    .afg-partner-track {
        grid-auto-columns: 100%;
    }

    .afg-partner-page {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .afg-partner-card {
        min-height: max(132px, var(--afg-partner-card-min-height, 156px));
    }

    .afg-video-stage {
        min-height: 460px;
    }
}

@media (max-width: 420px) {
    .afg-site-header {
        padding-inline: 17px;
    }

    .afg-nav {
        right: 17px;
        left: 17px;
    }

    .afg-brand {
        gap: 9px;
    }

    .afg-brand__mark {
        width: 38px;
        height: 38px;
    }

    .afg-brand__text {
        max-width: 150px;
        font-size: 0.9rem;
    }

    .afg-brand__logo-img {
        max-width: 128px;
        max-height: 48px !important;
    }

    .afg-hero__content {
        padding-top: 62px;
        padding-bottom: 58px;
    }

    .afg-hero-globe {
        right: -44vw;
        bottom: 11%;
        width: 104vw;
    }

    .afg-video-showcase {
        margin-top: 34px;
    }

    .afg-video-arrow {
        width: 44px;
        height: 44px;
    }

    .afg-video-arrow--prev {
        margin-left: 17px;
    }

    .afg-video-arrow--next {
        margin-right: 17px;
    }

    .afg-video-stage {
        min-height: 330px;
    }

    .afg-video-card__copy {
        display: none;
    }

    .afg-section,
    .afg-contact {
        padding-block: 68px;
    }
}
