/* =============================================================
   SPACEMAN PRODUCT SITE — V2 "DEEP SPACE" THEME
   Parallel redesign of the root site. Same structure & scripts,
   elevated visuals: nebula/starfield backdrop, violet→cyan
   accent system, Space Grotesk display type, glassy surfaces.
   ============================================================= */

:root {
    /* Backdrop */
    --bg: #05060f;
    --bg-subtle: #0a0d1e;
    --bg-raised: #0d1126;

    /* Glassy surfaces & hairlines (cool-tinted) */
    --surface: rgba(148, 163, 255, 0.05);
    --surface-hover: rgba(148, 163, 255, 0.09);
    --border: rgba(148, 163, 255, 0.14);
    --border-strong: rgba(148, 163, 255, 0.30);

    /* Type */
    --text: #f2f4ff;
    --text-muted: #9aa1c7;

    /* Accent system: violet → cyan "spatial" gradient */
    --accent-a: #8b7bff;
    --accent-b: #45d6ff;
    --accent: #45d6ff;
    --accent-grad: linear-gradient(120deg, var(--accent-a), var(--accent-b));
    --accent-ink: #060814;           /* text on accent fills */
    --glow: rgba(101, 148, 255, 0.35);
    --success: #2fe08b;
    --danger: #ff5d73;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;

    --max-width: 1200px;
    --section-padding: 96px 20px;
    --border-radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* ---- Fixed cosmic backdrop: nebula washes + two star layers ----
   Kept faint so content and photography stay in front. Painted on
   body pseudo-elements (above body background, below all content). */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(1100px 720px at 82% -12%, rgba(139, 123, 255, 0.16), transparent 62%),
        radial-gradient(900px 640px at 8% 14%, rgba(69, 214, 255, 0.09), transparent 58%),
        radial-gradient(1000px 900px at 50% 118%, rgba(120, 110, 255, 0.12), transparent 62%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.55;
    background-image:
        radial-gradient(1px 1px at 22px 38px, rgba(255,255,255,0.7) 50%, transparent 51%),
        radial-gradient(1px 1px at 148px 121px, rgba(255,255,255,0.5) 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 260px 66px, rgba(190,225,255,0.7) 50%, transparent 51%),
        radial-gradient(1px 1px at 331px 205px, rgba(255,255,255,0.45) 50%, transparent 51%),
        radial-gradient(1px 1px at 87px 268px, rgba(210,200,255,0.55) 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 199px 322px, rgba(255,255,255,0.6) 50%, transparent 51%),
        radial-gradient(1px 1px at 304px 361px, rgba(190,225,255,0.4) 50%, transparent 51%),
        radial-gradient(1px 1px at 55px 172px, rgba(255,255,255,0.35) 50%, transparent 51%);
    background-size: 380px 400px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
}

.highlight {
    font-weight: 700;
    font-size: 1.6rem;
    font-family: var(--font-display);
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Gradient-inked display text */
.grad-text {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Small uppercase section eyebrow */
.kicker {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-b);
    margin-bottom: 0.9rem;
}

a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

a:hover {
    color: var(--accent-b);
}

/* ---- Scroll-reveal (activated by v2.js adding html.v2-anim) ---- */
html.v2-anim .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--d, 0s);
}

html.v2-anim .reveal.in-view {
    opacity: 1;
    transform: none;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 6, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    padding: 0 20px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-nav.scrolled {
    background: rgba(5, 6, 15, 0.82);
    border-bottom-color: var(--border);
}

.site-nav .nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}

.site-nav .nav-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin-right: 10px;
    vertical-align: middle;
}

.site-nav .nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--text);
    text-decoration: none;
}

.site-nav .nav-cluster {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.site-nav .nav-cta {
    display: inline-block;
    padding: 9px 18px;
    background: var(--accent-grad);
    color: var(--accent-ink);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(101, 148, 255, 0.28);
    transition: var(--transition);
}

.site-nav .nav-cta:hover {
    color: var(--accent-ink);
    filter: brightness(1.12);
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(101, 148, 255, 0.4);
}

.site-nav .nav-links a {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}

.site-nav .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-grad);
    transition: right 0.28s ease;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
    color: var(--text);
}

