/* ═══════════════════════════════════════════════════════════════
   AlephGrid Product Landing — Stylesheet
   Served at /AlephGrid — Product-specific landing page
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
    --navy: #070E1A;
    --navy-mid: #0C1829;
    --navy-card: #101F35;
    --navy-border: #1A3050;
    --teal: #00D4C8;
    --teal-dim: #008F88;
    --teal-glow: rgba(0,212,200,0.15);
    --gold: #FFB800;
    --gold-dim: #A07300;
    --white: #F0F6FF;
    --white-dim: #8BA4C0;
    --white-muted: #3A5270;
    --red: #FF4D6A;
    --cyan: #00AAFF;
    --grid-line: rgba(0,212,200,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Barlow', sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.mono { font-family: 'Space Mono', monospace; }
.label {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--teal-dim);
}

/* ── Grid Background ── */
.grid-bg {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 64px 64px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 14px 32px; border: none; cursor: pointer;
    text-decoration: none; transition: all 180ms ease;
}
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: #00e8db; box-shadow: 0 0 32px rgba(0,212,200,0.3); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
    background: transparent; color: var(--teal);
    border: 1px solid var(--navy-border);
}
.btn-ghost:hover { border-color: var(--teal); background: rgba(0,212,200,0.04); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
section { padding: 100px 0; position: relative; }
.section-divider {
    height: 1px; background: var(--navy-border);
    max-width: 1200px; margin: 0 auto;
}

/* ── Nav ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(7,14,26,0.92); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--navy-border);
    height: 56px;
    transition: background 300ms ease, box-shadow 300ms ease;
}
nav.scrolled {
    background: rgba(7,14,26,0.96);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
nav .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { height: 28px; }
.nav-brand-text { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); }
.nav-brand-text span { font-weight: 300; color: var(--teal); letter-spacing: 0.05em; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    color: var(--white-dim); padding: 8px 16px;
    border: 1px solid transparent; transition: all 120ms ease;
}
.nav-links a:hover { color: var(--white); border-color: var(--navy-border); }
.nav-links .nav-divider {
    width: 1px; height: 20px; background: var(--navy-border); margin: 0 8px;
}
.nav-parent-link {
    color: var(--teal-dim) !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
}
.nav-parent-link:hover { color: var(--teal) !important; }

/* Mobile hamburger */
.nav-hamburger {
    display: none;
    background: none;
    border: 1px solid var(--navy-border);
    color: var(--white-dim);
    width: 36px; height: 36px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 120ms ease;
}
.nav-hamburger:hover { color: var(--teal); border-color: var(--teal); }

/* ── Hero ── */
.hero { padding: 180px 0 120px; text-align: center; }
.hero-glow {
    position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 600px; pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,212,200,0.06) 0%, transparent 70%);
}
.hero h1 { font-size: 56px; line-height: 1.1; margin-bottom: 20px; }
.hero h1 .teal { color: var(--teal); font-weight: 300; }
.hero-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px; color: var(--white-dim); font-weight: 400;
    max-width: 640px; margin: 0 auto 16px; line-height: 1.5;
}
.hero-tagline {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--teal-dim);
    letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 48px;
}
.hero-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 48px; }
.badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 6px 16px; border: 1px solid var(--navy-border); color: var(--white-dim);
}
.badge-teal { border-color: rgba(0,212,200,0.25); color: var(--teal); background: rgba(0,212,200,0.06); }
.badge-gold { border-color: rgba(255,184,0,0.25); color: var(--gold); background: rgba(255,184,0,0.06); }

/* ── Screenshot Placeholder ── */
.screenshot-frame {
    max-width: 1100px; margin: 80px auto 0;
    border: 1px solid rgba(0,212,200,0.15);
    background: transparent;
    aspect-ratio: 16/9;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
    border-radius: 12px;
    cursor: pointer;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%),
                        linear-gradient(to bottom, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%),
               linear-gradient(to bottom, transparent 0%, black 2%, black 98%, transparent 100%);
    mask-composite: intersect;
    box-shadow: 0 8px 48px rgba(0,212,200,0.06), 0 0 0 1px rgba(0,212,200,0.08);
}
.screenshot-frame img { width: 100%; height: 100%; object-fit: cover; }
.screenshot-frame video {
    width: 100%; height: 100%; display: block; border-radius: 12px;
    object-fit: cover;
}

