/* =====================================================
   Neevel — neevel.org microsite
   Shared styles. Light theme. Editorial, not marketing.
   ===================================================== */

:root {
    --dark: #0D0B09;
    --light: #FAFAF9;
    --cream: #F5F3EE;
    --text: #1A1A1A;
    --text-2: #6B6B6B;
    --text-3: #A8A8A6;
    --border: #EAEAE8;
    --border-soft: #F0EFEC;
    --glow: #E8A838;
    --glow-soft: #F5C563;
    --glow-wash: rgba(232, 168, 56, 0.06);
}

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

html {
    scroll-behavior: auto;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

/* =========== TYPOGRAPHY ============ */
.serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; }
.serif-i { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; }

.display {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(56px, 9vw, 120px);
    line-height: 0.96;
    letter-spacing: -3px;
    color: var(--text);
}

.display-sm {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.headline {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.subhead {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(22px, 2.8vw, 32px);
    line-height: 1.3;
    letter-spacing: -0.4px;
    color: var(--text);
}

.eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-2);
}

.eyebrow.amber { color: var(--glow); }

.lede {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.4;
    letter-spacing: -0.3px;
    color: var(--text);
}

p, .body-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
}

.muted { color: var(--text-2); }
.dim { color: var(--text-3); }
.accent { color: var(--glow); }

/* =========== LAYOUT ============ */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 96px 0;
    border-bottom: 1px solid var(--border-soft);
}

.section:last-of-type { border-bottom: none; }

.section-tight { padding: 64px 0; }

.divider {
    height: 1px;
    background: var(--border);
    border: none;
    margin: 0;
}

.divider-short {
    width: 48px;
    height: 1px;
    background: var(--text);
    opacity: 0.2;
    border: none;
    margin: 32px 0;
}

/* =========== NAV ============ */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 249, 0.88);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 26px;
    letter-spacing: -1px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glow);
    box-shadow: 0 0 10px rgba(232, 168, 56, 0.6);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.18s ease;
    letter-spacing: -0.1px;
}

.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
    content: '';
    display: block;
    width: 14px;
    height: 1px;
    background: var(--glow);
    margin: 4px auto 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    padding: 8px;
}

/* =========== HERO ============ */
.hero {
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, var(--glow-wash) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--glow);
    box-shadow: 0 0 8px rgba(232, 168, 56, 0.6);
}

.hero-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(56px, 10vw, 128px);
    line-height: 0.94;
    letter-spacing: -4px;
    color: var(--text);
    text-shadow: 0 0 80px rgba(232, 168, 56, 0.1);
}

.hero-title em {
    font-style: italic;
    color: var(--text);
}

.hero-sub {
    margin-top: 28px;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.55;
    color: var(--text-2);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-meta {
    margin-top: 44px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-3);
    font-weight: 500;
}

.hero-meta-item { display: flex; align-items: center; gap: 10px; }
.hero-meta-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--glow);
}
.hero-meta-item:first-child::before { display: none; }

/* =========== PAGE HEADER (non-home pages) ============ */
.page-header {
    padding: 96px 0 48px;
    border-bottom: 1px solid var(--border-soft);
}

.page-header .container-narrow {
    text-align: left;
}

.page-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--glow);
    margin-bottom: 20px;
}

.page-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(44px, 7vw, 88px);
    line-height: 1;
    letter-spacing: -2.5px;
    color: var(--text);
}

.page-title em {
    font-style: italic;
}

.page-lede {
    margin-top: 28px;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.4;
    letter-spacing: -0.3px;
    color: var(--text-2);
    max-width: 640px;
}

/* =========== PROSE ============ */
.prose {
    max-width: 680px;
    margin: 0 auto;
}

.prose > * + * { margin-top: 20px; }

.prose h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-top: 56px;
    font-weight: 400;
    color: var(--text);
}

.prose h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-top: 40px;
    color: var(--text);
}

.prose p { font-size: 18px; line-height: 1.7; color: var(--text); }
.prose p.muted { color: var(--text-2); }

.prose ul, .prose ol {
    padding-left: 20px;
    margin-top: 16px;
}

.prose li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    padding-left: 8px;
    margin-bottom: 8px;
}

.prose blockquote {
    border-left: 2px solid var(--glow);
    padding: 4px 0 4px 24px;
    margin: 32px 0;
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--text);
}

.prose a {
    color: var(--text);
    border-bottom: 1px solid var(--glow);
    transition: background 0.18s ease;
    padding: 0 2px;
}

.prose a:hover { background: var(--glow-wash); }

/* =========== CARDS ============ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.card {
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #FFFFFF;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: var(--glow-soft);
}

.card-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--glow);
    margin-bottom: 14px;
}

.card-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 26px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text);
}

.card-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-2);
}

/* =========== STATS ============ */
.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    margin-top: 48px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-val {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -2px;
    color: var(--text);
}

.stat-val sup { font-size: 0.5em; color: var(--glow); margin-left: 4px; letter-spacing: 0; }

.stat-lbl {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-2);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* =========== FLOW (3-step loop) ============ */
.flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
    align-items: stretch;
}

.flow-step {
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #FFFFFF;
    position: relative;
}

.flow-num {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 42px;
    letter-spacing: -1px;
    color: var(--glow);
    line-height: 1;
    margin-bottom: 16px;
}

.flow-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 24px;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 10px;
}

.flow-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-2);
}

/* =========== TEAM ============ */
.team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 56px;
}

.team-member {
    padding: 36px 32px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #FFFFFF;
}

.team-name {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 32px;
    letter-spacing: -0.8px;
    color: var(--text);
}

.team-role {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--glow);
    font-weight: 600;
    margin-top: 6px;
}

.team-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-2);
    margin-top: 18px;
}

/* =========== PLACEHOLDER ============ */
.placeholder {
    padding: 56px 32px;
    border: 1px dashed var(--border);
    border-radius: 14px;
    text-align: center;
    background: var(--cream);
    color: var(--text-3);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 32px 0;
}

.placeholder-inner {
    max-width: 420px;
    margin: 0 auto;
}

.placeholder-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--glow);
    margin-bottom: 12px;
}

.placeholder-note {
    font-size: 14px;
    color: var(--text-2);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.5;
    font-weight: 400;
}

/* =========== LINK (inline) ============ */
.link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--glow);
    padding: 2px 0;
    transition: gap 0.18s ease, background 0.18s ease;
}

.link:hover { gap: 12px; background: var(--glow-wash); }
.link-arrow { color: var(--glow); }

/* =========== CTA ============ */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--text);
    color: var(--light);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: transform 0.18s ease, background 0.18s ease;
}

.cta:hover { background: #000; transform: translateY(-1px); }

.cta.ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.cta.ghost:hover { background: var(--cream); }

/* =========== FOOTER ============ */
.footer {
    padding: 56px 0 48px;
    border-top: 1px solid var(--border-soft);
    background: var(--cream);
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-tag {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-2);
}

.footer-links { display: flex; gap: 48px; }

.footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 14px;
}

.footer-col ul { list-style: none; }

.footer-col li {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-2);
    transition: color 0.18s ease;
}

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

.footer-bottom {
    max-width: 1120px;
    margin: 40px auto 0;
    padding: 24px 32px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-3);
    letter-spacing: 0.3px;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========== STAGE (product hero) ============ */
.stage {
    position: relative;
    min-height: 100dvh;
    min-height: 100vh;
    background: #1C140D;
    color: var(--light);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
    isolation: isolate;
}

