:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-panel: rgba(17, 24, 39, 0.72);
    --bg-panel-strong: rgba(8, 13, 25, 0.92);
    --border: rgba(148, 163, 184, 0.14);
    --border-strong: rgba(245, 158, 11, 0.34);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-soft: #64748b;
    --accent: #3b82f6;
    --pocket: #00a8ff;
    --green: #10b981;
    --red: #ef4444;
    --amber: #f59e0b;
    --cyan: #06b6d4;
    --purple: #8b5cf6;
    --primary: #f59e0b;
    --text-light: #f8fafc;
    --font-heading: "Rajdhani", sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
    --header-gradient: linear-gradient(90deg, #f59e0b, rgba(139, 92, 246, 0.72), #06b6d4);
    --glass: saturate(180%) blur(20px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(59, 130, 246, 0.13), transparent 34rem),
        radial-gradient(circle at 88% 20%, rgba(245, 158, 11, 0.09), transparent 30rem),
        linear-gradient(180deg, #070b13 0%, var(--bg-primary) 38%, #050811 100%);
    color: var(--text-primary);
    font-family: "Inter", system-ui, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 86%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0 62%, rgba(6, 182, 212, 0.08) 62% 63%, transparent 63%),
        linear-gradient(245deg, transparent 0 70%, rgba(245, 158, 11, 0.055) 70% 71%, transparent 71%);
    opacity: 0.72;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.mono {
    font-family: "JetBrains Mono", monospace;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    transform: translateY(-150%);
    background: var(--amber);
    color: #090e17;
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: clamp(5rem, 10vw, 8.25rem) 0;
    position: relative;
}

.section[id],
.final-cta,
.hero[id] {
    scroll-margin-top: 124px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.8rem;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading.compact {
    max-width: 860px;
}

.section-heading h2,
.hero h1,
.final-cta h2 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0;
}

.section-heading h2 {
    font-size: clamp(2.35rem, 5vw, 4.25rem);
}

.section-heading p {
    margin: 1rem 0 0;
    max-width: 720px;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.section-heading-cta {
    margin-top: 1.15rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 999px;
    background: var(--amber);
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.72);
}

.btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.86rem 1.22rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn::after {
    content: "";
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 5l7 7-7 7M5 12h14' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:focus-visible,
.preview-tab:focus-visible,
.faq-question:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.header-cta:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #fbbf24 48%, #f59e0b);
    color: #080c14;
    box-shadow: 0 0 34px rgba(245, 158, 11, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 0 46px rgba(245, 158, 11, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.62);
    border-color: rgba(148, 163, 184, 0.2);
    color: var(--text-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
    border-color: rgba(6, 182, 212, 0.52);
    background: rgba(6, 182, 212, 0.11);
}

.btn-full {
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 10, 21, 0.76);
    border-bottom: 2px solid transparent;
    border-image: var(--header-gradient) 1;
    backdrop-filter: var(--glass);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(5, 10, 21, 0.94);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.header-shell {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 236px;
}

.brand-mark {
    position: relative;
    width: 92px;
    height: 92px;
    margin-top: 10px;
    margin-bottom: -26px;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(6, 182, 212, 0.42));
}

.brand-wordmark {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.05rem, 1.7vw, 1.48rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    background: linear-gradient(135deg, #f8fafc, #fbbf24 52%, #67e8f9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.8vw, 1.45rem);
}

.desktop-nav a,
.header-cta {
    color: var(--text-muted);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: color 160ms ease;
}

.desktop-nav a:hover {
    color: var(--text-primary);
}

.header-cta {
    color: #08101e;
    background: var(--amber);
    padding: 0.64rem 1.05rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.35);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.lang-switch {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    min-height: 38px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.72);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 800;
}

.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8.1rem 0 8.6rem;
    overflow: hidden;
}

.hero-media,
.hero-grid,
.hero-vignette {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("../img/hero-market.webp");
    background-size: cover;
    background-position: center top;
    opacity: 0.5;
    filter: saturate(1.15) contrast(1.06);
}

.hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.hero-vignette {
    background:
        linear-gradient(180deg, rgba(5, 10, 21, 0.58) 0%, rgba(5, 10, 21, 0.2) 42%, #070b13 100%),
        radial-gradient(circle at 50% 37%, rgba(59, 130, 246, 0.14), transparent 35rem),
        linear-gradient(90deg, rgba(5, 10, 21, 0.94), transparent 20%, transparent 78%, rgba(5, 10, 21, 0.92));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.private-release,
.license-cap {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.48rem 0.78rem;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 999px;
    background: rgba(9, 14, 23, 0.74);
    color: #fde68a;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.status-light {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.75);
}

.hero h1 {
    max-width: 950px;
    margin-top: 1.2rem;
    font-size: clamp(3rem, 8vw, 6.65rem);
    text-shadow: 0 24px 74px rgba(0, 0, 0, 0.62);
}

.pocket-word {
    color: var(--pocket);
    text-shadow: 0 0 34px rgba(0, 168, 255, 0.36);
}

.hero h1::first-line {
    color: #ffffff;
}

.hero-subtitle {
    max-width: 790px;
    margin: 1.25rem auto 0;
    color: var(--text-secondary);
    font-size: clamp(1.06rem, 2vw, 1.34rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 2.1rem;
}

.hero-proof-grid {
    width: min(100%, 820px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 2.7rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    background: rgba(148, 163, 184, 0.14);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero-proof-grid div {
    padding: 1rem;
    background: rgba(9, 14, 23, 0.78);
}

.proof-value {
    display: block;
    color: #67e8f9;
    font-family: "JetBrains Mono", monospace;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 800;
}

.proof-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-console {
    position: absolute;
    left: 50%;
    bottom: -70px;
    z-index: 3;
    width: min(1020px, calc(100% - 32px));
    transform: translateX(-50%);
    border: 1px solid rgba(6, 182, 212, 0.22);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(7, 12, 31, 0.94)),
        radial-gradient(circle at top, rgba(245, 158, 11, 0.12), transparent 36rem);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    overflow: hidden;
}

.launch-reservation {
    padding: 7.25rem 0 3.2rem;
    background:
        radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.12), transparent 28rem),
        radial-gradient(circle at 82% 20%, rgba(6, 182, 212, 0.1), transparent 28rem),
        linear-gradient(180deg, rgba(8, 13, 25, 0.82), rgba(15, 23, 42, 0.16));
}

.launch-reservation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.2rem, 4vw, 3rem);
    align-items: center;
}

.launch-copy h2 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 0.95;
}

