/* =====================================================================
   TSL INNOVATE — Public marketing site
   Monochrome / cinematic. White-on-black, wine (#CB6C95) in tiny doses.
   Hand-written, no build step. Loaded directly from /public.
   ===================================================================== */

/* ------------------------------------------------------------------ */
/*  Tokens                                                             */
/* ------------------------------------------------------------------ */
:root {
    --bg: #060708;
    --bg-1: #0a0c0e;
    /* elevated surface   */
    --bg-2: #0f1215;
    /* card               */
    --bg-3: #14181c;
    /* hover / field      */

    --line: rgba(255, 255, 255, .08);
    --line-2: rgba(255, 255, 255, .14);
    --line-3: rgba(255, 255, 255, .22);

    --white: #f7f8f9;
    --text: #e7e9ec;
    --muted: #9aa1a9;
    --faint: #5f666e;

    --wine: #cb6c95;
    /* accent — used sparingly            */
    --wine-dim: rgba(203, 108, 149, .14);
    --up: #2ebd85;
    --down: #f6465d;

    --ff-display: "Space Grotesk", "Inter", system-ui, sans-serif;
    --ff-body: "Inter", system-ui, -apple-system, sans-serif;
    --ff-mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;

    --container: 1240px;
    --gutter: clamp(20px, 5vw, 48px);

    --ease: cubic-bezier(.22, .61, .36, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);

    --nav-h: 74px;
}

/* ------------------------------------------------------------------ */
/*  Reset                                                              */
/* ------------------------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--ff-body);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
}

img,
svg,
canvas {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

input,
textarea,
select {
    font: inherit;
    color: inherit;
}

ul {
    list-style: none;
}

::selection {
    background: var(--wine);
    color: #fff;
}

/* Subtle film-grain / vignette to add cinematic depth (monochrome) */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(120% 80% at 50% -10%, rgba(255, 255, 255, .05), transparent 60%),
        radial-gradient(100% 100% at 50% 120%, rgba(0, 0, 0, .6), transparent 60%);
    mix-blend-mode: screen;
    opacity: .5;
}

/* ------------------------------------------------------------------ */
/*  Scrollbar                                                          */
/* ------------------------------------------------------------------ */
::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #23282d;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #313840;
}

/* ------------------------------------------------------------------ */
/*  Layout primitives                                                  */
/* ------------------------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
    position: relative;
    z-index: 2;
}

.section {
    padding-block: clamp(72px, 12vh, 160px);
    position: relative;
    z-index: 2;
}

.section--tight {
    padding-block: clamp(48px, 8vh, 96px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--muted);
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wine);
    box-shadow: 0 0 10px 1px var(--wine);
}

.section-head {
    max-width: 720px;
    margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head .eyebrow {
    margin-bottom: 22px;
}

/* ------------------------------------------------------------------ */
/*  Type                                                               */
/* ------------------------------------------------------------------ */
h1,
h2,
h3,
h4 {
    font-family: var(--ff-display);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--white);
}

.display {
    font-size: clamp(2.6rem, 8.5vw, 7.2rem);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -0.035em;
}

.h1 {
    font-size: clamp(2.2rem, 5.5vw, 4.4rem);
}

.h2 {
    font-size: clamp(1.9rem, 4.2vw, 3.4rem);
}

.h3 {
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.lead {
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    color: var(--muted);
    line-height: 1.6;
    font-weight: 400;
}

.muted {
    color: var(--muted);
}

.faint {
    color: var(--faint);
}

.mono {
    font-family: var(--ff-mono);
}

.accent {
    color: #659dff;
}

.serif-em {
    font-style: italic;
}

.text-balance {
    text-wrap: balance;
}

.measure {
    max-width: 60ch;
}

/* Outline / stroke text for cinematic headings */
.stroke-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--line-3);
}

