/* ============ TOKENS ============ */
:root {
    --white:        #fff;
    --black:        #000;
    --midnight:     #0F172A;
    --midnight-2:   #0b1322;   /* deeper sections / footer */
    --midnight-3:   #162133;   /* raised surfaces — cards, banner */
    --blue:         #2563EB;
    --green:        #00c886;
    --text-muted:   #334155;   /* secondary / muted text on light bg */
    --surface-light:#F2F2F8;
    --amber:        #f59e0b;

    /* RGB triplets for rgba() compositing */
    --white-rgb:    255, 255, 255;
    --black-rgb:    0, 0, 0;
    --midnight-rgb: 15, 23, 42;
    --blue-rgb:     37, 99, 235;
    --green-rgb:    0, 200, 134;

    --line:      rgba(var(--midnight-rgb), .10);
    --line-dark: rgba(var(--white-rgb), .10);

    --diag: 12deg;
    --skew-x:   skewX(calc(var(--diag) * -1));
    --unskew-x: skewX(var(--diag));
    --display: 'Bebas Neue', 'Helvetica Neue', sans-serif;
    --serif: 'Instrument Serif', Georgia, serif;
    --body: 'DM Sans', system-ui, sans-serif;
    --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
img { display: block; max-width: 100%; }

.lp {
    font-family: var(--body);
    color: var(--midnight);
    background: var(--white);
    font-size: 1rem;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.lp img { max-width: 100%; display: block; }
.lp a { text-decoration: none; }
.lp a:not(.btn) { color: inherit; }
.lp button { cursor: pointer; }
.lp button:not(.btn) { font: inherit; border: none; background: none; }

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

/* ============ TYPOGRAPHY ============ */
.kicker {
    display: inline-block;
    font-family: var(--body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.kicker--light { color: var(--white); }

.section-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.75rem, 6vw, 5.25rem);
    line-height: .92;
    letter-spacing: .005em;
    margin: 0 0 18px;
    color: var(--midnight);
}

.section-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--blue);
    font-size: .92em;
}

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

.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; }

.copy-strong { font-weight: 700; }
.copy-accent { font-weight: 700; color: var(--green); }
.copy-accent-and { color: var(--white); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--white);
    padding: 8px 18px;
    position: relative;
    backdrop-filter: blur(6px);
    transform: var(--skew-x);
    border: 1px solid rgba(var(--white-rgb), .18);
    background: rgba(var(--white-rgb), .04);
    margin-bottom: 20px;
}

.eyebrow > * { transform: var(--unskew-x); }

.eyebrow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(var(--green-rgb), .25);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .15s ease, color .15s ease, background .15s ease, box-shadow .15s ease;
    background: transparent;
    border: none;
    border-radius: .5rem;
}

.btn--primary { background: var(--green); color: var(--midnight); }
.btn--primary:hover { background: color-mix(in srgb, var(--green) 85%, var(--black)); transform: translateY(-1px); color: var(--midnight); }

.btn--secondary { background: var(--blue); color: var(--white); }
.btn--secondary:hover { background: color-mix(in srgb, var(--blue) 85%, var(--black)); transform: translateY(-1px); }

.btn--ghost { background: rgba(var(--white-rgb), .08); color: var(--white); box-shadow: inset 0 0 0 1px rgba(var(--white-rgb), .55); }
.btn--ghost:hover { background: rgba(var(--white-rgb), .14); box-shadow: inset 0 0 0 1px var(--white); transform: translateY(-1px); }

.btn--link { background: transparent; padding: 14px 0; color: var(--green); }
.btn--link:hover { background: transparent; color: color-mix(in srgb, var(--green) 80%, var(--white)); transform: translateY(-1px); }

/* ============ NAV ============ */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--midnight);
    color: var(--white);
    border-bottom: 1px solid var(--line-dark);
}