.launch-copy p,
.countdown-note {
    color: var(--text-secondary);
}

.launch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.countdown-card {
    padding: clamp(1rem, 2.6vw, 1.5rem);
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.82), rgba(3, 7, 18, 0.96)),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 16rem);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.countdown-label {
    display: block;
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.countdown-clock {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 1rem 0;
}

.countdown-clock div,
.seat-meter {
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--radius);
    background: rgba(8, 13, 25, 0.72);
}

.countdown-clock div {
    min-height: 104px;
    display: grid;
    place-items: center;
    padding: 0.7rem 0.45rem;
}

.countdown-clock strong {
    color: #67e8f9;
    font-family: "JetBrains Mono", monospace;
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    line-height: 1;
}

.countdown-clock span,
.seat-meter span {
    color: var(--text-muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seat-meter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.seat-meter {
    position: relative;
    overflow: hidden;
    padding: 0.9rem;
}

.seat-meter strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-primary);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.35rem;
}

.seat-meter i {
    display: block;
    height: 0.42rem;
    margin-top: 0.65rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.9) var(--fill), rgba(16, 185, 129, 0.28) var(--fill));
}

.seat-meter.founder i {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.95) var(--fill), rgba(245, 158, 11, 0.22) var(--fill));
}

.countdown-note {
    margin: 0.9rem 0 0;
    font-size: 0.86rem;
}

.console-topline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.78rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    color: var(--text-muted);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.console-body {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
    padding: 1rem;
}

.mini-chart {
    min-height: 148px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    align-items: end;
    gap: 0.52rem;
    padding: 1rem;
    border-radius: var(--radius);
    background:
        linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        rgba(2, 6, 23, 0.62);
    background-size: 32px 32px;
}

.mini-chart span {
    position: relative;
    height: var(--h);
    min-height: 34px;
    border-radius: 3px;
    background: linear-gradient(180deg, #22c55e, #0f766e);
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.3);
}

.mini-chart span:nth-child(even) {
    background: linear-gradient(180deg, #ef4444, #991b1b);
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.22);
}

.mini-chart span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -18px;
    bottom: -15px;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(203, 213, 225, 0.42);
}

.console-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.console-metrics div {
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
}

.console-metrics strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.84rem;
    margin-bottom: 0.45rem;
}

.console-metrics span {
    display: block;
    color: var(--text-muted);
    font-size: 0.74rem;
    line-height: 1.45;
}

.signal-strip {
    padding: 2.8rem 0;
    background: linear-gradient(180deg, #070b13, rgba(10, 14, 23, 0.4));
}

.signal-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.strip-item {
    padding: 1.2rem;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--radius);
    background: rgba(17, 24, 39, 0.46);
}

.strip-kicker {
    display: block;
    color: #67e8f9;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.strip-item strong {
    display: block;
    margin-top: 0.34rem;
}

.strip-item span:last-child {
    display: block;
    margin-top: 0.28rem;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.dashboard-preview-shell {
    border: 1px solid rgba(6, 182, 212, 0.18);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.78), rgba(7, 12, 31, 0.92)),
        radial-gradient(circle at top left, rgba(6, 182, 212, 0.12), transparent 28rem);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.preview-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.preview-tab {
    min-height: 38px;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: var(--text-muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
}

.preview-tab.active {
    border-color: rgba(245, 158, 11, 0.44);
    background: rgba(245, 158, 11, 0.14);
    color: #fde68a;
}

.preview-stage {
    padding: clamp(0.75rem, 2vw, 1.25rem);
}

.preview-panel {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #020617;
}

/* preview-panel::before label intentionally removed — filename chips were
   visible to the public via the data-preview-asset attribute. */

.preview-panel img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.preview-caption {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    padding: 0.58rem 0.72rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(2, 6, 23, 0.78);
    color: var(--text-secondary);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
}

.command-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0 clamp(0.75rem, 2vw, 1.25rem) clamp(0.75rem, 2vw, 1.25rem);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--radius);
    background: rgba(148, 163, 184, 0.12);
}

.command-proof-grid article {
    min-width: 0;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.62);
}

.command-proof-grid span,
.proof-card span {
    display: block;
    color: #67e8f9;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.command-proof-grid strong,
.proof-card strong {
    display: block;
    margin-top: 0.42rem;
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.45;
}

.feature-grid,
.pack-grid,
.pricing-grid,
.flow-grid,
.step-grid {
    display: grid;
    gap: 1rem;
}

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

.feature-grid .feature-card:last-child:nth-child(3n + 1) {
    grid-column: 1 / -1;
}

.feature-card,
.pack-card,
.price-card,
.flow-card,
.step-card,
.proof-slot {
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.72), rgba(7, 12, 31, 0.86)),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 14rem);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-card {
    padding: 1.35rem;
}

.feature-card:hover,
.pack-card:hover,
.price-card:hover {
    border-color: rgba(6, 182, 212, 0.32);
    transform: translateY(-3px);
}