/* ------------------------------------------------------------------ */
/*  Buttons                                                            */
/* ------------------------------------------------------------------ */
.btn {
    --pad-y: 14px;
    --pad-x: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: var(--pad-y) var(--pad-x);
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .01em;
    border-radius: 100px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease-out), background-color .3s, color .3s, border-color .3s;
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform .4s var(--ease-out);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--white);
    color: #08090a;
}

.btn--primary:hover {
    background: #fff;
}

.btn--primary:hover svg {
    transform: translateX(4px);
}

.btn--ghost {
    border-color: var(--line-2);
    color: var(--white);
}

.btn--ghost:hover {
    border-color: var(--line-3);
    background: rgba(255, 255, 255, .04);
}

.btn--sm {
    --pad-y: 10px;
    --pad-x: 18px;
    font-size: 13px;
}

.btn--lg {
    --pad-y: 17px;
    --pad-x: 34px;
    font-size: 15px;
}

.btn--block {
    display: flex;
    width: 100%;
}

/* Magnetic wrapper — display is intentionally left unset; every .magnetic
   element in this codebase is also a .btn (inline-flex) or .btn--block
   (flex), which must stay the authoritative display value. */
.magnetic {
    will-change: transform;
}

/* Text link with animated underline */
.link {
    position: relative;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: var(--wine);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s var(--ease-out);
}

.link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.link svg {
    width: 15px;
    height: 15px;
    transition: transform .4s var(--ease-out);
}

.link:hover svg {
    transform: translate(3px, -3px);
}

/* ------------------------------------------------------------------ */
/*  Cards / surfaces                                                   */
/* ------------------------------------------------------------------ */
.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: border-color .4s var(--ease), transform .5s var(--ease-out), background-color .4s;
}

.card:hover {
    border-color: var(--line-2);
    transform: translateY(-4px);
}

/* wine hairline that sweeps in on hover — the "tiny dose" of colour */
.card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--wine), transparent);
    opacity: 0;
    transition: opacity .5s var(--ease);
}

.card:hover::after {
    opacity: .8;
}

.hairline {
    height: 1px;
    width: 100%;
    background: var(--line);
    border: 0;
}

/* ------------------------------------------------------------------ */
/*  Navigation                                                         */
/* ------------------------------------------------------------------ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: background-color .4s var(--ease), border-color .4s, backdrop-filter .4s;
    border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
    background: rgba(6, 7, 8, .72);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom-color: var(--line);
}

.nav__inner {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: var(--white);
}

.brand__mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-2);
    border-radius: 9px;
    color: var(--white);
    background: rgba(255, 255, 255, .02);
    transition: border-color .4s, color .4s;
}

.brand:hover .brand__mark {
    border-color: var(--wine);
    color: var(--wine);
}

.brand__mark svg {
    width: 19px;
    height: 19px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    padding: 9px 15px;
    font-size: 14px;
    color: var(--muted);
    border-radius: 8px;
    transition: color .3s, background-color .3s;
    position: relative;
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--white);
}

.nav__link.is-active::before {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 2px;
    height: 1px;
    background: var(--wine);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* mobile */
.nav__toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    position: relative;
}

.nav__toggle span {
    position: absolute;
    left: 11px;
    right: 11px;
    height: 1.5px;
    background: var(--white);
    transition: transform .4s var(--ease), opacity .3s;
}

.nav__toggle span:nth-child(1) {
    top: 15px;
}

.nav__toggle span:nth-child(2) {
    bottom: 15px;
}

body.menu-open .nav__toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

body.menu-open .nav__toggle span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    z-index: 99;
    background: rgba(6, 7, 8, .98);
    backdrop-filter: blur(20px);
    padding: 40px var(--gutter);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}

body.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.mobile-menu a.m-link {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu .m-actions {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ------------------------------------------------------------------ */
/*  Ticker / marquee                                                  */
/* ------------------------------------------------------------------ */
.ticker {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, .012);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.ticker__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: marquee 48s linear infinite;
}

.ticker:hover .ticker__track {
    animation-play-state: paused;
}

.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    border-right: 1px solid var(--line);
    font-size: 13px;
    white-space: nowrap;
}

