@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
    --void: #04070a;
    --ink: #071013;
        --gold:rgb(8, 216, 8);
    --teal: #2fcfb6;
    --teal-dim: #1c8f7c;
    --blue-glass: #1c4a63;
    --white: #f4f8f8;
    --text-dim: rgba(244, 248, 248, 0.848);
    --text-faint: rgba(244, 248, 248, 0.42);
    --font-display: 'Archivo', sans-serif;
    --font-body: 'Figtree', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000000d1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

/* Hide loader */

.preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Loader content */

.loader-content {
    text-align: center;
}

/* Loading text */

.loading-text {
    font-size: 13px;
    font-weight: 500;
    color: #f1f0f0;
    font-family: "Archivo";
    margin-top: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Animated dots */

.dots span {
    opacity: 0;
    animation: loadingDots 1.4s infinite;
}

.dots span:nth-child(1) {
    animation-delay: 0s;
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loadingDots {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* PNG image */
.loader-image {
    width: 30px;
    height: auto;
    display: block;
    margin: 14px auto 0;
    object-fit: contain;
    animation: imageFloat 2s ease-in-out infinite;
}

@keyframes imageFloat {

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

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

/* YOUR WEBSITE CONTENT */
.website-content {
    min-height: 100vh;
    padding: 40px;
}

a {
    color: var(--text-dim);
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    background: black;
    overflow-x: hidden;
    font-family: "archivo";
}

/* navigation-bar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    position: fixed;
    z-index: 1000000;
    width: 100%;
    background-color: #04070a51;
    backdrop-filter: blur(10px);
}

.nav-content {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-content ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.nav-content ul li a {
    font-family: "Archivo";
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
}

.nav-icon {
    width: 1.6rem;
}

.nav-action {
    font-family: "Archivo";
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 0.6rem;
    border: 2px solid var(--teal);
    background: none;
    color: white;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

/* ---------------------------------------------
   Hamburger + Mobile Nav
--------------------------------------------- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.2rem;
    height: 2.2rem;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1000001;
}

.nav-hamburger span {
    display: block;
    width: 1.4rem;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), background 0.35s var(--ease);
}

.navbar.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--teal);
}

.navbar.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--teal);
}

.nav-cta-mobile {
    display: none;
}

.btn-mobile-cta {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    border: 1px solid var(--teal);
    background: rgba(47, 207, 182, 0.08);
    color: var(--teal);
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-action {
        display: none;
    }

    .nav-content {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        z-index: 999999;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        background: rgba(4, 7, 10, 0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(244, 248, 248, 0.08);
        transition: max-height 0.5s var(--ease);
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(-8px);
        padding: 1.1rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(244, 248, 248, 0.06);
        transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    }

    .nav-links li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-links li:nth-child(2) {
        transition-delay: 0.10s;
    }

    .nav-links li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-links li:nth-child(4) {
        transition-delay: 0.20s;
    }

    .nav-links li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .nav-links li:nth-child(6) {
        transition-delay: 0.30s;
        border-bottom: none;
        padding: 1.4rem 0;
    }

    .navbar.nav-open .nav-links {
        max-height: 28rem;
    }

    .navbar.nav-open .nav-links li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .nav-cta-mobile {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {

    .nav-links li,
    .nav-links {
        transition: none !important;
    }
}

/* cover */

.cover {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background-image: url(../images/hero_bg.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.cover-numeral {
    position: absolute;
    top: 50%;
    right: -2vw;
    z-index: 1;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-weight: 200;
    font-size: min(46vw, 34rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(244, 248, 248, 0.07);
    pointer-events: none;
    user-select: none;
}

@media (max-width: 1024px) {
    .cover-numeral {
        display: none;
    }
}

.cover-flag {
    position: absolute;
    z-index: 10;
    top: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.534), rgba(0, 0, 0, 0.178));
    padding: 0.7rem 1rem;
    border-radius: 0.5rem 0 0 0.5rem;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
}

.cover-flag .flag {
    width: 1.5rem;
}

.cover-flag p {
    padding: 0;
    margin: 0;
    color: white;
    font-family: "archivo";
    font-weight: 600;
    font-size: 0.7rem;
}

.cover-flag span {
    width: 0.4rem;
    height: 0.4rem;
    background-color: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--teal);
}

@media (max-width: 1024px) {
    .cover-flag {
        top: auto;
        bottom: 1rem;
    }
}

.cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg,
            rgba(2, 4, 5, 0.97) 0%,
            rgba(3, 6, 7, 0.90) 24%,
            rgba(4, 8, 9, 0.55) 46%,
            rgba(4, 9, 10, 0.18) 62%,
            rgba(4, 9, 10, 0.32) 100%),
        linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0) 70%,
            rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.cover-spotlight {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 46% 58% at 72% 46%,
            rgba(47, 207, 182, 0.16) 0%,
            rgba(28, 74, 99, 0.10) 45%,
            rgba(4, 7, 10, 0) 72%),
        radial-gradient(ellipse 62% 80% at 50% 50%,
            rgba(4, 7, 10, 0) 0%,
            rgba(4, 7, 10, 0) 55%,
            rgba(4, 7, 10, 0.62) 100%);
    mix-blend-mode: screen;
    animation: spotlightPulse 7s ease-in-out infinite;
}

@keyframes spotlightPulse {

    0%,
    100% {
        opacity: 0.85;
    }

    50% {
        opacity: 1;
    }
}

.cover-scan {
    position: absolute;
    top: 8%;
    bottom: 20%;
    left: 48%;
    width: 26%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.cover-scan::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20%;
    width: 18%;
    background: linear-gradient(90deg,
            rgba(47, 207, 182, 0) 0%,
            rgba(47, 207, 182, 0.16) 50%,
            rgba(47, 207, 182, 0) 100%);
    animation: scanSweep 6.5s var(--ease) infinite;
    animation-delay: 1.4s;
}

@keyframes scanSweep {
    0% {
        left: -20%;
    }

    38% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.cover-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.cover-content {
    width: 100%;
    max-width: 60rem;
    padding: 0 10vw;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width:1400px) {
    .cover-content {
        justify-content: flex-start;
        margin-top: 5rem;
    }
}

.date-place {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.date-place .date em {
    font-style: normal;
    color: var(--white);
}

.date-place sup {
    font-size: 0.6em;
    margin-left: 0.05em;
    color: var(--white);
}

.date-place .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--teal);
    flex: none;
}

.event-logo {
    width: min(30rem, 60vw);
    margin: 1.5rem 0 1.5rem;
    filter: drop-shadow(0 0 32px rgba(47, 207, 182, 0.14));
}

.event-title-sub {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin: 0 0 1.4rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #cda15b;
}

.event-title-sub::before,
.event-title-sub::after {
    content: "";
    width: 1.6rem;
    height: 1px;
    flex: none;
    background: linear-gradient(90deg, transparent, #cda15b);
}

.event-title-sub::after {
    background: linear-gradient(90deg, #cda15b, transparent);
}

.tagline {
    margin: 0;
    color: var(--teal);
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.45;
    max-width: 30rem;
}

.rule {
    width: 3.5rem;
    height: 2px;
    margin: 1.8rem 0;
    background: linear-gradient(90deg, var(--teal), transparent);
    transform-origin: left center;
}

.meet-create {
    position: relative;
    margin: 0 0 2.4rem;
    padding-left: 1rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-dim);
}

.meet-create::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 0.15em;
    width: 2px;
    background: var(--teal);
}

/* ---------------------------------------------
   CTAs
--------------------------------------------- */
.cta-row {
    display: flex;
    gap: 1rem;
    flex-direction: row;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
    min-width: 13.5rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.btn-title {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
    transition: color 0.3s var(--ease);
}

.btn-sub {
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.btn-arrow {
    flex: none;
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(155deg, #3ee0c5, var(--teal) 55%, #22a892);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--void);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.35) inset, 0 12px 28px -14px rgba(47, 207, 182, 0.65);
}

.btn-primary .btn-sub {
    color: rgba(4, 7, 10, 0.68);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset, 0 16px 34px -12px rgba(47, 207, 182, 0.8);
}

.btn-outline {
    background: rgba(244, 248, 248, 0.04);
    border: 1px solid rgba(244, 248, 248, 0.22);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.btn-outline .btn-sub {
    color: var(--text-faint);
}

.btn-outline:hover {
    transform: translateY(-2px);
    border-color: rgba(47, 207, 182, 0.6);
    background: rgba(47, 207, 182, 0.08);
    box-shadow: 0 12px 28px -16px rgba(47, 207, 182, 0.4);
}

.btn-outline:hover .btn-title {
    color: var(--teal);
}

.scroll-cue {
    position: absolute;
    left: 6vw;
    bottom: 2.6rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.scroll-cue i {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, var(--teal), transparent);
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    transition-delay: calc(var(--d, 0) * 110ms + 200ms);
}

body.is-ready .reveal {
    opacity: 1;
    transform: translateY(0);
}

.rule.reveal {
    transform: translateY(0) scaleX(0);
    transition: opacity 0.5s var(--ease), transform 0.7s var(--ease);
    transition-delay: calc(var(--d, 0) * 110ms + 200ms);
}

body.is-ready .rule.reveal {
    transform: scaleX(1);
}

.cover-countdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 2.2rem;
}

.cover-countdown-label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.countdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 5.6rem;
    padding: 0.6rem 0.4rem 0.5rem;
    background: rgba(244, 248, 248, 0.045);
    border: 1px solid rgba(244, 248, 248, 0.10);
    border-radius: 6px;
    backdrop-filter: blur(6px);
}

.countdown-value {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    margin-top: 0.35rem;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.countdown-sep {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--teal-dim);
    transform: translateY(-0.2rem);
}

@media (min-width: 901px) {
    .cover-countdown {
        position: absolute;
        right: 6vw;
        bottom: 2.6rem;
        align-items: flex-end;
        margin-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .rule.reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .cover-spotlight,
    .cover-scan::after {
        animation: none !important;
    }
}

@media (max-width: 1400px) {
    .cover-overlay {
        align-items: flex-start;
    }

    .cover-content {
        margin-top: 7rem;
    }

    .event-logo {
        width: 27rem;
    }

    .tagline {
        font-size: 1.1rem;
        font-weight: 500;
    }
}

@media (max-width: 900px) {
    .cover-content {
        max-width: 34rem;
    }

    .event-logo {
        width: min(24rem, 68vw);
    }

    .cover-scan {
        left: 40%;
        width: 40%;
    }
}

@media (max-width: 640px) {
    .cover {
        align-items: flex-end;
        padding-bottom: 5rem;
    }

    .cover-content {
        padding: 0 6vw;
    }

    .tagline {
        font-size: 1rem;
    }

    .event-title-sub {
        font-size: 0.68rem;
        gap: 0.6rem;
    }

    .event-title-sub::before,
    .event-title-sub::after {
        width: 1rem;
    }

    .meet-create {
        font-size: 0.68rem;
    }

    .cta-row {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .scroll-cue {
        display: none;
    }

    .cover-scan {
        display: none;
    }

    .countdown-unit {
        min-width: 3rem;
        padding: 0.5rem 0.3rem 0.4rem;
    }

    .countdown-value {
        font-size: 1.2rem;
    }
}

/* ---------------------------------------------
   Experience — expanding accordion strip
--------------------------------------------- */
.experience {
    width: 100%;
    padding: 7.5rem 0;
    background: var(--void);
}

.experience-inner {
    width: 80%;
    margin: 0 auto;
}


.experience-accordion {
    display: flex;
    align-items: stretch;
    height: 32rem;
    border-top: 1px solid rgba(244, 248, 248, 0.12);
    border-bottom: 1px solid rgba(244, 248, 248, 0.12);
    opacity: 0;
    transform: translateY(1.6rem);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.experience-accordion.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-panel {
    position: relative;
    flex: 1 1 0%;
    min-width: 0;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid rgba(244, 248, 248, 0.12);
    transition: flex 0.65s var(--ease);
}

.experience-panel:last-child {
    border-right: none;
}

.experience-panel.is-active {
    flex: 5 1 0%;
}

.experience-panel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.4) brightness(0.55) contrast(1.05);
    transform: scale(1.1);
    transition: filter 0.65s var(--ease), transform 1.4s var(--ease);
}

.experience-panel.is-active .experience-panel-img {
    filter: grayscale(0) brightness(0.68) contrast(1.05);
    transform: scale(1.02);
}

.experience-panel-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            rgba(2, 4, 5, 0.95) 0%,
            rgba(2, 4, 5, 0.55) 30%,
            rgba(2, 4, 5, 0.15) 55%,
            rgba(2, 4, 5, 0.35) 100%);
    pointer-events: none;
    transition: background 0.5s var(--ease);
}

.experience-panel.is-active .experience-panel-overlay {
    background: linear-gradient(to top,
            rgba(2, 4, 5, 0.85) 0%,
            rgba(4, 20, 18, 0.28) 35%,
            rgba(2, 4, 5, 0.02) 62%,
            rgba(2, 4, 5, 0.2) 100%);
}

.experience-panel-index {
    position: absolute;
    z-index: 2;
    top: 1.3rem;
    left: 1.3rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(244, 248, 248, 0.6);
    transition: color 0.4s var(--ease);
}

.experience-panel.is-active .experience-panel-index {
    color: var(--teal);
}

/* collapsed state: vertical running label */
.experience-panel-vertical {
    position: absolute;
    z-index: 2;
    left: 1.3rem;
    bottom: 1.4rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s var(--ease);
}

.experience-panel.is-active .experience-panel-vertical {
    opacity: 0;
    pointer-events: none;
}

/* expanded state: horizontal title row */
.experience-panel-content {
    position: absolute;
    z-index: 2;
    left: 1.6rem;
    right: 1.4rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s var(--ease) 0.15s, transform 0.4s var(--ease) 0.15s;
}

.experience-panel.is-active .experience-panel-content {
    opacity: 1;
    transform: translateY(0);
}

.experience-panel-label {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: var(--white);
    white-space: nowrap;
}

.experience-panel-arrow {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    background: var(--teal);
    border: 1px solid var(--teal);
    color: var(--void);
}

.experience-panel-arrow svg {
    width: 0.75rem;
    height: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
    .experience-accordion {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .experience-panel,
    .experience-panel-img,
    .experience-panel-overlay,
    .experience-panel-vertical,
    .experience-panel-content {
        transition: none !important;
    }
}

@media (max-width: 1400px) {
    .experience-heading {
        font-size: 2.3rem;
    }

    .experience-accordion {
        height: 28rem;
    }

    .experience-panel-label {
        font-size: 1.3rem;
    }
}

@media (max-width: 900px) {
    .experience-accordion {
        flex-direction: column;
        height: auto;
    }

    .experience-panel {
        flex: none;
        height: 4.4rem;
        border-right: none;
        border-bottom: 1px solid rgba(244, 248, 248, 0.12);
        transition: height 0.55s var(--ease);
    }

    .experience-panel:last-child {
        border-bottom: none;
    }

    .experience-panel.is-active {
        height: 16rem;
    }

    .experience-panel-vertical {
        writing-mode: initial;
        transform: none;
        left: 3.2rem;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.82rem;
    }

    .experience-panel-content {
        left: 1.3rem;
        right: 1.2rem;
        bottom: 1.1rem;
    }
}

@media (max-width: 640px) {
    .experience {
        padding: 5.5rem 0;
    }

    .experience-inner {
        width: 88%;
    }

    .experience-heading {
        font-size: 1.9rem;
    }

    .experience-panel-label {
        font-size: 1.15rem;
    }
}



/* ---------------------------------------------
   Stats band
--------------------------------------------- */
.stats-heading {
    color: white;
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    max-width: 30rem;
    margin: 2rem auto;
    line-height: 2.5rem;
}

.em {
    color: var(--teal);
}

.stats-band {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    background: var(--ink);
    border-top: 1px solid rgba(244, 248, 248, 0.08);
    border-bottom: 1px solid rgba(244, 248, 248, 0.08);
    overflow: hidden;
}

.stats-band-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 70% at 15% 0%, rgba(47, 207, 182, 0.08) 0%, rgba(4, 7, 10, 0) 60%),
        radial-gradient(ellipse 50% 70% at 85% 100%, rgba(28, 74, 99, 0.14) 0%, rgba(4, 7, 10, 0) 60%);
}

.stats-inner {
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1.6rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), background 0.3s var(--ease);
    transition-delay: calc(var(--stat-d, 0) * 90ms);
}