/* LAYER 1: product scene — softly graded for text contrast */
.stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 7, 3, 0.5) 0%, transparent 18%, transparent 70%, rgba(10, 7, 3, 0.68) 100%),
        radial-gradient(ellipse at center, transparent 22%, rgba(10, 7, 3, 0.38) 94%),
        url(lamp-hero.png) center center / cover no-repeat;
    filter: brightness(0.86) contrast(1.03) saturate(1.05);
    z-index: -1;
}

.stage::after {
    content: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* stage nav — dark variant */
.stage-nav {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
}

.stage-logo {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 26px;
    letter-spacing: -0.8px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.stage-logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glow-soft);
    box-shadow: 0 0 12px rgba(245, 197, 99, 0.9);
}

.stage-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.stage-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(250, 250, 249, 0.65);
    letter-spacing: -0.1px;
    transition: color 0.2s ease;
}

.stage-links a:hover { color: var(--glow-soft); }

.stage-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    padding: 8px;
    cursor: pointer;
}

/* main composition */
.stage-inner {
    display: block;
    position: static;
    padding: 0;
}

.stage-hero {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* pulse the amber drop-shadow glow to mimic lamp breathing */
@keyframes lamp-pulse {
    0%, 100% {
        filter:
            drop-shadow(0 0 60px rgba(245, 197, 99, 0.35))
            drop-shadow(0 0 120px rgba(232, 168, 56, 0.16))
            drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
    }
    50% {
        filter:
            drop-shadow(0 0 82px rgba(245, 197, 99, 0.45))
            drop-shadow(0 0 150px rgba(232, 168, 56, 0.22))
            drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
    }
}

/* caption — centered below hero composition */
.stage-side {
    position: absolute;
    top: clamp(168px, 31vh, 286px);
    right: clamp(40px, 8vw, 128px);
    width: min(360px, 28vw);
    margin: 0;
    text-align: left;
    z-index: 4;
}

.stage-side-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(250, 250, 249, 0.62);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.stage-side-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--glow-soft);
    box-shadow: 0 0 8px rgba(245, 197, 99, 0.7);
}

.stage-side-head {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.8px;
    color: rgba(250, 250, 249, 0.92);
}

.stage-side-head em {
    font-style: italic;
    color: var(--glow-soft);
}

/* stage footer — CTA + section links */
.stage-footer {
    position: relative;
    z-index: 3;
    padding: 0 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.stage-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: rgba(250, 250, 249, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--light);
    border: 1px solid rgba(250, 250, 249, 0.15);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.stage-cta:hover {
    background: var(--glow);
    color: #1A0F05;
    border-color: var(--glow);
    transform: translateY(-2px);
}

/* =========== CONCEPT OPTIONS ============ */
.concept {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background: #0D0B09;
    color: var(--light);
    overflow: hidden;
    isolation: isolate;
}

.concept::before,
.concept::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.concept::before {
    background: url(lamp-hero.png) center center / cover no-repeat;
    filter: brightness(0.86) contrast(1.04) saturate(1.05);
    z-index: -2;
}

.concept::after {
    z-index: -1;
}

.concept-label {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 3;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 197, 99, 0.62);
    padding: 8px 16px;
    border: 1px solid rgba(245, 197, 99, 0.2);
    border-radius: 100px;
    background: rgba(13, 11, 9, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.concept-copy {
    position: relative;
    z-index: 2;
    width: min(390px, 34vw);
    margin-left: clamp(40px, 8vw, 120px);
    padding-top: clamp(180px, 30vh, 280px);
}

.concept-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(250, 250, 249, 0.62);
}

.concept-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--glow-soft);
    box-shadow: 0 0 10px rgba(245, 197, 99, 0.8);
}

.concept-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(42px, 5.4vw, 74px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -1px;
    color: rgba(250, 250, 249, 0.94);
}

.concept-title em {
    font-style: italic;
    color: var(--glow-soft);
}

.concept-copy p {
    margin-top: 22px;
    max-width: 340px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(250, 250, 249, 0.64);
}

.concept-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    padding: 13px 24px;
    border: 1px solid rgba(250, 250, 249, 0.16);
    border-radius: 100px;
    background: rgba(250, 250, 249, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--light);
    font-size: 14px;
    font-weight: 500;
}

.concept--left::after {
    background:
        linear-gradient(90deg, rgba(10, 7, 3, 0.86) 0%, rgba(10, 7, 3, 0.48) 30%, rgba(10, 7, 3, 0.06) 58%, rgba(10, 7, 3, 0.52) 100%),
        linear-gradient(180deg, rgba(10, 7, 3, 0.55) 0%, transparent 32%, rgba(10, 7, 3, 0.72) 100%);
}

.concept--rail::before {
    filter: brightness(0.9) contrast(1.04) saturate(1.05);
}

.concept--rail::after {
    background:
        linear-gradient(180deg, rgba(10, 7, 3, 0.64) 0%, transparent 30%, rgba(10, 7, 3, 0.2) 56%, rgba(10, 7, 3, 0.88) 100%),
        radial-gradient(ellipse at center, transparent 22%, rgba(10, 7, 3, 0.34) 94%);
}

.concept-rail {
    position: absolute;
    left: clamp(28px, 6vw, 96px);
    right: clamp(28px, 6vw, 96px);
    bottom: clamp(36px, 7vw, 82px);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(250, 250, 249, 0.14);
}

.concept-rail .concept-title {
    max-width: 720px;
    font-size: clamp(38px, 4.6vw, 64px);
}

.concept-rail .concept-cta {
    flex: 0 0 auto;
    margin-top: 0;
    margin-bottom: 6px;
}

.stage-sections {
    width: 100%;
    max-width: 960px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(250, 250, 249, 0.08);
}

.stage-sections a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(250, 250, 249, 0.55);
    letter-spacing: -0.1px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stage-sections a:hover { color: var(--glow-soft); }
.stage-sections a .arrow { opacity: 0.5; transition: transform 0.2s ease; }
.stage-sections a:hover .arrow { transform: translateX(4px); opacity: 1; }