.site-nav .nav-links a:hover::after,
.site-nav .nav-links a.active::after {
    right: 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

body {
    padding-top: 62px;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    padding: 84px 20px 0;
    text-align: center;
    overflow: hidden;
}

/* Aurora bloom behind the hero copy */
.hero-nebula {
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 720px;
    pointer-events: none;
    background:
        radial-gradient(closest-side at 42% 40%, rgba(139, 123, 255, 0.28), transparent 70%),
        radial-gradient(closest-side at 62% 52%, rgba(69, 214, 255, 0.2), transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 1.6rem;
    padding: 8px 18px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(13, 17, 38, 0.6);
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-b);
    box-shadow: 0 0 0 0 rgba(69, 214, 255, 0.6);
    animation: badgePulse 2.2s ease-out infinite;
}

@keyframes badgePulse {
    0%   { box-shadow: 0 0 0 0 rgba(69, 214, 255, 0.55); }
    70%  { box-shadow: 0 0 0 9px rgba(69, 214, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(69, 214, 255, 0); }
}

.hero h1 {
    margin-bottom: 1.1rem;
}

.tagline {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 1.6rem;
}

.subtitle strong {
    color: var(--text);
}

/* Compact fact chips under the headline */
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-muted);
}

.chip svg {
    width: 14px;
    height: 14px;
    color: var(--accent-b);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 3.2rem;
}

.compatibility-note {
    font-size: 1rem;
    color: var(--text-muted);
}

.launch-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}

/* Glowing gradient-framed video */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background:
        linear-gradient(var(--bg-raised), var(--bg-raised)) padding-box,
        linear-gradient(135deg, rgba(139, 123, 255, 0.7), rgba(69, 214, 255, 0.5)) border-box;
    border: 1px solid transparent;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.65),
        0 0 80px rgba(101, 148, 255, 0.18);
}

.hero-video-wrapper video {
    width: 100%;
    display: block;
}

/* Stat strip anchoring the hero */
.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 920px;
    margin: 44px auto 0;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background: rgba(13, 17, 38, 0.55);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.hero-stat {
    flex: 1 1 0;
    min-width: 150px;
    padding: 22px 16px;
    text-align: center;
    border-left: 1px solid var(--border);
}

.hero-stat:first-child {
    border-left: none;
}