.stats-band.is-visible .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:not(:first-child) {
    border-left: 1px solid rgba(244, 248, 248, 0.10);
}

.stat-item::before,
.stat-item::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: rgba(47, 207, 182, 0);
    transition: border-color 0.4s var(--ease);
}

.stat-item::before {
    top: 0;
    left: 1.6rem;
    border-top: 1px solid;
    border-left: 1px solid;
}

.stat-item::after {
    bottom: 0;
    left: 1.6rem;
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.stat-item:hover::before,
.stat-item:hover::after {
    border-color: rgba(47, 207, 182, 0.6);
}

.stat-item:hover {
    background: rgba(47, 207, 182, 0.03);
}

.stat-item-index {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--teal-dim);
    margin-bottom: 1.2rem;
}

.stat-item-value {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: 3.1rem;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    transition: color 0.4s var(--ease);
}

.stat-item:hover .stat-item-value {
    color: var(--teal);
}

.stat-item-label {
    margin-top: 0.9rem;
    font-family: var(--font-display);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.6;
    color: var(--text-faint);
}

@media (max-width: 1400px) {
    .stat-item-value {
        font-size: 2.6rem;
    }
}

@media (max-width: 1100px) {
    .stats-inner {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 3rem;
    }

    .stat-item:nth-child(4) {
        border-left: none;
    }
}

