:root {
    --bg: #060a14;
    --bg-soft: #0d162c;
    --surface: #111c37;
    --surface-soft: #162445;
    --ink: #f3f7ff;
    --ink-soft: #cad6f0;
    --ink-muted: #aebddb;
    --line: rgba(255, 255, 255, 0.16);
    --brand: #6ca5ff;
    --brand-strong: #95bfff;
    --accent: #b9deff;
    --white-soft: rgba(234, 242, 255, 0.9);
    --shadow-card: 0 22px 54px rgba(3, 8, 20, 0.5);
    --shadow-soft: 0 12px 28px rgba(4, 9, 20, 0.42);
    --radius-lg: 30px;
    --radius-md: 20px;
    --nav-height: 78px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #091126 0%, #0c1731 34%, #0a1630 66%, #081124 100%);
    color: var(--ink);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* Shared section styles */
.section-inner {
    width: min(1220px, 100%);
    margin: 0 auto;
    padding: 0 clamp(20px, 4.4vw, 56px);
}

.section-title,
.section-title-light {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 14px;
    font-weight: 750;
}

.section-title {
    color: var(--ink);
}

.section-title-light {
    color: #ffffff;
}

.section-subtitle {
    margin: 0 auto 48px;
    max-width: 780px;
    text-align: center;
    color: var(--ink-muted);
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
    line-height: 1.65;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Reveal animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 120;
    backdrop-filter: blur(12px);
    background: linear-gradient(180deg, rgba(8, 13, 25, 0.42), rgba(8, 13, 25, 0.28));
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-container {
    width: min(1300px, 100%);
    margin: 0 auto;
    padding: 14px clamp(16px, 3.4vw, 34px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(22, 34, 61, 0.12);
    box-shadow: 0 8px 18px rgba(5, 9, 18, 0.2);
}

.nav-logo-img {
    width: 46px;
    height: auto;
}

.nav-wrap {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.8vw, 28px);
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: rgba(235, 242, 255, 0.96);
    font-size: 0.86rem;
    font-weight: 620;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 5px 2px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    z-index: 102;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: #ffffff;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.navbar.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.navbar.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 18, 0.56);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 100;
}

/* Hero */
.hero {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background: #050912;
    box-shadow: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    isolation: isolate;
    z-index: 1;
    min-height: max(560px, 100vh);
    min-height: max(560px, 100svh);
    width: 100%;
    margin: 0;
    padding: clamp(30px, 6vw, 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: clamp(12px, 2vh, 22px);
}

.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(112deg, rgba(7, 13, 37, 0.66) 0%, rgba(9, 18, 44, 0.62) 52%, rgba(9, 22, 53, 0.68) 100%),
        radial-gradient(112% 96% at 84% 14%, rgba(134, 100, 224, 0.27), rgba(134, 100, 224, 0) 62%),
        linear-gradient(180deg, rgba(4, 8, 24, 0.29) 0%, rgba(4, 8, 24, 0.14) 45%, rgba(4, 8, 24, 0.34) 100%);
}

.hero-content {
    max-width: min(1080px, 100%);
}

.hero-overlay::after {
    content: none;
}

.hero-content h1 {
    color: #ffffff;
    font-size: clamp(3rem, 11vw, 9.2rem);
    line-height: 0.92;
    letter-spacing: 0.04em;
    font-weight: 820;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero-content h2 {
    margin-top: 10px;
    color: rgba(223, 234, 255, 0.97);
    font-size: clamp(1.5rem, 5.2vw, 4.3rem);
    line-height: 1;
    font-weight: 480;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: clamp(14px, 3.2vh, 34px);
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 1px solid rgba(227, 238, 255, 0.64);
    background: rgba(9, 17, 35, 0.38);
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(3, 7, 16, 0.35);
    animation: scroll-nudge 1.8s ease-in-out infinite;
}

.hero-scroll-arrow {
    width: 15px;
    height: 15px;
    border-right: 3px solid rgba(240, 247, 255, 0.95);
    border-bottom: 3px solid rgba(240, 247, 255, 0.95);
    transform: rotate(45deg) translate(-1px, -1px);
}

.hero-scroll-indicator:hover,
.hero-scroll-indicator:focus-visible {
    background: rgba(14, 26, 52, 0.62);
    border-color: rgba(245, 250, 255, 0.92);
}

.cta-btn {
    --btn-bg-1: #ffffff;
    --btn-bg-2: #e6efff;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 13px 28px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.93rem;
    font-weight: 700;
    color: #0f1b35;
    background: linear-gradient(140deg, var(--btn-bg-1), var(--btn-bg-2));
    box-shadow: 0 14px 28px rgba(4, 8, 18, 0.35);
}

.cta-btn::after {
    content: "";
    position: absolute;
    top: -150%;
    left: -30%;
    width: 26%;
    height: 420%;
    transform: rotate(24deg);
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
    transition: left 0.7s ease;
}

.cta-btn:hover::after,
.cta-btn:focus-visible::after {
    left: 120%;
}

.cta-btn:hover,
.cta-btn:focus-visible {
    transform: translateY(-2px);
}

/* Partners marquee */
.partners {
    padding: 64px 0 6px;
}

.partners-title {
    width: min(1220px, 100%);
    margin: 0 auto 24px;
    padding: 0 clamp(20px, 4.4vw, 56px);
    color: rgba(223, 234, 255, 0.86);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(42px, 8vw, 130px);
    z-index: 3;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(8, 13, 26, 1), rgba(8, 13, 26, 0));
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(8, 13, 26, 1), rgba(8, 13, 26, 0));
}

.logo-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 26px);
    animation: marquee 28s linear infinite;
}