.nav__row {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 14px 28px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.nav-logo-img { height: 36px; width: auto; object-fit: contain; }

.nav__right { margin-left: auto; display: flex; align-items: center; gap: 18px; }

.lang {
    display: flex;
    align-items: center;
    font-size: .8rem;
    letter-spacing: .12em;
    border: 1px solid rgba(var(--white-rgb), .2);
    border-radius: 99px;
    padding: 2px;
}
.lang__btn {
    color: rgba(var(--white-rgb), .45);
    transition: color .15s ease, background-color .15s ease;
    text-decoration: none;
    padding: 3px 10px;
    border-radius: 99px;
}
.lang__btn:hover { color: rgba(var(--white-rgb), .75); }
.lang__btn.lang__active {
    color: rgba(var(--white-rgb), .9);
    font-weight: 600;
    background-color: rgba(var(--white-rgb), .15);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    background: var(--midnight);
    color: var(--white);
    overflow: hidden;
    padding: 40px 0 36px;
    min-height: calc(90vh - 65px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__bg { position: absolute; inset: 0; background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-2) 100%); }

.hero__video-side { position: absolute; inset: 0; z-index: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(102deg, var(--midnight) 0%, var(--midnight) 28%, rgba(var(--midnight-rgb), 0.93) 40%, rgba(var(--midnight-rgb), 0.6) 52%, rgba(var(--midnight-rgb), 0.15) 68%, transparent 82%);
    pointer-events: none;
}

.hero__shade {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(102deg, transparent 0 80px, rgba(var(--white-rgb), .012) 80px 81px);
    pointer-events: none;
    z-index: 1;
    -webkit-mask-image: linear-gradient(102deg, var(--black) 0% 45%, transparent 65%);
    mask-image: linear-gradient(102deg, var(--black) 0% 45%, transparent 65%);
}

.hero__field {
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero__field svg { width: 100%; height: 100%; }

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    min-height: 480px;
}

.hero__copy { display: flex; flex-direction: column; }

.hero__h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(3rem, 7vw, 6.25rem);
    line-height: .88;
    letter-spacing: .005em;
    margin: 16px 0 16px;
}

.hero__h1-sub {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: .62em;
    color: var(--blue);
    letter-spacing: 0;
    line-height: 1;
    margin-top: 8px;
}

.hero__lede { font-size: 1rem; color: var(--white); max-width: 480px; font-weight: 400; }
.hero__lede b { font-weight: 600; }

.hero__cta { display: flex; gap: 14px; margin: 18px 0 22px; flex-wrap: wrap; }

.countdown { display: flex; align-items: flex-end; gap: 10px; }

.countdown__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(var(--white-rgb), .05);
    border: 1px solid rgba(var(--white-rgb), .1);
    min-width: 60px;
    transform: var(--skew-x);
}

.countdown__cell > * { transform: var(--unskew-x); display: block; }
.countdown__num { font-family: var(--display); font-size: 1.625rem; letter-spacing: .04em; line-height: 1; }
.countdown__lab { font-size: 0.85rem; letter-spacing: .18em; color: var(--white); text-transform: uppercase; font-weight: 600; }
.countdown__sep { font-family: var(--display); font-size: 1.25rem; color: var(--white); }
.countdown__until { font-size: 0.85rem; color: var(--white); margin-top: 8px; letter-spacing: .06em; font-weight: 500; }

/* ============ COMING SOON TAG ============ */
@keyframes coming-soon-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.coming-soon-tag {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    white-space: nowrap;
    padding: 8px 24px;
    border-radius: 99px;
    border: 2px solid var(--green);
    background: rgba(var(--green-rgb), .20);
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(var(--green-rgb), .5);
    animation: coming-soon-pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

.coming-soon-tag__phrase { white-space: nowrap; }

.hero__launch-line {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(var(--white-rgb), .55);
    margin: -14px 0 20px;
}

.coming-soon-tag__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(var(--green-rgb), .25);
    flex-shrink: 0;
    margin-right: 12px;
}

/* ============ SCROLL CUE ============ */
.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(var(--white-rgb), 0.7);
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity .4s ease, color .2s;
    animation: scroll-cue-fade-in 1.2s ease 1.5s both;
}

.scroll-cue:hover { color: var(--white); opacity: 1; cursor: pointer; }

.scroll-cue svg {
    animation: scroll-cue-bounce 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(var(--green-rgb), 0.5));
}

@keyframes scroll-cue-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

@keyframes scroll-cue-fade-in {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
    background: var(--midnight-2);
    color: var(--white);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    position: relative;
    overflow: hidden;
}

.trust-strip__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 28px);
    padding: 18px clamp(12px, 3vw, 28px);
    flex-wrap: nowrap;
}

.trust-strip__item {
    font-size: clamp(.7rem, 1.4vw, .85rem);
    letter-spacing: .14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-weight: 800;
    white-space: nowrap;
}

.trust-strip__sep--dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

@media (max-width: 860px) {
    .join__watermark {
        top: 15%;
        transform: translate(-80%, -150%) !important;
    }

    .trust-strip__row {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }

    .trust-strip__sep--dot { display: none; }

    .trust-strip__item {
        padding: 6px 0;
        font-size: .75rem;
        color: var(--white);
        gap: 12px;
    }

    .trust-strip__item svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        background: var(--green);
        color: var(--midnight-2);
        border-radius: 50%;
        padding: 4px;
        box-sizing: border-box;
        stroke: var(--midnight-2);
    }
}