@media (max-width: 640px) {
    .stats-band {
        padding: 4rem 0;
    }

    .stats-inner {
        width: 86%;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2.5rem;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(5) {
        border-left: none;
    }

    .stat-item-value {
        font-size: 2.1rem;
    }
}

/* ---------------------------------------------
   Join — bento feature grid
--------------------------------------------- */
.join {
    position: relative;
    width: 100%;
    padding: 8rem 0;
    background-image: url("../images/join-bg.jpg");
    background-size: cover;
    overflow: hidden;
    background-attachment: fixed;
}

.join-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 60% at 12% 0%, rgba(47, 207, 182, 0.08) 0%, rgba(4, 7, 10, 0) 60%),
        radial-gradient(ellipse 50% 60% at 88% 100%, rgba(28, 74, 99, 0.16) 0%, rgba(4, 7, 10, 0) 60%);
}

.join-inner {
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 0 auto;
}

.join-head {
    max-width: 40rem;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.join-head .overview-tag {
    margin: 0 auto;
}

.join-heading {
    margin: 1.4rem 0 1.2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.16;
    letter-spacing: -0.01em;
    color: var(--white);
}

.join-heading span {
    color: var(--teal);
}

.join-sub {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dim);
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.join-card {
    position: relative;
    padding: 2.2rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(244, 248, 248, 0.10);
    background: rgba(244, 248, 248, 0.025);
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.75s var(--ease), transform 0.6s var(--ease),
        border-color 0.35s var(--ease), background 0.35s var(--ease),
        box-shadow 0.35s var(--ease);
    transition-delay: calc(var(--j-d, 0) * 90ms);
}

.join-grid.is-visible .join-card {
    opacity: 1;
    transform: translateY(0);
}

.join-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 207, 182, 0.4);
    background: rgba(47, 207, 182, 0.035);
    box-shadow: 0 22px 40px -24px rgba(47, 207, 182, 0.45);
}

.join-card--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.8rem;
}

.join-card-num {
    position: absolute;
    top: 1.6rem;
    right: 1.8rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--teal-dim);
}

.join-card-icon {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.6rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(244, 248, 248, 0.14);
    background: rgba(244, 248, 248, 0.04);
    color: var(--teal);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
        color 0.35s var(--ease), transform 0.35s var(--ease);
}

.join-card-icon svg {
    width: 1.4rem;
    height: 1.4rem;
}

.join-card:hover .join-card-icon {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--void);
    transform: scale(1.06) rotate(-4deg);
}

.join-card--wide .join-card-icon {
    grid-row: 1 / 3;
    margin-bottom: 0;
}

.join-card-title {
    margin: 0 0 0.8rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: -0.005em;
    color: var(--white);
}

.join-card--wide .join-card-title {
    margin-top: 0;
}

.join-card-des {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-dim);
}

.join-card--wide .join-card-des {
    max-width: 26rem;
}

@media (prefers-reduced-motion: reduce) {
    .join-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 1400px) {
    .join-heading {
        font-size: 2.3rem;
    }

    .join-card {
        padding: 1.9rem;
    }
}

@media (max-width: 1100px) {
    .join-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .join-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .join {
        padding: 5.5rem 0;
    }

    .join-inner {
        width: 88%;
    }

    .join-heading {
        font-size: 1.9rem;
    }

    .join-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .join-card--wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .join-card--wide .join-card-icon {
        grid-row: auto;
        margin-bottom: 1.6rem;
    }

    .join-card-num {
        top: 1.3rem;
        right: 1.4rem;
    }
}

/* ---------------------------------------------
   Dossier — sticky visual, scroll-linked content
--------------------------------------------- */
.dossier {
    position: relative;
    width: 100%;
    padding: 8rem 0;
    background: var(--void);
    overflow: hidden;
}

.dossier-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 55% at 8% 10%, rgba(47, 207, 182, 0.07) 0%, rgba(4, 7, 10, 0) 60%),
        radial-gradient(ellipse 50% 55% at 95% 90%, rgba(28, 74, 99, 0.15) 0%, rgba(4, 7, 10, 0) 60%);
}

.dossier-inner {
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: start;
}

/* --- visual --- */
.dossier-visual {
    position: sticky;
    top: 6rem;
}

.dossier-visual-frame {
    position: relative;
    aspect-ratio: 3 / 3.6;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(244, 248, 248, 0.10);
    box-shadow: 0 40px 80px -36px rgba(0, 0, 0, 0.65);
}

.dossier-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) brightness(0.82) contrast(1.04);
}

.dossier-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 4, 5, 0.92) 0%, rgba(2, 4, 5, 0.1) 42%, rgba(2, 4, 5, 0) 60%);
    pointer-events: none;
}

.dossier-caption {
    position: absolute;
    left: 1.6rem;
    right: 1.6rem;
    bottom: 1.6rem;
    height: 2.6rem;
}

.dossier-caption-text {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.dossier-caption-text.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* --- content --- */
.dossier-content {
    position: relative;
    padding-left: 2.2rem;
}

.dossier-rail {
    position: absolute;
    top: 0.3rem;
    bottom: 0.3rem;
    left: 0;
    width: 1px;
    background: rgba(244, 248, 248, 0.12);
}

.dossier-rail-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    background: linear-gradient(to bottom, var(--teal), var(--teal-dim));
    will-change: transform;
}

.dossier-block {
    padding: 1.2rem 0;
    opacity: 0.42;
    transition: opacity 0.5s var(--ease);
}

.dossier-block.is-active {
    opacity: 1;
}

.dossier-block-title {
    margin: 0 0 1.2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--white);
    transition: color 0.5s var(--ease);
}

.dossier-block.is-active .dossier-block-title {
    color: var(--teal);
}

.dossier-block-text {
    margin: 0;
    max-width: 32rem;
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-dim);
}

.dropcap {
    float: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3.4rem;
    line-height: 0.78;
    margin: 0.1rem 0.6rem 0 0;
    color: var(--teal);
}

.dossier-divider {
    height: 1px;
    margin: 1.6rem 0;
    background: rgba(244, 248, 248, 0.10);
}

@media (prefers-reduced-motion: reduce) {

    .dossier-block,
    .dossier-block-title,
    .dossier-caption-text {
        transition: none !important;
    }

    .dossier-visual {
        position: static;
    }
}

@media (max-width: 1400px) {
    .dossier-block-title {
        font-size: 1.7rem;
    }

    .dropcap {
        font-size: 2.9rem;
    }
}

@media (max-width: 1100px) {
    .dossier-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dossier-visual {
        position: static;
        max-width: 26rem;
        margin: 0 auto;
    }

    .dossier-content {
        padding-left: 1.6rem;
    }
}

