@font-face { font-family: "Big Shoulders Display"; font-weight: 700; font-display: block;
    src: url("../fonts/BigShouldersDisplay700.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 300; font-display: swap;
    src: url("../fonts/Poppins300Latin.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 400; font-display: swap;
    src: url("../fonts/Poppins400Latin.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 500; font-display: swap;
    src: url("../fonts/Poppins500Latin.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 600; font-display: swap;
    src: url("../fonts/Poppins600Latin.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 700; font-display: swap;
    src: url("../fonts/Poppins700Latin.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-weight: 100 900; font-display: swap;
    src: url("../fonts/ArchivoVariable.woff2") format("woff2"); }
@font-face { font-family: "Bebas Neue"; font-weight: 300; font-display: swap;
    src: url("../fonts/BebasNeueLight.woff2") format("woff2"); }
@font-face { font-family: "Bebas Neue"; font-weight: 400; font-display: swap;
    src: url("../fonts/BebasNeueBook.woff2") format("woff2"); }
@font-face { font-family: "Bebas Neue"; font-weight: 700; font-display: swap;
    src: url("../fonts/BebasNeue400.woff2") format("woff2"); }

:root {
    color-scheme: dark;
    --font-text: "Archivo", sans-serif;
    --font-display: "Bebas Neue", sans-serif;
    --void: #0a0a0b;
    --purple: #7c4dea;
    --purple-bright: #9a73f0;
    --purple-deep: #4c2f9e;
    --violet: #b18cff;
    --gold: #f5a524;
    --hairline: rgba(255, 255, 255, 0.07);
    --surface: #141416;
    --surface-2: #1a1a1d;
    --surface-3: #232326;
    --surface-deep: #0f0f10;
    --edge: rgba(255, 255, 255, 0.08);
    --text: #f7f6fa;
    --text-2: #cdccd6;
    --text-3: #a09eae;
    --up: #35c48d;
    --down: #e05563;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 104px; }
body {
    margin: 0; background: var(--void); color: var(--text);
    font-family: var(--font-text); font-weight: 400; line-height: 1.6;
    font-synthesis: none;
    text-transform: uppercase;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font-family: inherit; color: inherit; }
::selection { background: rgba(124, 77, 234, 0.45); color: #ffffff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: #2a2a2e; border-radius: 5px; }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }

.display {
    font-family: var(--font-display); font-weight: 400;
    text-transform: uppercase; line-height: 0.9; letter-spacing: 0.005em;
    color: #ffffff;
}
/* Optical sizing: large display settings take the Regular cut, small settings the Book cut */
.inline-section-title, .section-title, .section-title2, .page-hero h1, .faq h2, .stage-title,
.plan .plan-name, .legal-page h2, .exchanges-strip .strip-mark {
    font-weight: 700;
}

/* ---------- page ground: atmosphere + full-page reactive field ---------- */

.atmosphere {
    position: fixed; inset: 0; z-index: -3; pointer-events: none;
    background: var(--void);
}
#field { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

/* ---------- header ---------- */

.header {
    position: sticky; top: 0; z-index: 30;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 44px; height: 84px;
    background: rgba(10, 10, 11, 0.7); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--edge);
}
.wordmark { font-family: "Big Shoulders Display", sans-serif; font-weight: 700; font-size: 34px; letter-spacing: 0.02em; text-transform: uppercase; color: #ffffff; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-toggle {
    display: none; align-items: center; justify-content: center;
    width: 44px; height: 44px; padding: 0;
    background: none; border: none; color: #ffffff; cursor: pointer;
}
.nav-toggle .icon-close { display: none; }
.header.menu-open .nav-toggle .icon-open { display: none; }
.header.menu-open .nav-toggle .icon-close { display: block; }
.nav a {
    font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--text-2); transition: color 0.15s ease;
}
.nav a:hover { color: #ffffff; }
.nav .cta {
    color: var(--void); background: #ffffff; padding: 10px 22px; border-radius: 999px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.nav .cta:hover { box-shadow: 0 0 30px rgba(255, 255, 255, 0.35); transform: translateY(-1px); }

/* Full-screen mobile menu — built at runtime by cloning the nav links (single source of truth);
   slides in from the right above the trial bar (25) and under the header row (30) */
.mobile-menu {
    position: fixed; inset: 0; z-index: 28;
    display: flex; flex-direction: column; justify-content: center; gap: 44px;
    padding: 100px 40px 60px 40px;
    background: var(--void);
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s;
}
.mobile-menu.open { transform: none; visibility: visible; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu-links a {
    font-family: var(--font-display); font-weight: 700; font-size: 46px;
    letter-spacing: 0.01em; line-height: 1; color: #ffffff; text-transform: uppercase;
}
.mobile-menu .mobile-menu-cta { align-self: flex-start; }
@media (min-width: 981px) { .mobile-menu { display: none; } }

/* ---------- hero ---------- */

.hero {
    position: relative; min-height: calc(100vh - 84px);
    /* Small-viewport height: stable when the mobile browser toolbar collapses (100vh includes the
       toolbar region there, so the hero — and the cue anchored to its bottom — would jump on the
       first scroll). */
    min-height: calc(100svh - 84px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 40px 24px 110px 24px;
}

.pill {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-2); padding: 12px 22px; border-radius: 999px;
    background: var(--surface-2); border: 1px solid var(--edge);
    margin-bottom: 36px;
}
.pill .tag { color: #ffffff; }

.hero h1 { font-size: clamp(88px, 15vw, 230px); margin: 0 0 30px 0; font-weight: 700; /* hero uses the Regular cut; sections use Book */ }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero h1 .line span { display: inline-block; }
/* Two-tone solid hero: the second line steps down tonally — typography carries the drama,
   no stroke or glow (renders identically on every screen). */
.hero h1 .outline {
    color: #7e7c88;
}
.hero-lead { font-size: 24px; font-weight: 300; color: var(--text-2); max-width: 980px; margin: 0 auto 38px auto; text-wrap: balance; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 14px; margin-bottom: 26px; }

.button {
    display: inline-block; font-weight: 700; cursor: pointer;
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 17px 36px; border-radius: 999px; border: none; transition: all 0.2s ease;
}
.button.white { color: var(--void); background: #ffffff; }
.button.white:hover { box-shadow: 0 0 40px rgba(255, 255, 255, 0.35); transform: translateY(-2px); }
.button.glass {
    color: #ffffff; background: var(--surface-2);
    border: 1px solid rgba(124, 77, 234, 0.6);
}
.button.glass:hover {
    background: var(--surface-3); border-color: var(--violet);
    box-shadow: 0 0 26px rgba(124, 77, 234, 0.35);
}

.platform-chips { display: flex; justify-content: center; gap: 10px; }
.stage-title { text-align: center; font-size: 62px; letter-spacing: 0.03em; margin-bottom: 10px; }
.stage-sub {
    text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--text-3); margin: 0 0 34px 0;
}
.nameplate-row {
    display: flex; justify-content: center; align-items: center; gap: 14px;
    margin-bottom: 40px;
}
.nameplate-caption {
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-3);
}
.chip {
    font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-2); padding: 8px 18px; border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.16);
}
/* ---------- monitor-framed shot ---------- */

.stage { position: relative; max-width: 1720px; margin: 160px auto 0 auto; padding: 0 24px; }
.monitor {
    position: relative; border-radius: 20px; padding: 14px;
    background: linear-gradient(180deg, #161618, #0c0c0e);
    border: 1px solid var(--edge);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 90px 180px -50px rgba(0, 0, 0, 0.9),
        0 0 90px -40px rgba(124, 77, 234, 0.18);
}
.monitor .screen { border-radius: 10px; overflow: hidden; background: #0d0d0f; }
.stage-floor {
    height: 130px; margin-top: -6px;
    background: radial-gradient(48% 90px at 50% 0%, rgba(124, 77, 234, 0.1), transparent 70%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    mask-image: linear-gradient(to bottom, black, transparent);
}

/* ---------- exchanges ---------- */

.venues { margin: 40px auto 0 auto; padding: 0 24px 10px 24px; text-align: center; }
.venues .caption {
    font-family: var(--font-display); font-weight: 400;
    font-size: 38px; letter-spacing: 0.02em; text-transform: uppercase;
    color: #ffffff; margin-bottom: 26px;
}
.venues .row { display: flex; justify-content: center; align-items: center; gap: 54px; flex-wrap: wrap; }
/* Exchange LOGOS pending (brand asset files); bright typographic marks stand in. */
.venues .venue {
    font-family: var(--font-display); font-weight: 400;
    font-size: 26px; letter-spacing: 0.08em; text-transform: uppercase; color: #ffffff; opacity: 0.8;
    transition: opacity 0.2s ease, text-shadow 0.2s ease;
}
.venues .venue:hover { opacity: 1; text-shadow: 0 0 26px rgba(124, 77, 234, 0.7); }

/* ---------- feature carousel ---------- */

.carousel { max-width: 1480px; margin: 0 auto; padding: 150px 24px 0 24px; }
.carousel .section-title { font-size: clamp(58px, 8vw, 118px); text-align: center; margin: 0 0 16px 0; }
.carousel .section-lead {
    font-size: 17px; font-weight: 300; color: var(--text-2);
    text-align: center; max-width: 660px; margin: 0 auto 48px auto;
}
.progress { display: flex; gap: 10px; margin-bottom: 26px; }
.segment {
    flex: 1; height: 4px; border-radius: 2px; cursor: pointer; border: none; padding: 0;
    background: rgba(124, 77, 234, 0.22); overflow: hidden;
}
.segment span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--purple), var(--violet)); }
.segment.active span { animation: fill var(--advance, 8s) linear forwards; }
.segment.done span { width: 100%; animation: none; }
@keyframes fill { from { width: 0; } to { width: 100%; } }

.panel {
    position: relative; border: 1px solid var(--edge); border-radius: 22px;
    background: var(--surface);
    padding: 36px 40px; overflow: hidden;
}
.panel-grid { display: grid; grid-template-columns: 4fr 9fr; gap: 44px; align-items: center; }

/* Feature stories: the carousel unrolled into full sections — every capability visible,
   copy and capture alternating sides down the page */
#showcase-features { padding-top: 210px; }
.feature-story { max-width: 1400px; margin: 0 auto; padding: 105px 24px 0 24px; }
#showcase-features + .feature-story { padding-top: 55px; }
.feature-story.flip .panel-copy { order: 2; }
.feature-story.flip .monitor { order: 1; }
.feature-story.flip .panel-grid { grid-template-columns: 9fr 4fr; }
/* The bezel belongs to the hero stage alone. Feature captures sit square and unclipped on a
   quiet rounded card — the card rounds, the screenshot never loses pixels. */
.feature-story .monitor {
    background: var(--surface); border: 1px solid var(--edge); border-radius: 16px;
    padding: 20px; box-shadow: none;
}
.feature-story .monitor .screen { border-radius: 0; border: none; background: none; overflow: visible; }
.panel-copy .kicker {
    display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-2);
    background: var(--surface-2); border: 1px solid var(--edge); border-radius: 999px;
    padding: 6px 16px; margin-bottom: 22px;
}
.panel-copy h3 { font-size: clamp(38px, 4.5vw, 60px); margin: 0 0 16px 0; }
.panel-copy p { font-size: 17px; font-weight: 300; color: var(--text-2); margin: 0; max-width: 400px; }
.panel-copy .spot-points { margin-top: 22px; max-width: 400px; }
.panel-copy .spot-points li { font-size: 14px; padding: 10px 0; }
.panel-slide { display: none; }
.panel .panel-grid { opacity: 1; transition: opacity 0.3s ease; }
.panel.switching .panel-grid { opacity: 0; }
.panel-slide.active { display: contents; }
.panel .monitor { padding: 12px; border-radius: 18px; }
.panel .monitor .screen { border-radius: 9px; aspect-ratio: 16 / 9.2; }
.panel .monitor .screen img,
.panel .monitor .screen video { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }

.carousel-controls { display: flex; gap: 12px; margin-top: 28px; }
.circle-button {
    width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface-2); border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff; transition: all 0.2s ease;
}
.circle-button svg { display: block; }
.circle-button:hover {
    background: linear-gradient(120deg, var(--purple-deep), var(--purple));
    border-color: transparent; box-shadow: 0 0 24px rgba(124, 77, 234, 0.5);
}

/* ---------- cards ---------- */

.section { max-width: 1280px; margin: 0 auto; padding: 150px 24px 0 24px; }
.section-title2 { font-size: clamp(54px, 7.5vw, 108px); text-align: center; margin: 0 0 60px 0; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
    position: relative; padding: 34px; border-radius: 18px; overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--edge);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.card::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(124, 77, 234, 0.2), transparent 60%);
    opacity: 0; transition: opacity 0.25s ease;
}
.card:hover { transform: translateY(-4px); background: var(--surface-2); border-color: rgba(177, 140, 255, 0.45); box-shadow: 0 26px 60px -28px rgba(124, 77, 234, 0.6); }
.card:hover::before { opacity: 1; }
.card .index { font-size: 12px; font-weight: 600; letter-spacing: 0.4em; color: var(--violet); margin-bottom: 18px; }
.card h3 { font-size: 27px; letter-spacing: 0.03em; margin: 0 0 12px 0; }
.card p { font-size: 15px; font-weight: 300; color: var(--text-2); margin: 0; }

/* ---------- stats ---------- */

.statband { margin-top: 150px; border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge); background: var(--surface-deep); }
.statband-inner {
    max-width: 1280px; margin: 0 auto; padding: 76px 24px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.bigstat .value {
    font-family: var(--font-display); font-weight: 700;
    font-size: 112px; line-height: 1; font-variant-numeric: tabular-nums;
    color: #ffffff;
}
.bigstat .label { font-size: 15px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-2); margin-top: 12px; }

/* ---------- trust ---------- */

.trustline { max-width: 1020px; margin: 0 auto; padding: 130px 24px 0 24px; text-align: center; }
.trustline p { font-size: 21px; font-weight: 300; color: var(--text-2); line-height: 1.9; margin: 0; }
.trustline b { color: #ffffff; font-weight: 600; }

/* ---------- closing ---------- */

.closing { position: relative; text-align: center; padding: 180px 24px 60px 24px; }
.closing::before {
    content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background: radial-gradient(640px 420px at 50% 58%, rgba(124, 77, 234, 0.16), transparent 68%);
}
.gold-pill {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--void);
    background: var(--gold); border-radius: 6px; padding: 7px 14px; margin-bottom: 28px;
}
.closing h2 { font-size: clamp(66px, 10vw, 150px); margin: 0 0 26px 0; }
.closing h2 .accent {
    background: linear-gradient(120deg, var(--violet), var(--purple));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.closing p { font-size: 17px; font-weight: 300; color: var(--text-2); max-width: 580px; margin: 0 auto 40px auto; }
.closing p b { color: #ffffff; font-weight: 600; }

/* ---------- footer ---------- */

.footer { padding: 140px 44px 120px 44px; }
.footer-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px;
}
.footer .wordmark { font-size: 36px; }
.footer h5 {
    font-family: var(--font-display); font-weight: 400;
    font-size: 25px; letter-spacing: 0.03em; text-transform: uppercase;
    color: #ffffff; margin: 0 0 18px 0;
}
.footer-col a {
    display: block; font-size: 15px; font-weight: 400; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--text-2); padding: 5px 0; transition: color 0.15s ease;
}
.footer-col a:hover { color: #ffffff; }
/* The email address runs long in uppercase — match it to the address text beneath it */
.footer-col a[href^="mailto:"] { font-size: 13px; }
.legal { max-width: 1080px; margin: 0 auto; text-align: center; text-transform: uppercase; }
.legal .copyright { font-size: 12px; font-weight: 500; letter-spacing: 0.04em; line-height: 1.6; color: var(--text-2); margin-bottom: 10px; }
.legal .disclaimer { font-size: 12px; font-weight: 400; letter-spacing: 0.03em; line-height: 1.55; color: var(--text-3); }

/* ---------- sticky trial bar (uppercase) ---------- */

.trial-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 25;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 16px 44px;
    background: rgba(10, 10, 11, 0.7); backdrop-filter: blur(14px);
    border-top: 1px solid var(--edge);
    transform: translateY(110%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.trial-bar.on { transform: none; }
.trial-bar .offer h4 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 24px; letter-spacing: 0.03em; text-transform: uppercase; margin: 0; color: #ffffff;
}
.trial-bar .offer p { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin: 3px 0 0 0; }
.trial-bar .commerce { display: flex; align-items: center; gap: 22px; }
.toggle { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.toggle .label.active { color: #ffffff; }
.switch {
    width: 46px; height: 26px; border-radius: 999px; cursor: pointer; border: none;
    background: linear-gradient(120deg, var(--purple-deep), var(--purple));
    position: relative; transition: background 0.2s ease;
}
.switch::after {
    content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
    border-radius: 50%; background: #ffffff; transition: transform 0.25s ease;
}
.switch.yearly::after { transform: translateX(20px); }
.trial-bar .price { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); min-width: 172px; text-align: right; }
.trial-bar .price b { display: block; font-size: 15px; letter-spacing: 0.06em; color: #ffffff; font-weight: 700; }
.trial-bar .button { padding: 13px 28px; }

/* ---------- motion ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.on { opacity: 1; transform: none; }
.cards .card { transition-delay: calc(var(--i, 0) * 90ms); }

.pill, .hero-lead, .hero-actions { opacity: 0; animation: rise 0.9s ease forwards; }
.pill { animation-delay: 0.08s; }
.hero h1 .line span { transform: translateY(112%); animation: line-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero h1 .line:nth-child(1) span { animation-delay: 0.18s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.32s; }
.hero-lead { animation-delay: 0.58s; }
.hero-actions { animation-delay: 0.7s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes line-up { to { transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
    .header { padding: 0 20px; } .nav { gap: 14px; }
    .nav-toggle { display: flex; }
    .nav-links { display: none; }
    .venues .row { gap: 24px; } .venues .venue { font-size: 22px; }
    .carousel { padding: 90px 20px 0 20px; }
    .panel { padding: 24px; }
    .panel-grid { grid-template-columns: 1fr; gap: 24px; }
    .stage { margin-top: 80px; }
    #showcase-features { padding-top: 120px; }
    .feature-story { padding-top: 64px; }
    #showcase-features + .feature-story { padding-top: 28px; }
    .feature-story.flip .panel-grid { grid-template-columns: 1fr; }
    .feature-story.flip .panel-copy { order: 1; }
    .feature-story.flip .monitor { order: 2; }
    .cards { grid-template-columns: 1fr 1fr; }
    .statband-inner { grid-template-columns: repeat(2, 1fr); }
    .bigstat .value { font-size: 84px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .trial-bar { flex-direction: column; gap: 12px; padding: 14px 20px; }
    .footer { padding-bottom: 210px; }
}
@media (max-width: 620px), (max-height: 520px) {
    .cards { grid-template-columns: 1fr; }
    .hero h1 { font-size: clamp(54px, 17vw, 88px); }
    /* The hero and the sticky trial bar both carry Start Free Trial — the header does not need it on phones */
    .nav .cta { display: none; }
    /* Only the wordmark and the menu toggle remain — center the wordmark, toggle stays right
       (scoped to the header: the footer wordmark shares the class and must stay in flow) */
    .header .wordmark { position: absolute; left: 50%; transform: translateX(-50%); }
    .header { justify-content: flex-end; }
    .pill { font-size: 10px; letter-spacing: 0.12em; gap: 4px; padding: 9px 16px; }
    .hero-lead { font-size: 18px; }
    .hero-actions { flex-wrap: wrap; }
    .button { padding: 14px 22px; font-size: 12px; }
    .trial-bar { padding: 12px 16px; gap: 8px; }
    .trial-bar .offer { text-align: center; }
    .trial-bar .offer h4 { font-size: 19px; }
    .trial-bar .offer p { display: none; }
    .trial-bar .commerce { flex-wrap: wrap; justify-content: center; gap: 12px; width: 100%; }
    .trial-bar .price { min-width: 0; text-align: center; }
    .trial-bar .price b { display: inline; margin-right: 6px; }
    .trial-bar .button { padding: 12px 26px; white-space: nowrap; }
    .footer { padding-bottom: 250px; }
}

/* ============================================================================
   Page set: shared subpage chrome and page-specific components
   ========================================================================== */

/* ---------- compact page hero (subpages) ---------- */

.page-hero { text-align: center; padding: 110px 24px 70px 24px; }
.page-hero h1 { font-size: clamp(64px, 9vw, 140px); margin: 0 0 20px 0; }
.page-hero p { font-size: 18px; font-weight: 300; color: var(--text-2); max-width: 640px; margin: 0 auto; }

.page-main { max-width: 1280px; margin: 0 auto; padding: 0 24px 140px 24px; }

/* ---------- pricing ---------- */

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1040px; margin: 0 auto; }
.plan {
    position: relative; border-radius: 22px; padding: 44px;
    display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--edge);
}
.plan.featured { border-color: rgba(124, 77, 234, 0.5); box-shadow: 0 0 90px -40px rgba(124, 77, 234, 0.7); }
.plan .plan-name { font-size: 34px; margin: 0 0 6px 0; }
.plan .plan-tagline { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; color: var(--text-3); margin: 0 0 26px 0; }
.plan .plan-price { font-family: var(--font-display); font-weight: 700; font-size: 74px; line-height: 1; color: #ffffff; }
.plan .plan-price small { font-size: 22px; color: var(--text-2); }
.plan .plan-alt { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; color: var(--text-3); margin: 8px 0 28px 0; }
.plan ul { list-style: none; margin: 0 0 34px 0; padding: 0; }
.plan .button { margin-top: auto; align-self: flex-start; }
.plan li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 15px; font-weight: 400; letter-spacing: 0.05em; color: var(--text-2);
    padding: 9px 0;
}
.plan li::before {
    content: ""; flex-shrink: 0; margin-top: 7px;
    width: 10px; height: 10px; border-radius: 50%;
    background: linear-gradient(140deg, var(--purple-deep), var(--purple));
}
.plan .soon-tag {
    position: absolute; top: 24px; right: 24px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    color: var(--void); background: var(--gold); border-radius: 6px; padding: 5px 12px;
}
.pricing-note { text-align: center; font-size: 14px; font-weight: 300; color: var(--text-3); max-width: 620px; margin: 40px auto 0 auto; }

/* ---------- FAQ ---------- */

.faq { max-width: 860px; margin: 110px auto 0 auto; }
.faq h2 { font-size: clamp(44px, 6vw, 84px); text-align: center; margin: 0 0 44px 0; }
.faq details { border-top: 1px solid var(--edge); }
.faq details:last-child { border-bottom: 1px solid var(--edge); }
.faq summary {
    cursor: pointer; list-style: none; position: relative;
    font-size: 17px; font-weight: 600; letter-spacing: 0.04em; color: #ffffff;
    padding: 24px 56px 24px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    font-family: var(--font-display); font-size: 30px; color: var(--text-3);
    transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .answer { font-size: 15px; font-weight: 300; color: var(--text-2); padding: 0 0 24px 0; max-width: 720px; }

/* ---------- download ---------- */

.platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1040px; margin: 0 auto; }
.platform {
    border-radius: 22px; padding: 44px; text-align: center;
    background: var(--surface); border: 1px solid var(--edge);
}
.platform h2 { font-size: 40px; margin: 0 0 8px 0; }
.platform .arch { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: var(--text-3); margin-bottom: 28px; }
.platform .requirements { font-size: 13px; font-weight: 300; color: var(--text-3); margin-top: 22px; }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.contact-card {
    border-radius: 22px; padding: 44px; text-align: center;
    background: var(--surface); border: 1px solid var(--edge);
}
.contact-card h2 { font-size: 30px; margin: 0 0 14px 0; font-weight: 700; }
.contact-card p { font-size: 15px; font-weight: 300; color: var(--text-2); margin: 0 0 24px 0; line-height: 1.9; }

/* ---------- legal ---------- */

.legal-page { max-width: 900px; margin: 0 auto; }
.legal-page section { margin-bottom: 70px; }
.legal-page h2 { font-size: clamp(36px, 4.5vw, 60px); margin: 0 0 18px 0; }
.legal-page p { font-size: 14px; font-weight: 400; letter-spacing: 0.03em; line-height: 2; color: var(--text-2); margin: 0 0 14px 0; }
.legal-page h3 { font-size: 24px; letter-spacing: 0.03em; margin: 34px 0 10px 0; }
.legal-page .updated { font-size: 12px; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 22px; }
.legal-page .pending {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    color: var(--void); background: var(--gold); border-radius: 6px; padding: 5px 12px; margin-bottom: 16px;
}

/* ---------- releases ---------- */

.releases { max-width: 860px; margin: 0 auto; }
.entry { border-left: 2px solid rgba(124, 77, 234, 0.4); padding: 4px 0 4px 30px; margin-bottom: 44px; }
.entry .version { font-size: 30px; margin: 0 0 4px 0; }
.entry .date { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: var(--text-3); margin-bottom: 12px; }
.entry p { font-size: 15px; font-weight: 300; color: var(--text-2); margin: 0; }

/* ---------- shared page CTA ---------- */

.page-cta { text-align: center; padding: 110px 24px 0 24px; }
.page-cta .gold-pill { margin-bottom: 24px; }
.page-cta h2 { font-size: clamp(54px, 8vw, 120px); margin: 0 0 22px 0; }
.page-cta p { font-size: 16px; font-weight: 300; color: var(--text-2); max-width: 560px; margin: 0 auto 36px auto; }

@media (max-width: 980px) {
    .plans, .platforms, .contact-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 70px 20px 50px 20px; }
    .page-main { padding-bottom: 190px; }
}

/* ---------- newsletter capture ---------- */

.newsletter { text-align: center; padding: 150px 24px 0 24px; }
.newsletter-form {
    display: flex; justify-content: center; gap: 12px;
    max-width: 580px; margin: 0 auto;
}
.newsletter-form input {
    flex: 1; min-width: 0;
    font-family: var(--font-text); font-weight: 500; font-size: 13px;
    letter-spacing: 0.08em; text-transform: uppercase; color: #ffffff;
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px;
    padding: 16px 26px; outline: none; transition: border-color 0.2s ease;
}
.newsletter-form input::placeholder { color: var(--text-3); }
.newsletter-form input:focus { border-color: var(--purple); }
.newsletter-note {
    font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: var(--up);
    margin: 20px 0 0 0; opacity: 0; transition: opacity 0.4s ease;
}
.newsletter-note.on { opacity: 1; }
@media (max-width: 620px), (max-height: 520px) {
    .newsletter-form { flex-direction: column; }
    .newsletter-form .button { width: 100%; }
}

/* ---------- exchanges section ---------- */

.venues-grid {
    display: grid; grid-template-columns: 6fr 6fr; gap: 56px; align-items: center;
    max-width: 1140px; margin: 0 auto;
}
.venue-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.venue-tile {
    display: flex; align-items: center; justify-content: center;
    padding: 42px 20px; border-radius: 18px;
    background: var(--surface); border: 1px solid var(--edge);
    font-family: var(--font-display); font-weight: 400;
    font-size: 30px; letter-spacing: 0.06em; text-transform: uppercase; color: #ffffff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.venue-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(177, 140, 255, 0.5);
    box-shadow: 0 26px 60px -28px rgba(124, 77, 234, 0.6);
}
@media (max-width: 980px) {
    .venues-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- feature point lists ---------- */

.spot-points { margin: 0; padding: 0; list-style: none; }
.spot-points li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 14px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-2); padding: 13px 0;
}
.spot-points li::before {
    content: ""; flex-shrink: 0; margin-top: 7px;
    width: 10px; height: 10px; border-radius: 50%;
    background: linear-gradient(140deg, var(--purple-deep), var(--purple));
}