/* ============ HOW IT WORKS ============ */
.how {
    min-height: 100vh;
    padding: 120px 0 140px;
    background: var(--surface-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900' fill='none' stroke='%230F172A' stroke-width='1' stroke-opacity='0.04'><line x1='800' y1='0' x2='800' y2='900'/><circle cx='800' cy='450' r='150'/></svg>");
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.how > .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.how__head {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.how__head .section-title { margin-bottom: 0; }

.track {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    padding-top: 60px;
    align-self: start;
}

.track__rail {
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    height: 2px;
    background: rgba(var(--midnight-rgb), .08);
    z-index: 0;
}

.track__rail-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--green) 0%, var(--blue) 50%, var(--midnight) 100%);
    transform-origin: left center;
    transform: scaleX(0);
}

.track__rail-fill.is-animating { animation: rail-grow 1.6s ease-out forwards; }

@keyframes rail-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.track__rail-dot {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 2px solid var(--midnight);
    transform: translate(-50%, -50%) rotate(45deg);
}

.track__rail-dot:nth-child(2) { left: 0%;   border-color: var(--green); }
.track__rail-dot:nth-child(3) { left: 50%;  border-color: var(--blue); }
.track__rail-dot:nth-child(4) { left: 100%; border-color: var(--midnight); background: var(--midnight); }

.phase { position: relative; display: flex; flex-direction: column; }

.phase__card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 32px 28px 28px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease;
}

.phase__card:hover { transform: translateY(-3px); }

.phase__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--text-muted);
}

.phase--1 .phase__card::before { background: var(--green); }
.phase--2 .phase__card::before { background: var(--blue); }
.phase--3 .phase__card::before { background: var(--midnight); }

.phase__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--midnight);
    color: var(--white);
    margin-bottom: 20px;
    border-radius: 50%;
}

.phase--1 .phase__icon { background: var(--green); color: var(--midnight); }
.phase--2 .phase__icon { background: var(--blue); }

.phase__title {
    font-family: var(--display);
    font-size: 2.125rem;
    letter-spacing: .02em;
    font-weight: 400;
    margin: 0 0 10px;
    line-height: 1;
}

.phase__copy { font-size: 1rem; color: var(--text-muted); margin: 0 0 22px; line-height: 1.55; }

/* ============ AUDIENCES ============ */
.audiences {
    padding: 120px 0;
    background: var(--midnight);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.audiences::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, rgba(var(--white-rgb), .012) 0 80px, transparent 80px 160px);
    pointer-events: none;
}

.audiences::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900' fill='none' stroke='white' stroke-width='1' stroke-opacity='0.07'><line x1='800' y1='0' x2='800' y2='900'/><circle cx='800' cy='450' r='150'/><rect x='0' y='225' width='220' height='450'/><rect x='1380' y='225' width='220' height='450'/></svg>");
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.audiences > .container { position: relative; z-index: 1; }
.audiences .section-title { color: var(--white); }
.audiences .section-title em { color: var(--green); }
.audiences .kicker { color: var(--white); }

.twins {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    border: 1px solid var(--line-dark);
    background: rgba(var(--white-rgb), .02);
    border-radius: 8px;
    overflow: hidden;
}

.twin {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(var(--white-rgb), .015);
    transition: background .25s ease;
}

.twin:hover { background: rgba(var(--white-rgb), .04); }

.twin::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3; }
.twin--parents::before { background: var(--green); }
.twin--players::before { background: var(--blue); }

.twin__photo { position: relative; height: 240px; overflow: hidden; border-bottom: 1px solid var(--line-dark); }
.twin__photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.twin__photo::after { content: ''; position: absolute; inset: 0; background: rgba(var(--midnight-rgb), .55); z-index: 1; }

.twin__chip {
    position: absolute;
    left: 24px;
    bottom: 20px;
    z-index: 2;
    font-family: var(--body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 8px 18px;
    background: rgba(var(--midnight-rgb), .78);
    border: 1px solid rgba(var(--white-rgb), .14);
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: var(--skew-x);
}

.twin__chip > * { transform: var(--unskew-x); }

.twin__chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.twin--parents .twin__chip { color: var(--green); }
.twin--parents .twin__chip::before { background: var(--green); box-shadow: 0 0 0 3px rgba(var(--green-rgb), .25); }
.twin--players .twin__chip { color: color-mix(in srgb, var(--blue) 48%, white); }
.twin--players .twin__chip::before { background: var(--blue); box-shadow: 0 0 0 3px rgba(var(--blue-rgb), .3); }

.twin__body { padding: 40px 36px 44px; display: flex; flex-direction: column; flex: 1; }

.twin__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 2.625rem;
    line-height: .95;
    letter-spacing: .005em;
    margin: 0 0 18px;
    color: var(--white);
}

.twin__copy { font-size: 1rem; color: var(--white); margin: 0 0 16px; line-height: 1.6; }

.twin__list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.twin__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--white); }

.twin__cta { display: flex; align-items: center; gap: 16px; margin-top: auto; flex-wrap: wrap; }