@media (max-width: 640px) {
    .dossier {
        padding: 5.5rem 0;
    }

    .dossier-inner {
        width: 88%;
    }

    .dossier-block-title {
        font-size: 1.4rem;
    }

    .dossier-block-text {
        font-size: 0.9rem;
    }

    .dropcap {
        font-size: 2.3rem;
    }
}

/* ---------------------------------------------
   Value Prop — split heading + interactive list
--------------------------------------------- */
.value-prop {
    position: relative;
    width: 100%;
    padding: 8rem 0;
    background: var(--void);
    border-top: 1px solid rgba(244, 248, 248, 0.08);
    overflow: hidden;
}

/* --- image strip: sized to the natural gutter left by the
   80%-wide centered .value-prop-inner, so it can never overlap
   the heading/list content. height:100% (not 150%) keeps it
   inside the section instead of bleeding into the next one. --- */
.value-img-box {
    position: absolute;
    top: 0;
    left: 0;
    min-width: rem;
    max-width: 50rem;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.value-img {
    display: block;
    width: 90%;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
}

.value-img-fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(4, 7, 10, 0.9) 0%, rgba(4, 7, 10, 0) 20%, rgba(4, 7, 10, 0) 75%, rgba(4, 7, 10, 0.95) 100%),
        linear-gradient(90deg, rgba(4, 7, 10, 0.245) 55%, rgba(4, 7, 10, 0.95) 100%);
}

.value-prop-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 60% at 6% 8%, rgba(47, 207, 182, 0.09) 0%, rgba(4, 7, 10, 0) 60%),
        radial-gradient(ellipse 50% 60% at 96% 100%, rgba(28, 74, 99, 0.16) 0%, rgba(4, 7, 10, 0) 60%);
}

.value-prop-inner {
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
}

.value-prop-head {
    position: sticky;
    top: 8rem;
}

.value-prop-heading {
    position: relative;
    margin: 1.6rem 0 1.6rem;
    padding-left: 1.1rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3.6rem;
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--white);
}

.value-prop-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 0.15em;
    width: 3px;
    background: var(--teal);
}

.value-prop-heading span {
    -webkit-text-stroke: 1px var(--teal);
    color: transparent;
}

.value-prop-sub {
    max-width: 22rem;
    margin: 0;
    padding-left: 1.1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-dim);
}

/* --- list --- */
.value-prop-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(244, 248, 248, 0.10);
}

.value-prop-item {
    position: relative;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 1.6rem;
    padding: 1.9rem 1.4rem;
    border-bottom: 1px solid rgba(244, 248, 248, 0.10);
    cursor: pointer;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease), transform 0.6s var(--ease),
        background 0.35s var(--ease), border-color 0.35s var(--ease), padding-left 0.35s var(--ease);
    transition-delay: calc(var(--v-d, 0) * 90ms);
}

.value-prop-list.is-visible .value-prop-item {
    opacity: 1;
    transform: translateY(0);
}

.value-prop-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--teal);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s var(--ease);
}

.value-prop-item.is-active::before {
    transform: scaleY(1);
}

.value-prop-item.is-active {
    background: rgba(47, 207, 182, 0.035);
    padding-left: 1.8rem;
}

.value-prop-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-faint);
    transition: color 0.35s var(--ease);
}

.value-prop-item.is-active .value-prop-num {
    color: var(--teal-dim);
}

.value-prop-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex: none;
    border-radius: 0.85rem;
    border: 1px solid rgba(244, 248, 248, 0.14);
    background: rgba(244, 248, 248, 0.04);
    color: var(--text-faint);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
        color 0.35s var(--ease), transform 0.35s var(--ease);
}

.value-prop-icon svg {
    width: 1.4rem;
    height: 1.4rem;
}

.value-prop-item.is-active .value-prop-icon {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--void);
    transform: scale(1.05) rotate(-4deg);
}

.value-prop-text {
    min-width: 0;
}

.value-prop-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.005em;
    color: var(--text-faint);
    transition: color 0.35s var(--ease);
}

.value-prop-item.is-active .value-prop-title {
    color: var(--white);
}

.value-prop-des {
    margin: 0;
    max-width: 34rem;
    font-family: var(--font-body);
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--text-faint);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), color 0.35s var(--ease);
}

.value-prop-item.is-active .value-prop-des {
    max-height: 6rem;
    opacity: 1;
    color: var(--text-dim);
}

.value-prop-arrow {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    border: 1px solid rgba(244, 248, 248, 0.14);
    color: var(--text-faint);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
        background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}

.value-prop-arrow svg {
    width: 0.75rem;
    height: 0.75rem;
}

.value-prop-item.is-active .value-prop-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--teal);
    border-color: var(--teal);
    color: var(--void);
}

@media (prefers-reduced-motion: reduce) {
    .value-prop-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 1400px) {
    .value-prop-heading {
        font-size: 3rem;
    }
}

@media (max-width: 1100px) {
    .value-prop-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .value-prop-head {
        position: static;
    }

    .value-prop-item {
        grid-template-columns: auto auto 1fr;
    }

    .value-prop-arrow {
        display: none;
    }

    /* no gutter left once the grid collapses to one column,
       so the side image is dropped rather than left overlapping */
    .value-img-box {
        display: none;
    }
}

@media (max-width: 640px) {
    .value-prop {
        padding: 5.5rem 0;
    }

    .value-prop-inner {
        width: 88%;
    }

    .value-prop-heading {
        font-size: 2.4rem;
    }

    .value-prop-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.6rem 1rem;
    }

    .value-prop-item.is-active {
        padding-left: 1.4rem;
    }

    .value-prop-num {
        display: none;
    }
}

/* ---------------------------------------------
   Themes marquee
--------------------------------------------- */
.themes {
    width: 100%;
    padding: 7rem 0;
    background: var(--void);
    overflow: hidden;
    background-image: url("../images/themes.png");
    background-size: 100%;
    position: relative;
}

.themes-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black, black, black);
    inset: 0;
}

.themes-head {
    width: 80%;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
}

.themes-head .overview-tag {
    margin: 0 auto;
}

.themes-heading {
    margin: 1.4rem 0 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.6rem;
    letter-spacing: -0.01em;
    color: var(--white);
}

.themes-heading span {
    color: var(--teal);
}

.themes-grid {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
    gap: 1rem;
}

.theme-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 1.5rem 1.3rem;
    border-radius: 1rem;
    border: 1px solid rgba(244, 248, 248, 0.10);
    background: rgb(1, 1, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease), transform 0.55s var(--ease),
        border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
    transition-delay: calc(var(--p-d, 0) * 45ms);
}

.themes-grid.is-visible .theme-card {
    opacity: 1;
    transform: translateY(0);
}

.theme-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s var(--ease);
}

.theme-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 207, 182, 0.4);
    background: rgba(47, 207, 182, 0.045);
    box-shadow: 0 18px 34px -20px rgba(47, 207, 182, 0.5);
}

.theme-card:hover::before {
    transform: scaleX(1);
}

.theme-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(244, 248, 248, 0.12);
    background: rgba(244, 248, 248, 0.04);
    color: var(--teal);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
        color 0.35s var(--ease), transform 0.35s var(--ease);
}

.theme-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.theme-card:hover .theme-icon {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--void);
    transform: scale(1.08) rotate(-4deg);
}

.theme-label {
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.4;
    color: var(--text-dim);
    transition: color 0.35s var(--ease);
}

.theme-card:hover .theme-label {
    color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
    .theme-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 640px) {
    .themes {
        padding: 5rem 0;
    }

    .themes-head {
        width: 88%;
    }

    .themes-heading {
        font-size: 2rem;
    }

    .themes-grid {
        width: 88%;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .theme-card {
        padding: 1.2rem 1rem;
        gap: 1rem;
    }
}

/* ---------------------------------------------
   Grow-on-scroll visual section
--------------------------------------------- */
.grow-visual {
    width: 100%;
    padding: 8rem 0 7rem;
    background: var(--void);
    position: relative;
}

.grow-visual-inner {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grow-head {
    max-width: 40rem;
    text-align: center;
    margin-bottom: 3.5rem;
}

.grow-head .overview-tag {
    margin: 0 auto;
}

.grow-heading {
    margin: 1.4rem 0 1.2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.7rem;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--white);
}

.grow-heading span {
    color: var(--teal);
}

.grow-sub {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dim);
}