.ticker__sym {
    font-weight: 600;
    color: var(--white);
    font-family: var(--ff-mono);
    letter-spacing: .02em;
}

.ticker__px {
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    font-family: var(--ff-mono);
}

.ticker__chg {
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.up {
    color: var(--up);
}

.down {
    color: var(--down);
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* generic marquee row (logos / testimonials) */
.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee__track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: marquee 40s linear infinite;
}

.marquee--rev .marquee__track {
    animation-direction: reverse;
}

/* ------------------------------------------------------------------ */
/*  Hero                                                               */
/* ------------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .9;
}

.hero__glow {
    position: absolute;
    z-index: 0;
    width: 60vw;
    height: 60vw;
    max-width: 780px;
    max-height: 780px;
    top: 30%;
    left: 55%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--wine-dim), transparent 62%);
    filter: blur(30px);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero__title {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(2.9rem, 9vw, 8rem);
    line-height: .92;
    letter-spacing: -0.04em;
    color: var(--white);
    max-width: 15ch;
}

.hero__title .rev-line {
    display: block;
    overflow: hidden;
}

.hero__title .rev-line>span {
    display: block;
}

.hero__sub {
    margin-top: 30px;
    max-width: 46ch;
}

.hero__actions {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--faint);
}

.hero__scroll .line {
    width: 1px;
    height: 46px;
    background: linear-gradient(var(--line-3), transparent);
    position: relative;
    overflow: hidden;
}

.hero__scroll .line::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--white);
    animation: scrolldot 2.2s var(--ease-out) infinite;
}

@keyframes scrolldot {
    0% {
        transform: translateY(-100%)
    }

    60%,
    100% {
        transform: translateY(300%)
    }
}

.hero__meta {
    position: absolute;
    /* Mirror .container's own centering math so this lines up with
       .hero__inner's content edge instead of the raw section edge. */
    left: calc((100% - min(100%, var(--container))) / 2 + var(--gutter));
    bottom: 16px;
    z-index: 3;
    display: flex;
    gap: 34px;
}

.hero__meta .k {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    color: var(--white);
}

.hero__meta .l {
    font-size: 12px;
    color: var(--muted);
}

/* ------------------------------------------------------------------ */
/*  Stat counters                                                     */
/* ------------------------------------------------------------------ */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.stat {
    padding: 40px 34px;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: 0;
}

.stat__num {
    font-family: var(--ff-display);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1;
    color: var(--white);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

.stat__num .suffix {
    color: var(--wine);
}

.stat__label {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
}

/* ------------------------------------------------------------------ */
/*  Feature grid                                                      */
/* ------------------------------------------------------------------ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature {
    padding: 34px 30px 40px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.feature__ico {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    color: var(--white);
    margin-bottom: 26px;
    transition: color .4s, border-color .4s;
}

.feature:hover .feature__ico {
    color: var(--wine);
    border-color: var(--wine);
}

.feature__ico svg {
    width: 22px;
    height: 22px;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature p {
    color: var(--muted);
    font-size: 14.5px;
    flex: 1;
}

.feature__idx {
    font-family: var(--ff-mono);
    font-size: 12px;
    color: var(--faint);
    position: absolute;
    top: 26px;
    right: 28px;
}

/* ------------------------------------------------------------------ */
/*  Split / alternating media rows                                    */
/* ------------------------------------------------------------------ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 90px);
    align-items: center;
}

.split+.split {
    margin-top: clamp(60px, 10vw, 140px);
}

.split--rev .split__media {
    order: -1;
}

.split__media {
    aspect-ratio: 5/4;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(160deg, var(--bg-2), var(--bg));
    position: relative;
    overflow: hidden;
}

/* ------------------------------------------------------------------ */
/*  Steps                                                             */
/* ------------------------------------------------------------------ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    counter-reset: step;
}

.step {
    padding: 32px 30px 38px;
}

.step__n {
    font-family: var(--ff-mono);
    font-size: 13px;
    color: var(--wine);
    margin-bottom: 26px;
}

.step h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--muted);
    font-size: 14.5px;
}

/* ------------------------------------------------------------------ */
/*  Comparison bars                                                   */
/* ------------------------------------------------------------------ */
.compare {
    display: grid;
    gap: 22px;
}

.compare__row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: center;
}