/* =========== VERSION LABEL (type compare) ============ */
.stage-label {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(245, 197, 99, 0.55);
    padding: 8px 18px;
    border: 1px solid rgba(245, 197, 99, 0.2);
    border-radius: 100px;
    background: rgba(28, 20, 13, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* =========== TYPE VERSIONS ============ */
/* Version 1 — Helvetica Neue */
.stage--v1 .stage-hero {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.95;
}
.stage--v1 .stage-hero em { font-style: italic; font-weight: 700; }

/* Version 2 — Neue Haas Grotesk Display */
.stage--v2 .stage-hero {
    font-family: 'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.95;
}
.stage--v2 .stage-hero em { font-style: italic; font-weight: 700; }

/* Version 3 — SF Pro Display */
.stage--v3 .stage-hero {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.94;
}
.stage--v3 .stage-hero em { font-style: italic; font-weight: 800; }

/* Version 4 — Inter Display */
.stage--v4 .stage-hero {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.94;
}
.stage--v4 .stage-hero em { font-style: italic; font-weight: 800; }

/* Version 5 — Libre Baskerville Italic */
.stage--v5 .stage-hero {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.98;
}
.stage--v5 .stage-hero em {
    font-style: italic;
    font-weight: 700;
}

/* Version 6 — Cormorant Garamond Italic */
.stage--v6 .stage-hero {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 0.98;
}
.stage--v6 .stage-hero em {
    font-style: italic;
    font-weight: 700;
}

/* =========== STAGE RESPONSIVE ============ */
@media (max-width: 1100px) {
    .stage-side {
        position: absolute;
        left: 50%;
        right: auto;
        top: auto;
        bottom: clamp(92px, 13vh, 132px);
        transform: translateX(-50%);
        width: min(86vw, 420px);
        max-width: 420px;
        margin: 0;
        text-align: center;
    }
    .stage-side-eyebrow { justify-content: center; }
    .stage-side-head {
        font-size: clamp(26px, 6vw, 36px);
        line-height: 1.16;
    }
}

@media (max-width: 900px) {
    .concept-label {
        top: 22px;
        right: 50%;
        transform: translateX(50%);
    }
    .concept-copy {
        width: min(86vw, 420px);
        margin: 0 auto;
        padding-top: clamp(460px, 64vh, 620px);
        text-align: center;
    }
    .concept-copy p {
        margin-left: auto;
        margin-right: auto;
    }
    .concept-eyebrow {
        justify-content: center;
    }
    .concept--left::after {
        background:
            linear-gradient(180deg, rgba(10, 7, 3, 0.42) 0%, transparent 34%, rgba(10, 7, 3, 0.82) 76%, rgba(10, 7, 3, 0.94) 100%),
            radial-gradient(ellipse at center, transparent 22%, rgba(10, 7, 3, 0.38) 94%);
    }
    .concept-rail {
        left: 24px;
        right: 24px;
        bottom: 34px;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
    }
    .concept-rail .concept-title {
        max-width: 460px;
        font-size: clamp(32px, 8vw, 44px);
        line-height: 1.02;
    }
}

@media (max-width: 640px) {
    .stage-nav { padding: 16px 20px; }
    .stage-links { display: none; }
    .stage-nav-toggle { display: block; }
    .stage-links.open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        background: rgba(28, 20, 13, 0.95);
        border-bottom: 1px solid rgba(250, 250, 249, 0.08);
    }
    .stage-lamp { width: clamp(140px, 38vw, 200px); }
    .stage-footer { padding: 0 20px 28px; gap: 20px; }
    .stage-sections {
        flex-wrap: wrap;
        gap: 12px 20px;
        justify-content: center;
    }
    .stage-sections a { font-size: 12px; }
    .concept-copy {
        padding-top: clamp(430px, 61vh, 560px);
    }
    .concept-title {
        font-size: clamp(36px, 11vw, 48px);
    }
    .concept-copy p {
        font-size: 14px;
    }
    .concept-label {
        font-size: 9px;
        letter-spacing: 2.4px;
    }
}

body {
    background: #0D0B09;
}

.compare-page {
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    background: #050403;
}

.compare-shell {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}

.compare-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #0D0B09;
    z-index: 1;
    pointer-events: none;
}

.compare-controls {
    position: fixed;
    top: 16px;
    right: 14px;
    z-index: 2147483647;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px;
    border: 1px solid rgba(250, 250, 249, 0.13);
    border-radius: 999px;
    background: rgba(8, 6, 4, 0.42);
    color: rgba(250, 250, 249, 0.86);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateZ(0);
}

.compare-button {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(250, 250, 249, 0.1);
    color: rgba(250, 250, 249, 0.94);
    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1;
}

.compare-info {
    min-width: 86px;
    display: grid;
    gap: 3px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.compare-info strong {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1;
}

.compare-info span {
    color: rgba(250, 250, 249, 0.48);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
    line-height: 1;
}

.compare-hint {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 50;
    display: grid;
    gap: 3px;
    padding: 9px 11px;
    border: 1px solid rgba(250, 250, 249, 0.12);
    border-radius: 999px;
    background: rgba(8, 6, 4, 0.34);
    color: rgba(250, 250, 249, 0.78);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1;
    text-align: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.compare-hint strong {
    font-size: 10px;
    font-weight: 700;
}

.compare-hint span {
    color: rgba(250, 250, 249, 0.48);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.direction-controls {
    display: none;
}

.direction-controls button {
    position: fixed;
    top: 50%;
    z-index: 2147483647;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(250, 250, 249, 0.13);
    border-radius: 50%;
    background: rgba(8, 6, 4, 0.42);
    color: #FAFAF9;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1;
    pointer-events: auto;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(-50%);
}

.direction-controls button:first-child {
    left: 12px;
}

.direction-controls .direction-next {
    right: 12px;
}

.direction-controls span {
    display: none;
}

@media (max-width: 640px) {
    .compare-controls {
        gap: 6px;
        padding: 6px;
    }
    .compare-info {
        display: none;
    }
    .compare-button {
        width: 32px;
        height: 32px;
        font-size: 25px;
        background: rgba(8, 6, 4, 0.62);
        color: #FAFAF9;
    }
}

body:has(.variant-controls) {
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}

/* =========== RESPONSIVE ============ */
@media (max-width: 720px) {
    .section { padding: 64px 0; }
    .hero { padding: 80px 0 72px; }
    .page-header { padding: 56px 0 32px; }

    .nav-inner { padding: 14px 20px; }
    .container, .container-narrow, .hero-inner { padding-left: 20px; padding-right: 20px; }

    .nav-links {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--light);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }

    .flow { grid-template-columns: 1fr; }
    .team { grid-template-columns: 1fr; gap: 20px; }

    .footer-inner { flex-direction: column; gap: 32px; }
    .footer-links { gap: 32px; flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; }
}

/* =========== SELECTED DIRECTION ============ */
.product-scene {
    position: relative;
    min-height: 100vh;
    background: #0D0B09;
    color: var(--light);
    overflow: hidden;
    isolation: isolate;
}

.product-scene:not(.is-active) {
    display: none;
}

.product-scene::before,
.product-scene::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.product-scene::before {
    background: url(lamp-hero.png) center center / cover no-repeat;
    z-index: -2;
}

.product-scene::after {
    background:
        linear-gradient(90deg, rgba(10, 7, 3, 0.82) 0%, rgba(10, 7, 3, 0.48) 27%, rgba(10, 7, 3, 0.04) 56%, rgba(10, 7, 3, 0.38) 100%),
        linear-gradient(180deg, rgba(10, 7, 3, 0.2) 0%, transparent 34%, rgba(10, 7, 3, 0.56) 100%);
    z-index: -1;
}

.scene-nav {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding: 24px 40px;
}

.scene-logo {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 34px;
    letter-spacing: -0.4px;
    color: var(--light);
}

.scene-links {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 62px);
    color: rgba(250, 250, 249, 0.72);
    font-size: 15px;
    font-weight: 600;
}

.version1-desktop .scene-logo,
.version1-desktop .scene-links span {
    opacity: 0;
    transform: translateY(-10px);
    transition:
        opacity 720ms ease,
        transform 720ms ease;
}

.version1-desktop.is-on .scene-logo,
.version1-desktop.is-on .scene-links span {
    opacity: 1;
    transform: translateY(0);
}

.version1-desktop.is-on .scene-logo {
    transition-delay: 640ms;
}

.version1-desktop.is-on .scene-links span:nth-child(1) {
    transition-delay: 760ms;
}

.version1-desktop.is-on .scene-links span:nth-child(2) {
    transition-delay: 860ms;
}

.version1-desktop.is-on .scene-links span:nth-child(3) {
    transition-delay: 960ms;
}

.demo-mobile-copy {
    display: none;
}

.scene-copy {
    position: relative;
    z-index: 2;
    width: min(450px, 36vw);
    margin-left: clamp(40px, 8vw, 120px);
    padding-top: clamp(150px, 26vh, 240px);
}

.scene-copy--center {
    width: min(520px, 42vw);
    margin-left: auto;
    margin-right: auto;
    padding-top: clamp(455px, 67vh, 590px);
    text-align: center;
}

.scene-copy--center p {
    margin-left: auto;
    margin-right: auto;
}

.scene-copy--center .scene-eyebrow,
.scene-copy--center .scene-proof {
    justify-content: center;
}

.scene-copy--right {
    width: min(430px, 34vw);
    margin-left: auto;
    margin-right: clamp(40px, 8vw, 120px);
}

.scene-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(250, 250, 249, 0.7);
}