/* --- growing frame --- */
.grow-frame-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 4.5rem;
}

.grow-frame {
    position: relative;
    width: 20rem;
    aspect-ratio: 16 / 9;
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(244, 248, 248, 0.12);
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
    will-change: width;
}

.grow-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.06);
}

.grow-frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 4, 5, 0.75) 0%, rgba(2, 4, 5, 0) 40%),
        linear-gradient(120deg, rgba(47, 207, 182, 0.14) 0%, rgba(4, 7, 10, 0) 55%);
    pointer-events: none;
}

.grow-frame-tag {
    position: absolute;
    left: 1.1rem;
    bottom: 1rem;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    background: rgba(4, 7, 10, 0.5);
    border: 1px solid rgba(244, 248, 248, 0.14);
    backdrop-filter: blur(6px);
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
}

/* --- stats row below frame --- */
.grow-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.g-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: calc(var(--g-d, 0) * 90ms);
}

.grow-stats.is-visible .g-stat {
    opacity: 1;
    transform: translateY(0);
}

.g-stat:not(:first-child) {
    border-left: 1px solid rgba(244, 248, 248, 0.10);
}

.g-stat-num {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: 2.1rem;
    color: var(--white);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}

.g-stat-label {
    margin-top: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--text-faint);
}

@media (max-width: 1400px) {
    .grow-heading {
        font-size: 2.3rem;
    }

    .grow-frame {
        width: 18rem;
    }

    .g-stat-num {
        font-size: 1.8rem;
    }
}

@media (max-width: 1100px) {
    .grow-stats {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 2.5rem;
    }

    .g-stat:nth-child(4) {
        border-left: none;
    }
}

@media (max-width: 640px) {
    .grow-visual {
        padding: 5.5rem 0;
    }

    .grow-visual-inner {
        width: 88%;
    }

    .grow-heading {
        font-size: 1.9rem;
    }

    .grow-frame {
        width: 14rem !important;
    }

    .grow-stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2rem;
    }

    .g-stat:nth-child(3),
    .g-stat:nth-child(5) {
        border-left: none;
    }
}




/* ---------------------------------------------
   Who Attends
--------------------------------------------- */
.attend {
    position: relative;
    width: 100%;
    padding: 8rem 0;
    background: var(--ink);
    border-top: 1px solid rgba(244, 248, 248, 0.08);
    overflow: hidden;
}

.attend-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 60% at 85% 0%, rgba(47, 207, 182, 0.08) 0%, rgba(4, 7, 10, 0) 60%),
        radial-gradient(ellipse 55% 60% at 10% 100%, rgba(28, 74, 99, 0.16) 0%, rgba(4, 7, 10, 0) 60%);
}

.attend-inner {
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 0 auto;
}

.attend-head {
    max-width: 44rem;
    margin-bottom: 3.5rem;
}

.attend-heading {
    margin: 1.4rem 0 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--white);
}

.attend-heading span {
    color: var(--teal);
}

.attend-callout {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(244, 248, 248, 0.10);
}

.attend-callout-num {
    flex: none;
    font-family: var(--font-display);
    font-weight: 200;
    font-size: 3.6rem;
    color: var(--teal);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.attend-callout p {
    margin: 0;
    max-width: 22rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dim);
}

.attend-lead {
    margin: 0.6rem 0 1.8rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--teal);
    max-width: 34rem;
}

.attend-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.attend-profile-grid .attend-profile {
    padding: 1.8rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(244, 248, 248, 0.10);
    background: rgba(244, 248, 248, 0.025);
}

@media (max-width: 1100px) {
    .attend-profile-grid {
        grid-template-columns: 1fr;
    }
}

/* --- card grid --- */
.attend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.attend-card {
    padding: 1.8rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(244, 248, 248, 0.10);
    background: rgba(244, 248, 248, 0.025);
    backdrop-filter: blur(6px);
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.attend-card:hover {
    border-color: rgba(47, 207, 182, 0.35);
    background: rgba(47, 207, 182, 0.03);
    transform: translateY(-3px);
}

.attend-card-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}

.attend-card-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--teal-dim);
    letter-spacing: 0.08em;
}

.attend-card-head h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    color: var(--white);
}

.donut-wrap {
    position: relative;
    width: 13rem;
    height: 13rem;
    margin: 0.5rem auto 1.6rem;
}

.donut-wrap canvas {
    width: 100% !important;
    height: 100% !important;
}

.donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.2rem;
    pointer-events: none;
}

.donut-center-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.15;
    transition: font-size 0.2s var(--ease);
}

.donut-center-label {
    margin: 0.3rem 0 0;
    font-family: var(--font-display);
    font-size: 0.6rem;
    max-width: 40%;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--text-faint);
}

.donut-legend {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.donut-legend-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-dim);
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.donut-legend-item:hover,
.donut-legend-item.is-active {
    background: rgba(47, 207, 182, 0.07);
    color: var(--white);
}

.donut-legend-dot {
    flex: none;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
}

.donut-legend-pct {
    margin-left: auto;
    flex: none;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--teal);
    font-variant-numeric: tabular-nums;
}

/* --- profile tags --- */
.attend-profile {
    padding: 1.8rem 0 0;
    border-top: 1px solid rgba(244, 248, 248, 0.10);
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.profile-tag {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 248, 248, 0.14);
    background: rgba(244, 248, 248, 0.03);
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-dim);
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.profile-tag:hover {
    border-color: rgba(47, 207, 182, 0.5);
    background: rgba(47, 207, 182, 0.08);
    color: var(--white);
}

@media (max-width: 1400px) {
    .attend-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 1100px) {
    .attend-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .attend {
        padding: 5.5rem 0;
    }

    .attend-inner {
        width: 88%;
    }

    .attend-heading {
        font-size: 2rem;
    }

    .attend-callout {
        flex-direction: column;
        gap: 0.6rem;
    }
}

/* summit */
.summit {
    position: relative;
    width: 100%;
    padding: 8rem 0;
    background: var(--ink);
    border-top: 1px solid rgba(244, 248, 248, 0.08);
    overflow: hidden;
}

.summit-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 60% at 90% 10%, rgba(47, 207, 182, 0.08) 0%, rgba(4, 7, 10, 0) 60%),
        radial-gradient(ellipse 55% 60% at 5% 90%, rgba(28, 74, 99, 0.16) 0%, rgba(4, 7, 10, 0) 60%);
}

.summit-inner {
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.summit-head {
    max-width: 38rem;
}

.summit-heading {
    margin: 1.4rem 0 1.4rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--white);
}

.summit-heading span {
    color: var(--teal);
}

.summit-sub {
    margin: 0;
    max-width: 30rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dim);
}

/* ---------------------------------------------
   Summit showcase — alternating parallax rows
--------------------------------------------- */
.summit-showcase {
    display: flex;
    flex-direction: column;
    gap: 9rem;
    margin-top: 6rem;
}

.summit-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 4.5rem;
}

.summit-row--rev {
    grid-template-columns: 0.95fr 1.05fr;
}

/* --- image column --- */
.summit-row-image {
    position: relative;
    height: 28rem;
    border-radius: 0.4rem;
    overflow: hidden;
    border-top: 2px solid var(--teal);
    box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(3rem);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

.summit-row.is-visible .summit-row-image {
    opacity: 1;
    transform: translateY(0);
}

.summit-row-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(200deg, rgba(4, 7, 10, 0) 55%, rgba(4, 7, 10, 0.5) 100%);
    pointer-events: none;
}

.summit-row-image-inner {
    position: absolute;
    inset: -14% 0;
    will-change: transform;
}

.summit-row-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) brightness(0.88) contrast(1.03);
}