.twins__divider { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 1px; background: var(--line-dark); position: relative; overflow: visible; z-index: 4; }
.twins__divider-line { flex: 1; width: 1px; background: linear-gradient(transparent, rgba(var(--white-rgb), .15), transparent); }
.twins__divider-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--green) 0 50%, var(--blue) 50% 100%);
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 0 4px var(--midnight), 0 0 24px rgba(var(--white-rgb), .15);
    z-index: 3;
}

/* ============ TRUST SECTION ============ */
.trust-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--midnight-2);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.trust-section__media {
    position: relative;
    min-height: 540px;
    background: linear-gradient(135deg, var(--midnight-2), var(--midnight-3));
    border-right: 1px solid var(--line-dark);
    overflow: hidden;
}

.trust-section__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }

.trust-section__inner { padding: 96px 64px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 3; }

.trust-section__copy { font-size: 1rem; color: var(--white); margin: 0 0 28px; line-height: 1.65; font-weight: 400; }
.trust-section__copy:last-of-type { margin-bottom: 0; }
.trust-section__copy--lead { font-weight: 400; font-size: 1.1rem; }
.trust-section__copy.trust-section__copy--lead { margin-bottom: 28px; }

.trust-section__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.trust-section__features li {
    position: relative;
    padding: 18px 20px 18px 24px;
    background: var(--midnight-3);
    border: 1px solid var(--line-dark);
}

.trust-section__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--green);
}

.trust-section__feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 6px;
}

.trust-section__feature-copy {
    font-size: .95rem;
    color: var(--white);
    opacity: .85;
    line-height: 1.6;
    margin: 0;
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 38%;
    background: linear-gradient(to bottom, transparent, var(--midnight));
    pointer-events: none;
    z-index: 2;
}

/* ============ FOUNDING FAMILY ============ */
.founding {
    min-height: 100vh;
    padding: 120px 0 0;
    background: var(--surface-light);
    display: flex;
    flex-direction: column;
}

.founding > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founding__intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.founding__list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
}

.founding__list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--midnight);
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 20px 22px;
    transition: transform .2s ease;
}

.founding__list li:hover { transform: translateY(-3px); }

.founding__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--green);
}

.founding__check {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    padding: 3px;
    border-radius: 50%;
    background: rgba(var(--green-rgb), .15);
    color: var(--green);
}

/* Full-bleed band — below the text content, flush with the section's bottom edge */
.founding__carousel-wrap {
    position: relative;
    width: 100%;
    margin-top: 56px;
}

.founding__carousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.founding__carousel::-webkit-scrollbar { display: none; }

.founding__carousel-track {
    display: flex;
    flex-direction: row;
    gap: 4px;
    width: max-content;
}

.founding__carousel-track img {
    width: 360px;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.founding__carousel-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(var(--white-rgb), .9);
    color: var(--midnight);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(var(--black-rgb), .18);
    transition: background-color .15s ease, transform .15s ease;
}

.founding__carousel-nav--prev { left: 20px; }
.founding__carousel-nav--next { right: 20px; }

.founding__carousel-nav:hover { background: var(--white); transform: translateY(-50%) scale(1.06); }

/* ============ BALL BULLET ============ */
.twin__bullet-ball {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: var(--green);
}

.twin--players .twin__bullet-ball { color: var(--blue); }

/* ============ TWIN TAGLINE ============ */
.twin__tagline {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    margin: 4px 0 20px;
    line-height: 1.5;
}

/* ============ STORIES ============ */
.stories {
    padding: 200px 0 160px;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.stories__wing {
    position: absolute;
    inset: 0;
    display: grid;
    gap: 3px;
}

.stories__wing--left {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(12, 1fr);
    clip-path: polygon(0 0, 50% 42%, 0 100%);
}

.stories__wing--right {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(12, 1fr);
    clip-path: polygon(100% 0, 50% 42%, 100% 100%);
}

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

.stories__wing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--midnight-rgb), .58);
    pointer-events: none;
}

.stories__wing--left::after,
.stories__wing--right::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 80% at 50% 42%, var(--midnight) 0%, transparent 70%);
    opacity: .6;
}

.stories__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 55% at 50% 42%, var(--midnight) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.stories > .container { position: relative; z-index: 2; }
.stories .section-head { margin-bottom: 76px; max-width: none; }

.stories__mobile-reel {
    display: none;
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
}
.stories__mobile-reel-track {
    display: flex;
    gap: 6px;
    animation: reelScroll 45s linear infinite;
    width: max-content;
}
.stories__mobile-reel-track img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    opacity: .85;
}
@keyframes reelScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.stories .section-title {
    color: var(--white);
    font-size: clamp(3.25rem, 7.5vw, 6.25rem);
}
.stories .section-title em { color: var(--green); }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.quote {
    margin: 0;
    padding: 36px 30px;
    background: var(--midnight-3);
    border: 1px solid rgba(var(--white-rgb), .1);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    text-align: left;
    box-shadow: 0 24px 60px -20px rgba(var(--black-rgb), .55);
}