.feature-card,
.pack-card,
.price-card {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.18);
    border-radius: var(--radius);
    background: rgba(6, 182, 212, 0.08);
    color: #67e8f9;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3,
.pack-card h3,
.price-card h3,
.flow-card h3,
.step-card h3,
.founder-vault h3 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.35rem;
    line-height: 1.05;
}

.feature-card p,
.pack-card p,
.flow-card p,
.step-card p,
.roadmap-card p,
.founder-vault p {
    margin: 0.75rem 0 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.prediction {
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.05), rgba(15, 23, 42, 0.12));
}

.prediction-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(1.4rem, 4vw, 3rem);
    align-items: center;
}

.prediction-card,
.roadmap-card {
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.74), rgba(7, 12, 31, 0.88)),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 14rem);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.prediction-card {
    overflow: hidden;
}

.prediction-row {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.11);
}

.prediction-row:last-child {
    border-bottom: 0;
}

.prediction-row span {
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prediction-row strong {
    color: var(--text-secondary);
}

.mode-system {
    background:
        radial-gradient(circle at 12% 0%, rgba(59, 130, 246, 0.1), transparent 28rem),
        linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(6, 182, 212, 0.04));
}

.mode-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1rem;
}

.mode-panel,
.voting-panel,
.settings-card {
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.74), rgba(7, 12, 31, 0.9)),
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.07), transparent 16rem);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 60px rgba(0, 0, 0, 0.18);
}

.mode-panel {
    padding: clamp(1.1rem, 2.4vw, 1.5rem);
}

.mode-kicker,
.settings-card > span {
    display: inline-flex;
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mode-panel h3,
.voting-panel h3,
.settings-card h3 {
    margin: 0.45rem 0 1rem;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1;
}

.mode-row,
.operation-list div {
    display: grid;
    grid-template-columns: minmax(88px, 0.32fr) 1fr;
    gap: 0.9rem;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.mode-row span,
.operation-list span {
    color: var(--cyan);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mode-row strong,
.operation-list strong {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.55;
}

.voting-panel {
    display: grid;
    grid-template-columns: minmax(220px, 0.38fr) 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
    padding: 1.25rem;
    border-color: rgba(245, 158, 11, 0.2);
}

.voting-panel p {
    margin: 0;
    color: var(--text-secondary);
}

.strategy-system {
    background:
        radial-gradient(circle at 82% 0%, rgba(245, 158, 11, 0.08), transparent 30rem),
        rgba(15, 23, 42, 0.08);
}

.strategy-roster {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.strategy-roster span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.76rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(8, 13, 25, 0.72);
    color: var(--text-secondary);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.74rem;
    font-weight: 700;
}

.mobile-monitoring {
    background:
        radial-gradient(circle at 78% 8%, rgba(6, 182, 212, 0.12), transparent 28rem),
        radial-gradient(circle at 18% 78%, rgba(245, 158, 11, 0.08), transparent 26rem),
        rgba(15, 23, 42, 0.1);
}

.mobile-monitoring-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
}

.mobile-feature-list {
    display: grid;
    gap: 0.72rem;
    margin-top: 1.4rem;
}

.mobile-feature-list div {
    display: grid;
    grid-template-columns: minmax(130px, 0.34fr) 1fr;
    gap: 0.8rem;
    padding: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(8, 13, 25, 0.62);
}

.mobile-feature-list span {
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-feature-list strong {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.phone-showcase {
    display: grid;
    justify-items: center;
    gap: 1rem;
}

.phone-showcase .mobile-monitor-image {
    display: block;
    width: min(720px, 100%);
    height: auto;
    border: 1px solid rgba(6, 182, 212, 0.24);
    border-radius: 26px;
    background: rgba(3, 7, 18, 0.8);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5), 0 0 70px rgba(6, 182, 212, 0.16);
    transform: rotate(-2deg);
}

.phone-frame {
    width: min(360px, 78vw);
    aspect-ratio: 9 / 18.5;
    padding: 0.72rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(3, 7, 18, 0.98)),
        radial-gradient(circle at 30% 0%, rgba(245, 158, 11, 0.14), transparent 14rem);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44), 0 0 60px rgba(6, 182, 212, 0.12);
    transform: rotate(-4deg);
}

.phone-speaker {
    width: 38%;
    height: 0.38rem;
    margin: 0.12rem auto 0.55rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.34);
}

.phone-screen {
    height: calc(100% - 1.05rem);
    padding: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.18);
    border-radius: 26px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 12, 31, 0.98), rgba(3, 7, 18, 0.96));
    background-size: 24px 24px, 24px 24px, auto;
}

.phone-topline,
.phone-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.55rem;
    align-items: center;
}

.phone-topline span,
.phone-topline strong,
.phone-status-card span,
.phone-status-card small,
.phone-metrics span,
.phone-actions span {
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.phone-topline span {
    color: var(--text-primary);
    font-size: 0.68rem;
    font-weight: 800;
}

.phone-topline strong {
    color: #86efac;
    font-size: 0.6rem;
}

.phone-status-card {
    margin-top: 1rem;
    padding: 0.9rem;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.1), rgba(15, 23, 42, 0.65));
}

.phone-status-card span,
.phone-status-card small {
    display: block;
    color: var(--text-muted);
    font-size: 0.6rem;
}

.phone-status-card strong {
    display: block;
    margin: 0.25rem 0;
    color: var(--text-primary);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.35rem;
    line-height: 1;
}

.phone-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.7rem;
}

.phone-metrics div {
    padding: 0.72rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.72);
}

.phone-metrics span {
    display: block;
    color: var(--text-soft);
    font-size: 0.56rem;
}