.scene-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--glow-soft);
    box-shadow: 0 0 10px rgba(245, 197, 99, 0.8);
}

.scene-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(54px, 6.3vw, 92px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.2px;
    color: rgba(250, 250, 249, 0.95);
}

.scene-title em {
    font-style: italic;
    color: rgba(250, 250, 249, 0.95);
}

.scene-copy p {
    margin-top: 22px;
    max-width: 340px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(250, 250, 249, 0.68);
}

.scene-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    padding: 13px 24px;
    border: 1px solid rgba(250, 250, 249, 0.16);
    border-radius: 100px;
    background: rgba(250, 250, 249, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--light);
    font-size: 14px;
    font-weight: 500;
}

.scene-proof {
    display: none;
}

.mobile-ui {
    display: none;
}

.variant-controls {
    position: fixed;
    right: 22px;
    bottom: max(22px, env(safe-area-inset-bottom));
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(250, 250, 249, 0.12);
    border-radius: 999px;
    background: rgba(10, 7, 3, 0.34);
    color: rgba(250, 250, 249, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.variant-control {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(250, 250, 249, 0.08);
    color: rgba(250, 250, 249, 0.9);
    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1;
}

.variant-indicator {
    min-width: 52px;
    display: inline-flex;
    justify-content: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 1;
}

.product-scene--demo::before {
    filter: brightness(0.3) contrast(1.1) saturate(0.82);
    transition: filter 2.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-scene--demo::after {
    background:
        radial-gradient(ellipse at 50% 40%, rgba(245, 197, 99, 0.04) 0%, transparent 34%),
        linear-gradient(180deg, rgba(10, 7, 3, 0.42) 0%, rgba(10, 7, 3, 0.18) 38%, rgba(10, 7, 3, 0.76) 100%);
    opacity: 1;
    transition: opacity 2.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
}

.product-scene--demo.is-on::before {
    filter: brightness(1.06) contrast(1.02) saturate(1.06);
}

.product-scene--demo.is-on::after {
    opacity: 0.22;
}

.product-scene--gift::after {
    background:
        linear-gradient(180deg, rgba(10, 7, 3, 0.08) 0%, transparent 32%, rgba(10, 7, 3, 0.74) 100%),
        radial-gradient(ellipse at center, transparent 22%, rgba(10, 7, 3, 0.34) 94%);
}

.product-scene--quiet::before {
    background-position: center 48%;
}

.product-scene--quiet::after {
    background:
        linear-gradient(90deg, rgba(10, 7, 3, 0.78) 0%, rgba(10, 7, 3, 0.4) 28%, rgba(10, 7, 3, 0.06) 62%, rgba(10, 7, 3, 0.34) 100%),
        linear-gradient(180deg, rgba(10, 7, 3, 0.12) 0%, transparent 36%, rgba(10, 7, 3, 0.64) 100%);
}

.product-scene--peace::after {
    background:
        linear-gradient(90deg, rgba(10, 7, 3, 0.36) 0%, rgba(10, 7, 3, 0.08) 45%, rgba(10, 7, 3, 0.6) 100%),
        linear-gradient(180deg, rgba(10, 7, 3, 0.16) 0%, transparent 36%, rgba(10, 7, 3, 0.7) 100%);
}

@media (prefers-reduced-motion: reduce) {
    .product-scene--demo::before,
    .product-scene--demo::after {
        transition: none;
    }
    .product-scene--demo::before {
        filter: brightness(1.04) contrast(1.02) saturate(1.06);
    }
}

@media (max-width: 900px) {
    .product-scene {
        min-height: 100svh;
    }
    .product-scene--copy {
        display: flex;
        flex-direction: column;
    }
    .product-scene::before {
        background-position: center 36%;
        background-size: auto 100%;
    }
    .product-scene::after {
        background:
            linear-gradient(180deg, rgba(10, 7, 3, 0.08) 0%, rgba(10, 7, 3, 0.02) 30%, rgba(10, 7, 3, 0.68) 64%, rgba(10, 7, 3, 0.96) 100%),
            radial-gradient(ellipse at center, transparent 18%, rgba(10, 7, 3, 0.28) 92%);
    }
    .product-scene--demo::after {
        background:
            linear-gradient(180deg, rgba(10, 7, 3, 0.02) 0%, rgba(10, 7, 3, 0.06) 37%, rgba(10, 7, 3, 0.82) 72%, rgba(10, 7, 3, 0.98) 100%),
            radial-gradient(ellipse at 50% 30%, rgba(245, 197, 99, 0.08) 0%, transparent 38%);
        opacity: 1;
    }
    .product-scene--demo.is-on::after {
        opacity: 1;
    }
    .demo-mobile-copy {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: max(34px, env(safe-area-inset-bottom));
        z-index: 2;
        display: grid;
        gap: 13px;
        text-align: left;
    }
    .demo-status {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        width: fit-content;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: transparent;
        color: rgba(250, 250, 249, 0.58);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        line-height: 1;
        text-transform: uppercase;
    }
    .demo-status span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--glow-soft);
        box-shadow: 0 0 12px rgba(245, 197, 99, 0.95);
    }
    .demo-mobile-copy h2 {
        max-width: 335px;
        font-family: 'Instrument Serif', Georgia, serif;
        font-size: clamp(36px, 10.9vw, 47px);
        font-weight: 400;
        line-height: 0.98;
        letter-spacing: 0;
        color: rgba(250, 250, 249, 0.96);
    }
    .demo-mobile-copy p {
        max-width: 305px;
        color: rgba(250, 250, 249, 0.62);
        font-size: 14px;
        line-height: 1.6;
    }
    .demo-specs {
        display: flex;
        align-items: center;
        gap: 18px;
        max-width: 320px;
        padding-top: 5px;
    }
    .demo-specs span,
    .scene-proof span {
        min-height: 0;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: rgba(250, 250, 249, 0.56);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.7px;
        line-height: 1.25;
        text-align: left;
        text-transform: uppercase;
    }
    .demo-specs span + span,
    .scene-proof span + span {
        position: relative;
    }
    .demo-specs span + span::before,
    .scene-proof span + span::before {
        content: '';
        position: absolute;
        left: -10px;
        top: 50%;
        width: 2px;
        height: 2px;
        border-radius: 50%;
        background: rgba(245, 197, 99, 0.72);
    }
    .scene-copy {
        width: min(86vw, 420px);
        margin: 0 auto;
        padding-top: clamp(365px, 48svh, 460px);
        text-align: center;
    }
    .scene-copy p {
        margin-left: auto;
        margin-right: auto;
    }
    .scene-eyebrow {
        justify-content: center;
    }
    .scene-title {
        font-size: clamp(42px, 12vw, 58px);
        line-height: 1;
    }
    .scene-proof {
        display: flex;
        justify-content: center;
        gap: 18px;
        margin-top: 22px;
    }
    .mobile-ui {
        position: absolute;
        z-index: 3;
        display: block;
        color: rgba(250, 250, 249, 0.68);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.8px;
        line-height: 1;
        text-transform: uppercase;
    }
    .mobile-ui--count {
        display: none;
    }
    .product-scene--copy:not(.product-scene--gift):not(.product-scene--quiet):not(.product-scene--peace) .scene-copy::before {
        content: '';
        display: block;
        width: 44px;
        height: 1px;
        margin: 0 auto 18px;
        background: linear-gradient(90deg, transparent, rgba(245, 197, 99, 0.9), transparent);
    }
    .scene-copy--center,
    .scene-copy--right {
        width: min(86vw, 420px);
        margin-left: auto;
        margin-right: auto;
        padding-top: clamp(365px, 48svh, 460px);
        text-align: center;
    }
    .product-scene--gift::before {
        background-position: center 34%;
    }
    .product-scene--gift .scene-copy {
        width: min(86vw, 360px);
        margin-left: auto;
        margin-right: auto;
        padding: 24px 22px 26px;
        margin-top: auto;
        margin-bottom: max(24px, env(safe-area-inset-bottom));
        border: 1px solid rgba(250, 250, 249, 0.1);
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(32, 24, 18, 0.58), rgba(8, 6, 4, 0.72));
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
    .product-scene--gift .scene-eyebrow {
        margin-bottom: 14px;
    }
    .product-scene--gift .scene-title {
        font-size: clamp(36px, 10vw, 44px);
        line-height: 1.02;
    }
    .product-scene--gift .scene-copy p {
        max-width: 285px;
    }
    .mobile-ui--gift-tag {
        top: 108px;
        right: 17px;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        color: rgba(250, 250, 249, 0.46);
        letter-spacing: 2.4px;
    }
    .mobile-ui--gift-tag::before {
        content: '';
        display: inline-block;
        width: 1px;
        height: 44px;
        margin-bottom: 14px;
        background: rgba(245, 197, 99, 0.6);
    }
    .product-scene--quiet::before {
        background-position: 52% 36%;
    }
    .product-scene--quiet .scene-copy {
        width: 100%;
        margin-top: auto;
        padding: 28px 28px max(32px, env(safe-area-inset-bottom));
        border-top: 1px solid rgba(250, 250, 249, 0.09);
        background:
            linear-gradient(180deg, rgba(16, 12, 9, 0.32), rgba(8, 6, 4, 0.88)),
            rgba(10, 7, 3, 0.5);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    .product-scene--quiet .scene-title {
        max-width: 340px;
        margin: 0 auto;
    }
    .product-scene--quiet .scene-cta {
        background: rgba(250, 250, 249, 0.9);
        color: #14100c;
        border-color: rgba(250, 250, 249, 0.44);
    }
    .mobile-ui--glow-control {
        left: 50%;
        top: 52%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min(78vw, 300px);
        padding: 12px 14px;
        border: 1px solid rgba(250, 250, 249, 0.12);
        border-radius: 999px;
        background: rgba(10, 7, 3, 0.26);
        transform: translate(-50%, -50%);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
    .mobile-ui--glow-control div {
        display: flex;
        gap: 6px;
    }
    .mobile-ui--glow-control i {
        width: 18px;
        height: 3px;
        border-radius: 99px;
        background: rgba(250, 250, 249, 0.24);
    }
    .mobile-ui--glow-control i:nth-child(-n+3) {
        background: rgba(245, 197, 99, 0.72);
        box-shadow: 0 0 12px rgba(245, 197, 99, 0.42);
    }
    .product-scene--peace::before {
        background-position: 48% 36%;
    }
    .product-scene--peace .scene-copy {
        width: min(84vw, 350px);
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: max(34px, env(safe-area-inset-bottom));
        padding-top: 0;
        text-align: left;
    }
    .product-scene--peace .scene-eyebrow,
    .product-scene--peace .scene-proof {
        justify-content: flex-start;
    }
    .product-scene--peace .scene-title {
        max-width: 330px;
        font-size: clamp(38px, 10.4vw, 46px);
        line-height: 1.02;
    }
    .product-scene--peace .scene-copy p {
        margin-left: 0;
        max-width: 300px;
    }
    .product-scene--peace .scene-proof {
        justify-content: flex-start;
    }
    .mobile-ui--status {
        top: 96px;
        left: 20px;
        display: grid;
        gap: 8px;
        min-width: 128px;
        padding: 14px 15px;
        border: 1px solid rgba(250, 250, 249, 0.12);
        border-radius: 16px;
        background: rgba(10, 7, 3, 0.28);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        text-transform: none;
    }
    .mobile-ui--status span {
        color: rgba(250, 250, 249, 0.42);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
    }
    .mobile-ui--status strong {
        color: rgba(250, 250, 249, 0.9);
        font-family: 'Instrument Serif', Georgia, serif;
        font-size: 28px;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 0.95;
        text-transform: none;
    }
    .product-scene--gift::after,
    .product-scene--quiet::after,
    .product-scene--peace::after {
        background:
            linear-gradient(180deg, rgba(10, 7, 3, 0.05) 0%, rgba(10, 7, 3, 0.02) 30%, rgba(10, 7, 3, 0.68) 64%, rgba(10, 7, 3, 0.96) 100%),
            radial-gradient(ellipse at center, transparent 18%, rgba(10, 7, 3, 0.28) 92%);
    }
}

@media (max-width: 640px) {
    .scene-nav {
        display: flex;
        padding: 16px 20px;
    }
    .scene-logo {
        font-size: 31px;
    }
    .scene-links {
        display: none;
    }
    .scene-copy {
        padding-top: clamp(342px, 45svh, 410px);
        width: min(90vw, 360px);
    }
    .scene-eyebrow {
        margin-bottom: 12px;
        font-size: 9px;
        letter-spacing: 2px;
    }
    .scene-title {
        font-size: clamp(39px, 12vw, 48px);
    }
    .scene-copy p {
        font-size: 14px;
        max-width: 300px;
        margin-top: 16px;
        line-height: 1.55;
    }
    .scene-cta {
        margin-top: 22px;
        padding: 12px 19px;
        font-size: 13px;
    }
    .scene-proof {
        margin-top: 18px;
    }
    .variant-controls {
        top: 18px;
        right: 16px;
        bottom: auto;
        left: auto;
        transform: none;
        padding: 6px;
    }
    .variant-control {
        width: 30px;
        height: 30px;
        font-size: 24px;
    }
    .variant-indicator {
        min-width: 48px;
        font-size: 9px;
    }
    .demo-mobile-copy {
        left: 18px;
        right: 18px;
        bottom: max(30px, env(safe-area-inset-bottom));
        gap: 12px;
    }
    body:has(.variant-controls) .demo-mobile-copy {
        bottom: max(82px, env(safe-area-inset-bottom));
    }
    body:has(.variant-controls) .product-scene--gift .scene-copy,
    body:has(.variant-controls) .product-scene--peace .scene-copy {
        margin-bottom: max(80px, env(safe-area-inset-bottom));
    }
    body:has(.variant-controls) .product-scene--quiet .scene-copy {
        padding-bottom: max(88px, env(safe-area-inset-bottom));
    }
    .demo-specs,
    .scene-proof {
        gap: 16px;
    }
}

@media (max-width: 380px) {
    .demo-mobile-copy h2 {
        font-size: 34px;
    }
    .scene-copy {
        padding-top: clamp(350px, 49svh, 420px);
    }
    .scene-title {
        font-size: 38px;
    }
    .demo-specs span,
    .scene-proof span {
        font-size: 9px;
    }
}

/* =========== BEST DIRECTION ============ */
.best-scene {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    color: var(--light);
    background:
        radial-gradient(circle at 50% 27%, rgba(245, 197, 99, 0.24) 0%, rgba(232, 168, 56, 0.1) 22%, transparent 50%),
        radial-gradient(ellipse at 50% 56%, rgba(128, 66, 35, 0.3) 0%, transparent 46%),
        linear-gradient(180deg, #20130d 0%, #0f0a07 48%, #050403 100%);
}

.best-scene::before,
.best-scene::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.best-scene::before {
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
        radial-gradient(ellipse at center, transparent 28%, rgba(0, 0, 0, 0.42) 100%);
}

.best-scene::after {
    left: 50%;
    bottom: 31%;
    width: min(80vw, 410px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(245, 197, 99, 0.26), transparent);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.55);
}

.best-nav {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 0;
}

.best-logo {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 33px;
    line-height: 1;
    letter-spacing: -0.2px;
}

.best-nav span {
    display: none;
    color: rgba(250, 250, 249, 0.42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.best-status {
    position: absolute;
    top: 84px;
    left: 24px;
    z-index: 4;
    display: grid;
    gap: 7px;
    min-width: 122px;
    padding: 13px 15px 15px;
    border: 1px solid rgba(250, 250, 249, 0.11);
    border-radius: 18px;
    background: rgba(250, 250, 249, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 55px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.best-status span {
    color: rgba(250, 250, 249, 0.42);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 1.6px;
    line-height: 1;
    text-transform: uppercase;
}

.best-status strong {
    color: rgba(250, 250, 249, 0.93);
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 29px;
    font-weight: 400;
    line-height: 0.95;
}

.best-product {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 4%;
    width: min(210vw, 820px);
    transform: translateX(-50%);
    filter:
        drop-shadow(0 0 44px rgba(245, 197, 99, 0.16))
        drop-shadow(0 42px 70px rgba(0, 0, 0, 0.52));
}

.best-product img {
    width: 100%;
    height: auto;
    display: block;
}

.best-copy {
    position: absolute;
    z-index: 3;
    left: 24px;
    right: 24px;
    bottom: max(34px, env(safe-area-inset-bottom));
}

.best-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(250, 250, 249, 0.62);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.best-kicker::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--glow-soft);
    box-shadow: 0 0 16px rgba(245, 197, 99, 0.8);
}

.best-copy h1 {
    max-width: 350px;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(48px, 13.8vw, 64px);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: 0;
    color: rgba(250, 250, 249, 0.98);
}

.best-lede {
    max-width: 320px;
    margin-top: 18px;
    color: rgba(250, 250, 249, 0.66);
    font-size: 15px;
    line-height: 1.55;
}

.best-actions {
    margin-top: 26px;
    display: grid;
    gap: 19px;
}

.best-cta {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid rgba(250, 250, 249, 0.14);
    border-radius: 999px;
    background: rgba(250, 250, 249, 0.92);
    color: #120d09;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.1px;
}

.best-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: rgba(250, 250, 249, 0.5);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 1.7px;
    line-height: 1.2;
    text-transform: uppercase;
}

.best-meta span + span {
    position: relative;
}

.best-meta span + span::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(245, 197, 99, 0.74);
}

@media (min-width: 760px) {
    .best-nav {
        padding: 32px 40px 0;
    }
    .best-nav span {
        display: inline;
    }
    .best-status {
        top: 112px;
        left: 40px;
    }
    .best-product {
        top: 13%;
        width: min(95vw, 900px);
    }
    .best-copy {
        left: 40px;
        right: auto;
        bottom: 52px;
        width: 460px;
    }
}

@media (max-width: 390px) {
    .best-product {
        top: 5%;
        width: 218vw;
    }
    .best-copy h1 {
        font-size: 46px;
    }
    .best-lede {
        max-width: 300px;
        font-size: 14px;
    }
}

/* =========== FINAL BEST DIRECTION ============ */
.final-scene {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    color: var(--light);
    background: #0D0B09;
}

.final-scene::before,
.final-scene::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.final-scene::before {
    z-index: -2;
    background: url(lamp-hero.png) center 35% / auto 102% no-repeat;
    filter: brightness(1.02) contrast(1.01) saturate(1.02);
}

.final-scene::after {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(10, 7, 3, 0.02) 0%, rgba(10, 7, 3, 0.04) 35%, rgba(10, 7, 3, 0.72) 68%, rgba(10, 7, 3, 0.98) 100%),
        radial-gradient(ellipse at center, transparent 19%, rgba(10, 7, 3, 0.28) 92%);
}

.final-nav {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 22px 0;
}

.final-logo {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 33px;
    line-height: 1;
    color: rgba(250, 250, 249, 0.96);
}

.final-nav span {
    display: none;
    color: rgba(250, 250, 249, 0.44);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.final-control {
    position: absolute;
    left: 50%;
    top: 50.5%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(72vw, 280px);
    padding: 12px 14px;
    border: 1px solid rgba(250, 250, 249, 0.11);
    border-radius: 999px;
    background: rgba(10, 7, 3, 0.24);
    color: rgba(250, 250, 249, 0.64);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.final-control span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.final-control div {
    display: flex;
    gap: 6px;
}

.final-control i {
    width: 18px;
    height: 3px;
    border-radius: 99px;
    background: rgba(250, 250, 249, 0.22);
}

.final-control i:nth-child(-n+3) {
    background: rgba(245, 197, 99, 0.72);
    box-shadow: 0 0 12px rgba(245, 197, 99, 0.42);
}

.final-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 30px 28px max(34px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(250, 250, 249, 0.08);
    background:
        linear-gradient(180deg, rgba(13, 10, 8, 0.26), rgba(6, 5, 4, 0.94)),
        rgba(10, 7, 3, 0.54);
    text-align: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.final-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(250, 250, 249, 0.62);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.final-kicker::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--glow-soft);
    box-shadow: 0 0 16px rgba(245, 197, 99, 0.8);
}

.final-copy h1 {
    max-width: 310px;
    margin: 0 auto;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(39px, 10.5vw, 48px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0;
    color: rgba(250, 250, 249, 0.98);
}

.final-lede {
    max-width: 282px;
    margin: 17px auto 0;
    color: rgba(250, 250, 249, 0.66);
    font-size: 14px;
    line-height: 1.58;
}

.final-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 13px 22px;
    border: 1px solid rgba(250, 250, 249, 0.44);
    border-radius: 999px;
    background: rgba(250, 250, 249, 0.92);
    color: #120d09;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.1px;
}

.final-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 20px;
    color: rgba(250, 250, 249, 0.48);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 1.7px;
    line-height: 1.2;
    text-transform: uppercase;
}

.final-meta span + span {
    position: relative;
}

.final-meta span + span::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(245, 197, 99, 0.74);
}

@media (min-width: 760px) {
    .final-scene::before {
        background-size: cover;
        background-position: center center;
    }
    .final-nav {
        padding: 32px 40px 0;
    }
    .final-nav span {
        display: inline;
    }
    .final-copy {
        left: 40px;
        right: auto;
        bottom: 42px;
        width: 430px;
        padding: 0;
        border-top: 0;
        background: transparent;
        text-align: left;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .final-kicker,
    .final-meta {
        justify-content: flex-start;
    }
    .final-copy h1,
    .final-lede {
        margin-left: 0;
    }
}

@media (max-width: 380px) {
    .final-copy {
        padding-left: 22px;
        padding-right: 22px;
    }
    .final-copy h1 {
        font-size: 41px;
    }
    .final-control {
        top: 48.5%;
    }
}

/* =========== DRIBBBLE-INFORMED PRODUCT DIRECTIONS ============ */
.drift-scene {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    color: var(--light);
    background: #0D0B09;
}

.drift-nav {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 22px 0;
}

.drift-logo {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 33px;
    line-height: 1;
    letter-spacing: -0.1px;
}

.drift-nav span,
.drift-kicker,
.drift-note,
.gift-spec,
.launch-meta,
.launch-card {
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 1.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.drift-nav span {
    color: rgba(250, 250, 249, 0.44);
}

.drift-cta {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 21px;
    border: 1px solid rgba(250, 250, 249, 0.42);
    border-radius: 999px;
    background: rgba(250, 250, 249, 0.92);
    color: #120d09;
    font-size: 14px;
    font-weight: 650;
}

.drift-cta--dark {
    border-color: rgba(13, 11, 9, 0.13);
    background: #12100d;
    color: #FAFAF9;
}

.drift-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(245, 197, 99, 0.86);
}

.drift-kicker::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--glow-soft);
    box-shadow: 0 0 16px rgba(245, 197, 99, 0.8);
}