.quote--feature {
    box-shadow: 0 24px 60px -20px rgba(var(--black-rgb), .7), 0 0 0 1px rgba(var(--blue-rgb), .2);
}

.quote::before { content: ''; position: absolute; left: -1px; top: 0; bottom: 0; width: 3px; background: var(--green); }
.quote--feature::before { background: var(--blue); }
.quote:last-child::before { background: var(--green); }

.quote__stars { color: var(--amber); letter-spacing: .1em; font-size: 0.875rem; }
.quote blockquote { margin: 0; font-size: 1rem; color: var(--white); line-height: 1.65; font-style: italic; }
.quote__by { display: flex; align-items: center; gap: 14px; margin-top: auto; font-size: 0.875rem; }
.quote__role { color: var(--white); font-size: 0.85rem; font-weight: 500; }
.quote b { color: var(--white); font-weight: 700; }

/* ============ JOIN (WAITLIST) ============ */
.join {
    position: relative;
    background: var(--midnight);
    color: var(--white);
    padding: 120px 0 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.join__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 360px at 25% 55%, rgba(var(--green-rgb), .16), transparent),
                radial-gradient(circle 340px at 75% 75%, rgba(var(--blue-rgb), .18), transparent);
}

.join__inner {
    position: relative;
    text-align: center;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.join__inner .section-title { margin-bottom: 28px; }
.join__copy { color: var(--white); max-width: 560px; margin: 0 auto 36px; font-size: 1rem; }

.join__bubble-row {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.join__bubble {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--midnight-3);
    color: var(--green);
    font-family: var(--body);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .02em;
    border-radius: 999px;
    margin-bottom: 16px;
    position: relative;
    box-shadow: 0 6px 20px rgba(var(--green-rgb), .35);
}

.join__bubble::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--midnight-3);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.omnisend-wrapper {
    max-width: 560px;
    margin: 0 auto 40px;
    text-align: left;
}

.join__pro-callout {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 48px 0 0;
    padding: 0 max(24px, calc((100% - var(--maxw)) / 2 + 28px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    line-height: 1;
    text-align: left;
    background: rgba(var(--blue-rgb), .1);
    border-top: 1px solid rgba(var(--blue-rgb), .3);
}

.join__pro-callout-title {
    font-family: var(--body);
    font-weight: 400;
    font-size: .875rem;
    color: rgba(var(--white-rgb), .7);
    margin: 0;
    min-width: 0;
    flex-shrink: 1;
}

.join__pro-callout-link { flex-shrink: 0; }

/* ── Omnisend embedded forms (EN + ES) — skin to match site design ── */

/* Strip outer card shell and section padding */
.omnisend-form-6a28e2ed9f3168aa214255e6-content,
.omnisend-form-6a28e2ed9f3168aa214255e6-content-inner,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-content,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-content-inner {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.omnisend-form-6a28e2ed9f3168aa214255e6-section-624ab2f927652f651edfd0ac,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-section-624ab2f927652f651edfd0ac {
    padding: 0 !important;
}

/* Grid layout: only when the email field is present (not the success state) */
#omnisend-embedded-v2-6a28e2ed9f3168aa214255e6 .omnisend-mobile-container:has(
    .omnisend-form-6a28e2ed9f3168aa214255e6-field-container-wrapper-62a34db0f7b3732a01429b16
),
#omnisend-embedded-v2-6a3fe6896f5e2d7a1ae47a80 .omnisend-mobile-container:has(
    .omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-wrapper-62a34db0f7b3732a01429b16
) {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 10px 0 !important;
    align-items: stretch !important;
}

.omnisend-form-6a28e2ed9f3168aa214255e6-field-container-62a34db0f7b3732a01429b16,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-62a34db0f7b3732a01429b16 {
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

#omnisend-form-6a28e2ed9f3168aa214255e6-field-container-62a34db0f7b3732a01429b16-emailField-input.omnisend-form-6a28e2ed9f3168aa214255e6-field-container-62a34db0f7b3732a01429b16-input::placeholder,
#omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-62a34db0f7b3732a01429b16-emailField-input.omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-62a34db0f7b3732a01429b16-input::placeholder {
    color: rgba(var(--white-rgb), .4) !important;
    opacity: 1 !important;
}

#omnisend-form-6a28e2ed9f3168aa214255e6-field-container-62a34db0f7b3732a01429b16-emailField-input.omnisend-form-6a28e2ed9f3168aa214255e6-field-container-62a34db0f7b3732a01429b16-input:focus,
#omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-62a34db0f7b3732a01429b16-emailField-input.omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-62a34db0f7b3732a01429b16-input:focus {
    box-shadow: none !important;
}