.phone-metrics strong {
    color: #67e8f9;
    font-family: "JetBrains Mono", monospace;
    font-size: 1rem;
}

.phone-chart {
    display: flex;
    align-items: end;
    gap: 0.35rem;
    height: 7rem;
    margin-top: 0.8rem;
    padding: 0.75rem;
    border: 1px solid rgba(6, 182, 212, 0.14);
    border-radius: 16px;
    background: rgba(3, 7, 18, 0.56);
}

.phone-chart span {
    flex: 1;
    height: var(--h);
    min-height: 18px;
    border-radius: 999px 999px 2px 2px;
    background: linear-gradient(180deg, var(--cyan), rgba(6, 182, 212, 0.18));
}

.phone-chart span:nth-child(3n) {
    background: linear-gradient(180deg, #ef4444, rgba(239, 68, 68, 0.18));
}

.phone-actions {
    margin-top: 0.8rem;
}

.phone-actions span {
    flex: 1;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(245, 158, 11, 0.14);
    color: #fbbf24;
    font-size: 0.58rem;
    font-weight: 800;
}

.concept-note {
    max-width: 520px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    text-align: center;
}

.markets {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.28), rgba(15, 23, 42, 0.05));
}

.markets-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.market-board {
    border: 1px solid rgba(0, 168, 255, 0.22);
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0, 168, 255, 0.08), transparent),
        rgba(3, 7, 18, 0.64);
}

.market-row {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.11);
}

.market-row:last-child {
    border-bottom: 0;
}

.market-row span {
    color: #7dd3fc;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.market-row strong {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.flow-card {
    position: relative;
    padding: 1.2rem;
}

.flow-card::after {
    content: "";
    position: absolute;
    top: 2rem;
    right: -0.65rem;
    width: 1.3rem;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--cyan));
}

.flow-card:last-child::after {
    display: none;
}

.flow-number {
    display: inline-flex;
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.control-suite {
    background:
        radial-gradient(circle at 12% 15%, rgba(139, 92, 246, 0.1), transparent 30rem),
        linear-gradient(180deg, rgba(6, 182, 212, 0.04), rgba(15, 23, 42, 0.12));
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.settings-card {
    padding: 1.15rem;
}

.settings-card h3 {
    margin-bottom: 0.75rem;
}

.settings-card ul {
    display: grid;
    gap: 0.55rem;
}

.settings-card li {
    position: relative;
    padding-left: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.settings-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.66em;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.48);
}

.edge-packs {
    background:
        radial-gradient(circle at 15% 0%, rgba(245, 158, 11, 0.08), transparent 28rem),
        radial-gradient(circle at 85% 18%, rgba(6, 182, 212, 0.08), transparent 26rem);
}

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

.pack-card {
    padding: 1.35rem;
}

.featured-pack {
    border-color: rgba(245, 158, 11, 0.42);
    box-shadow: 0 24px 70px rgba(245, 158, 11, 0.1);
}

.pack-topline,
.save-badge,
.best-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 24px;
    padding: 0.24rem 0.52rem;
    border: 1px solid rgba(16, 185, 129, 0.24);
    border-radius: 999px;
    color: #86efac;
    background: rgba(16, 185, 129, 0.08);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.pack-price,
.price-main {
    margin: 1.4rem 0 1rem;
    color: var(--text-primary);
    font-family: "JetBrains Mono", monospace;
    font-weight: 800;
}

.pack-price {
    font-size: 2rem;
}

.bundle-matrix {
    margin-top: 1.2rem;
    overflow-x: auto;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius);
    background: rgba(3, 7, 18, 0.42);
}

.matrix-head,
.matrix-row {
    min-width: 760px;
    display: grid;
    grid-template-columns: 1.15fr repeat(4, 1fr);
    gap: 1px;
    background: rgba(148, 163, 184, 0.12);
}

.matrix-head span,
.matrix-row span,
.matrix-row strong {
    padding: 0.84rem 0.9rem;
    background: rgba(9, 14, 23, 0.92);
    color: var(--text-secondary);
}

.matrix-head span {
    color: var(--text-muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.matrix-row strong {
    color: #f8fafc;
    font-family: "JetBrains Mono", monospace;
}

.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2rem;
}

.license-cap {
    width: min(100%, 760px);
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    text-transform: none;
    letter-spacing: 0;
}

.license-cap span:last-child {
    color: var(--text-muted);
    font-weight: 600;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.35rem;
}

.best-value {
    border-color: rgba(245, 158, 11, 0.46);
    background:
        linear-gradient(180deg, rgba(245, 158, 11, 0.12), rgba(7, 12, 31, 0.92)),
        rgba(17, 24, 39, 0.7);
    box-shadow: 0 26px 80px rgba(245, 158, 11, 0.12);
}

.best-label {
    position: absolute;
    top: -12px;
    left: 1.1rem;
    border-color: rgba(245, 158, 11, 0.44);
    color: #111827;
    background: var(--amber);
}

.price-main {
    font-size: clamp(2.3rem, 5vw, 3rem);
    line-height: 1;
}

.price-sub,
.sales-final,
.risk-line {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-card ul {
    display: grid;
    gap: 0.64rem;
    margin: 1rem 0 1.35rem;
    flex: 1;
}

.price-card li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 2px;
    background: var(--green);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.42);
}

.founder-vault {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1.4rem;
    align-items: center;
    margin-top: 1.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(245, 158, 11, 0.42);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(7, 12, 31, 0.92) 42%, rgba(6, 182, 212, 0.1)),
        rgba(3, 7, 18, 0.72);
    box-shadow: 0 28px 90px rgba(245, 158, 11, 0.12);
}

.vault-note {
    color: #fde68a !important;
}

.vault-price {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius);
    background: rgba(2, 6, 23, 0.48);
}