/* Style 1: editorial home-product */
.drift-scene--editorial {
    background:
        linear-gradient(180deg, #1e1814 0%, #0d0a08 58%, #070504 100%);
}

.drift-photo {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url(assets/neevel-nightstand.png) 58% 18% / auto 72% no-repeat;
    filter: brightness(0.9) contrast(1.03) saturate(1.02);
}

.drift-scene--editorial::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(10, 7, 3, 0.02) 0%, rgba(10, 7, 3, 0.08) 34%, rgba(10, 7, 3, 0.88) 74%, rgba(10, 7, 3, 0.98) 100%),
        radial-gradient(ellipse at center, transparent 18%, rgba(8, 6, 4, 0.38) 94%);
}

.drift-copy {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: max(36px, env(safe-area-inset-bottom));
    z-index: 3;
}

.drift-copy h1,
.gift-panel h1,
.launch-copy h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    letter-spacing: 0;
    color: rgba(250, 250, 249, 0.98);
}

.drift-copy h1 {
    max-width: 340px;
    margin-top: 14px;
    font-size: clamp(40px, 11.3vw, 52px);
    line-height: 0.98;
}

.drift-copy p:not(.drift-kicker) {
    max-width: 315px;
    margin-top: 18px;
    color: rgba(250, 250, 249, 0.66);
    font-size: 14px;
    line-height: 1.58;
}