.compare__label {
    font-size: 14px;
    color: var(--muted);
}

.bar {
    position: relative;
    height: 46px;
}

.bar__track {
    position: absolute;
    inset: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.bar__fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 16px;
    font-family: var(--ff-mono);
    font-size: 13px;
    color: var(--white);
    width: 0;
    transition: width 1.4s var(--ease-out);
}

.bar__fill--us {
    background: linear-gradient(90deg, rgba(203, 108, 149, .35), rgba(203, 108, 149, .85));
}

.bar__fill--them {
    background: rgba(255, 255, 255, .08);
    color: var(--muted);
}

/* ------------------------------------------------------------------ */
/*  Market table                                                      */
/* ------------------------------------------------------------------ */
.tabs {
    display: inline-flex;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 5px;
}

.tab {
    padding: 9px 20px;
    font-size: 13.5px;
    border-radius: 100px;
    color: var(--muted);
    transition: color .3s, background-color .3s;
}

.tab.is-active {
    color: #0a0b0c;
    background: var(--white);
}

.mtable {
    width: 100%;
    border-collapse: collapse;
}

.mtable th {
    text-align: left;
    font-size: 12px;
    font-weight: 500;
    color: var(--faint);
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mtable td {
    padding: 18px;
    border-bottom: 1px solid var(--line);
    font-variant-numeric: tabular-nums;
}

.mtable tr {
    transition: background-color .3s;
}

.mtable tbody tr:hover {
    background: rgba(255, 255, 255, .02);
}

.mtable .asset {
    display: flex;
    align-items: center;
    gap: 13px;
}

.mtable .asset__logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line-2);
    display: grid;
    place-items: center;
    font-family: var(--ff-mono);
    font-size: 12px;
    color: var(--white);
}

.mtable .asset__name {
    font-weight: 600;
    color: var(--white);
}

.mtable .asset__sym {
    font-size: 12px;
    color: var(--faint);
}

.spark {
    width: 108px;
    height: 34px;
}

.flash-up {
    animation: flashUp .7s var(--ease-out);
}

.flash-down {
    animation: flashDown .7s var(--ease-out);
}

@keyframes flashUp {
    0% {
        color: var(--up);
    }

    100% {}
}

@keyframes flashDown {
    0% {
        color: var(--down);
    }

    100% {}
}

/* ------------------------------------------------------------------ */
/*  Pricing                                                           */
/* ------------------------------------------------------------------ */
.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.plan {
    padding: 36px 32px 40px;
    display: flex;
    flex-direction: column;
}

.plan.is-featured {
    border-color: var(--line-3);
    background: linear-gradient(180deg, rgba(203, 108, 149, .06), transparent 40%);
}

.plan__tag {
    position: absolute;
    top: 26px;
    right: 28px;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--wine);
}

.plan__name {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    color: var(--white);
}

.plan__desc {
    color: var(--muted);
    font-size: 14px;
    margin-top: 8px;
    min-height: 42px;
}

.plan__price {
    margin: 26px 0 6px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.plan__price .amt {
    font-family: var(--ff-display);
    font-size: 3rem;
    color: var(--white);
    letter-spacing: -.03em;
}

.plan__price .per {
    color: var(--faint);
    font-size: 14px;
}

.plan__list {
    margin: 26px 0 30px;
    display: grid;
    gap: 13px;
}

.plan__list li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    align-items: flex-start;
}