.vault-price span {
    color: var(--text-muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vault-price strong {
    font-family: "JetBrains Mono", monospace;
    font-size: 2.5rem;
}

.payment-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem auto 0;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
}

.payment-panel span {
    color: var(--text-muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.payment-panel img,
.footer-payments img {
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.08));
}

.sales-final {
    text-align: center;
    margin: 1.1rem 0 0;
}

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

.step-card {
    padding: 1.4rem;
}

.step-card span {
    color: #67e8f9;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 800;
}

.text-link {
    display: inline-flex;
    margin-top: 0.85rem;
    color: #7dd3fc;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.proof {
    background: rgba(15, 23, 42, 0.22);
}

.roadmap {
    background:
        radial-gradient(circle at 82% 0%, rgba(139, 92, 246, 0.1), transparent 30rem),
        rgba(15, 23, 42, 0.12);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.roadmap-card {
    padding: 1.2rem;
}

.roadmap-card strong {
    display: block;
    color: var(--text-primary);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.28rem;
}

.proof-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

.proof-slots {
    display: grid;
    gap: 0.8rem;
}

.proof-board {
    align-items: stretch;
}

.proof-slot {
    min-height: 92px;
    display: grid;
    place-items: center;
    padding: 1rem;
    color: var(--text-muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    border-style: dashed;
}

.proof-card {
    place-items: start;
    text-align: left;
    border-style: solid;
}

.proof-card p {
    margin: 0.7rem 0 0;
    color: var(--text-muted);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
}

.proof-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--radius);
    background: rgba(17, 24, 39, 0.54);
}

.proof-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.proof-image figcaption {
    padding: 0.75rem 0.9rem;
    color: var(--text-muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--radius);
    background: rgba(17, 24, 39, 0.54);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    color: var(--text-primary);
    background: transparent;
    border: 0;
    text-align: left;
    font-weight: 800;
}

.faq-question span {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    background: currentColor;
    color: #67e8f9;
    mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12h14' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.1rem 1rem;
    color: var(--text-muted);
}

.faq-answer p {
    margin: 0;
}

.final-cta {
    padding: clamp(5rem, 10vw, 7.5rem) 0;
    background:
        radial-gradient(circle at center top, rgba(245, 158, 11, 0.15), transparent 38rem),
        linear-gradient(180deg, rgba(7, 12, 31, 0.1), rgba(3, 7, 18, 0.92));
}

.final-cta-inner {
    max-width: 820px;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.final-cta p {
    color: var(--text-secondary);
    font-size: 1.08rem;
}

.risk-line {
    max-width: 640px;
    margin: 1.6rem auto 0;
}

.site-footer {
    padding: 3rem 0 2.2rem;
    border-top: 1px solid transparent;
    border-image: var(--header-gradient) 1;
    background: #030712;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.6rem;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-brand img {
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(6, 182, 212, 0.28));
}

.footer-brand strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.footer-brand span {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-links,
.footer-payments {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.legal-footer {
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    color: var(--text-soft);
    font-size: 0.76rem;
}

.legal-footer p {
    margin: 0.45rem 0 0;
}

.strategy-page {
    background:
        radial-gradient(circle at 72% 6%, rgba(245, 158, 11, 0.12), transparent 28rem),
        radial-gradient(circle at 12% 20%, rgba(6, 182, 212, 0.12), transparent 30rem),
        linear-gradient(180deg, #060a13, #0a0e17 58%, #050811);
}

.strategy-hero {
    position: relative;
    min-height: 64vh;
    display: grid;
    align-items: end;
    padding: 9rem 0 4.5rem;
    overflow: hidden;
}

.strategy-hero-inner {
    position: relative;
    z-index: 2;
}

.strategy-hero h1 {
    max-width: 980px;
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.92;
    letter-spacing: 0;
}

.strategy-hero p {
    max-width: 820px;
    margin: 1rem 0 0;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.strategy-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.strategy-summary div,
.strategy-detail-card,
.strategy-note-card {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.72), rgba(7, 12, 31, 0.9)),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 14rem);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.strategy-summary div {
    padding: 0.9rem;
}

.strategy-summary span,
.strategy-detail-card span,
.strategy-note-card span {
    display: block;
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.strategy-summary strong {
    display: block;
    margin-top: 0.28rem;
    color: var(--text-primary);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.35rem;
}

.strategy-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.strategy-detail-card {
    padding: 1.2rem;
}

.strategy-detail-card h3,
.strategy-note-card h3 {
    margin: 0.42rem 0 0.45rem;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.45rem;
    line-height: 1.05;
}

.strategy-detail-card p,
.strategy-note-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}

.strategy-note-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.strategy-note-card {
    padding: 1.25rem;
}

.checkout-page {
    background:
        radial-gradient(circle at 72% 8%, rgba(245, 158, 11, 0.12), transparent 28rem),
        radial-gradient(circle at 12% 22%, rgba(6, 182, 212, 0.12), transparent 30rem),
        linear-gradient(180deg, #060a13, #0a0e17 54%, #050811);
}

.compact-site-header .brand-mark {
    width: 82px;
    height: 82px;
    margin-bottom: -20px;
}

.checkout-hero {
    position: relative;
    min-height: 58vh;
    display: grid;
    align-items: end;
    padding: 9rem 0 4.2rem;
    overflow: hidden;
}

.checkout-media {
    opacity: 0.36;
}

.checkout-hero-inner {
    position: relative;
    z-index: 2;
}

.checkout-hero h1 {
    max-width: 880px;
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(3rem, 7vw, 5.7rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.checkout-hero p {
    max-width: 760px;
    margin: 1rem 0 0;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.checkout-section {
    padding-top: 3rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1rem;
    align-items: start;
}

.order-card,
.payment-method-card {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.78), rgba(7, 12, 31, 0.92)),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 15rem);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), var(--shadow);
}

.order-card {
    position: sticky;
    top: 104px;
    padding: clamp(1.1rem, 2vw, 1.55rem);
}

.order-card h2,
.payment-method-card h3 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    line-height: 1.05;
}

.order-card h2 {
    font-size: clamp(2.2rem, 4vw, 3.35rem);
}

.order-card p,
.payment-method-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.checkout-label {
    display: block;
    margin-top: 1.4rem;
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-select {
    width: 100%;
    min-height: 48px;
    margin-top: 0.5rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(2, 6, 23, 0.72);
    color: var(--text-primary);
}

.checkout-select:focus-visible,
.agreement-row input:focus-visible,
.payment-method-card button:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
    padding: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: var(--radius);
    background: rgba(245, 158, 11, 0.08);
}

.order-total span,
.order-meta span {
    color: var(--text-muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.order-total strong {
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 1.7rem;
}

.order-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.8rem;
}

.order-meta div {
    min-width: 0;
    padding: 0.82rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.035);
}

.order-meta strong {
    display: block;
    margin-top: 0.28rem;
    color: var(--text-secondary);
    font-size: 0.84rem;
}

.agreement-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    margin-top: 1.1rem;
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.agreement-row input {
    width: 1.15rem;
    height: 1.15rem;
    accent-color: var(--amber);
    margin-top: 0.16rem;
}

.agreement-row a {
    color: #fbbf24;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(251, 191, 36, 0.38);
    text-underline-offset: 3px;
}

.checkout-card-stack {
    display: grid;
    gap: 1rem;
}

.payment-method-card {
    padding: clamp(1rem, 2vw, 1.35rem);
}

.payment-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.method-kicker {
    display: block;
    color: #67e8f9;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.method-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.payment-method-card .btn {
    margin-top: 0.9rem;
}

.payment-method-card .btn:disabled {
    cursor: not-allowed;
    opacity: 1;
    transform: none;
    border-color: rgba(148, 163, 184, 0.12);
    background: rgba(15, 23, 42, 0.46);
    color: rgba(203, 213, 225, 0.58);
    box-shadow: none;
}

.compact-footer {
    padding-top: 2rem;
}

.header,
.header-container {
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 10, 21, 0.92);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    backdrop-filter: var(--glass);
}

.header-container {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #f8fafc, #fbbf24 52%, #67e8f9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    color: var(--text-muted);
    font-family: "Rajdhani", sans-serif;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-content {
    color: var(--text-secondary);
}

.legal-content h1,
.legal-content h2 {
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0;
}

.legal-content h1 {
    color: var(--text-primary);
}

.legal-content h2 {
    color: #fbbf24;
}

.checkout-note {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 2000;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 32px));
    padding: 0.9rem 1rem;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: var(--radius);
    background: rgba(8, 13, 25, 0.94);
    color: var(--text-secondary);
    box-shadow: var(--shadow);
}