.summit-row-spine {
    position: absolute;
    z-index: 2;
    top: 1.4rem;
    right: 1.4rem;
    writing-mode: vertical-rl;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: rgba(244, 248, 248, 0.55);
    padding: 0.6rem 0.35rem;
    border: 1px solid rgba(244, 248, 248, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    background: rgba(4, 7, 10, 0.3);
}

/* --- text column --- */
.summit-row-text {
    position: relative;
    opacity: 0;
    transform: translateY(2.2rem);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
    transition-delay: 0.18s;
    will-change: transform;
}

.summit-row.is-visible .summit-row-text {
    opacity: 1;
    transform: translateY(0);
}

.summit-row-numeral {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--teal-dim);
    margin-bottom: 1.6rem;
}

.summit-row-numeral::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 1px;
    margin-right: 0.9rem;
    background: var(--teal);
    vertical-align: middle;
}

.summit-row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.6rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(244, 248, 248, 0.14);
    background: rgba(244, 248, 248, 0.04);
    color: var(--teal);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.summit-row-icon svg {
    width: 1.4rem;
    height: 1.4rem;
}

.summit-row:hover .summit-row-icon {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--void);
    transform: scale(1.06) rotate(-4deg);
}

.summit-row-name {
    margin: 0 0 1.1rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--white);
}

.summit-row-des {
    margin: 0;
    max-width: 27rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-dim);
}

@media (prefers-reduced-motion: reduce) {

    .summit-row-image,
    .summit-row-text {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .summit-row-image-inner {
        transform: none !important;
    }
}

@media (max-width: 1400px) {
    .summit-heading {
        font-size: 2.4rem;
    }

    .summit-row-name {
        font-size: 1.7rem;
    }

    .summit-row-image {
        height: 24rem;
    }
}

@media (max-width: 1100px) {

    .summit-row,
    .summit-row--rev {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .summit-row--rev .summit-row-image {
        order: -1;
    }

    .summit-row-spine {
        display: none;
    }
}

@media (max-width: 640px) {
    .summit {
        padding: 5.5rem 0;
    }

    .summit-inner {
        width: 88%;
    }

    .summit-heading {
        font-size: 2rem;
    }

    .summit-showcase {
        gap: 5rem;
    }

    .summit-row-image {
        height: 16rem;
    }

    .summit-row-name {
        font-size: 1.35rem;
    }
}

/* overview */
.overview {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: var(--void);
    display: flex;
    align-items: center;
    padding: 7rem 0;
    position: relative;
}

.over-icon {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 10rem;
    opacity: 0.1;
}

.overview-inner {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.overview-media {
    flex: 0 0 auto;
    width: 42%;
    /* tune this - replaces the 0.85fr sizing */
}

.overview-content {
    flex: 0 0 auto;
    width: 48%;
    /* tune this - replaces the 1fr sizing */
}

/* --- media stack --- */
.overview-media {
    display: flex;
    gap: 1rem;
}

.media-card {
    position: relative;
    flex: 1;
    aspect-ratio: 3 / 4.2;
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(244, 248, 248, 0.10);
    background: var(--ink);
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-card--photo {
    margin-top: 3rem;
}

.media-card--video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 4, 5, 0.85) 0%, rgba(2, 4, 5, 0.15) 45%, rgba(2, 4, 5, 0.55) 100%);
    pointer-events: none;
}

.media-card--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-video-bg {
    filter: brightness(0.8);
}

.media-corner {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 3;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(4, 7, 10, 0.5);
    backdrop-filter: blur(6px);
    color: var(--white);
}

.media-corner svg {
    width: 55%;
    height: 55%;
}

.media-video-label {
    position: absolute;
    left: 1.1rem;
    bottom: 4.2rem;
    z-index: 2;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 0.95;
    color: rgba(244, 248, 248, 0.14);
    letter-spacing: -0.02em;
    pointer-events: none;
}

.media-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    transform: translate(-50%, -50%);
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    border: 1px solid rgba(244, 248, 248, 0.35);
    background: rgba(244, 248, 248, 0.08);
    backdrop-filter: blur(8px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.media-play svg {
    width: 40%;
    height: 40%;
    margin-left: 2px;
}

.media-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--teal);
    border-color: var(--teal);
    color: var(--void);
}

.media-seeall {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(244, 248, 248, 0.08);
    border: 1px solid rgba(244, 248, 248, 0.16);
    backdrop-filter: blur(8px);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.media-seeall svg {
    width: 0.7rem;
    height: 0.7rem;
}

.media-seeall:hover {
    background: rgba(47, 207, 182, 0.14);
    border-color: rgba(47, 207, 182, 0.5);
}

/* --- content column --- */
.overview-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 248, 248, 0.14);
    background: rgba(244, 248, 248, 0.04);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.overview-tag-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 6px var(--teal);
}

.overview-heading {
    margin: 1.4rem 0 2.4rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--white);
}

.overview-detail {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.overview-seal {
    position: relative;
    flex: none;
    width: 7rem;
    height: 7rem;
}

.overview-seal-ring {
    width: 100%;
    height: 100%;
    animation: sealSpin 16s linear infinite;
}

.overview-seal-ring text {
    font-family: var(--font-mono);
    font-size: 8.6px;
    font-weight: 500;
    letter-spacing: 0.5px;
    fill: var(--text-faint);
    text-transform: uppercase;
}

.overview-seal-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--teal);
    color: var(--void);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-seal-core svg {
    width: 40%;
    height: 40%;
    margin-left: 2px;
}

@keyframes sealSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.overview-text {
    margin: 0;
    max-width: auto;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dim);
}

.overview-points {
    list-style: none;
    margin: 1.8rem 0 0;
    padding: 0;
    border-top: 1px solid rgba(244, 248, 248, 0.10);
    max-width: 30rem;
}

.overview-point {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(244, 248, 248, 0.10);
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-dim);
}

.overview-point-icon {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.1rem;
    border-radius: 50%;
    border: 1px solid rgba(47, 207, 182, 0.4);
    background: rgba(47, 207, 182, 0.06);
    color: var(--teal);
}

.overview-point-icon svg {
    width: 0.65rem;
    height: 0.65rem;
}

@media (max-width: 1100px) {
    .overview-points {
        text-align: left;
        margin: 1.8rem auto 0;
    }
}

.agenda-sub {
    margin: 0.8rem 0 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 34rem;
}

.agenda-note {
    margin: 1.8rem 0 0;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.78rem;
    color: var(--text-faint);
}

@media (max-width: 1400px) {
    .overview-inner {
        gap: 3rem;
    }

    .overview-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 1100px) {
    .overview-inner {
        flex-direction: column;
    }

    .overview-media,
    .overview-content {
        width: 100%;
    }

    .overview-media {
        max-width: 28rem;
        margin: 0 auto 3rem;
    }

    .overview-content {
        text-align: center;
    }

    .overview-tag {
        margin: 0 auto;
    }

    .overview-detail {
        flex-direction: column;
        gap: 1.4rem;
    }

    .overview-text {
        max-width: 32rem;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .overview {
        padding: 5rem 0;
    }

    .overview-inner {
        width: 88%;
    }

    .media-card--photo {
        margin-top: 1.5rem;
    }

    .overview-heading {
        font-size: 2rem;
    }

    .media-video-label {
        font-size: 2rem;
    }
}

/* ---------------------------------------------
   Sponsor Value — MEET/DEMONSTRATE/... row list
--------------------------------------------- */
.sponsor-value {
    position: relative;
    width: 100%;
    padding: 8rem 0;
    background: var(--void);
    border-top: 1px solid rgba(244, 248, 248, 0.08);
    overflow: hidden;
}

.sponsor-value-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 55% at 6% 0%, rgba(47, 207, 182, 0.08) 0%, rgba(4, 7, 10, 0) 60%),
        radial-gradient(ellipse 50% 55% at 96% 100%, rgba(28, 74, 99, 0.16) 0%, rgba(4, 7, 10, 0) 60%);
}

.sponsor-value-inner {
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 0 auto;
}

.sponsor-value-head {
    max-width: 44rem;
    margin-bottom: 4rem;
}

.sponsor-value-kicker {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-dim);
    margin-bottom: 1rem;
}

.sponsor-value-heading {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--white);
}

.sponsor-value-heading span {
    color: var(--teal);
}

.sponsor-value-body {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 4rem;
    align-items: start;
}

.sponsor-value-visual {
    position: sticky;
    top: 6rem;
}