.plan__list li svg {
    width: 17px;
    height: 17px;
    color: var(--wine);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan__list li.off {
    color: var(--faint);
}

.plan__list li.off svg {
    color: var(--faint);
}

.plan__cta {
    margin-top: auto;
}

/* ------------------------------------------------------------------ */
/*  Testimonials                                                      */
/* ------------------------------------------------------------------ */
.quote-card {
    width: 400px;
    padding: 30px;
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: 18px;
    flex-shrink: 0;
}

.quote-card p {
    font-size: 15.5px;
    color: var(--text);
    line-height: 1.6;
}

.quote-card .who {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-card .av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-3);
    border: 1px solid var(--line-2);
    display: grid;
    place-items: center;
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

.quote-card .nm {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

.quote-card .rl {
    font-size: 12.5px;
    color: var(--muted);
}

/* ------------------------------------------------------------------ */
/*  CTA band                                                          */
/* ------------------------------------------------------------------ */
.cta {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: clamp(50px, 8vw, 96px);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent);
}

.cta__glow {
    position: absolute;
    z-index: 0;
    width: 70%;
    height: 200%;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--wine-dim), transparent 60%);
    filter: blur(40px);
}

.cta>* {
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------------ */
/*  Footer                                                            */
/* ------------------------------------------------------------------ */
.footer {
    border-top: 1px solid var(--line);
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer__brand p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 20px;
    max-width: 32ch;
}

.footer__col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--faint);
    font-family: var(--ff-body);
    font-weight: 600;
    margin-bottom: 18px;
}

.footer__col a {
    display: block;
    color: var(--muted);
    font-size: 14px;
    padding: 6px 0;
    transition: color .3s;
}

.footer__col a:hover {
    color: var(--white);
}

.footer__news {
    margin-top: 26px;
}

.footer__news form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0 46px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

.footer__bottom p {
    color: var(--faint);
    font-size: 13px;
}

.socials {
    display: flex;
    gap: 8px;
}

.socials a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--muted);
    transition: color .3s, border-color .3s, transform .3s;
}

.socials a:hover {
    color: var(--white);
    border-color: var(--line-2);
    transform: translateY(-2px);
}

.socials svg {
    width: 17px;
    height: 17px;
}

/* huge wordmark footer flourish */
.footer__word {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: clamp(3rem, 16vw, 15rem);
    line-height: .8;
    letter-spacing: -.04em;
    color: transparent;
    -webkit-text-stroke: 1px var(--line-2);
    text-align: center;
    padding-bottom: 20px;
    user-select: none;
    overflow: hidden;
}

/* ------------------------------------------------------------------ */
/*  Forms                                                             */
/* ------------------------------------------------------------------ */
.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 13px;
    color: var(--muted);
}

.input,
textarea.input,
select.input {
    width: 100%;
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14.5px;
    color: var(--white);
    transition: border-color .3s, background-color .3s;
}

.input::placeholder {
    color: var(--faint);
}

.input:focus {
    outline: none;
    border-color: var(--wine);
    background: var(--bg-2);
}

textarea.input {
    resize: vertical;
    min-height: 140px;
}

.input--pill {
    border-radius: 100px;
}

.form-note {
    font-size: 12.5px;
    color: var(--faint);
}

.form-error {
    font-size: 12.5px;
    color: var(--down);
}

.alert-ok {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(46, 189, 133, .08);
    border: 1px solid rgba(46, 189, 133, .3);
    color: var(--up);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
}

/* ------------------------------------------------------------------ */
/*  Page hero (interior pages)                                        */
/* ------------------------------------------------------------------ */
.page-hero {
    padding-top: calc(var(--nav-h) + clamp(60px, 12vh, 130px));
    padding-bottom: clamp(40px, 7vh, 90px);
    position: relative;
    overflow: hidden;
}

.page-hero__glow {
    position: absolute;
    z-index: 0;
    width: 700px;
    height: 700px;
    top: -260px;
    right: -160px;
    background: radial-gradient(circle, var(--wine-dim), transparent 62%);
    filter: blur(30px);
    pointer-events: none;
}

/* ------------------------------------------------------------------ */
/*  Timeline (about)                                                  */
/* ------------------------------------------------------------------ */
.timeline {
    position: relative;
    margin-top: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--line);
}