.hero-stat .value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-stat .label {
    display: block;
    margin-top: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

/* Fade the hero into the first section */
.hero-bottom-spacer {
    height: 88px;
}

/* ==========================================
   BUTTONS
   ========================================== */

.cta-button {
    display: inline-block;
    background: var(--accent-grad);
    color: var(--accent-ink);
    border: none;
    padding: 15px 34px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 10px 34px rgba(101, 148, 255, 0.3);
}

.cta-button:hover {
    color: var(--accent-ink);
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(101, 148, 255, 0.42);
}

.cta-button.large {
    padding: 19px 50px;
    font-size: 1.1rem;
}

.cta-button.small {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.cta-button.secondary {
    background: rgba(13, 17, 38, 0.6);
    color: var(--text);
    border: 1px solid var(--border-strong);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--surface-hover);
    border-color: var(--accent-b);
    color: var(--text);
    filter: none;
    box-shadow: 0 0 24px rgba(69, 214, 255, 0.15);
}

.models-note + .cta-button {
    margin-top: 1rem;
}

/* ==========================================
   SECTIONS
   ========================================== */

.section {
    position: relative;
    padding: var(--section-padding);
}

/* Translucent so the starfield reads through; hairline seams. */
.section-alt {
    background: rgba(148, 163, 255, 0.035);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3.2rem;
    color: var(--text-muted);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.text-column p:last-child {
    margin-bottom: 0;
}

/* Centered narrow prose (text-only sections) */
.prose-narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.prose-narrow p:last-child {
    margin-bottom: 0;
}

/* Three Column Layout */
.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Cards */
.card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 34px 28px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(420px 200px at 50% -10%, rgba(101, 148, 255, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    color: var(--text);
    font-size: 1.25rem;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Stylized spec badge (in place of icon images) */
.card-spec {
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-spec span {
    margin-top: 0.4rem;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    -webkit-text-fill-color: var(--text-muted);
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Media Placeholders */
.media-placeholder {
    background: var(--surface);
    border: 2px dashed var(--border-strong);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    margin-bottom: 1.5rem;
}

.media-placeholder.large {
    min-height: 350px;
}

.media-placeholder.small {
    min-height: 120px;
    padding: 20px;
}

.hero-image {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    display: block;
}

.hero-image.large {
    height: 420px;
    position: relative;
}

/* Soft pedestal glow beneath the floating product render */
.hero-image.large::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: min(560px, 80%);
    height: 60px;
    background: radial-gradient(closest-side, rgba(101, 148, 255, 0.28), transparent 75%);
    filter: blur(8px);
    pointer-events: none;
}

.hero-image.large img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.6));
}

.card-image {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    max-width: 100%;
    display: block;
}

.card-image.small {
    height: 120px;
}

.card-image.small img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.placeholder-label {
    text-align: center;
    color: var(--text);
}

.placeholder-label strong {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.placeholder-label p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* ==========================================
   MODELS SECTION
   ========================================== */

.models-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: center;
}

.models-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.models-image img {
    width: 100%;
    max-height: 540px;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.model-row {
    display: flex;
    gap: 18px;
    align-items: baseline;
    margin-bottom: 1.25rem;
}

.model-tag {
    flex-shrink: 0;
    display: inline-block;
    min-width: 118px;
    padding: 6px 14px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-b);
    text-align: center;
}

.model-row p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.models-note {
    margin-top: 1.75rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.models-note a {
    color: var(--text);
}

/* ==========================================
   COMPARISON SECTION
   ========================================== */

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.comparison-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.comparison-item.reverse {
    direction: rtl;
}

.comparison-item.reverse > * {
    direction: ltr;
}

.comparison-visual {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comparison-img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.35);
}

.comparison-disclaimer {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

/* Stylized price comparison (in place of graphic) */
.price-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 48px 30px;
}

.price-vs-item {
    text-align: center;
}

.price-vs-amount {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1;
}

.price-vs-item.highlight-item .price-vs-amount {
    background: linear-gradient(120deg, #2fe08b, #45d6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-vs-label {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-vs-note {
    display: block;
    margin-top: 4px;
    font-size: 0.7rem;
    color: var(--success);
    font-weight: 600;
}

.price-vs-divider {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.spec-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table tr:first-child td {
    font-weight: 600;
    background: var(--surface);
}

.spec-table .winner {
    color: var(--success);
    font-weight: 600;
}

.spec-table .loser {
    color: var(--danger);
    font-weight: 600;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.benefit-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.benefit-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 7px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--success);
    background: rgba(47, 224, 139, 0.12);
    border: 1px solid rgba(47, 224, 139, 0.35);
    border-radius: 50%;
}

.verdict {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 1rem;
}

.verdict .win {
    color: var(--success);
}

/* ==========================================
   HOW IT WORKS
   ========================================== */

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

.step {
    text-align: center;
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--accent-grad);
    color: var(--accent-ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 24px rgba(101, 148, 255, 0.35);
}

.step-image {
    min-height: 180px;
    margin-bottom: 0.75rem;
}

.step-image video {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.step p {
    color: var(--text-muted);
}

/* ==========================================
   SPECS SECTION
   ========================================== */

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
}

.spec-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.spec-card:hover {
    border-color: var(--border-strong);
    background: var(--surface-hover);
    transform: translateY(-3px);
}

.spec-card h4 {
    font-family: var(--font-family);
    color: var(--accent-b);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
}

.spec-value .big {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.spec-value .detail {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================
   USE CASES
   ========================================== */

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.use-case {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 30px 28px;
    transition: var(--transition);
}

.use-case:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.uc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 1.1rem;
    border-radius: 12px;
    background: rgba(101, 148, 255, 0.12);
    border: 1px solid var(--border);
    color: var(--accent-b);
}

.uc-icon svg {
    width: 22px;
    height: 22px;
}

.use-case h3,
.use-case p {
    padding: 0;
}

.use-case h3 {
    font-size: 1.2rem;
}

.use-case p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
    align-items: stretch;
}

.price-tier {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}

.price-tier:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

/* Featured tier: gradient border + ambient glow */
.price-tier.featured {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--bg-raised), var(--bg-raised)) padding-box,
        var(--accent-grad) border-box;
    transform: scale(1.05);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55),
        0 0 50px rgba(101, 148, 255, 0.16);
}

.price-tier.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.price-tier.sold-out {
    opacity: 0.5;
}

.tier-badge {
    display: inline-block;
    align-self: center;
    padding: 5px 13px;
    background: rgba(148, 163, 255, 0.12);
    color: var(--text);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}

.price-tier.featured .tier-badge {
    background: var(--accent-grad);
    color: var(--accent-ink);
}