/* ── Email field — row 1 col 1 ── */

.omnisend-form-6a28e2ed9f3168aa214255e6-field-container-wrapper-62a34db0f7b3732a01429b16,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-wrapper-62a34db0f7b3732a01429b16 {
    grid-column: 1 !important;
    grid-row: 1 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: stretch !important;
}

.omnisend-wrapper #omnisend-form-6a28e2ed9f3168aa214255e6-field-container-62a34db0f7b3732a01429b16-emailField-input.omnisend-form-6a28e2ed9f3168aa214255e6-field-container-62a34db0f7b3732a01429b16-input,
.omnisend-wrapper #omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-62a34db0f7b3732a01429b16-emailField-input.omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-62a34db0f7b3732a01429b16-input {
    flex-grow: 1 !important;
    padding: 14px 18px !important;
    background: rgba(var(--white-rgb), .06) !important;
    border: 1px solid rgba(var(--white-rgb), .2) !important;
    border-right: none !important;
    border-radius: .5rem 0 0 .5rem !important;
    color: var(--white) !important;
    font-family: var(--body) !important;
    font-size: .9375rem !important;
    outline: none !important;
    transition: border-color .15s ease !important;
    min-height: 50px !important;
}

/* ── Submit button — row 1 col 2 ── */

.omnisend-form-6a28e2ed9f3168aa214255e6-action-container-627932485028ebd8c6660c51,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-action-container-627932485028ebd8c6660c51 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    align-self: start !important;
}

#omnisend-form-6a28e2ed9f3168aa214255e6-action-627932485028ebd8c6660c51.omnisend-form-6a28e2ed9f3168aa214255e6-action-627932485028ebd8c6660c51,
#omnisend-form-6a3fe6896f5e2d7a1ae47a80-action-627932485028ebd8c6660c51.omnisend-form-6a3fe6896f5e2d7a1ae47a80-action-627932485028ebd8c6660c51 {
    width: auto !important;
    min-width: 191px !important;
    height: 50px !important;
    padding: 0 26px !important;
    background-color: var(--green) !important;
    color: var(--midnight) !important;
    border: none !important;
    border-radius: 0 .5rem .5rem 0 !important;
    font-family: var(--body) !important;
    font-weight: 800 !important;
    font-size: .875rem !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    line-height: normal !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: background-color .15s ease, transform .15s ease !important;
}

#omnisend-form-6a28e2ed9f3168aa214255e6-action-627932485028ebd8c6660c51.omnisend-form-6a28e2ed9f3168aa214255e6-action-627932485028ebd8c6660c51:hover,
#omnisend-form-6a3fe6896f5e2d7a1ae47a80-action-627932485028ebd8c6660c51.omnisend-form-6a3fe6896f5e2d7a1ae47a80-action-627932485028ebd8c6660c51:hover {
    background-color: color-mix(in srgb, var(--green) 85%, var(--black)) !important;
    transform: translateY(-1px) !important;
}

/* ── Consent — row 2, full width ── */

.omnisend-form-6a28e2ed9f3168aa214255e6-field-container-wrapper-6a28e02e8f657fc89f6f345b,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-wrapper-6a28e02e8f657fc89f6f345b {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    padding: 0 !important;
}

/* Mute the consent checkbox label + privacy disclaimer and align their sizes */
.omnisend-form-6a28e2ed9f3168aa214255e6-field-container-6a28e02e8f657fc89f6f345b-label,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-6a28e02e8f657fc89f6f345b-label,
.omnisend-form-6a28e2ed9f3168aa214255e6-field-container-6a28e02e8f657fc89f6f345b-description-container,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-6a28e02e8f657fc89f6f345b-description-container,
.omnisend-form-6a28e2ed9f3168aa214255e6-field-container-6a28e02e8f657fc89f6f345b-description,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-6a28e02e8f657fc89f6f345b-description {
    font-size: .8125rem !important;
    color: rgba(var(--white-rgb), .6) !important;
}

.omnisend-form-6a28e2ed9f3168aa214255e6-field-container-6a28e02e8f657fc89f6f345b-label p,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-6a28e02e8f657fc89f6f345b-label p,
.omnisend-form-6a28e2ed9f3168aa214255e6-field-container-6a28e02e8f657fc89f6f345b-description p,
.omnisend-form-6a3fe6896f5e2d7a1ae47a80-field-container-6a28e02e8f657fc89f6f345b-description p {
    font-size: inherit !important;
    color: inherit !important;
}


/* ============ SOCIAL ============ */
.social {
    padding: 100px 0 96px;
    background: var(--midnight-2);
    border-top: 1px solid var(--line-dark);
}