[data-animate] {
    will-change: transform, opacity;
}

/* â”€â”€â”€ RESPONSIVE: 1080px â€” large tablet / small laptop â”€â”€â”€ */
@media (max-width: 1080px) {
    /* NOTE: DO NOT add flex-direction: column to .hero here.
       The hero console is position:absolute at desktop and is NOT in the
       flex flow. Stacking the hero here would cut off the h1 heading. */

    .desktop-nav {
        display: none;
    }

    .header-shell {
        min-height: 72px;
    }

    /* Collapse 2-column section layouts to single column */
    .markets-layout,
    .launch-reservation-grid,
    .mobile-monitoring-layout,
    .mode-grid,
    .proof-layout,
    .prediction-layout,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    /* Collapse 3-4 col grids to 2 col */
    .feature-grid,
    .pricing-grid,
    .flow-grid,
    .settings-grid,
    .strategy-detail-grid,
    .strategy-note-grid,
    .roadmap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Pack grid: 3 â†’ 2 */
    .pack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Signal strip: 3 â†’ 1 */
    .signal-strip-grid {
        grid-template-columns: 1fr;
    }

    /* Command proof: 4 â†’ 2 */
    .command-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Founder vault */
    .founder-vault,
    .voting-panel {
        grid-template-columns: 1fr;
    }

    .voting-panel {
        gap: 1rem;
    }

    .order-card {
        position: relative;
        top: auto;
    }

    .flow-card::after {
        display: none;
    }

    /* Phone showcase: center the image */
    .phone-showcase {
        justify-items: center;
    }

    .phone-showcase img {
        width: min(340px, 70vw);
    }

    .phone-showcase .mobile-monitor-image {
        width: min(680px, 100%);
    }
}

/* â”€â”€â”€ RESPONSIVE: 768px â€” tablet (iPad portrait, Android tablet) â”€â”€â”€ */
/* At this size the console switches to position:relative, so the hero
   must become a column to stack content â†’ console correctly. */