.drift-copy .drift-cta {
    margin-top: 25px;
}

.drift-note {
    position: absolute;
    top: 92px;
    right: 22px;
    z-index: 4;
    display: grid;
    gap: 12px;
    color: rgba(250, 250, 249, 0.52);
    text-align: right;
}

/* Style 2: gift/editorial card */
.drift-scene--gift {
    color: #18130f;
    background:
        radial-gradient(circle at 50% 24%, rgba(232, 168, 56, 0.2), transparent 38%),
        linear-gradient(180deg, #F4F0E8 0%, #E6D9C5 64%, #281911 100%);
}

.drift-nav--dark,
.drift-nav--dark .drift-logo {
    color: #17120e;
}

.drift-nav--dark span {
    color: rgba(23, 18, 14, 0.5);
}

.gift-object {
    position: absolute;
    left: 50%;
    top: 76px;
    width: min(145vw, 610px);
    height: 54vh;
    transform: translateX(-50%);
    background: url(assets/neevel-nightstand.png) 50% 28% / cover no-repeat;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(49, 25, 10, 0.24);
}

.gift-object::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 30%, rgba(24, 16, 10, 0.48) 100%);
}

.gift-panel {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 3;
    padding: 25px 23px 27px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 24px;
    background: rgba(250, 250, 249, 0.82);
    box-shadow: 0 24px 70px rgba(32, 20, 11, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.gift-panel .drift-kicker {
    color: rgba(24, 18, 12, 0.54);
}

.gift-panel h1 {
    max-width: 310px;
    margin-top: 16px;
    color: #18130f;
    font-size: clamp(40px, 11.2vw, 52px);
    line-height: 0.98;
}

.gift-panel p:not(.drift-kicker) {
    max-width: 305px;
    margin-top: 17px;
    color: rgba(24, 18, 12, 0.64);
    font-size: 14px;
    line-height: 1.58;
}

.gift-panel .drift-cta {
    margin-top: 23px;
}

.gift-spec {
    position: absolute;
    top: 108px;
    right: 19px;
    z-index: 4;
    display: grid;
    gap: 12px;
    color: rgba(255, 255, 255, 0.72);
    text-align: right;
}

/* Style 3: premium launch */
.drift-scene--launch {
    background: #0D0B09;
}

.drift-scene--launch::before,
.drift-scene--launch::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.drift-scene--launch::before {
    z-index: -2;
    background: url(assets/neevel-nightstand.png) 50% 18% / auto 74% no-repeat;
    filter: brightness(0.92) contrast(1.04) saturate(1.04);
}

.drift-scene--launch::after {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(10, 7, 3, 0.08) 0%, rgba(10, 7, 3, 0.05) 36%, rgba(10, 7, 3, 0.86) 72%, rgba(10, 7, 3, 1) 100%),
        radial-gradient(ellipse at center, transparent 20%, rgba(8, 6, 4, 0.42) 94%);
}

.launch-card {
    position: absolute;
    left: 50%;
    top: 51%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(74vw, 292px);
    padding: 12px 14px;
    border: 1px solid rgba(250, 250, 249, 0.12);
    border-radius: 999px;
    background: rgba(10, 7, 3, 0.28);
    color: rgba(250, 250, 249, 0.65);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.launch-card i {
    width: 18px;
    height: 3px;
    border-radius: 99px;
    background: rgba(250, 250, 249, 0.22);
}

.launch-card i:nth-of-type(-n+3) {
    background: rgba(245, 197, 99, 0.72);
    box-shadow: 0 0 12px rgba(245, 197, 99, 0.42);
}

.launch-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 31px 28px max(34px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(250, 250, 249, 0.08);
    background:
        linear-gradient(180deg, rgba(13, 10, 8, 0.28), rgba(6, 5, 4, 0.96)),
        rgba(10, 7, 3, 0.56);
    text-align: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.launch-copy h1 {
    max-width: 310px;
    margin: 14px auto 0;
    font-size: clamp(39px, 10.7vw, 49px);
    line-height: 0.99;
}

.launch-copy p:not(.drift-kicker) {
    max-width: 302px;
    margin: 17px auto 0;
    color: rgba(250, 250, 249, 0.66);
    font-size: 14px;
    line-height: 1.58;
}

.launch-copy .drift-cta {
    margin-top: 24px;
}

.launch-meta {
    position: absolute;
    left: 50%;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 4;
    display: flex;
    gap: 18px;
    color: rgba(250, 250, 249, 0.46);
    transform: translateX(-50%);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .drift-nav span {
        display: none;
    }
}

@media (max-width: 390px) {
    .drift-copy h1 {
        font-size: 39px;
    }
    .gift-panel h1 {
        font-size: 39px;
    }
    .launch-copy h1 {
        font-size: 38px;
    }
}

/* =========== VERSION 1 RESPONSIVE MIX ============ */
.version1-phone {
    display: none;
}

.version1-phone .drift-photo {
    background-position: 50% 0;
    background-size: auto 80%;
    opacity: 0.84;
    transform: scale(1.035) translateY(12px);
    transition:
        opacity 1100ms ease 260ms,
        transform 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) 260ms;
}

.version1-phone .drift-logo,
.version1-phone .drift-nav span,
.version1-phone .drift-kicker,
.version1-phone .drift-copy h1,
.version1-phone .drift-copy p:not(.drift-kicker) {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 760ms ease,
        transform 760ms ease;
}

.version1-phone .drift-logo,
.version1-phone .drift-nav span {
    transform: translateY(-10px);
}

.version1-phone.is-on .drift-photo {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.version1-phone.is-on .drift-logo,
.version1-phone.is-on .drift-nav span,
.version1-phone.is-on .drift-kicker,
.version1-phone.is-on .drift-copy h1,
.version1-phone.is-on .drift-copy p:not(.drift-kicker) {
    opacity: 1;
    transform: translateY(0);
}

.version1-phone.is-on .drift-logo {
    transition-delay: 520ms;
}

.version1-phone.is-on .drift-nav span {
    transition-delay: 620ms;
}

.version1-phone.is-on .drift-kicker {
    transition-delay: 760ms;
}

.version1-phone.is-on .drift-copy h1 {
    transition-delay: 880ms;
}

.version1-phone.is-on .drift-copy p:not(.drift-kicker) {
    transition-delay: 1000ms;
}

.version1-desktop-copy {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 900ms ease 1.45s,
        transform 900ms ease 1.45s;
}

.version1-desktop.is-on .version1-desktop-copy {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .version1-desktop {
        display: none;
    }

    .version1-phone {
        display: block;
    }
}

/* =========== VERSION 2 REFERENCE SYNTHESIS ============ */
.version2-page {
    min-height: 100vh;
    background: #11100d;
    color: #FAFAF9;
    font-family: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
}

.v2-canvas {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    background: #11100d;
}

.v2-stage {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    border: 0;
    border-radius: 0;
    background: #12100d;
    box-shadow: none;
}

.v2-stage::before,
.v2-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.v2-stage::before {
    z-index: -2;
    background: url(lamp-scene.jpg) 60% 70% / auto 100% no-repeat;
    filter: brightness(0.72) contrast(1.08) saturate(0.96);
    transform: scale(1.04);
}

.v2-stage::after {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 8, 7, 0.84) 0%, rgba(7, 8, 7, 0.48) 35%, rgba(7, 8, 7, 0.05) 61%, rgba(7, 8, 7, 0.56) 100%),
        linear-gradient(180deg, rgba(7, 8, 7, 0.46) 0%, rgba(7, 8, 7, 0.1) 34%, rgba(7, 8, 7, 0.84) 100%),
        radial-gradient(circle at 47% 34%, rgba(245, 197, 99, 0.2), transparent 32%);
}

.v2-nav {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding: 22px clamp(28px, 3.8vw, 58px) 0;
}

.v2-nav::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 112px;
    z-index: -1;
    background: linear-gradient(180deg, rgba(7, 8, 7, 0.52), rgba(7, 8, 7, 0));
    pointer-events: none;
}