.tier-price {
    font-family: var(--font-display);
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.price-tier.featured .tier-price {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tier-msrp {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 1rem;
}

.tier-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.tier-includes li {
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.tier-includes li:last-child {
    border-bottom: none;
}

.tier-limit {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: auto;
    margin-bottom: 1rem;
}

.tier-button {
    width: 100%;
    padding: 13px;
    background: var(--accent-grad);
    color: var(--accent-ink);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.tier-button:hover {
    filter: brightness(1.1);
}

.tier-button.disabled {
    background: rgba(148, 163, 255, 0.12);
    color: var(--text-muted);
    cursor: not-allowed;
    filter: none;
}

/* Add-ons */
.addon-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 30px;
}

.addon-section h3 {
    margin-bottom: 1.5rem;
}

.addon {
    display: flex;
    gap: 20px;
    align-items: center;
}

.addon-image {
    width: 150px;
    min-height: 100px;
    margin-bottom: 0;
}

.addon-details p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.addon-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ==========================================
   STRETCH GOALS
   ========================================== */

.stretch-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

/* Vertical rail connecting the goals */
.stretch-timeline::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--accent-a), var(--accent-b), rgba(148, 163, 255, 0.08));
    opacity: 0.5;
}

.stretch-item {
    display: grid;
    grid-template-columns: 84px 1fr 110px;
    gap: 20px;
    align-items: center;
    padding: 22px 24px;
    margin-left: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    transition: var(--transition);
}

.stretch-item:hover {
    border-color: var(--border-strong);
    background: var(--surface-hover);
}

.stretch-item.unlocked {
    border-left: 3px solid var(--success);
}

.stretch-item.current {
    border-left: 3px solid var(--accent-b);
    background: var(--surface-hover);
}

.stretch-amount {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stretch-content h4 {
    margin-bottom: 0.25rem;
}

.stretch-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.stretch-status {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    justify-self: end;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.stretch-item.unlocked .stretch-status {
    color: var(--success);
    border-color: rgba(47, 224, 139, 0.4);
    background: rgba(47, 224, 139, 0.08);
}

.stretch-item.current .stretch-status {
    color: var(--accent-b);
    border-color: rgba(69, 214, 255, 0.4);
    background: rgba(69, 214, 255, 0.08);
}

/* First item is the base funding goal — mark it as live */
.stretch-item.goal .stretch-status {
    color: var(--accent-ink);
    background: var(--accent-grad);
    border-color: transparent;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.founder-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 3rem;
}

.founder-photo {
    width: 300px;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--bg-raised), var(--bg-raised)) padding-box,
        linear-gradient(135deg, rgba(139, 123, 255, 0.6), rgba(69, 214, 255, 0.45)) border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--border-radius) - 2px);
}

.founder-text h3 {
    margin-bottom: 0.25rem;
}

.founder-title {
    color: var(--accent-b);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
}

.credential {
    text-align: center;
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.credential:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

.credential h4 {
    margin-bottom: 0.75rem;
}

.credential p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.founder-quote {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: var(--text);
    padding: 40px;
    background: var(--surface);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-b);
}

/* ==========================================
   TIMELINE SECTION
   ========================================== */

.timeline-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
}

.timeline-item {
    position: relative;
    text-align: center;
    padding: 22px 30px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background: var(--surface);
}

.timeline-item.highlight {
    background: var(--accent-grad);
    border-color: transparent;
    color: var(--accent-ink);
    box-shadow: 0 10px 36px rgba(101, 148, 255, 0.3);
}

.timeline-date {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.timeline-item.highlight .timeline-date {
    color: var(--accent-ink);
    opacity: 0.75;
}

.timeline-event {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.timeline-item.highlight .timeline-event {
    color: var(--accent-ink);
}

.timeline-connector {
    width: 54px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    opacity: 0.45;
}

.timeline-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   FAQ SECTION (Accordion)
   ========================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 22px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-strong);
}

.faq-item.open {
    background: var(--surface-hover);
    border-color: var(--border-strong);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    padding: 19px 40px 19px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent-b);
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-b);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    content: "+";
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 0 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ==========================================
   FINAL CTA
   ========================================== */

.final-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1100px;
    height: 600px;
    pointer-events: none;
    background:
        radial-gradient(closest-side at 45% 45%, rgba(139, 123, 255, 0.2), transparent 70%),
        radial-gradient(closest-side at 58% 55%, rgba(69, 214, 255, 0.14), transparent 70%);
    filter: blur(24px);
}

.final-cta .container {
    position: relative;
}