/* ── Video Lightbox ── */
.video-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 300ms ease;
    cursor: zoom-out;
}
.video-lightbox.active { opacity: 1; pointer-events: auto; }
.video-lightbox video {
    max-width: 95vw; max-height: 92vh;
    border-radius: 8px;
    box-shadow: 0 0 80px rgba(0,212,200,0.15);
}
.video-lightbox-close {
    position: absolute; top: 24px; right: 32px;
    background: none; border: 1px solid rgba(240,246,255,0.2);
    color: rgba(240,246,255,0.6); font-size: 14px;
    width: 40px; height: 40px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 150ms ease; border-radius: 4px;
    font-family: 'Space Mono', monospace;
}
.video-lightbox-close:hover { color: var(--white); border-color: var(--teal); }
.screenshot-placeholder {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    color: var(--white-muted);
}
.screenshot-placeholder svg { opacity: 0.15; }

/* ── Slideshow ── */
.screenshot-frame .slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: contain; opacity: 0;
    transition: opacity 800ms ease-in-out;
    border-radius: 12px;
}
.screenshot-frame .slide.active { opacity: 1; }
.slide-dots-outer {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 20px;
}
.slide-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(240,246,255,0.2); cursor: pointer;
    border: 1px solid rgba(240,246,255,0.1);
    transition: all 200ms ease;
}
.slide-dot.active { background: var(--teal); border-color: var(--teal); transform: scale(1.2); }
.slide-dot:hover { background: rgba(240,246,255,0.4); }

/* ── Features Grid ── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.feature-card {
    background: var(--navy-mid); border: 1px solid var(--navy-border);
    padding: 36px 28px; transition: all 200ms ease; position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--teal); transform: scaleX(0);
    transition: transform 300ms ease; transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: var(--navy-card); }
.feature-icon {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; border: 1px solid var(--navy-border);
    color: var(--teal);
}
.feature-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--white); }
.feature-card p { font-size: 14px; color: var(--white-dim); line-height: 1.6; }

/* ── Solver Section ── */
.solver-tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-top: 48px; }
.solver-tier {
    background: var(--navy-mid); border: 1px solid var(--navy-border);
    padding: 28px 20px; text-align: center; transition: all 200ms ease;
}
.solver-tier:hover { background: var(--navy-card); border-color: rgba(0,212,200,0.2); }
.solver-tier .tier-num {
    font-family: 'Space Mono', monospace;
    font-size: 28px; color: var(--teal); font-weight: 700; margin-bottom: 8px;
}
.solver-tier h4 { font-size: 13px; margin-bottom: 6px; }
.solver-tier p { font-size: 11px; color: var(--white-dim); }
.solver-tier .tier-tag {
    display: inline-block; margin-top: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 3px 10px; border: 1px solid var(--navy-border); color: var(--white-muted);
}
.solver-tier .tier-tag.cuda { border-color: rgba(0,212,200,0.3); color: var(--teal); }
.solver-tier .tier-tag.future { border-color: rgba(255,184,0,0.3); color: var(--gold); }

/* ── Comparison Table ── */
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.comparison-table th, .comparison-table td {
    padding: 14px 20px; text-align: left;
    border-bottom: 1px solid var(--navy-border);
    font-size: 13px;
}
.comparison-table th {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--teal-dim); background: var(--navy-mid);
    border-bottom: 1px solid var(--teal-dim);
}
.comparison-table td { color: var(--white-dim); }
.comparison-table tr:hover td { background: rgba(0,212,200,0.02); }
.check { color: var(--teal); font-weight: 700; }
.cross { color: var(--red); opacity: 0.6; }
.warn { color: var(--gold); }