/* ---------- capability matrix ---------- */

/* Capability columns: the launch feature list as three themed cards, four entries inside each */
.capability-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-column {
    background: var(--surface-deep); border: 1px solid var(--edge);
    border-radius: 16px; padding: 34px 32px 38px 32px;
}
.capability-entry { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--hairline); text-align: center; }
.capability-entry:first-child { margin-top: 0; padding-top: 6px; border-top: none; }
.capability-entry h3 { font-size: 26px; letter-spacing: 0.03em; margin: 0 0 6px 0; }
.capability-entry p { font-size: 14px; font-weight: 300; color: var(--text-2); margin: 0; line-height: 1.65; }
.capability-cell p { font-size: 14px; font-weight: 300; color: var(--text-2); margin: 0; line-height: 1.65; }

.capability-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-group {
    background: var(--surface); border: 1px solid var(--edge);
    border-radius: 18px; padding: 34px;
}
.capability-group h3 { font-size: 32px; letter-spacing: 0.03em; margin: 0 0 18px 0; }
.capability-group .spot-points li { font-size: 15px; padding: 10px 0; }
.venue-tiles-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 18px;
}
.venue-tiles-row .venue-tile { padding: 30px 16px; font-size: 26px; }
@media (max-width: 980px) {
    .capability-columns { grid-template-columns: 1fr; gap: 12px; }
    .capability-column { padding: 26px 26px 28px 26px; }
    .venue-tiles-row { grid-template-columns: 1fr 1fr; }
}