.cta-image {
    max-width: 800px;
    margin: 0 auto 2rem;
    min-height: 300px;
}

.cta-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.cta-subtext {
    color: var(--text-muted);
    margin-bottom: 2.4rem;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: rgba(5, 6, 15, 0.7);
    color: var(--text);
    padding: 64px 20px 30px;
    border-top: 1px solid var(--border);
    position: relative;
}

/* Gradient hairline across the very top of the footer */
.footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-a), var(--accent-b), transparent);
    opacity: 0.55;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 2rem;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-b);
}

.footer-brand-minimal {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-brand-minimal img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.footer-brand-minimal span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================
   COMPATIBILITY PAGE
   ========================================== */

.compat-search {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.compat-search input {
    width: 100%;
    padding: 15px 18px;
    font-size: 1rem;
    font-family: var(--font-family);
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.compat-search input::placeholder {
    color: var(--text-muted);
}

.compat-search input:focus {
    border-color: var(--accent-b);
    box-shadow: 0 0 0 3px rgba(69, 214, 255, 0.14);
}

.compat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.compat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.compat-card.compatible {
    border-color: rgba(47, 224, 139, 0.3);
}

.compat-card.incompatible {
    border-color: rgba(255, 93, 115, 0.2);
    opacity: 0.5;
}

.compat-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.compat-card.compatible .compat-icon {
    color: var(--success);
}

.compat-card.incompatible .compat-icon {
    color: var(--danger);
}

.compat-card .compat-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.compat-card.hidden {
    display: none;
}

.compat-legend {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   MODEL FINDER
   ========================================== */

.model-finder {
    max-width: 760px;
    margin: 0 auto 3rem;
    padding: 36px 32px;
    background:
        linear-gradient(var(--bg-raised), var(--bg-raised)) padding-box,
        linear-gradient(135deg, rgba(139, 123, 255, 0.55), rgba(69, 214, 255, 0.4)) border-box;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 44px rgba(101, 148, 255, 0.1);
}

.finder-template {
    font-size: clamp(1.1rem, 3.2vw, 1.4rem);
    font-weight: 600;
    line-height: 2.4;
}

.slot {
    display: inline-block;
    min-width: 150px;
    padding: 8px 16px;
    margin: 0 4px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-subtle);
    border: 1px dashed var(--border-strong);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    vertical-align: middle;
}

.slot.filled {
    color: var(--text);
    border-style: solid;
    background: var(--surface-hover);
}

.slot.active {
    border-color: var(--accent-b);
    box-shadow: 0 0 0 3px rgba(69, 214, 255, 0.16);
}

.slot-and {
    margin: 0 6px;
    color: var(--text-muted);
    font-weight: 500;
}

.finder-hint {
    margin-top: 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.finder-result {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.result-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.result-model {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    font-weight: 700;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.result-explain {
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.finder-reset {
    margin-top: 1.5rem;
    padding: 9px 22px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 9px;
    cursor: pointer;
    transition: var(--transition);
}

.finder-reset:hover {
    background: var(--surface-hover);
    border-color: var(--accent-b);
}

/* Model picker */
.picker-label {
    max-width: 900px;
    margin: 0 auto 1rem;
    font-weight: 600;
    color: var(--text);
}

.picker-label-hint {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.picker-empty {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.picker-card {
    font-family: var(--font-family);
    text-align: left;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.picker-card:hover {
    border-color: var(--accent-b);
    background: var(--surface-hover);
}

.picker-card.chosen {
    border-color: var(--accent-b);
    background: rgba(69, 214, 255, 0.1);
    box-shadow: 0 0 0 1px rgba(69, 214, 255, 0.35);
}

/* Incompatible models */
.incompat-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.incompat-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.incompat-chip {
    padding: 8px 14px;
    background: var(--surface);
    border: 1px solid rgba(255, 93, 115, 0.25);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.incompat-chip:hover {
    border-color: rgba(255, 93, 115, 0.55);
    color: var(--text);
}

.incompat-chip.chosen {
    border-color: var(--danger);
    background: rgba(255, 93, 115, 0.1);
    color: var(--text);
}

.finder-result.incompatible .result-model {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--danger);
    font-size: clamp(1.4rem, 4vw, 1.9rem);
}

/* ==========================================
   PRESS PAGE
   ========================================== */

.press-section {
    max-width: 800px;
    margin: 0 auto;
}

.press-section h2 {
    text-align: left;
    font-size: 1.5rem;
}

.press-section h3 {
    margin-top: 2.4rem;
}

.press-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 1.5rem 0;
}

.press-fact {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: var(--transition);
}

.press-fact:hover {
    border-color: var(--border-strong);
}

.press-fact .fact-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-b);
    font-weight: 600;
    margin-bottom: 4px;
}

.press-fact .fact-value {
    font-weight: 600;
    font-size: 1rem;
}

.press-contact {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 2rem 0;
}

.press-muted {
    color: var(--text-muted);
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-page-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   PAGE HEADER (for subpages)
   ========================================== */

.page-header {
    position: relative;
    padding: 88px 20px 64px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 560px;
    pointer-events: none;
    background:
        radial-gradient(closest-side at 45% 45%, rgba(139, 123, 255, 0.22), transparent 70%),
        radial-gradient(closest-side at 60% 55%, rgba(69, 214, 255, 0.15), transparent 70%);
    filter: blur(26px);
}

.page-header h1 {
    position: relative;
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    margin-bottom: 0.8rem;
}

.page-header p {
    position: relative;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.page-header .kicker {
    position: relative;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .price-tier.featured {
        transform: none;
    }

    .price-tier.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px 20px;
    }

    .site-nav .nav-links {
        display: none;
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        background: rgba(5, 6, 15, 0.97);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .site-nav .nav-links.open {
        display: flex;
    }

    .site-nav .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        display: block;
    }

    .site-nav .nav-links a::after {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav .nav-cluster {
        gap: 14px;
    }

    .site-nav .nav-cta {
        padding: 8px 14px;
    }

    .hero {
        padding-top: 56px;
    }

    .hero-stat {
        flex: 1 1 45%;
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .hero-stat:nth-child(-n+2) {
        border-top: none;
    }

    .hero-stat:nth-child(even) {
        border-left: 1px solid var(--border);
    }

    .models-layout,
    .two-column,
    .three-column,
    .comparison-item,
    .steps,
    .specs-grid,
    .use-case-grid,
    .pricing-grid,
    .credentials,
    .founder-intro {
        grid-template-columns: 1fr;
    }

    .founder-photo {
        margin: 0 auto;
    }

    .comparison-item.reverse {
        direction: ltr;
    }

    .stretch-timeline::before {
        display: none;
    }

    .stretch-item {
        grid-template-columns: 1fr;
        text-align: center;
        margin-left: 0;
    }

    .stretch-status {
        justify-self: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-visual {
        flex-direction: column;
    }

    .timeline-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, var(--accent-a), var(--accent-b));
    }

    .timeline-item {
        width: min(320px, 100%);
    }

    .press-facts {
        grid-template-columns: 1fr;
    }
}

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

    .addon {
        flex-direction: column;
        text-align: center;
    }

    .addon-image {
        width: 100%;
    }

    .hero-actions .cta-button {
        width: 100%;
    }
}

/* ==========================================
   GALLERY ("Shot on Spaceman")
   ========================================== */

.gallery-intro {
    margin-bottom: 2rem;
}

.gallery-intro .lead {
    margin-bottom: 2.25rem;
}

/* Two-up "how to view in 3D" callout: headset (best) + red/cyan glasses. */
.viewing-callout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 920px;
    margin: 0 auto;
}

.viewing-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 26px 26px 24px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background: var(--surface);
    text-align: left;
}

.viewing-option--primary {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--bg-raised), var(--bg-raised)) padding-box,
        linear-gradient(135deg, rgba(139, 123, 255, 0.6), rgba(69, 214, 255, 0.45)) border-box;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 40px rgba(101, 148, 255, 0.12);
}

.viewing-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px 11px;
}

.viewing-option--primary .viewing-tag {
    color: var(--accent-ink);
    background: var(--accent-grad);
    border-color: transparent;
}

.viewing-icon {
    display: inline-flex;
    color: var(--accent-b);
    margin-top: 4px;
}

.viewing-icon svg {
    width: 46px;
    height: auto;
}

.viewing-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-align: left;
    margin: 0;
}

.viewing-option p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.viewing-option strong {
    color: var(--text);
    font-weight: 600;
}

/* Toolbar above the grid: two-segment picker choosing how the flat grid
   previews depth — Wiggle 3D (default, animated) or 3D glasses (anaglyph). */
.gallery-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.grid-view-picker {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-subtle);
}

.grid-view-option {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border: none;
    border-left: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.grid-view-option:first-child {
    border-left: none;
}

.grid-view-option:hover {
    color: var(--text);
    background: var(--surface-hover);
}

.grid-view-option:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--accent-b);
}