.social__head {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 16px;
}

.social__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: .95;
    letter-spacing: .005em;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
}

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

.social__rule { flex: 1; height: 1px; background: var(--green); }

.social__copy {
    font-size: 1rem;
    color: rgba(var(--white-rgb), .65);
    margin: 0 0 48px;
    max-width: 480px;
    line-height: 1.5;
}

.social__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 28px;
    background: var(--midnight-3);
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    overflow: hidden;
    color: var(--white);
    transition: border-color .15s ease, transform .15s ease;
}

.social__card:hover { border-color: rgba(var(--green-rgb), .5); transform: translateY(-2px); }

.social__card-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 64px;
    height: 64px;
    color: var(--white);
    opacity: .08;
    pointer-events: none;
}

.social__card-title {
    font-family: var(--body);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    margin: 0 0 2px;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
}

.social__card-sub {
    font-size: .8rem;
    letter-spacing: .04em;
    color: rgba(var(--white-rgb), .5);
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
}

.social__card-btn {
    margin-top: auto;
    position: relative;
    z-index: 1;
    background: transparent;
    color: var(--green);
    box-shadow: inset 0 0 0 1.5px rgba(var(--green-rgb), .55);
}

.social__card-btn:hover {
    background: rgba(var(--green-rgb), .1);
    color: var(--green);
    box-shadow: inset 0 0 0 1.5px var(--green);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--midnight-2);
    color: var(--white);
    font-size: 0.875rem;
    border-top: 1px solid var(--line-dark);
}

.footer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 22px 0;
}

.footer__brand { display: flex; align-items: center; gap: 8px; color: var(--white); }
.footer__links { display: flex; gap: 24px; }

/* ============ PRO MODAL ============ */
.pro-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pro-modal[hidden] { display: none; }

.pro-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(var(--midnight-rgb), .75);
    backdrop-filter: blur(4px);
}

.pro-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 780px;
    max-height: 85vh;
    overflow: hidden;
    background: var(--midnight-2);
    border: 1px solid var(--line-dark);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(var(--black-rgb), .5);
}

.pro-modal__close {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--black-rgb), .35);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color .15s ease;
}

.pro-modal__close:hover { background: rgba(var(--black-rgb), .55); }

.pro-modal__body {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    max-height: 85vh;
}

.pro-modal__text {
    padding: 48px 40px 100px;
    overflow-y: auto;
}

.pro-modal__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1;
    color: var(--white);
    margin: 0 24px 16px 0;
}

.pro-modal__hook {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--blue);
    line-height: 1.4;
    margin: 0 0 24px;
}

.pro-modal__copy {
    color: rgba(var(--white-rgb), .75);
    font-size: .95rem;
    line-height: 1.65;
    margin: 0 0 16px;
}

.pro-modal__media {
    position: relative;
    min-height: 320px;
    background: var(--midnight-3);
}

.pro-modal__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(var(--black-rgb), .75) 100%);
}

.pro-modal__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.pro-modal__cta {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 40px);
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    box-shadow: 0 8px 24px rgba(var(--black-rgb), .45);
}

.pro-modal__cta:hover {
    transform: translateX(-50%) translateY(-1px);
}

/* ============ RESPONSIVE ============ */
/* Switch "How It Works" to a single column before the 3-card row gets cramped */
@media (max-width: 1280px) {
    .track { grid-template-columns: 1fr; gap: 20px; padding-top: 0; }
    .track__rail { display: none; }
    .how > .container { grid-template-columns: 1fr; gap: 40px; }
    .how__head { position: static; }
    .social__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__overlay { background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight) 20%, rgba(var(--midnight-rgb), 0.93) 50%, rgba(var(--midnight-rgb), 0.75) 100%); }
    .twins { grid-template-columns: 1fr; }
    .twins__divider { width: 100%; height: 1px; flex-direction: row; background: var(--line-dark); }
    .twins__divider-line { display: none; }
    .twins__divider-diamond { top: 50%; left: 50%; }
    .trust-section { grid-template-columns: 1fr; min-height: 100svh; }
    .trust-section__media { min-height: 420px; border-right: none; }
    .trust-section__media::after {
        content: '';
        position: absolute;
        z-index: 1;
        inset: auto 0 0 0;
        height: 120px;
        background: linear-gradient(180deg, transparent, var(--midnight-2));
    }
    .trust-section__inner { margin-top: -32px; }
    .trust-section__inner { padding: 64px 28px; }
    .quotes { grid-template-columns: 1fr; }
    .join { padding: 80px 0 0; min-height: 100svh; }
    .how { padding: 80px 0 100px; min-height: 100svh; }
    .audiences { padding: 80px 0; }
    .founding { padding: 80px 0 0; min-height: 100svh; }
    .founding .section-head { text-align: center; }
    .founding__list { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .founding__carousel-wrap { margin-top: 40px; }
    .founding__carousel-nav { width: 36px; height: 36px; }
    .founding__carousel-nav--prev { left: 10px; }
    .founding__carousel-nav--next { right: 10px; }
    .founding__carousel-track img { width: 220px; height: 180px; }
    .stories { padding: 80px 0 100px; }
    .stories__wing--left { clip-path: polygon(0 0, 50% 44%, 0 100%); }
    .stories__wing--right { clip-path: polygon(100% 0, 50% 44%, 100% 100%); }
    .social { padding: 80px 0; }
}