/* ---------- centered section pill ---------- */
.pill-center { text-align: center; margin-bottom: 26px; }

/* ---------- footer newsletter ---------- */

.footer-newsletter { margin-top: 22px; max-width: 320px; }
.footer-newsletter p {
    font-size: 12px; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--text-3); margin: 0 0 14px 0; line-height: 1.8;
}
.footer-newsletter .newsletter-form { position: relative; max-width: none; margin: 0; }
.footer-newsletter .newsletter-form input { width: 100%; padding: 12px 54px 12px 20px; font-size: 11px; }
.footer-newsletter .submit-circle {
    position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    background: #ffffff; color: var(--void); transition: box-shadow 0.2s ease;
}
.footer-newsletter .submit-circle:hover { box-shadow: 0 0 18px rgba(255, 255, 255, 0.4); }
.footer-newsletter .newsletter-note { text-align: left; font-size: 12px; margin-top: 14px; }
@media (max-width: 980px) { .footer-newsletter { max-width: 100%; } }


/* ---------- exchanges strip ---------- */

.exchanges-strip {
    margin-top: 18px; display: grid; grid-template-columns: 1.2fr repeat(4, 1fr);
    background: var(--surface-deep); border: 1px solid var(--edge); border-radius: 16px;
    overflow: hidden;
}
.exchanges-strip .strip-label {
    display: flex; align-items: center; padding: 30px 34px;
    font-size: 26px; letter-spacing: 0.03em;
}
.exchanges-strip .strip-mark {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
    padding: 26px 0;
    font-family: var(--font-display); font-weight: 400;
    font-size: 26px; letter-spacing: 0.06em; text-transform: uppercase; color: #ffffff;
    border-left: 1px solid var(--edge);
}
.exchanges-strip .strip-mark small {
    font-family: var(--font-text); font-size: 13px; font-weight: 500;
    letter-spacing: 0.14em; color: var(--text-2);
}
@media (max-width: 980px) {
    .exchanges-strip { grid-template-columns: 1fr 1fr; }
    .exchanges-strip .strip-label { grid-column: 1 / -1; padding: 22px 26px 6px 26px; }
    .exchanges-strip .strip-mark { border-left: none; padding: 14px 0; }
    .exchanges-strip .strip-mark:nth-child(odd) { border-left: 1px solid var(--edge); }
}