.grid-view-option[aria-checked="true"] {
    color: var(--accent-ink);
    background: var(--accent-grad);
}

.grid-view-icon {
    display: inline-flex;
    flex-shrink: 0;
    color: inherit;
}

.grid-view-icon svg {
    width: 34px;
    height: auto;
}

.grid-view-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    text-align: left;
}

.grid-view-title {
    font-size: 0.92rem;
    font-weight: 600;
}

.grid-view-sub {
    font-size: 0.75rem;
    color: inherit;
    opacity: 0.75;
}

/* Narrow screens: drop the sub-labels so all three segments fit on one row. */
@media (max-width: 640px) {
    .grid-view-option {
        padding: 9px 12px;
        gap: 8px;
    }

    .grid-view-sub {
        display: none;
    }

    .grid-view-icon svg {
        width: 28px;
    }
}

.gallery-loading {
    text-align: center;
    color: var(--text-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background: var(--bg-subtle);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    font-family: inherit;
    transition: var(--transition);
}

.gallery-card:hover,
.gallery-card:focus-visible {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 30px rgba(101, 148, 255, 0.12);
    outline: none;
}

/* Thumb area stacks the left-eye image with a right-eye overlay; the shared
   wiggle ticker (gallery.js) flips .eye-r on the grid to alternate the two,
   which reads as depth on a flat screen ("wiggle 3D"). */
.gallery-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #000;
    overflow: hidden;
}