@media (max-width: 640px) {
    .stories__collage { display: none; }
    .stories__mobile-reel { display: block; }
    .nav__row { padding: 12px 20px; }
    .container { padding: 0 20px; }
    .trust-strip__row { padding: 18px 14px; }
    .hero__field { width: 80%; }

    /* svh accounts for mobile browser chrome better than vh */
    .join { min-height: 100svh; }

    /* More breathing room between feature blocks — cramped once stacked full-width */
    .trust-section__copy.trust-section__copy--lead { margin-bottom: 36px; }
    .trust-section__features { gap: 36px; }

    /* Compact phase cards — the 2.125rem display title and generous padding
       eat too much height once cards stack full-width on mobile */
    .track { gap: 12px; }
    .phase__card { padding: 18px 20px; }
    .phase__icon { width: 36px; height: 36px; margin-bottom: 12px; }
    .phase__icon svg { width: 16px; height: 16px; }
    .phase__title { font-size: 1.375rem; margin: 0 0 6px; }
    .phase__copy { margin: 0; }

    /* stop ~80px short of full viewport so trust strip peeks at the fold */
    .hero {
        padding: 40px 0 0;
        justify-content: flex-start;
        min-height: calc(100svh - 80px);
    }
    .hero__inner {
        min-height: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        padding-bottom: 40px;
    }
    /* flex: 1 lets margin-top: auto push the CTA to the bottom, tag/headline/lede stay at the top */
    .hero__copy { flex: 1; }

    .coming-soon-tag {
        font-size: 0.875rem;
        letter-spacing: .08em;
        padding: 8px 18px;
    }

    .eyebrow {
        font-size: 0.75rem;
        letter-spacing: .04em;
        padding: 6px 10px;
        white-space: nowrap;
    }

    .hero__h1 { font-size: clamp(3.5rem, 13vw, 4.5rem); margin: 12px 0 12px; }

    .countdown {
        order: 1;
        gap: 6px;
        margin-top: 14px;
    }
    .countdown__until { order: 2; }
    .hero__cta {
        order: 3;
        flex-direction: column;
        gap: 10px;
        margin-top: auto;
    }
    .hero__cta .btn { width: 100%; }

    .countdown__cell { min-width: 52px; padding: 6px 8px; }
    .countdown__num { font-size: 1.375rem; }
    .countdown__lab { font-size: 0.7rem; letter-spacing: .1em; }
    .countdown__sep { font-size: 1rem; }

    .footer__row { flex-direction: column; text-align: center; }
    .social__head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .social__rule { width: 100%; flex: none; }
    .social__grid { grid-template-columns: 1fr; }
    .social__card { padding: 20px; }
    .social__card-btn { display: none; }
    .social__card-sub { margin-bottom: 0; }

    .pro-modal__panel { border-radius: 16px; overflow-y: auto; }
    .pro-modal__body { grid-template-columns: 1fr; max-height: none; }
    .pro-modal__media { display: none; }
    .pro-modal__text { padding: 28px 24px 24px; overflow-y: visible; }
    .pro-modal__cta {
        position: static;
        display: block;
        width: fit-content;
        max-width: calc(100% - 48px);
        margin: 0 auto 24px;
        transform: none;
        box-shadow: none;
    }
}

/* ============ JOIN WATERMARK ============ */
.join__watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-70%, -70%);
    opacity: .05;
    pointer-events: none;
    z-index: 0;
}

.join__watermark img { width: 560px; height: auto; }

/* ============ LANGUAGE BANNER ============ */
.lang-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--midnight-3);
    border: 1px solid var(--line-dark);
    padding: 12px 18px;
    font-size: 0.875rem;
    color: var(--white);
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(var(--black-rgb), .4);
}

.lang-banner[hidden] { display: none; }

.lang-banner__link { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.lang-banner__link:hover { color: color-mix(in srgb, var(--green) 85%, var(--black)); }

.lang-banner__close {
    margin-left: 6px;
    font-size: 1rem;
    color: rgba(var(--white-rgb), .5);
    cursor: pointer;
    line-height: 1;
}

.lang-banner__close:hover { color: var(--white); }