.logo-track a,
.logo-track > img {
    flex-shrink: 0;
    height: 94px;
    min-width: 174px;
    padding: 16px 22px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #d4def0;
    box-shadow: var(--shadow-soft);
}

.logo-track img {
    width: auto;
    max-width: 150px;
    max-height: 56px;
    object-fit: contain;
}

.logo-track img.logo-main {
    max-height: 72px;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

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

/* About */
.about {
    position: relative;
    overflow: hidden;
    padding: 0 0 clamp(92px, 11vw, 150px);
    --about-pointer-x: 54%;
    --about-pointer-y: 36%;
    --about-secondary-x: 26%;
    --about-secondary-y: 74%;
    --about-intensity: 0.82;
    background: linear-gradient(130deg, #050b1c 0%, #08132c 52%, #0a1839 100%);
}

.about::before,
.about::after {
    content: "";
    position: absolute;
    inset: -32% -20%;
    pointer-events: none;
    will-change: transform, opacity;
}

.about::before {
    background:
        radial-gradient(40% 40% at var(--about-pointer-x) var(--about-pointer-y), rgba(125, 92, 232, calc(0.34 * var(--about-intensity))), rgba(125, 92, 232, 0) 66%),
        radial-gradient(34% 36% at var(--about-secondary-x) var(--about-secondary-y), rgba(89, 150, 255, calc(0.28 * var(--about-intensity))), rgba(89, 150, 255, 0) 70%);
    filter: saturate(112%);
    animation: about-drift-a 12s ease-in-out infinite alternate;
}

.about::after {
    background:
        radial-gradient(54% 62% at 14% 24%, rgba(28, 42, 79, 0.3), rgba(28, 42, 79, 0) 72%),
        radial-gradient(52% 58% at 84% 84%, rgba(32, 51, 92, 0.34), rgba(32, 51, 92, 0) 72%),
        linear-gradient(180deg, rgba(4, 9, 20, 0.42) 0%, rgba(4, 9, 20, 0.12) 50%, rgba(4, 9, 20, 0.5) 100%);
    animation: about-drift-b 16s ease-in-out infinite alternate;
}

.about-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: clamp(14px, 1.9vw, 28px) clamp(20px, 4.4vw, 56px) 0;
    position: relative;
    z-index: 1;
}

.about-text {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
    padding: 0 clamp(6px, 1.4vw, 20px);
}

.about-text h3 {
    margin-bottom: 22px;
    text-align: center;
    font-size: clamp(2.05rem, 4.8vw, 3.9rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: #f7f9ff;
    text-wrap: balance;
    text-shadow: 0 10px 24px rgba(2, 7, 18, 0.62), 0 0 24px rgba(73, 118, 206, 0.28);
}

.about-text p {
    max-width: 980px;
    margin: 0 auto 16px;
    color: rgba(228, 237, 255, 0.95);
    font-size: clamp(1.06rem, 2vw, 1.3rem);
    line-height: 1.78;
    text-shadow: 0 4px 18px rgba(2, 7, 18, 0.78);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-logo-marquee {
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: clamp(24px, 4.2vw, 42px);
    padding-top: clamp(14px, 2vw, 24px);
}

.about-logo-marquee::before {
    background: linear-gradient(to right, rgba(6, 12, 28, 1), rgba(6, 12, 28, 0));
}

.about-logo-marquee::after {
    background: linear-gradient(to left, rgba(6, 12, 28, 1), rgba(6, 12, 28, 0));
}

.about-logo-marquee .logo-track a {
    height: 84px;
    min-width: 164px;
    border-radius: 18px;
}

/* Previous editions */
.past-editions {
    padding: clamp(74px, 9vw, 116px) 0;
    background:
        radial-gradient(circle at 88% 20%, rgba(126, 98, 224, 0.12), rgba(126, 98, 224, 0) 42%),
        linear-gradient(160deg, #081022, #0d1933 58%, #081224);
    position: relative;
    overflow: hidden;
}

.past-editions::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(3, 8, 20, 0.9) 0%, rgba(3, 8, 20, 0.76) 30%, rgba(3, 8, 20, 0.42) 56%, rgba(3, 8, 20, 0.08) 100%);
    pointer-events: none;
}

.editions-map-background {
    position: absolute;
    inset: 0 -16% 0 16%;
    transform: translateX(8%);
    pointer-events: none;
    opacity: 0.56;
    z-index: 0;
}

.editions-map-background-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.past-editions .section-inner {
    position: relative;
    z-index: 2;
}

.editions-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}

.editions-copy {
    max-width: 760px;
    transform: translateX(-56px);
}

.editions-eyebrow {
    margin-bottom: 12px;
    color: rgba(207, 223, 255, 0.84);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 700;
}

.editions-title {
    text-align: left;
    margin-bottom: 14px;
}

.editions-intro {
    color: rgba(219, 231, 255, 0.9);
    line-height: 1.72;
    font-size: clamp(0.98rem, 1.5vw, 1.1rem);
    margin-bottom: 24px;
    max-width: 680px;
}

.edition-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.edition-card {
    background: rgba(17, 29, 56, 0.8);
    border: 1px solid rgba(180, 204, 255, 0.23);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 14px 28px rgba(3, 8, 20, 0.35);
}

.edition-card h4 {
    color: #f3f7ff;
    font-size: 1.03rem;
    line-height: 1.35;
    margin-bottom: 10px;
}

.edition-card p {
    color: rgba(214, 227, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.62;
    margin-bottom: 10px;
}

.edition-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(188, 213, 255, 0.36);
    background: rgba(232, 241, 255, 0.1);
    color: #ebf4ff;
    font-size: 0.78rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.edition-card a:hover,
.edition-card a:focus-visible {
    color: #ffffff;
    background: rgba(232, 241, 255, 0.18);
    border-color: rgba(216, 230, 255, 0.62);
}

/* Challenge cases */
.challenge-cases {
    padding: clamp(74px, 9vw, 116px) 0;
    background:
        radial-gradient(circle at 12% 16%, rgba(108, 165, 255, 0.18), rgba(108, 165, 255, 0) 42%),
        linear-gradient(165deg, #091126, #0e1a34 58%, #091428);
}

.case-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
}

.case-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: rgba(17, 29, 56, 0.8);
    border: 1px solid rgba(180, 204, 255, 0.23);
    border-radius: var(--radius-md);
    padding: clamp(22px, 2.6vw, 30px);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 230, 255, 0.5);
    box-shadow: var(--shadow-card);
}