.gallery-thumb img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb .thumb-r {
    opacity: 0; /* hard cut, no fade — a crossfade blurs the depth effect */
}

.gallery-grid.eye-r .thumb-r {
    opacity: 1;
}

.gallery-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    background: rgba(5, 6, 15, 0.65);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    padding: 3px 8px;
}

.gallery-badge.play {
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 50%;
    font-size: 0.7rem;
}

.gallery-card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px 16px;
}

.gallery-card-title {
    font-weight: 600;
    font-size: 1rem;
}

.gallery-card-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- Lightbox ---- */
body.no-scroll {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: stretch;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 4, 10, 0.94);
}

/* Full-viewport panel so a 4:3 capture uses as much of a wide monitor as possible
   (the image fits by height at zoom 1; zooming then fills the side space). */
.lightbox-panel {
    position: relative;
    z-index: 1;
    width: min(98vw, 3400px);
    height: 100%;
    padding: 48px 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lightbox-stage-wrap {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    justify-content: center;
}

/* The stage is the scroll viewport and fills the panel. The zoom layer inside it
   is fit-to-stage at zoom 1 and grows past it when zoomed; the single-eye 200%-wide
   media resolves against that layer, so it scales with the zoom. */
.lightbox-stage {
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    display: flex;
    border-radius: var(--border-radius);
    background: #000;
}

/* Sized in px by JS: the largest image-aspect box that fits the stage at zoom 1,
   multiplied by the zoom factor beyond that. margin:auto centres it while it fits
   and lets it scroll to every edge once it overflows the stage. */
.lightbox-zoom {
    position: relative;
    flex: none;
    margin: auto;
    /* Clip the 200%-wide single-eye media to this box so zoom-scrolling stays
       within the left eye instead of bleeding into the right-eye half. */
    overflow: hidden;
}

.lightbox-stage .stereo-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: left center;
    user-select: none;
    -webkit-user-drag: none;
}

/* Zoomable (photo) stage: click to zoom in, drag to pan once zoomed. */
.lightbox-stage.zoom-ok:not(.zoomed) {
    cursor: zoom-in;
}

.lightbox-stage.zoomed {
    overflow: auto;
    cursor: grab;
}

.lightbox-stage.zoomed.panning {
    cursor: grabbing;
}

.lightbox-close {
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 3;
    width: 44px;
    height: 44px;
    font-size: 1.9rem;
    line-height: 1;
    color: #fff;
    background: rgba(5, 6, 15, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(101, 148, 255, 0.3);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    background: rgba(5, 6, 15, 0.55);
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(101, 148, 255, 0.3);
    border-color: var(--accent-b);
}

.lightbox-nav.prev { left: 10px; }
.lightbox-nav.next { right: 10px; }

.lightbox-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.lightbox-title {
    font-size: 1.15rem;
    font-weight: 600;
}

.lightbox-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lightbox-vr {
    background: var(--accent-grad);
    color: var(--accent-ink);
    border: none;
    padding: 12px 26px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 22px rgba(101, 148, 255, 0.3);
    transition: var(--transition);
}

.lightbox-vr:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
}