@media (max-width: 768px) {
    /* Hero: keep flex layout; padding-bottom reserves room for the absolute console */
    .hero {
        min-height: auto;
        padding: 8rem 0 33rem; /* ~528px accommodates console at tablet widths */
    }

    .container,
    .header-shell {
        width: min(100% - 24px, 1180px);
    }

    .header-shell {
        min-height: 72px;
    }

    /* Console: pull out of absolute, stack below hero text */
    .console-body {
        grid-template-columns: 1fr;
    }

    .console-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .console-topline {
        flex-direction: column;
        gap: 0.4rem;
    }

    /* Console: stay absolute  only reposition for tablet */
    .hero-console {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 2rem;
        transform: none;
        width: auto;
    }

    /* Section grids: maintain 2-col on tablet where possible */
    .feature-grid,
    .settings-grid,
    .strategy-detail-grid,
    .strategy-note-grid,
    .roadmap-grid,
    .step-grid,
    .pack-grid,
    .flow-grid,
    .command-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Pricing stays 2-col */
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Single-col layouts */
    .markets-layout,
    .launch-reservation-grid,
    .mobile-monitoring-layout,
    .mode-grid,
    .proof-layout,
    .prediction-layout,
    .checkout-grid,
    .founder-vault,
    .voting-panel {
        grid-template-columns: 1fr;
    }

    /* Mobile monitoring: phone image above text */
    .mobile-monitoring-layout {
        gap: 2rem;
    }

    .phone-showcase {
        order: -1;
        justify-items: center;
    }

    .phone-showcase img {
        width: min(300px, 65vw);
    }

    .phone-showcase .mobile-monitor-image {
        width: min(640px, 100%);
        transform: none;
    }

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

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

    /* Row layouts â†’ stack */
    .market-row,
    .prediction-row,
    .mode-row,
    .operation-list div,
    .mobile-feature-list div {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        align-items: start;
    }

    /* Checkout */
    .order-card {
        position: relative;
        top: auto;
    }

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

    .payment-card-top {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* â”€â”€â”€ RESPONSIVE: 540px â€” large phones / phablets â”€â”€â”€ */
@media (max-width: 540px) {
    .hero {
        padding: 7.8rem 0 32rem; /* phone  console height shorter at 2-col metrics */
    }

    .hero h1 {
        font-size: clamp(2.6rem, 13vw, 3.8rem);
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

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

    .hero-console {
        /* absolute from 768px rule  tighten inset on small phones */
        left: 12px;
        right: 12px;
        border-radius: 14px;
    }

    .console-body {
        padding: 0.8rem;
        gap: 0.75rem;
    }

    .console-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .mini-chart {
        min-height: 100px;
        gap: 0.3rem;
        padding: 0.75rem;
    }


    /* Section grids â†’ 1 col */
    .feature-grid,
    .settings-grid,
    .strategy-detail-grid,
    .strategy-note-grid,
    .roadmap-grid,
    .step-grid,
    .pack-grid,
    .flow-grid,
    .pricing-grid,
    .command-proof-grid,
    .signal-strip-grid {
        grid-template-columns: 1fr;
    }

    /* Phone image */
    .phone-showcase img {
        width: min(280px, 80vw);
    }

    .phone-showcase .mobile-monitor-image {
        width: 100%;
        border-radius: 18px;
    }

    .launch-reservation {
        padding: 5rem 0 2.6rem;
    }

    .launch-actions,
    .launch-actions .btn {
        width: 100%;
    }

    .seat-meter-grid,
    .strategy-summary {
        grid-template-columns: 1fr;
    }

    /* Strategy roster wraps nicely */
    .strategy-roster {
        gap: 0.5rem;
    }

    /* Header */
    .brand-mark {
        width: 72px;
        height: 72px;
        margin-top: 4px;
        margin-bottom: -12px;
    }

    .brand-wordmark {
        max-width: 118px;
        white-space: normal;
        line-height: 0.95;
    }

    .header-cta {
        padding: 0.6rem 0.75rem;
        font-size: 0.7rem;
    }

    /* Preview tabs wrap cleanly */
    .preview-tabs {
        gap: 0.35rem;
        padding: 0.65rem;
    }

    .preview-tab {
        font-size: 0.68rem;
        padding: 0.45rem 0.7rem;
    }

    /* Founder vault */
    .founder-vault {
        padding: 1.2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: start;
    }

    .footer-links,
    .footer-payments {
        flex-wrap: wrap;
        gap: 0.65rem;
    }

    /* Order meta */
    .order-meta {
        grid-template-columns: 1fr;
    }

    .payment-card-top {
        grid-template-columns: 1fr;
    }

    /* Section spacing */
    .section {
        padding: 4.5rem 0;
    }

    .preview-caption {
        position: static;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }

    .payment-panel {
        justify-content: flex-start;
    }
}

/* â”€â”€â”€ RESPONSIVE: 430px â€” small phones (iPhone SE, Galaxy A) â”€â”€â”€ */
@media (max-width: 430px) {
    .hero h1 {
        font-size: clamp(2.4rem, 12vw, 3.2rem);
    }

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

    .hero-proof-grid div {
        padding: 0.8rem 0.6rem;
    }

    .proof-value {
        font-size: 1.3rem;
    }

    .proof-label {
        font-size: 0.6rem;
    }

    .hero {
        padding: 7.8rem 0 38rem; /* single-col metrics at 430px are taller */
    }

    .hero-console {
        /* absolute from 768px  tightest inset at smallest phones */
        left: 10px;
        right: 10px;
        border-radius: 12px;
    }

    .console-body {
        padding: 0.65rem;
        gap: 0.6rem;
    }

    .console-metrics {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .mini-chart {
        min-height: 90px;
        gap: 0.25rem;
        padding: 0.6rem;
        grid-template-columns: repeat(8, 1fr);
    }

    .phone-showcase img {
        width: min(260px, 85vw);
    }

    .phone-showcase .mobile-monitor-image {
        width: 100%;
    }


    .section {
        padding: 4rem 0;
    }

    .section-heading {
        margin-bottom: 2rem;
    }

    /* Voting panel stacks cleanly */
    .voting-panel {
        padding: 1rem;
        gap: 0.85rem;
    }

    /* Pack cards full width */
    .pack-card,
    .price-card {
        padding: 1.1rem;
    }

    /* Pricing grid 1-col */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Feature card padding */
    .feature-card {
        padding: 1.1rem;
    }

    /* Brand */
    .brand-mark {
        width: 64px;
        height: 64px;
        margin-bottom: -10px;
    }

    .brand-wordmark {
        max-width: 108px;
        font-size: 1rem;
    }

    .header-cta {
        padding: 0.55rem 0.65rem;
        font-size: 0.66rem;
    }
}

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

    [data-animate] {
        will-change: auto;
    }
}

/* -- FAQ two-column grid ---------------------------------------- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2.2rem;
    align-items: start;
}

.faq-col {
    display: grid;
    gap: 0.8rem;
    align-content: start;
}

/* -- Roadmap featured card (Strategy Marketplace) --------------- */
.roadmap-card--featured {
    border-color: rgba(6, 182, 212, 0.34);
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.88), rgba(3, 7, 18, 0.96)),
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.12), transparent 14rem);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.12) inset, 0 16px 48px rgba(0, 0, 0, 0.28);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.roadmap-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(6, 182, 212, 0.38);
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.1);
    color: #67e8f9;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.roadmap-vote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.3rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.roadmap-vote-badge {
    padding: 0.22rem 0.6rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.08);
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