/* ── Audience Cards ── */
.audience-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
.audience-card {
    background: var(--navy-mid); border: 1px solid var(--navy-border);
    padding: 0; position: relative; overflow: hidden;
    transition: all 200ms ease;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.audience-card:hover { background: var(--navy-card); }
.audience-card .accent-line {
    position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
}
.audience-card-content {
    padding: 40px 32px 40px 40px;
}
.audience-card h3 {
    font-size: 18px; margin-bottom: 8px;
}
.audience-card .subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 24px;
}
.audience-card ul { list-style: none; padding: 0; }
.audience-card li {
    font-size: 13px; color: var(--white-dim);
    padding: 8px 0; border-bottom: 1px solid rgba(26,48,80,0.5);
    display: flex; align-items: flex-start; gap: 10px;
}
.audience-card li::before {
    content: '→'; color: var(--teal); flex-shrink: 0; font-weight: 700;
}
.audience-card .card-screenshot {
    border-left: 1px solid var(--navy-border);
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    color: var(--white-muted); font-size: 10px;
    font-family: 'Space Mono', monospace; letter-spacing: 0.1em;
    text-transform: uppercase; min-height: 280px;
}
.audience-card .card-screenshot img {
    width: 100%; height: 100%; object-fit: cover;
    filter: blur(1.5px) brightness(0.5); opacity: 0.6;
    transition: all 400ms ease;
}
.audience-card:hover .card-screenshot img {
    filter: blur(0) brightness(0.8); opacity: 1;
}

/* ── UI Gallery Carousel ── */
.gallery-carousel { margin-top: 48px; }
.gallery-frame {
    position: relative; overflow: hidden;
    max-width: 1100px; margin: 0 auto;
    aspect-ratio: 16/10;
    border: 1px solid rgba(0,212,200,0.15); border-radius: 12px;
    background: var(--navy-mid); cursor: pointer;
    box-shadow: 0 8px 48px rgba(0,212,200,0.06), 0 0 0 1px rgba(0,212,200,0.08);
}
.gallery-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: contain; opacity: 0;
    transition: opacity 800ms ease-in-out;
}
.gallery-slide.active { opacity: 1; }
.gallery-caption {
    text-align: center; margin-top: 16px;
    font-family: 'Space Mono', monospace; font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white-dim);
    transition: opacity 300ms ease;
}
.gallery-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 16px;
}
.gallery-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--navy-border); border: 1px solid var(--navy-border);
    cursor: pointer; transition: all 200ms ease;
}
.gallery-dot:hover { background: var(--teal-dim); }
.gallery-dot.active { background: var(--teal); border-color: var(--teal); }

/* ── Gallery Arrows ── */
.gallery-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(7,14,26,0.7); border: 1px solid rgba(0,212,200,0.2);
    color: var(--white-dim); font-size: 32px; line-height: 1;
    width: 44px; height: 64px; cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: all 200ms ease; border-radius: 6px;
    font-family: system-ui;
}
.gallery-arrow:hover {
    background: rgba(0,212,200,0.15); border-color: var(--teal);
    color: var(--teal);
}
.gallery-arrow-left { left: 12px; }
.gallery-arrow-right { right: 12px; }
.gallery-lb-arrow {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 52px; height: 72px; font-size: 36px;
}

/* ── Gallery Lightbox ── */
.gallery-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    opacity: 0; pointer-events: none;
    transition: opacity 300ms ease; cursor: zoom-out;
}
.gallery-lightbox.active { opacity: 1; pointer-events: auto; }
.gallery-lightbox-inner { text-align: center; }
.gallery-lightbox-inner img {
    max-width: 92vw; max-height: 85vh;
    border-radius: 6px; box-shadow: 0 0 60px rgba(0,212,200,0.1);
}
.gallery-lightbox-caption {
    font-family: 'Space Mono', monospace; font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white-dim); margin-top: 16px;
}

/* ── Stats Row ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.stat-box {
    background: var(--navy-mid); border: 1px solid var(--navy-border);
    padding: 32px 24px; text-align: center;
}
.stat-box .stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px; font-weight: 700; color: var(--teal);
}
.stat-box .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px; color: var(--white-muted);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-top: 6px;
}

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.price-card {
    background: var(--navy-mid); border: 1px solid var(--navy-border);
    padding: 40px 28px; text-align: center; position: relative;
    transition: all 200ms ease;
}
.price-card.featured { border-color: rgba(0,212,200,0.3); }
.price-card.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--teal);
}
.price-card:hover { background: var(--navy-card); }
.price-card h3 { font-size: 16px; margin-bottom: 4px; }
.price-card .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px; font-weight: 700; color: var(--teal); margin: 16px 0;
}
.price-card .price small { font-size: 14px; color: var(--white-dim); font-weight: 400; }
.price-card ul { list-style: none; padding: 0; text-align: left; margin-top: 24px; }
.price-card li {
    font-size: 12px; color: var(--white-dim); padding: 6px 0;
    border-bottom: 1px solid rgba(26,48,80,0.5);
}
.price-card li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

/* ── CTA Section ── */
.cta-section { text-align: center; padding: 120px 0; }
.cta-section h2 { font-size: 40px; margin-bottom: 16px; }
.cta-section p { font-size: 16px; color: var(--white-dim); max-width: 500px; margin: 0 auto 40px; }