.tl-item {
    position: relative;
    padding: 0 0 44px 44px;
}

.tl-item::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid var(--line-3);
    background: var(--bg);
}

.tl-item.is-key::before {
    background: var(--wine);
    border-color: var(--wine);
    box-shadow: 0 0 12px 1px var(--wine);
}

.tl-item .yr {
    font-family: var(--ff-mono);
    font-size: 13px;
    color: var(--wine);
    margin-bottom: 8px;
}

.tl-item h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.tl-item p {
    color: var(--muted);
    font-size: 14.5px;
    max-width: 56ch;
}

/* team */
.team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.member__ph {
    aspect-ratio: 4/5;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, var(--bg-2), var(--bg));
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
}

.member__ph span {
    font-family: var(--ff-display);
    font-size: 2.4rem;
    color: var(--line-3);
}

.member__nm {
    margin-top: 16px;
    font-weight: 600;
    color: var(--white);
}

.member__rl {
    font-size: 13px;
    color: var(--muted);
}

/* value cards */
.values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* ------------------------------------------------------------------ */
/*  Legal / prose                                                     */
/* ------------------------------------------------------------------ */
.legal {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: start;
}

.legal__toc {
    position: sticky;
    top: calc(var(--nav-h) + 30px);
}

.legal__toc a {
    display: block;
    font-size: 13.5px;
    color: var(--muted);
    padding: 7px 0 7px 16px;
    border-left: 1px solid var(--line);
    transition: color .3s, border-color .3s;
}

.legal__toc a:hover,
.legal__toc a.is-active {
    color: var(--white);
    border-color: var(--wine);
}

.prose h2 {
    font-size: 1.5rem;
    margin: 44px 0 16px;
    scroll-margin-top: 110px;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p {
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.prose ul {
    margin: 0 0 16px 0;
    display: grid;
    gap: 10px;
}

.prose ul li {
    color: var(--muted);
    padding-left: 22px;
    position: relative;
}

.prose ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--wine);
}

.prose strong {
    color: var(--text);
    font-weight: 600;
}

/* ------------------------------------------------------------------ */
/*  FAQ                                                               */
/* ------------------------------------------------------------------ */
.faq {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.faq__item {
    border-bottom: 1px solid var(--line);
}

.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 4px;
    text-align: left;
    font-family: var(--ff-display);
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    color: var(--white);
}

.faq__q .pm {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq__q .pm::before,
.faq__q .pm::after {
    content: "";
    position: absolute;
    background: var(--muted);
    transition: transform .4s var(--ease);
}

.faq__q .pm::before {
    left: 0;
    right: 0;
    top: 11px;
    height: 1.5px;
}

.faq__q .pm::after {
    top: 0;
    bottom: 0;
    left: 11px;
    width: 1.5px;
}

.faq__item.is-open .pm::after {
    transform: scaleY(0);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease);
}

.faq__a p {
    color: var(--muted);
    padding: 0 4px 28px;
    max-width: 70ch;
}

/* ------------------------------------------------------------------ */
/*  Bento (platform)                                                  */
/* ------------------------------------------------------------------ */
.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
}

.bento .card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento .b-wide {
    grid-column: span 4;
}

.bento .b-tall {
    grid-column: span 2;
    grid-row: span 2;
}

.bento .b-sq {
    grid-column: span 2;
}

.bento .b-half {
    grid-column: span 3;
}

.bento h3 {
    font-size: 1.3rem;
}

.bento p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 8px;
}

.bento .b-num {
    font-family: var(--ff-display);
    font-size: 3rem;
    color: var(--white);
    letter-spacing: -.03em;
}

/* ------------------------------------------------------------------ */
/*  Reveal animation (JS-driven, with no-JS/reduced fallback)         */
/* ------------------------------------------------------------------ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
}

[data-reveal-stagger]>* {
    opacity: 0;
    transform: translateY(26px);
}

.reveal-ready [data-reveal],
.reveal-ready [data-reveal-stagger]>* {
    will-change: opacity, transform;
}

/* When JS/GSAP is unavailable, show everything */
html:not(.reveal-ready) [data-reveal],
html:not(.reveal-ready) [data-reveal-stagger]>* {
    opacity: 1;
    transform: none;
}