.sponsor-value-visual-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 0.6rem;
    overflow: hidden;
    border: 1px solid rgba(244, 248, 248, 0.10);
    box-shadow: 0 40px 80px -36px rgba(0, 0, 0, 0.65);
}

.sponsor-value-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) brightness(0.82) contrast(1.04);
}

.sponsor-value-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 4, 5, 0.85) 0%, rgba(2, 4, 5, 0.05) 50%),
        linear-gradient(120deg, rgba(47, 207, 182, 0.12) 0%, rgba(4, 7, 10, 0) 55%);
    pointer-events: none;
}

.sponsor-value-visual-tag {
    position: absolute;
    left: 1.1rem;
    bottom: 1rem;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    background: rgba(4, 7, 10, 0.5);
    border: 1px solid rgba(244, 248, 248, 0.14);
    backdrop-filter: blur(6px);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

.sponsor-value-list {
    border: 1px solid rgba(244, 248, 248, 0.10);
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(244, 248, 248, 0.015);
}

.sponsor-value-row {
    display: grid;
    grid-template-columns: 13rem 1fr;
    border-bottom: 1px solid rgba(244, 248, 248, 0.10);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s var(--ease), transform 0.6s var(--ease), background 0.3s var(--ease);
    transition-delay: calc(var(--sv-d, 0) * 90ms);
}

.sponsor-value-list.is-visible .sponsor-value-row {
    opacity: 1;
    transform: translateY(0);
}

.sponsor-value-row:last-child {
    border-bottom: none;
}

.sponsor-value-row:hover {
    background: rgba(47, 207, 182, 0.035);
}

.sponsor-value-label {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.7rem 1.6rem;
    border-right: 1px solid rgba(244, 248, 248, 0.10);
}

.sponsor-value-num {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--teal-dim);
}

.sponsor-value-verb {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--white);
}

.sponsor-value-des {
    margin: 0;
    display: flex;
    align-items: center;
    padding: 1.7rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-dim);
}

@media (prefers-reduced-motion: reduce) {
    .sponsor-value-row {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 1400px) {
    .sponsor-value-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 1100px) {
    .sponsor-value-body {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sponsor-value-visual {
        position: static;
        max-width: 22rem;
        margin: 0 auto;
    }

    .sponsor-value-row {
        grid-template-columns: 10rem 1fr;
    }
}

@media (max-width: 640px) {
    .sponsor-value {
        padding: 5.5rem 0;
    }

    .sponsor-value-inner {
        width: 88%;
    }

    .sponsor-value-heading {
        font-size: 2rem;
    }

    .sponsor-value-row {
        grid-template-columns: 1fr;
    }

    .sponsor-value-label {
        border-right: none;
        border-bottom: 1px solid rgba(244, 248, 248, 0.10);
        padding: 1.3rem 1.3rem 0.8rem;
    }

    .sponsor-value-des {
        padding: 0.8rem 1.3rem 1.3rem;
    }
}

/* ---------------------------------------------
   Sponsor Process — meeting-first timeline
--------------------------------------------- */
.sponsor-process {
    position: relative;
    width: 100%;
    padding: 8rem 0;
    background: var(--ink);
    border-top: 1px solid rgba(244, 248, 248, 0.08);
    overflow: hidden;
}

.sponsor-process-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 60% at 90% 0%, rgba(47, 207, 182, 0.08) 0%, rgba(4, 7, 10, 0) 60%),
        radial-gradient(ellipse 55% 60% at 5% 100%, rgba(28, 74, 99, 0.16) 0%, rgba(4, 7, 10, 0) 60%);
}

.sponsor-process-inner {
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 0 auto;
}

.sponsor-process-frame {
    position: relative;
    height: 22rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(244, 248, 248, 0.10);
    box-shadow: 0 40px 80px -36px rgba(0, 0, 0, 0.65);
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-end;
}

.sponsor-process-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) brightness(0.62) contrast(1.05);
}

.sponsor-process-frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(4, 7, 10, 0.2) 30%, rgba(4, 7, 10, 0.88) 100%);
    pointer-events: none;
}

.sponsor-process-frame-content {
    position: relative;
    z-index: 2;
    padding: 2.4rem;
}

.sponsor-process-heading {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.16;
    letter-spacing: -0.01em;
    color: var(--white);
    max-width: 26rem;
}

.sponsor-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.sponsor-process-step {
    position: relative;
    padding: 0 1.8rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s var(--ease), transform 0.6s var(--ease);
    transition-delay: calc(var(--sp-d, 0) * 100ms);
}

.sponsor-process-steps.is-visible .sponsor-process-step {
    opacity: 1;
    transform: translateY(0);
}

.sponsor-process-step:first-child {
    padding-left: 0;
}

.sponsor-process-step:last-child {
    padding-right: 0;
}

.sponsor-process-step:not(:first-child) {
    border-left: 1px solid rgba(244, 248, 248, 0.10);
}

.sponsor-process-step-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--teal-dim);
    margin-bottom: 1.1rem;
}

.sponsor-process-step-tag {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.sponsor-process-step-des {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--text-dim);
}

.sponsor-process-pullquote {
    margin: 4.5rem 0 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(244, 248, 248, 0.10);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.7rem;
    line-height: 1.4;
    letter-spacing: -0.005em;
    color: var(--text-dim);
    max-width: 44rem;
}

.sponsor-process-dim {
    color: var(--text-faint);
}

@media (prefers-reduced-motion: reduce) {
    .sponsor-process-step {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 1400px) {
    .sponsor-process-heading {
        font-size: 2rem;
    }

    .sponsor-process-pullquote {
        font-size: 1.45rem;
    }
}

@media (max-width: 1100px) {
    .sponsor-process-steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2.5rem;
    }

    .sponsor-process-step:nth-child(3) {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .sponsor-process {
        padding: 5.5rem 0;
    }

    .sponsor-process-inner {
        width: 88%;
    }

    .sponsor-process-frame {
        height: 16rem;
        margin-bottom: 3rem;
    }

    .sponsor-process-heading {
        font-size: 1.6rem;
    }

    .sponsor-process-steps {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }

    .sponsor-process-step {
        padding: 0 !important;
        border-left: none !important;
        padding-top: 1.6rem !important;
        border-top: 1px solid rgba(244, 248, 248, 0.10);
    }

    .sponsor-process-step:first-child {
        border-top: none;
        padding-top: 0 !important;
    }

    .sponsor-process-pullquote {
        font-size: 1.25rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }
}


/* ---------------------------------------------
   Agenda
--------------------------------------------- */
.agenda {
    position: relative;
    width: 100%;
    padding: 8rem 0;
    background: var(--ink);
    border-top: 1px solid rgba(244, 248, 248, 0.08);
    overflow: hidden;
}

.agenda-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 60% at 8% 0%, rgba(47, 207, 182, 0.07) 0%, rgba(4, 7, 10, 0) 60%),
        radial-gradient(ellipse 50% 60% at 95% 100%, rgba(28, 74, 99, 0.14) 0%, rgba(4, 7, 10, 0) 60%);
}

.agenda-inner {
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 62rem;
    margin: 0 auto;
}

.agenda-head {
    margin-bottom: 3.5rem;
}

.agenda-heading {
    margin: 1.4rem 0 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.8rem;
    letter-spacing: -0.01em;
    color: var(--white);
}

.agenda-list {
    border-top: 1px solid rgba(244, 248, 248, 0.10);
}

.agenda-row {
    display: grid;
    grid-template-columns: 9.5rem 1fr;
    align-items: baseline;
    gap: 2rem;
    padding: 1.5rem 0.5rem;
    border-bottom: 1px solid rgba(244, 248, 248, 0.10);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease),
        background 0.3s var(--ease), padding-left 0.3s var(--ease);
    transition-delay: calc(var(--ag-d, 0) * 60ms);
}

.agenda-list.is-visible .agenda-row {
    opacity: 1;
    transform: translateY(0);
}

.agenda-row:hover {
    background: rgba(47, 207, 182, 0.035);
    padding-left: 1rem;
}

.agenda-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.agenda-col {
    display: flex;
    flex-direction: column;
}