.lightbox-vr:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
    filter: none;
}

.lightbox-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 320px;
}

/* ---- WebXR fullscreen canvas ---- */
.xr-container {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: #05070d;
}

.xr-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }

    .viewing-callout {
        grid-template-columns: 1fr;
    }

    .gallery-toolbar {
        justify-content: center;
    }

    .lightbox-bar {
        justify-content: center;
        text-align: center;
    }

    .lightbox-nav.prev { left: 2px; }
    .lightbox-nav.next { right: 2px; }
}

/* ---- Lightbox view modes (2D / Side-by-Side / Anaglyph) ---- */
.lightbox-modes {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(148, 163, 255, 0.05);
}

.lb-mode {
    background: transparent;
    color: var(--text-muted);
    border: none;
    border-left: 1px solid var(--border);
    padding: 9px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.lb-mode:first-child {
    border-left: none;
}

.lb-mode:hover {
    color: var(--text);
    background: var(--surface-hover);
}

.lb-mode.active {
    color: var(--accent-ink);
    background: var(--accent-grad);
}

/* ---- Lightbox zoom control (slider + −/+ buttons) ---- */
.lightbox-zoomctrl {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(148, 163, 255, 0.05);
}

.lightbox-zoomctrl[hidden] {
    display: none;
}

.lb-zoom-btn {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    line-height: 1;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.lb-zoom-btn:hover {
    background: var(--surface-hover);
    color: var(--text);
}

.lb-zoom-slider {
    width: 130px;
    accent-color: var(--accent-b);
    cursor: pointer;
}

/* Side-by-side mode: show the whole SBS frame instead of cropping to one eye. */
.lightbox-stage.mode-sbs .stereo-media {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Wiggle mode: the media is the same 200%-wide SBS frame as 2D (left eye in
   view); shifting it by half its own width brings the right eye into the same
   clip box. The ticker in gallery.js toggles .eye-r to alternate the two. */
.lightbox-stage.mode-wiggle.eye-r .stereo-media {
    transform: translateX(-50%);
}

/* Anaglyph mode renders into a WebGL canvas that fills the single-eye stage. */
.lightbox-stage canvas.anaglyph-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    cursor: pointer;
}

/* ==========================================
   NOTIFY MODAL ("Get Notified" popup)
   ========================================== */
.notify-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.notify-modal.open {
    display: flex;
}

.notify-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 4, 10, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.notify-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background:
        linear-gradient(var(--bg-raised), var(--bg-raised)) padding-box,
        linear-gradient(135deg, rgba(139, 123, 255, 0.55), rgba(69, 214, 255, 0.4)) border-box;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    padding: 40px 32px 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65), 0 0 60px rgba(101, 148, 255, 0.12);
    text-align: center;
    animation: notifyPop 0.25s ease;
}

@keyframes notifyPop {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.notify-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.notify-close:hover {
    color: var(--text);
}

.notify-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.notify-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 24px;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.notify-toggle {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.notify-toggle-btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.notify-toggle-btn.active {
    background: var(--accent-grad);
    color: var(--accent-ink);
}

.notify-field input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.notify-field input::placeholder {
    color: var(--text-muted);
}

.notify-field input:focus {
    border-color: var(--accent-b);
    box-shadow: 0 0 0 3px rgba(69, 214, 255, 0.14);
}

.notify-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    background: var(--accent-grad);
    color: var(--accent-ink);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
}

.notify-submit:hover:not(:disabled) {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(101, 148, 255, 0.3);
}

.notify-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.notify-success {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    background: rgba(47, 224, 139, 0.08);
    border: 1px solid rgba(47, 224, 139, 0.35);
    color: var(--text);
    font-weight: 500;
}

.notify-error {
    margin-top: 14px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 93, 115, 0.1);
    border: 1px solid rgba(255, 93, 115, 0.25);
    color: #ff8296;
    font-size: 0.9rem;
}

.notify-fineprint {
    margin: 18px 0 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.notify-hidden {
    display: none !important;
}

/* ==========================================
   REDUCED MOTION
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html.v2-anim .reveal {
        opacity: 1;
        transform: none;
    }
}