/* Custom cursor */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .7);
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, background-color .3s;
}

.cursor-ring.is-hover {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, .08);
}

@media (hover: none) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* Page load curtain */
.loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--bg);
    display: grid;
    place-items: center;
    transition: opacity .6s var(--ease), visibility .6s;
}

.loader.is-done {
    opacity: 0;
    visibility: hidden;
}

.loader__mark {
    font-family: var(--ff-mono);
    font-size: 13px;
    letter-spacing: .3em;
    color: var(--muted);
    text-transform: uppercase;
}

.loader__bar {
    margin-top: 16px;
    width: 180px;
    height: 1px;
    background: var(--line);
    overflow: hidden;
}

.loader__bar i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--white);
    animation: load 1.1s var(--ease-out) forwards;
}

@keyframes load {
    to {
        width: 100%;
    }
}

/* ------------------------------------------------------------------ */
/*  Responsive                                                        */
/* ------------------------------------------------------------------ */
@media (max-width: 1024px) {

    .feature-grid,
    .steps,
    .plans {
        grid-template-columns: repeat(2, 1fr);
    }

    .team {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .bento .b-wide,
    .bento .b-tall,
    .bento .b-sq,
    .bento .b-half {
        grid-column: span 1;
        grid-row: auto;
        min-height: 200px;
    }
}

@media (max-width: 820px) {

    .nav__links,
    .nav__cta .btn {
        display: none;
    }

    .nav__toggle {
        display: block;
    }

    .nav__cta {
        display: none;
    }

    .split,
    .split--rev .split__media {
        grid-template-columns: 1fr;
        order: 0;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .legal {
        grid-template-columns: 1fr;
    }

    .legal__toc {
        display: none;
    }

    .compare__row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero__meta {
        display: none;
    }
}

@media (max-width: 640px) {

    .feature-grid,
    .steps,
    .plans,
    .team,
    .values,
    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .footer__top {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 24px;
    }

    .quote-card {
        width: 84vw;
    }

    .plan.is-featured {
        order: -1;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal],
    [data-reveal-stagger]>* {
        opacity: 1 !important;
        transform: none !important;
    }

    .ticker__track,
    .marquee__track {
        animation: none !important;
    }
}

/* ------------------------------------------------------------------ */
/*  Invest page                                                        */
/* ------------------------------------------------------------------ */

/* trust chips under the hero */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 13px;
    color: var(--muted);
    transition: border-color .4s var(--ease), color .4s var(--ease);
}

.chip:hover {
    border-color: var(--line-2);
    color: var(--text);
}

.chip svg {
    width: 14px;
    height: 14px;
    color: var(--wine);
    flex-shrink: 0;
}

/* allocation mini-bars (strategy cards) */
.alloc {
    display: grid;
    gap: 11px;
}

.alloc__row {
    display: grid;
    grid-template-columns: 92px 1fr 42px;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    color: var(--muted);
}

.alloc__bar {
    height: 5px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .06);
    overflow: hidden;
}

.alloc__bar i {
    display: block;
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, rgba(203, 108, 149, .4), var(--wine));
    width: 0;
    transition: width 1.2s var(--ease-out);
}

.alloc__pct {
    font-family: var(--ff-mono);
    font-size: 12px;
    color: var(--white);
    text-align: right;
}

/* projection calculator */
.calc {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 18px;
    align-items: stretch;
}

.calc__panel {
    padding: 34px 32px 36px;
    display: flex;
    flex-direction: column;
}

.calc__row {
    display: grid;
    gap: 10px;
    margin-bottom: 26px;
}

.calc__row:last-child {
    margin-bottom: 0;
}