.agenda-col:first-child {
    padding-right: 2.5rem;
    border-right: 1px solid rgba(244, 248, 248, 0.10);
}

.agenda-col-head {
    margin-bottom: 1rem;
}

.agenda-col-tag {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--teal-dim);
    margin-bottom: 0.5rem;
}

.agenda-col-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.005em;
    color: var(--white);
}

.agenda-col .agenda-list {
    flex: 1;
}

.agenda-col .agenda-row {
    grid-template-columns: 7rem 1fr;
    gap: 1rem;
    padding: 1.1rem 0.2rem;
}

.agenda-col .agenda-name {
    font-size: 0.85rem;
}

.agenda-cta {
    margin-top: 2.5rem;
}

@media (max-width: 1400px) {
    .agenda-columns {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .agenda-columns {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .agenda-col:first-child {
        padding-right: 0;
        border-right: none;
        padding-bottom: 2.5rem;
        border-bottom: 1px solid rgba(244, 248, 248, 0.10);
    }

    .agenda-col .agenda-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
}

.agenda-time {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--teal);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.agenda-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dim);
    transition: color 0.3s var(--ease);
}

.agenda-row:hover .agenda-name {
    color: var(--white);
}

.agenda-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.3rem;
    border: 1px dashed rgba(244, 248, 248, 0.22);
    border-radius: 0.6rem;
    background: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
        color 0.3s var(--ease), gap 0.3s var(--ease);
}

.agenda-cta svg {
    width: 0.9rem;
    height: 0.9rem;
    transition: transform 0.3s var(--ease);
}

.agenda-cta:hover {
    border-style: solid;
    border-color: rgba(47, 207, 182, 0.5);
    background: rgba(47, 207, 182, 0.06);
    color: var(--teal);
    gap: 0.95rem;
}

.agenda-cta:hover svg {
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .agenda-row {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 1400px) {
    .agenda-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 900px) {
    .agenda-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
}

@media (max-width: 640px) {
    .agenda {
        padding: 5.5rem 0;
    }

    .agenda-inner {
        width: 88%;
    }

    .agenda-heading {
        font-size: 2rem;
    }

    .agenda-row {
        padding: 1.2rem 0.3rem;
    }

    .agenda-name {
        font-size: 0.88rem;
    }
}

/* ---------------------------------------------
   Footer — simple, no boxes
--------------------------------------------- */
.site-footer {
    width: 100%;
    padding: 6rem 0 2.5rem;
    background: var(--void);
    border-top: 1px solid rgba(244, 248, 248, 0.08);
}

.footer-inner {
    width: 80%;
    margin: 0 auto;
}

/* --- top row: org + social --- */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-org {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.footer-org-logo {
    height: 1.7rem;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-org-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.footer-social a {
    display: flex;
    color: var(--text-faint);
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-social svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: currentColor;
}

.footer-social a:hover {
    color: var(--teal);
    transform: translateY(-2px);
}

/* --- divider --- */
.footer-rule {
    height: 1px;
    margin: 3rem 0;
    background: rgba(244, 248, 248, 0.10);
}

/* --- contacts --- */
.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    text-decoration: none;
}

.footer-contact-label {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    transition: color 0.3s var(--ease);
}

.footer-contact-mail {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.005em;
    background-image: linear-gradient(var(--teal), var(--teal));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 1px;
    transition: color 0.3s var(--ease), background-size 0.35s var(--ease);
    padding-bottom: 0.15rem;
}

.footer-contact:hover .footer-contact-label {
    color: var(--teal-dim);
}

.footer-contact:hover .footer-contact-mail {
    color: var(--teal);
    background-size: 100% 1px;
}

/* --- legal --- */
.footer-legal {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-faint);
}

.footer-legal a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.footer-legal a:hover {
    color: var(--teal);
}

@media (max-width: 900px) {
    .footer-contacts {
        flex-direction: column;
        gap: 1.8rem;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 4.5rem 0 2rem;
    }

    .footer-inner {
        width: 88%;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-rule {
        margin: 2.2rem 0;
    }

    .footer-contact-mail {
        font-size: 1rem;
    }
}

/* ============ standalone enquiry pages (agenda / solutions provider / sponsor) ============ */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--void);
    padding: clamp(120px, 14vw, 160px) clamp(24px, 6vw, 72px) clamp(64px, 8vw, 96px);
    overflow: hidden;
}

.page-hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 0%, rgba(47, 207, 182, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(205, 170, 109, 0.12) 0%, transparent 60%);
}

.page-form-wrap {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 28px;
    text-decoration: none;
    border-bottom: 1px solid rgba(244, 248, 248, 0.22);
    padding-bottom: 2px;
}

.back-home-link:hover {
    color: var(--white);
}

.form-heading {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    letter-spacing: -0.5px;
    color: var(--white);
    margin: 0 0 26px;
}

.form-message {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    color: rgb(3, 175, 3);
    margin: 0 0 20px;
}

.form .inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 22px;
}

.form .inputs input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(244, 248, 248, 0.04);
    border: 1px solid rgba(244, 248, 248, 0.10);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Figtree', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.form .inputs input::placeholder {
    color: var(--text-faint);
}

.form .inputs input:focus {
    border-color: var(--teal-dim);
    background: rgba(244, 248, 248, 0.07);
}

.del-amount-box {
    margin-bottom: 22px;
    padding: 18px 20px;
    border: 1px solid rgba(244, 248, 248, 0.10);
    border-radius: 6px;
    background: rgba(244, 248, 248, 0.03);
}

.del-price-input-box label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 0.94rem;
    color: var(--white);
    cursor: pointer;
}

.del-price-input-box sup {
    color: #cda15b;
}

.del-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.del-list li {
    position: relative;
    padding-left: 18px;
    font-family: 'Figtree', sans-serif;
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--text-dim);
}

.del-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cda15b;
}

.form-interest {
    margin-bottom: 22px;
}

.in-h {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.in-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.in-box label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(244, 248, 248, 0.10);
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    font-size: 0.82rem;
    color: var(--text-dim);
    transition: border-color 0.25s ease, color 0.25s ease;
}

.in-box label:has(input:checked) {
    border-color: var(--teal-dim);
    color: var(--white);
}

.check-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.checks label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checks input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1px solid rgba(244, 248, 248, 0.22);
    border-radius: 4px;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease;
}

input:checked+.custom-checkbox {
    background: var(--teal);
    border-color: var(--teal);
}

input:checked+.custom-checkbox::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid var(--void);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checks .lt {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 0.76rem;
    line-height: 1.55;
    color: var(--text-faint);
}

.form .f-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: 999px;
    background: var(--teal);
    border: 1px solid var(--teal);
    cursor: pointer;
    overflow: hidden;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.form .f-btn:hover {
    background: var(--teal-dim);
    border-color: var(--teal-dim);
}

.f-btn-t {
    position: relative;
    z-index: 1;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--void);
}

.form-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(244, 248, 248, 0.10);
}

.form-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

input[type="checkbox"] {
    appearance: none;
}

@media (max-width: 900px) {
    .page-form-wrap {
        grid-template-columns: 1fr;
    }

    .form-img-box {
        order: -1;
        aspect-ratio: 16/9;
    }

    .form .inputs {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   DUPLICATE-ENQUIRY POPUP
   ===================================================== */

.wgs-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 40, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.wgs-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.wgs-popup-box {
  background: #fff;
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  padding: 28px 26px 22px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(10px);
  transition: transform 0.2s ease;
}

.wgs-popup-overlay.is-visible .wgs-popup-box {
  transform: translateY(0);
}

.wgs-popup-title {
  font-size: 18px;
  font-weight: 700;
  color: #2fcfb6;
  margin-bottom: 10px;
}

.wgs-popup-message {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
}

.wgs-popup-close {
  background: #2fcfb6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.wgs-popup-close:hover {
  background: #2fcfb6;
}

/* =====================================================
   SUBMIT BUTTON LOADER
   ===================================================== */

.f-btn {
  position: relative;
}

.f-btn.is-loading .f-btn-t {
  visibility: hidden;
}

.f-btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wgs-spin 0.7s linear infinite;
}

@keyframes wgs-spin {
  to { transform: rotate(360deg); }
}