/* -- Hero console  desktop centering guard --------------------- */
.hero-console {
    transform-origin: center bottom;
}

/* -- FAQ grid responsive ---------------------------------------- */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* -- Designer credit (legal footer) ---------------------------- */
.legal-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.designer-credit {
    font-size: 0.76rem;
    color: var(--text-muted);
    opacity: 0.7;
    white-space: nowrap;
}

.designer-credit a {
    color: #67e8f9;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 180ms ease;
}

.designer-credit a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 540px) {
    .legal-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
}

/* -- Advanced checkout surface ---------------------------------- */
.checkout-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.checkout-trust-row span,
.checkout-flow div {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.54);
    color: var(--text-secondary);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.checkout-trust-row span {
    padding: 0.55rem 0.8rem;
}

.checkout-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.checkout-flow div {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 54px;
    padding: 0.72rem 0.85rem;
}

.checkout-flow span {
    display: inline-grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.14);
    color: #fbbf24;
}

.checkout-grid-advanced {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.checkout-input {
    width: 100%;
    min-height: 48px;
    margin-top: 0.5rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(2, 6, 23, 0.72);
    color: var(--text-primary);
    font: inherit;
}

.checkout-input::placeholder {
    color: rgba(148, 163, 184, 0.78);
}

.checkout-input:focus-visible,
.copy-button:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

.buyer-panel,
.acceptance-panel {
    margin-top: 1.15rem;
}

.field-help {
    margin: 0.45rem 0 0;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.acceptance-panel {
    padding: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius);
    background: rgba(2, 6, 23, 0.34);
}

.acceptance-panel .checkout-label {
    margin-top: 0;
}

.delivery-sequence {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1rem;
}

.delivery-sequence div {
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid rgba(6, 182, 212, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(6, 182, 212, 0.055);
}

.delivery-sequence span {
    color: #67e8f9;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    font-weight: 800;
}

.delivery-sequence strong {
    color: var(--text-secondary);
    font-size: 0.78rem;
}

.featured-payment {
    border-color: rgba(245, 158, 11, 0.26);
}

.method-benefits {
    display: grid;
    gap: 0.38rem;
    margin: 0.85rem 0 0;
    padding: 0;
    list-style: none;
}

.method-benefits li {
    color: var(--text-secondary);
    font-size: 0.84rem;
}

.method-benefits li::before {
    content: "";
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.42rem;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.35);
}

.crypto-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.65rem;
    margin-top: 0.85rem;
}

.crypto-options label {
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compact-select {
    margin-top: 0;
}

.crypto-invoice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.8rem;
    margin-top: 0.9rem;
    padding: 0.85rem;
    border: 1px solid rgba(6, 182, 212, 0.22);
    border-radius: var(--radius-sm);
    background: rgba(6, 182, 212, 0.065);
}

.qr-frame {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), rgba(2, 6, 23, 0.74);
    background-size: 12px 12px;
    color: #67e8f9;
    font-family: "JetBrains Mono", monospace;
    font-weight: 800;
}

.crypto-invoice strong,
.crypto-invoice code {
    display: block;
}

.crypto-invoice strong {
    color: var(--text-primary);
}

.crypto-invoice code {
    max-width: 100%;
    margin-top: 0.35rem;
    padding: 0.48rem;
    overflow-wrap: anywhere;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.72);
    color: var(--text-secondary);
}

.copy-button {
    margin-top: 0.55rem;
    padding: 0.46rem 0.68rem;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.08);
    color: #fbbf24;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.checkout-status-card {
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius);
    background: rgba(2, 6, 23, 0.5);
}

.checkout-status-card p {
    margin: 0.45rem 0 0;
    color: var(--text-secondary);
}

.checkout-status-card a {
    color: #fbbf24;
    font-weight: 800;
}

.checkout-status-card[data-state="ready"] {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.06);
}

.checkout-status-card[data-state="warning"] {
    border-color: rgba(245, 158, 11, 0.32);
    background: rgba(245, 158, 11, 0.07);
}

.checkout-status-card[data-state="success"] {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.07);
}

.payment-method-card .btn.is-loading {
    position: relative;
    color: transparent;
}

.payment-method-card .btn.is-loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, 0.32);
    border-top-color: #fff;
    border-radius: 999px;
    animation: checkout-spin 0.7s linear infinite;
}

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

@media (max-width: 1080px) {
    .checkout-grid-advanced,
    .checkout-flow {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .checkout-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 540px) {
    .checkout-flow,
    .delivery-sequence,
    .crypto-options,
    .crypto-invoice {
        grid-template-columns: 1fr;
    }

    .checkout-trust-row span,
    .checkout-flow div {
        width: 100%;
    }
}