/* ---------- short-height viewports (landscape phones): slim the chrome, scale the set pieces ---------- */
@media (max-height: 520px) {
    .header { height: 64px; }
    .mobile-menu { padding-top: 80px; justify-content: flex-start; gap: 28px; }
    .mobile-menu-links { gap: 12px; }
    .mobile-menu-links a { font-size: 32px; }
    .hero { min-height: calc(100vh - 64px); min-height: calc(100svh - 64px); }
    .stage { margin-top: 70px; }
    .stage-title { font-size: 48px; margin-bottom: 24px; }
    .carousel .section-title { font-size: clamp(48px, 6vw, 88px); }
    .section-title2 { font-size: clamp(44px, 6vw, 80px); margin-bottom: 40px; }
    .bigstat .value { font-size: 64px; }
    .statband-inner { padding: 48px 24px; }
    /* A landscape phone is wide — restore the multi-column layouts the narrow-width rules stack */
    .capability-groups { grid-template-columns: repeat(3, 1fr); }
    .panel-grid { grid-template-columns: 4fr 9fr; gap: 28px; }
    .plans { grid-template-columns: 1fr 1fr; }
    .cards { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
    .footer-newsletter { max-width: 320px; }
    .footer { padding-bottom: 140px; }
    .capability-group { padding: 24px; }
    .capability-group h3 { font-size: 24px; }
    .capability-group .spot-points li { font-size: 13px; }
    .exchanges-strip .strip-label { font-size: 24px; padding: 20px 24px; }
    .exchanges-strip .strip-mark { font-size: 21px; padding: 18px 0; }
    .trustline { padding-top: 80px; }
    .trustline p { font-size: 16px; }
    .plan { padding: 28px; }
    .plan .plan-name { font-size: 26px; }
    .plan .plan-price { font-size: 54px; }
    .plan .plan-price small { font-size: 16px; }
    .newsletter { padding-top: 90px; }
    /* The trial bar rides a short viewport as one compact row (the stacked phone form is a
       third of a landscape screen) */
    .trial-bar { flex-direction: row; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 20px; }
    .trial-bar .offer { text-align: left; }
    .trial-bar .offer h4 { font-size: 16px; }
    .trial-bar .commerce { width: auto; flex-wrap: nowrap; }
    .trial-bar .button { padding: 10px 20px; font-size: 11px; }
}

/* ---------- account: passwordless sign-in + the signed-in view ---------- */
.hidden { display: none !important; }
.account-signin { max-width: 560px; margin: 0 auto; }
.account-view {
    max-width: 1220px; margin: 0 auto;
    display: grid; grid-template-columns: 6fr 5fr; gap: 18px;
    align-items: start;
}
.account-identity { grid-column: 1 / -1; }
.account-column { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.account-card {
    background: var(--surface); border: 1px solid var(--edge); border-radius: 14px;
    padding: 36px 40px;
}
.account-card .kicker {
    display: inline-block; font-family: var(--font-display); font-weight: 400; font-size: 23px;
    letter-spacing: 0.04em; line-height: 1; text-transform: uppercase; color: #ffffff;
    margin-bottom: 18px;
}
.account-card h2 { font-size: 32px; margin: 0 0 10px 0; }
.account-lead { font-size: 15px; font-weight: 300; color: var(--text-2); margin: 0 0 26px 0; }
.account-form { display: flex; flex-direction: column; gap: 14px; }
.account-form input {
    font-family: var(--font-text); font-weight: 500; font-size: 14px;
    letter-spacing: 0.08em; text-transform: uppercase; color: #ffffff;
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px;
    padding: 16px 26px; outline: none; transition: border-color 0.2s ease;
}
.account-form input::placeholder { color: var(--text-3); }
.account-form input:focus { border-color: var(--purple); }
.account-form .button { align-self: flex-start; }
.account-note { font-size: 13px; font-weight: 400; color: var(--text-3); margin: 0; }
.link-button {
    background: none; border: none; padding: 0; cursor: pointer; align-self: flex-start;
    font-family: var(--font-text); font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: #ffffff;
}
.link-button:hover { color: var(--violet); }
.account-identity { display: flex; justify-content: space-between; align-items: center; padding: 0 6px; }
.account-input {
    font-family: var(--font-text); font-weight: 400; font-size: 14px;
    letter-spacing: 0.04em; text-transform: none; color: #ffffff;
    background: var(--surface-2); border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 8px;
    padding: 12px 16px; outline: none; transition: border-color 0.2s ease;
}
.account-input::placeholder { color: var(--text-2); text-transform: uppercase; }
.account-input:focus { border-color: var(--purple); }
.profile-row { display: flex; gap: 12px; align-items: center; }
.profile-block { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--hairline); }
.profile-label {
    display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--text-3); margin-bottom: 8px;
}
.profile-value-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.profile-value { font-size: 14px; color: var(--text-2); overflow-wrap: anywhere; }
.address-form { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.address-form .account-input { display: block; width: 100%; }
.address-row { display: flex; gap: 10px; }
.address-row .account-input { flex: 1; min-width: 0; }
select.account-input { cursor: pointer; }

/* Custom dropdown: the native select stays hidden as the value store; the styled trigger and
   listbox render in the site's language (native popups cannot be themed reliably). */
.select { position: relative; }
.select-trigger {
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
    width: 100%; text-align: left; cursor: pointer; text-transform: uppercase;
}
.select-trigger svg { flex-shrink: 0; opacity: 0.7; }
.select-menu {
    position: fixed; z-index: 70;
    overflow-y: auto;
    scrollbar-width: none;
    background: var(--surface-2); border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px; padding: 6px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.select-option {
    display: block; width: 100%; text-align: left; cursor: pointer;
    font-family: var(--font-text); font-size: 13px; letter-spacing: 0.03em;
    color: var(--text-2); background: none; border: none; border-radius: 6px;
    padding: 9px 12px; text-transform: uppercase;
}
.select-option:hover, .select-option:focus { background: var(--surface-3); color: #ffffff; outline: none; }
.select-option.selected { color: #ffffff; font-weight: 600; }
.select-menu::-webkit-scrollbar { display: none; }
.profile-row .account-input { flex: 1; min-width: 0; }
.checkout-billing .account-input { display: block; width: 100%; margin-top: 4px; }
.checkout-billing #checkout-payment-element { margin-top: 14px; }
.account-email { font-size: 14px; font-weight: 600; letter-spacing: 0.06em; color: var(--text-2); }
.button.small { padding: 11px 22px; font-size: 11px; }
.account-plan-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 16px; }
.account-price { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: #ffffff; margin-top: 6px; }
.account-price small { font-size: 15px; color: var(--text-2); }
.status-pill {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-2); padding: 6px 12px; border-radius: 7px;
    background: var(--surface-3); white-space: nowrap;
}
.status-pill.gold { color: var(--void); background: var(--gold); }
.account-actions { margin-top: 22px; }
.account-method-row { display: flex; justify-content: space-between; align-items: center; }
.account-method { font-size: 15px; font-weight: 600; letter-spacing: 0.06em; color: #ffffff; }
.account-method small { display: block; font-size: 12px; font-weight: 400; color: var(--text-3); margin-top: 4px; letter-spacing: 0.05em; }
.account-button {
    font-family: var(--font-text); font-weight: 700; font-size: 11px; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--text-2); cursor: pointer; white-space: nowrap;
    background: var(--surface-2); border: 1px solid var(--edge); border-radius: 8px; padding: 10px 20px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.account-button:hover { color: #ffffff; border-color: rgba(255, 255, 255, 0.25); background: var(--surface-3); }
.account-invoice-row {
    display: grid; grid-template-columns: 1.1fr 2fr 0.8fr auto; gap: 16px; align-items: center;
    font-size: 13px; font-weight: 500; letter-spacing: 0.05em; color: var(--text-2);
    padding: 6px 0;
}
@media (max-width: 620px), (max-height: 520px) {
    .account-view { grid-template-columns: 1fr; }
    .account-card { padding: 26px 22px; }
    .account-signin-product { padding-top: 9vh; }
    .account-identity { flex-wrap: wrap; gap: 10px; }
    .account-email { overflow-wrap: anywhere; }
    .account-plan-row { flex-wrap: wrap; }
    .account-method-row { flex-wrap: wrap; gap: 12px; }
    .checkout-view { padding-top: 4vh; }
    .checkout-stack .account-card { padding: 24px 20px; }
    .modal-card { padding: 24px 20px 26px 20px; }
    .profile-row { flex-wrap: wrap; }
    .account-card h2 { font-size: 26px; }
    .account-invoice-row { grid-template-columns: 1fr auto; }
    .account-invoice-row span:nth-child(2) { display: none; }
}

/* Sign-in variant: the product echo — cardless centered stack, the Terminal passphrase shape */
.account-signin-product { display: flex; justify-content: center; padding: 14vh 24px 0 24px; }
.signin-product-stack { width: 600px; max-width: 100%; text-align: center; }
.signin-product-stack .wordmark { font-size: 72px; margin-bottom: 26px; display: block; }
.signin-product-heading { font-size: clamp(44px, 11vw, 68px); font-weight: 700; letter-spacing: 0.02em; margin: 0 0 16px 0; }
.signin-product-support {
    font-size: 16px; font-weight: 300; color: var(--text-2); line-height: 1.7;
    text-wrap: balance; margin: 0 0 28px 0;
}
.signin-product-form { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.signin-product-form input, .signin-product-action { width: 440px; max-width: 100%; }
.signin-product-form input {
    font-family: var(--font-text); font-weight: 400; font-size: 14px;
    letter-spacing: 0.04em; text-transform: uppercase; color: #ffffff; text-align: left;
    background: var(--surface); border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 8px;
    padding: 14px 18px; outline: none; transition: border-color 0.2s ease;
}
.signin-product-form input::placeholder { color: var(--text-2); }
.signin-product-form input:focus { border-color: var(--purple); }
/* Typed email addresses render naturally; only the placeholder keeps the uppercase voice */
.signin-product-form input[type="email"], .newsletter-form input[type="email"] { text-transform: none; }
.signin-product-form input[type="email"]::placeholder, .newsletter-form input[type="email"]::placeholder { text-transform: uppercase; }
.signin-product-action {
    font-family: var(--font-text); font-weight: 700; font-size: 13px; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--void); cursor: pointer;
    background: #ffffff; border: none; border-radius: 8px; padding: 14px 18px;
    transition: box-shadow 0.2s ease;
}
.signin-product-action:hover { box-shadow: 0 0 26px rgba(255, 255, 255, 0.35); }
.signin-product-secondary {
    font-family: var(--font-text); font-weight: 700; font-size: 13px; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--text-2); cursor: pointer;
    background: var(--surface-2); border: 1px solid var(--edge); border-radius: 8px;
    padding: 13px 18px; width: 440px; max-width: 100%;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.signin-product-secondary:hover { color: #ffffff; border-color: rgba(255, 255, 255, 0.25); }
.signin-product-form .link-button { align-self: center; margin-top: 6px; }
.signin-product-error { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--down); margin: 4px 0 0 0; }
.signin-turnstile { display: flex; justify-content: center; }
.signin-turnstile iframe { margin-top: 18px; }
.newsletter-note.error { color: var(--down); }

/* Checkout: the trial commitment — plan summary + Stripe Payment Element in the card language */
.checkout-view { display: flex; justify-content: center; padding: 7vh 24px 0 24px; }
.checkout-stack { width: 560px; max-width: 100%; text-align: center; }
.checkout-stack .account-card { text-align: left; margin-top: 22px; }
.checkout-plan .account-plan-row { align-items: center; }
#checkout-payment-element { margin-top: 18px; }
.checkout-billing .account-actions { margin-top: 24px; }
.checkout-billing .signin-product-action { width: 100%; }
.checkout-billing .signin-product-error { margin-top: 14px; }
.checkout-disclosure {
    font-size: 12px; letter-spacing: 0.03em; line-height: 1.8; color: var(--text-3);
    max-width: 480px; margin: 22px auto 40px auto;
}

/* Payment editing happens in a modal overlay — cards stay compact summaries */
.modal-overlay {
    position: fixed; inset: 0; z-index: 40;
    display: flex; align-items: center; justify-content: center; padding: 24px;
    background: rgba(5, 5, 6, 0.72); backdrop-filter: blur(8px);
}
.modal-card {
    width: 520px; max-width: 100%; max-height: 90vh; overflow-y: auto;
    background: var(--surface); border: 1px solid var(--edge); border-radius: 16px;
    padding: 30px 32px 32px 32px;
}
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.modal-head .kicker { margin-bottom: 0; }
.modal-close {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; padding: 0; cursor: pointer;
    background: none; border: none; color: var(--text-2); transition: color 0.2s ease;
}
.modal-close:hover { color: #ffffff; }
#payment-update-element { margin-top: 10px; }
.modal-card.wide { width: 620px; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.modal-actions .signin-product-action { width: 100%; font-size: 12px; padding: 12px 18px; }
.modal-actions .account-button { width: 100%; padding: 12px 18px; }
.modal-card .signin-product-error { margin-top: 14px; }
.signin-product-action:disabled, .signin-product-secondary:disabled, .account-button:disabled { opacity: 0.55; pointer-events: none; }
a.account-button { display: inline-block; text-decoration: none; }

/* Application chrome drops the header trial CTA too — no selling inside the account */
body[data-page="Account"] .header .cta { display: none; }
body[data-page="Account"] .mobile-menu .cta { display: none; }
.checkout-preparing { font-size: 13px; letter-spacing: 0.04em; color: var(--text-3); margin: 14px 0 0 0; }

/* Account page runs application chrome: no footer, no trial bar — one quiet legal line */
body[data-page="Account"] { display: flex; flex-direction: column; min-height: 100svh; }
body[data-page="Account"] .page-main { flex: 1; }
.account-footnote {
    display: flex; justify-content: center; gap: 26px; flex-wrap: wrap;
    padding: 40px 24px 30px 24px;
    font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-3);
}
.account-footnote a { color: var(--text-3); transition: color 0.15s ease; }
.account-footnote a:hover { color: #ffffff; }