/* ── Footer ── */
footer {
    border-top: 1px solid var(--navy-border);
    padding: 40px 0; text-align: center;
    position: relative;
    z-index: 1;
}
footer p { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--white-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.footer-parent-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-dim);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 120ms ease;
    margin-bottom: 16px;
}
.footer-parent-link:hover { color: var(--teal); }

/* ── Section Headers ── */
.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: 36px; margin-bottom: 12px; }
.section-header p { font-size: 16px; color: var(--white-dim); max-width: 600px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ── Scroll Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(0.16,1,0.3,1),
                transform 700ms cubic-bezier(0.16,1,0.3,1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .features-grid, .pricing-grid { grid-template-columns: 1fr !important; }
    .audience-card { grid-template-columns: 1fr; }
    .solver-tiers { grid-template-columns: 1fr !important; }
    .stats-row { grid-template-columns: repeat(2, 1fr) !important; }
    .hero h1 { font-size: 36px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .gallery-frame { aspect-ratio: 4/3; }
    .contact-grid { grid-template-columns: 1fr; }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 56px;
        left: 0; right: 0;
        background: rgba(7,14,26,0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--navy-border);
        padding: 16px 32px;
        gap: 4px;
    }
    .nav-links.mobile-open a {
        padding: 12px 0;
        border: none;
        font-size: 13px;
    }
    .nav-links .nav-divider { display: none; }
}
@media (max-width: 600px) {
    .container { padding: 0 16px; max-width: 100vw; }
    section { padding: 60px 0; overflow-x: hidden; }
    .hero { min-height: 85vh; }
    .hero h1 { font-size: 28px; }
    .hero .hero-sub { font-size: 15px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .section-header h2 { font-size: 26px; }
    .section-header p { font-size: 14px; }
    .features-grid, .pricing-grid { grid-template-columns: 1fr !important; }
    .solver-tiers, .stats-row { grid-template-columns: 1fr !important; }
    .audience-card-content { padding: 28px 20px; }
    .audience-card .card-screenshot { min-height: 200px; }
    .gallery-carousel { overflow: hidden; }
    .gallery-frame { aspect-ratio: 16/10; min-height: 220px; max-width: 100%; }
    .gallery-arrow { width: 36px; height: 48px; font-size: 24px; }
    .gallery-dots { gap: 5px; flex-wrap: wrap; }
    .gallery-dot { width: 8px; height: 8px; }
    .gallery-caption { font-size: 9px; }
    .screenshot-frame { max-width: 100%; margin-top: 40px; }
    .comparison-table { font-size: 11px; display: block; overflow-x: auto; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; white-space: nowrap; }
    .contact-form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 32px; }
    .footer-links { flex-direction: column; gap: 24px; }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
    background: rgba(7,14,26,0.97); backdrop-filter: blur(16px);
    border-top: 1px solid var(--navy-border);
    padding: 20px 32px; display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
    transform: translateY(100%); transition: transform 400ms ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
    font-size: 13px; color: var(--white-dim); margin: 0;
    max-width: 700px; line-height: 1.6;
}
.cookie-banner p a { color: var(--teal); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 8px 20px; border-radius: 4px; font-size: 12px;
    font-family: 'Space Mono', monospace; letter-spacing: 0.08em;
    text-transform: uppercase; cursor: pointer; border: none;
    transition: all 200ms ease;
}
.cookie-btn-accept { background: var(--teal); color: var(--navy); }
.cookie-btn-accept:hover { background: #00f0e0; }
.cookie-btn-decline { background: transparent; color: var(--white-dim); border: 1px solid var(--navy-border); }
.cookie-btn-decline:hover { border-color: var(--teal-dim); color: var(--white); }

@media (max-width: 600px) {
    .cookie-banner { flex-direction: column; padding: 16px 20px; gap: 12px; }
    .cookie-banner p { font-size: 12px; }
    .cookie-banner-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}

/* ── Spinner Animation ── */
@keyframes spin { to { transform: rotate(360deg); } }