.calc__row>label {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.calc__row>label b {
    font-family: var(--ff-mono);
    font-weight: 400;
    color: var(--white);
    font-size: 14px;
}

.calc__seg {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.calc__seg button {
    flex: 1 1 0;
    min-width: 92px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 8px;
    font-size: 13.5px;
    color: var(--muted);
    transition: color .3s, border-color .3s, background-color .3s;
}

.calc__seg button:hover {
    color: var(--text);
    border-color: var(--line-2);
}

.calc__seg button.is-on {
    color: var(--white);
    border-color: var(--wine);
    background: var(--wine-dim);
}

.range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 2px;
    background: var(--line-2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--line-3);
    cursor: pointer;
}

.range::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--line-3);
    cursor: pointer;
}

.calc__chart {
    width: 100%;
    height: 210px;
    display: block;
}

.result {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    border-top: 1px solid var(--line);
    margin-top: 26px;
    padding-top: 24px;
}

.result .rk {
    font-family: var(--ff-display);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    color: var(--white);
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
}

.result .rk.is-gain {
    color: var(--wine);
}

.result .rl {
    font-size: 12px;
    color: var(--faint);
    margin-top: 7px;
}

@media (max-width: 980px) {
    .calc {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .result {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ------------------------------------------------------------------ */
/*  CTA video section (full-bleed)                                     */
/* ------------------------------------------------------------------ */
.cta-video-section {
    /* Override the section's own padding-inline with 0 so video is edge-to-edge */
    padding-inline: 0 !important;
}

/* Video wrapper fills the entire section */
.cta-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Both videos share base styles */
.cta-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark gradient overlay so text stays readable */
.cta-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(6, 7, 8, .65) 0%,
            rgba(6, 7, 8, .50) 50%,
            rgba(6, 7, 8, .70) 100%);
}

/* Desktop shows tab video, hides mobile */
.cta-video--mobile {
    display: none;
}

.cta-video--desktop {
    display: block;
}

/* Mobile: swap videos and ensure portrait aspect fits */
@media (max-width: 640px) {
    .cta-video--desktop {
        display: none;
    }

    .cta-video--mobile {
        display: block;
    }

    /* Ensure section has enough height for mobile video */
    .cta-video-section {
        min-height: 520px;
    }
}

/* Keep the inner .cta card transparent — visuals come from the video */
.cta-video-section .cta {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* ------------------------------------------------------------------ */
/*  Stacked brand logo (SVG + caption)                                 */
/* ------------------------------------------------------------------ */
.brand--stacked {
    flex-direction: column;
    align-items: center;
    gap: 0;          /* ← 0 so caption sits flush under the artwork */
    text-decoration: none;
}

/* Outer mark is now just a clean container — no box, no border */
.brand__mark--logo {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The actual SVG image — make it prominent.
   ↓ TO RESIZE THE LOGO: change width & height on .brand__svg only.
   Keep object-fit:contain so any SVG viewBox padding never bloats the element. */
.brand__svg {
    width: 100px;     /* ← change this to resize width  */
    height: 48px;     /* ← change this to resize height */
    display: block;
    object-fit: contain;
    /* Push SVG artwork to the BOTTOM of its box so any viewBox
       whitespace accumulates above — not between the art and the caption */
    object-position: left bottom;
    image-rendering: crisp-edges;
}

/* Small "innovate" caption under the logo */
.brand__caption {
    font-family: var(--ff-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1;
    margin-top: -2px;  /* pull caption up to close any residual gap */
    user-select: none;
}

/* ------------------------------------------------------------------ */
/*  Cybertruck split section                                           */
/* ------------------------------------------------------------------ */
/* Give the Cybertruck image panel a slightly taller aspect ratio
   so the truck's silhouette isn't cropped */
.cybertruck-media {
    aspect-ratio: 4 / 3;
}

@media (max-width: 820px) {

    /* On mobile the split already stacks to 1 col.
       Make the image come first (above text) and fill nicely. */
    .cybertruck-media {
        aspect-ratio: 16 / 9;
        order: -1;
    }
}