.v2-logo {
    justify-self: start;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 33px;
    line-height: 1;
    color: #FAFAF9;
}

.v2-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4vw, 64px);
    color: rgba(250, 250, 249, 0.74);
    font-size: 15px;
    font-weight: 600;
}

.v2-pill {
    justify-self: end;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    background: rgba(250, 250, 249, 0.94);
    color: #15120e;
    font-size: 14px;
    font-weight: 750;
}

.v2-signal {
    position: absolute;
    top: 20%;
    right: clamp(24px, 3.2vw, 54px);
    z-index: 3;
    width: min(270px, 18vw);
    min-height: 205px;
    padding: 20px 22px 18px;
    border: 1px solid rgba(250, 250, 249, 0.18);
    border-radius: 24px;
    background: rgba(250, 250, 249, 0.12);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.v2-signal p,
.v2-kicker {
    color: rgba(250, 250, 249, 0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 1;
    text-transform: uppercase;
}

.v2-signal h2 {
    max-width: 220px;
    margin-top: 12px;
    color: rgba(250, 250, 249, 0.96);
    font-size: 29px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.08;
}

.v2-signal svg {
    width: 100%;
    height: 90px;
    margin-top: 12px;
    overflow: visible;
}

.v2-signal path {
    fill: none;
    stroke: rgba(250, 250, 249, 0.92);
    stroke-linecap: round;
    stroke-width: 2.2;
}

.v2-signal circle {
    fill: #FAFAF9;
    stroke: rgba(250, 250, 249, 0.46);
    stroke-width: 8;
}

.v2-signal div {
    display: flex;
    justify-content: space-between;
    color: rgba(250, 250, 249, 0.76);
    font-size: 13px;
    font-weight: 650;
}

.v2-copy {
    position: absolute;
    left: clamp(30px, 4vw, 64px);
    bottom: clamp(32px, 5.4vw, 78px);
    z-index: 4;
    width: min(760px, 58vw);
}

.v2-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.v2-kicker::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F5C563;
    box-shadow: 0 0 16px rgba(245, 197, 99, 0.86);
}

.v2-copy h1 {
    margin-top: 24px;
    color: rgba(250, 250, 249, 0.98);
    font-size: clamp(58px, 6.5vw, 108px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 0.98;
}

.v2-copy h1 em {
    display: block;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 0.9em;
    font-style: italic;
    font-weight: 400;
}

.v2-copy > p:not(.v2-kicker) {
    max-width: 640px;
    margin-top: 26px;
    color: rgba(250, 250, 249, 0.76);
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.48;
}

.v2-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
}

.v2-actions span {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border: 1px solid rgba(250, 250, 249, 0.24);
    border-radius: 999px;
    background: rgba(250, 250, 249, 0.12);
    color: #FAFAF9;
    font-size: 14px;
    font-weight: 750;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.v2-actions span:first-child {
    border-color: rgba(250, 250, 249, 0.82);
    background: rgba(250, 250, 249, 0.94);
    color: #15120e;
}

@media (max-width: 1040px) {
    .v2-canvas {
        padding: 0;
        background: #11100d;
    }

    .v2-stage {
        width: 100%;
        min-height: 100vh;
        min-height: 100svh;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .v2-links {
        display: none;
    }

    .v2-nav {
        grid-template-columns: 1fr auto;
        padding: 24px 22px 0;
    }

    .v2-pill {
        min-height: 42px;
        padding: 0 18px;
        font-size: 12px;
    }

    .v2-signal {
        top: 16%;
        right: 18px;
        width: min(36vw, 260px);
        min-height: 190px;
        padding: 18px 20px 17px;
    }

    .v2-copy {
        left: 24px;
        right: 24px;
        bottom: max(34px, env(safe-area-inset-bottom));
        width: auto;
        text-align: center;
    }

    .v2-copy h1 {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(48px, 9vw, 78px);
    }

    .v2-copy > p:not(.v2-kicker) {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-kicker {
        justify-content: center;
    }

    .v2-actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .v2-stage::before {
        background-position: 52% 0;
        background-size: auto 66%;
    }

    .v2-stage::after {
        background:
            linear-gradient(180deg, rgba(7, 8, 7, 0.14) 0%, rgba(7, 8, 7, 0.04) 32%, rgba(7, 8, 7, 0.74) 64%, rgba(7, 8, 7, 0.98) 100%),
            radial-gradient(circle at 54% 20%, rgba(245, 197, 99, 0.18), transparent 34%);
    }

    .v2-nav {
        display: flex;
        justify-content: center;
        padding: 28px 20px 0;
    }

    .v2-logo {
        font-size: 32px;
        justify-self: auto;
        text-align: center;
    }

    .v2-pill {
        display: none;
    }

    .v2-signal {
        display: none;
    }

    .v2-copy {
        left: 20px;
        right: 20px;
        bottom: max(30px, env(safe-area-inset-bottom));
    }

    .v2-kicker {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .v2-copy h1 {
        margin-top: 15px;
        max-width: 330px;
        font-size: clamp(37px, 10vw, 44px);
        line-height: 0.98;
    }

    .v2-copy > p:not(.v2-kicker) {
        max-width: 310px;
        margin-top: 15px;
        font-size: 13px;
        line-height: 1.48;
    }

    .v2-actions {
        gap: 9px;
        margin-top: 20px;
    }

    .v2-actions span {
        min-height: 40px;
        padding: 0 15px;
        font-size: 12px;
    }
}