.case-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 156px;
    height: 102px;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #d4def0;
    box-shadow: var(--shadow-soft);
}

.case-card-logo img {
    width: auto;
    max-width: 100%;
    max-height: 74px;
    object-fit: contain;
}

.case-card-partner {
    color: rgba(207, 223, 255, 0.84);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.case-card-title {
    color: #f3f7ff;
    font-size: clamp(1.06rem, 1.6vw, 1.28rem);
    line-height: 1.32;
    margin-bottom: 10px;
}

.case-card-desc {
    color: rgba(214, 227, 255, 0.9);
    font-size: 0.93rem;
    line-height: 1.66;
}

/* Partner detail section */
.partners-details {
    padding: clamp(76px, 9.6vw, 120px) 0;
    background:
        radial-gradient(circle at 84% 12%, rgba(112, 172, 255, 0.26), rgba(112, 172, 255, 0) 40%),
        radial-gradient(circle at 4% 84%, rgba(73, 116, 213, 0.22), rgba(73, 116, 213, 0) 45%),
        linear-gradient(165deg, #090f1e, #121d35 56%, #111f3b);
    color: #ffffff;
}

.partners-details-title {
    text-align: center;
    font-size: clamp(2rem, 4.3vw, 3.15rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 34px;
    color: #ffffff;
}

.partners-details-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.partner-detail {
    border-radius: 24px;
    background: rgba(17, 28, 53, 0.85);
    border: 1px solid rgba(181, 204, 255, 0.28);
    padding: 26px;
    box-shadow: 0 24px 46px rgba(5, 9, 20, 0.34);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    color: #f3f7ff;
}

.partner-detail-logo {
    width: 100px;
    height: 72px;
    border-radius: 14px;
    border: 1px solid #d6dff0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.partner-detail-logo-main {
    width: 122px;
    height: 82px;
}

.partner-detail-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.partner-detail-text h4 {
    margin-bottom: 8px;
    color: #f3f7ff;
    font-size: 1.1rem;
}

.partner-detail-text p {
    color: rgba(221, 233, 255, 0.88);
    line-height: 1.62;
    font-size: 0.93rem;
}

/* Stories */
.stories-showcase {
    padding: clamp(74px, 9vw, 108px) 0 clamp(52px, 6.2vw, 76px);
    background: linear-gradient(180deg, #081020 0%, #0d1831 56%, #091224 100%);
}

.stories-showcase .section-subtitle {
    margin-bottom: 34px;
}

.stories-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: clamp(18px, 2.2vw, 28px);
    align-items: stretch;
}

.stories-layout-single {
    grid-template-columns: 1fr;
    width: min(980px, 100%);
    margin: 0 auto;
}

.stories-panel {
    border-radius: 24px;
    border: 1px solid rgba(181, 207, 255, 0.24);
    background: rgba(15, 27, 52, 0.8);
    box-shadow: var(--shadow-soft);
    padding: clamp(22px, 2.8vw, 32px);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.stories-panel h4 {
    margin-bottom: 14px;
    color: #f3f7ff;
    font-size: clamp(1.06rem, 1.45vw, 1.28rem);
    font-weight: 680;
    letter-spacing: -0.01em;
}

.stories-voice-scroll {
    display: grid;
    gap: 12px;
    overflow-y: auto;
    padding-right: 8px;
    max-height: clamp(300px, 35vw, 430px);
}

.stories-voice-scroll::-webkit-scrollbar {
    width: 8px;
}

.stories-voice-scroll::-webkit-scrollbar-track {
    background: rgba(159, 185, 236, 0.2);
    border-radius: 999px;
}

.stories-voice-scroll::-webkit-scrollbar-thumb {
    background: rgba(197, 218, 255, 0.56);
    border-radius: 999px;
}

.stories-voice {
    border-radius: 16px;
    border: 1px solid rgba(185, 209, 255, 0.2);
    background: rgba(11, 21, 42, 0.62);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.stories-voice blockquote {
    margin: 0 0 18px;
    color: rgba(226, 236, 255, 0.94);
    line-height: 1.65;
    font-size: clamp(0.95rem, 1.08vw, 1.02rem);
    font-style: italic;
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #f3f7ff;
    font-size: 0.96rem;
}

.testimonial-author span {
    color: rgba(197, 213, 244, 0.86);
    font-size: 0.86rem;
}

.stories-video .video-frame {
    width: 100%;
    margin-top: 2px;
    aspect-ratio: 16 / 9;
    border-radius: 26px;
    border: 1px solid rgba(181, 207, 255, 0.28);
    overflow: hidden;
    box-shadow: 0 30px 58px rgba(4, 9, 20, 0.48);
    background: #000;
    position: relative;
}

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

/* Stats */
.stats {
    padding: clamp(72px, 9vw, 108px) clamp(16px, 4vw, 38px);
    background:
        radial-gradient(circle at 86% 18%, rgba(144, 203, 255, 0.27), rgba(144, 203, 255, 0) 39%),
        radial-gradient(circle at 12% 76%, rgba(87, 126, 229, 0.26), rgba(87, 126, 229, 0) 42%),
        linear-gradient(165deg, #070d1a, #101b32 58%, #0f203e);
}

.stats-inner {
    width: min(1150px, 100%);
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 14px;
}

.stat-item {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
    padding: 18px 12px;
    backdrop-filter: blur(5px);
}

.stat-number {
    display: block;
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    margin-top: 4px;
    color: var(--white-soft);
    font-size: 0.88rem;
    font-weight: 540;
    line-height: 1.3;
}

/* FAQ */
.faq-section {
    padding: clamp(74px, 9vw, 116px) 0;
    background: #081020;
}

.stories-showcase + .faq-section {
    padding-top: clamp(50px, 6.5vw, 82px);
}

.faq-list {
    width: min(860px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 11px;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(180, 206, 255, 0.22);
    background: rgba(17, 28, 53, 0.82);
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(3, 8, 20, 0.42);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 19px 20px 19px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    color: #f3f7ff;
    font-size: 1rem;
    font-weight: 640;
    cursor: pointer;
}

.faq-question:hover,
.faq-question:focus-visible {
    color: #ffffff;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(196, 216, 255, 0.55);
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #dbeaff;
    transition: transform 0.22s ease;
}

.faq-icon::before {
    width: 11px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 11px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.34s ease;
}

.faq-answer p {
    padding: 0 22px 21px;
    color: rgba(219, 232, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.72;
}

.faq-item.is-open .faq-answer {
    max-height: 410px;
}

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}

/* Team */
.team-section {
    padding: clamp(74px, 9vw, 116px) 0;
    background:
        linear-gradient(180deg, #060d1c 0%, #0d1730 48%, #060d1c 100%);
}

.team-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.team-member {
    border-radius: 22px;
    border: 1px solid rgba(177, 202, 255, 0.22);
    background: rgba(16, 27, 52, 0.86);
    box-shadow: var(--shadow-soft);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(3, 8, 20, 0.55);
}

.team-member-photo {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #c9d2e7;
}

.team-member-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-photo-img-lower {
    object-position: center 12%;
}

.team-member-name {
    color: #f3f7ff;
    font-size: 1.16rem;
}

.team-member-desc {
    color: rgba(220, 232, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.68;
}

.team-member-social {
    margin-top: auto;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(140deg, #243e81, #172b5f);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 8px 16px rgba(17, 27, 56, 0.24);
    text-decoration: none;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Final CTA */
.cta-section {
    padding: clamp(74px, 9vw, 120px) clamp(16px, 4vw, 50px);
    text-align: center;
    background:
        linear-gradient(160deg, rgba(3, 9, 22, 0.9), rgba(4, 12, 29, 0.9) 58%, rgba(6, 17, 42, 0.88)),
        radial-gradient(circle at 80% 14%, rgba(118, 168, 255, 0.18), rgba(118, 168, 255, 0) 44%),
        url("cta-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.cta-section .section-title {
    color: #ffffff;
}

.cta-text {
    margin: 0 auto 30px;
    max-width: 760px;
    color: rgba(225, 236, 255, 0.92);
    font-size: clamp(1rem, 1.45vw, 1.14rem);
    line-height: 1.7;
}

.cta-section .cta-btn {
    --btn-bg-1: #ffffff;
    --btn-bg-2: #edf2ff;
    margin-top: 0;
    color: #122043;
    border: 1px solid rgba(18, 31, 66, 0.15);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
    background:
        linear-gradient(180deg, #060c18, #070d1a);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(214, 227, 255, 0.9);
    padding: 44px clamp(16px, 3vw, 34px) 52px;
}

.footer-inner {
    width: min(980px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(222, 233, 255, 0.9);
    font-size: 0.79rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 620;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #ffffff;
}

.footer-supported {
    color: rgba(214, 227, 255, 0.92);
    font-size: 0.88rem;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #d5e0f3;
    background: rgba(255, 255, 255, 0.97);
}

.footer-logo-main {
    width: auto;
    max-height: 42px;
}

.footer-contact {
    text-align: center;
    color: rgba(206, 219, 246, 0.85);
    font-size: 0.86rem;
}

.footer-contact a {
    color: #ffffff;
    font-weight: 620;
}

/* Utility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Motion keyframes */
@keyframes pulse-orb {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: scale(1.08) translate(-14px, 10px);
        opacity: 0.76;
    }
}

@keyframes about-drift-a {
    0% {
        transform: translate(-1%, -1%) scale(1);
    }
    100% {
        transform: translate(2%, 2%) scale(1.05);
    }
}

@keyframes about-drift-b {
    0% {
        transform: translate(1%, 1%) scale(1);
    }
    100% {
        transform: translate(-2%, -2%) scale(1.06);
    }
}

@keyframes scroll-nudge {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.9;
    }
    50% {
        transform: translateX(-50%) translateY(6px);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .editions-layout {
        gap: 0;
    }

    .editions-copy {
        transform: none;
        margin: 0 auto;
    }

    .editions-title {
        text-align: center;
    }

    .editions-eyebrow,
    .editions-intro {
        text-align: center;
    }

    .about-text {
        padding: 0;
    }

    .stories-layout {
        grid-template-columns: 1fr;
    }

    .stories-voice-scroll {
        max-height: clamp(280px, 50vw, 360px);
    }
}

@media (max-width: 900px) {
    .stats-inner {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }

    .partner-detail {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 72px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-wrap {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(290px, 85vw);
        padding: 84px 22px 24px;
        background:
            linear-gradient(180deg, #0a1121, #0c1730);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(100%);
        transition: transform 0.28s ease;
        z-index: 101;
    }

    .navbar.is-open .nav-wrap {
        transform: translateX(0);
    }

    .navbar.is-open .nav-toggle {
        position: fixed;
        top: 14px;
        right: 16px;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 0.91rem;
    }

    .nav-overlay {
        display: block;
    }

    .navbar.is-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .logo-track a,
    .logo-track > img {
        min-width: 145px;
        height: 82px;
        border-radius: 16px;
        padding: 12px 18px;
    }

    .logo-track img {
        max-height: 50px;
    }

    .logo-track img.logo-main {
        max-height: 63px;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-overlay {
        min-height: max(500px, 100svh);
        padding: 26px 20px 32px;
    }

    .hero-scroll-indicator {
        width: 50px;
        height: 50px;
        bottom: 14px;
    }

    .edition-cards {
        grid-template-columns: 1fr;
    }

    .case-cards {
        grid-template-columns: 1fr;
    }

    .editions-map-background {
        opacity: 0.62;
    }

    .cta-btn {
        width: 100%;
    }

    .partners {
        padding-top: 44px;
    }

    .about,
    .partners-details,
    .stories-showcase,
    .stats,
    .faq-section,
    .team-section,
    .cta-section {
        padding-top: 64px;
        padding-bottom: 72px;
    }

    .about {
        padding-top: 0;
    }

    .stories-panel {
        padding: 20px;
    }

    .stories-voice-scroll {
        max-height: 320px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, minmax(130px, 1fr));
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-logos {
        border-radius: 16px;
    }
}

@media (max-width: 420px) {
    .stats-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 8px 14px;
    }
}

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