/* ═══════════════════════════════════════════════
   THE LAST WORD — NOIR LANDING PAGE CSS
   Palette: #0a0a0a bg · #C8912A gold · #f0ebe2 cream · #1a1612 dark
══════════════════════════════════════════════ */

:root {
  --gold:       #C8912A;
  --gold-light: #e8b84b;
  --gold-dim:   #8a6520;
  --black:      #0a0a0a;
  --dark:       #111008;
  --dark-mid:   #1a1612;
  --dark-2:     #221e16;
  --cream:      #f0ebe2;
  --cream-dark: #d4cfc6;
  --white:      #fff;
  --text-light: rgba(240,235,226,0.9);
  --text-muted: rgba(240,235,226,0.5);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-fell:  'IM Fell English', Georgia, serif;
  --font-mono:  'Courier Prime', 'Courier New', monospace;
  --nav-h:      72px;
  --r-sm:       4px;
  --r-md:       8px;
  --r-lg:       16px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text-light);
  font-family: var(--font-mono);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}
img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── NOISE OVERLAY ── */
.noise {
  position: fixed; inset: 0; z-index: 1000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ── RAIN CANVAS ── */
#rain-canvas {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.28;
}

/* ── TOAST (powiadomienia po głosowaniu; domyślnie niewidoczny) ── */
#toast {
  display: none;
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--dark-mid); color: var(--gold);
  border: 1px solid var(--gold-dim); border-radius: var(--r-md);
  padding: 0.75rem 1.5rem; font-family: var(--font-mono);
  font-size: 0.9rem; letter-spacing: 0.05em;
  z-index: 9999; transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(200,145,42,0.3);
  max-width: min(90vw, 28rem);
  text-align: center;
}
#toast.show {
  display: block;
  transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 500;
  background: rgba(10,10,8,0.85);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid rgba(200,145,42,0.15);
  transition: background 0.3s;
}
#navbar.scrolled {
  background: rgba(10,10,8,0.97);
  border-bottom-color: rgba(200,145,42,0.3);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; gap: 2rem;
}
.nav-logo { flex-shrink: 0; }
.logo-serif {
  font-family: var(--font-serif); font-size: 1.25rem;
  color: var(--cream); letter-spacing: 0.02em;
}
.nav-links {
  display: flex; gap: 1.75rem; margin-left: 2rem;
}
.nav-links a {
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.lang-toggle {
  margin-left: auto; display: flex; align-items: center; gap: 0.4rem;
  color: var(--text-muted); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.8rem; border: 1px solid rgba(200,145,42,0.2);
  border-radius: var(--r-sm); transition: all 0.2s;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--gold); color: var(--black);
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  border-radius: var(--r-sm); transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); color: var(--black); transform: translateY(-1px); }

.nav-access-btn {
  margin-left: auto;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(200,145,42,0.55);
  border-radius: var(--r-sm);
  background: rgba(200,145,42,0.08);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.nav-access-btn:hover {
  background: rgba(200,145,42,0.18);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   ACCESS CODE MODAL
══════════════════════════════════════════════ */
body.access-modal-open { overflow: hidden; }

.access-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.access-modal[hidden] { display: none !important; }

.access-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.82);
  backdrop-filter: blur(4px);
}

.access-modal-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 2rem 2rem 1.75rem;
  border: 1px solid rgba(200,145,42,0.25);
  border-radius: var(--r-md);
  background: linear-gradient(165deg, #14100c 0%, #0a0a08 100%);
  box-shadow: 0 24px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(200,145,42,0.08) inset;
}

.access-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.access-modal-close:hover { color: var(--gold); }

.access-modal-label { margin-bottom: 0.35rem; }
.access-modal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.access-modal-sub,
.access-modal-hint,
.access-modal-status,
.access-modal-remaining {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.access-modal-sub { margin-bottom: 1rem; }
.access-modal-remaining {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.access-modal-code-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
  padding: 0.85rem 0.9rem 0.85rem 1.1rem;
  border: 1px dashed rgba(200,145,42,0.35);
  border-radius: var(--r-sm);
  background: rgba(0,0,0,0.35);
}
.access-modal-code {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: clamp(0.82rem, 2.8vw, 1.05rem);
  letter-spacing: 0.1em;
  color: var(--gold-light);
  word-break: break-all;
}
.access-modal-copy {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  white-space: nowrap;
}
.access-modal-status { margin-bottom: 1rem; min-height: 0; }
.access-modal-status[hidden] { display: none !important; margin: 0; }
.access-modal-claim-row { margin-bottom: 1rem; }
.access-modal-claim { width: 100%; justify-content: center; }
.access-modal-claim-row[hidden],
.access-modal-code-wrap[hidden],
#access-code-result-row[hidden] {
  display: none !important;
  margin: 0;
}
.access-modal-hint {
  margin-top: 0.25rem;
  font-size: 0.82rem;
  border-top: 1px solid rgba(200,145,42,0.12);
  padding-top: 1rem;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100svh;
  padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 60%, #1a1208 0%, #0a0a08 50%, #05050a 100%);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}
.hero-fog {
  position: absolute; border-radius: 50%;
  z-index: 1;
  filter: blur(72px);
  opacity: 0.38;
  animation: fogDrift 20s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform;
}
.fog-1 {
  width: 70vw; height: 45vw;
  max-width: 900px;
  background: radial-gradient(circle, rgba(200,145,42,0.55) 0%, transparent 68%);
  top: 5%; left: -12%;
  animation-duration: 25s;
}
.fog-2 {
  width: 50vw; height: 35vw;
  max-width: 640px;
  background: radial-gradient(circle, rgba(138,90,10,0.45) 0%, transparent 70%);
  bottom: 8%; right: 0;
  animation-duration: 18s; animation-delay: -5s;
}
@keyframes fogDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(3vw, 2vh) scale(1.05); }
}

/* Streetlamp — słup od dołu, oprawa + żarówka na górze, światło w dół */
.hero-streetlamp {
  position: absolute;
  right: clamp(5%, 13vw, 19%);
  bottom: 0;
  height: min(88vh, 780px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.lamp-post {
  flex: 1;
  width: 6px;
  min-height: 120px;
  background: linear-gradient(90deg, #1a1408 0%, #5a4528 45%, #3a2e18 55%, #1a1408 100%);
  border-radius: 3px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.4);
}
.lamp-top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.lamp-head {
  width: 62px;
  height: 26px;
  background: linear-gradient(180deg, #5a4520 0%, #2a2010 100%);
  border-radius: 50% 50% 6px 6px / 70% 70% 8px 8px;
  border-bottom: 2px solid var(--gold-dim);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  z-index: 2;
}
.lamp-glow {
  width: 16px;
  height: 16px;
  margin-top: -10px;
  background: radial-gradient(circle at 40% 35%, #fff6d0, var(--gold-light) 55%, #c8912a);
  border-radius: 50%;
  z-index: 3;
  box-shadow:
    0 2px 8px rgba(232,184,75,0.95),
    0 0 24px 12px rgba(200,145,42,0.65),
    0 0 64px 32px rgba(200,145,42,0.28);
  animation: lampFlicker 4s ease-in-out infinite;
}
.lamp-cone {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 32vw);
  height: min(52vh, 480px);
  background: linear-gradient(
    180deg,
    rgba(232,184,75,0.28) 0%,
    rgba(200,145,42,0.14) 25%,
    rgba(200,145,42,0.05) 55%,
    transparent 100%
  );
  clip-path: polygon(50% 0%, 6% 100%, 94% 100%);
  filter: blur(14px);
  z-index: 1;
  pointer-events: none;
}
@keyframes lampFlicker {
  0%,100% { opacity: 1; filter: brightness(1); }
  50%      { opacity: 0.88; filter: brightness(0.92); }
  75%      { opacity: 0.96; filter: brightness(0.98); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 620px; flex: 1;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,145,42,0.4);
  padding: 0.35rem 0.9rem; border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-title {
  font-family: var(--font-serif);
  display: flex; flex-direction: column;
  line-height: 0.92;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.9s ease 0.2s both;
}
.title-the {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-style: italic; color: var(--text-muted);
  font-weight: 400;
}
.title-last {
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 900; color: var(--cream);
  letter-spacing: -0.02em;
  text-shadow: 0 0 60px rgba(200,145,42,0.15);
}
.title-word {
  font-size: clamp(3.5rem, 9.5vw, 7.5rem);
  font-weight: 900; color: var(--gold);
  letter-spacing: -0.01em;
  text-shadow: 0 0 40px rgba(200,145,42,0.4);
}
.hero-subtitle {
  font-family: var(--font-mono); font-size: 0.85rem;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease 0.3s both;
}
.hero-lead {
  font-family: var(--font-fell); font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light); line-height: 1.7;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.9s ease 0.35s both;
}
.hero-meta {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2rem;
  animation: fadeUp 0.9s ease 0.4s both;
}
.hero-meta .dot { color: var(--gold); opacity: 0.5; }
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.45s both;
}
.btn-primary {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: var(--gold); color: var(--black);
  font-family: var(--font-mono); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--r-sm); transition: all 0.2s;
  box-shadow: 0 0 24px rgba(200,145,42,0.35);
}
.btn-primary:hover {
  background: var(--gold-light); color: var(--black);
  transform: translateY(-2px); box-shadow: 0 0 36px rgba(200,145,42,0.55);
}
.btn-secondary {
  display: inline-flex; align-items: center;
  padding: 0.85rem 1.8rem;
  border: 1px solid rgba(200,145,42,0.4); color: var(--gold);
  font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--r-sm); transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold); background: rgba(200,145,42,0.08);
  color: var(--gold-light);
}
.hero-coming {
  margin-top: 1rem; font-size: 0.75rem;
  letter-spacing: 0.08em; color: var(--text-muted);
  animation: fadeUp 0.9s ease 0.5s both;
}
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  text-align: center; z-index: 2;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0.5rem auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.1); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* HERO PHONE */
.hero-phone-wrapper {
  position: relative; z-index: 2;
  margin-left: 4rem; flex-shrink: 0;
  animation: fadeUp 0.9s ease 0.6s both;
}
.phone-frame {
  width: 240px;
  background: #1a1410; border-radius: 38px;
  border: 2px solid rgba(200,145,42,0.25);
  padding: 14px 10px 20px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.8),
    0 30px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.phone-notch {
  width: 70px; height: 22px;
  background: #0a0a08; border-radius: 12px;
  margin: 0 auto 8px;
}
.phone-screen {
  border-radius: 26px; overflow: hidden;
  background: #0a0a08;
  aspect-ratio: 9/19.5;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-glow {
  position: absolute; inset: -20px; z-index: -1;
  background: radial-gradient(ellipse at 50% 40%, rgba(200,145,42,0.2) 0%, transparent 70%);
  filter: blur(20px);
}

/* ══════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════ */
.ticker-wrap {
  position: relative; z-index: 2;
  background: var(--gold); overflow: hidden;
  padding: 0.65rem 0;
}
.ticker {
  display: flex; gap: 2rem; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker span {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); font-weight: 700;
}
.ticker .dot { color: rgba(0,0,0,0.4); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════ */
.section-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 6rem 2rem;
  position: relative; z-index: 2;
}
.section-label {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: var(--cream); line-height: 1.1;
  margin-bottom: 1rem;
}
.section-title-light { color: var(--cream); }
.section-sub {
  font-family: var(--font-fell); font-size: 1.1rem;
  color: var(--text-muted); max-width: 600px;
  line-height: 1.7; margin-bottom: 3rem;
}

/* ══════════════════════════════════════════════
   MODES
══════════════════════════════════════════════ */
#features { background: var(--dark); }
.modes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
.mode-card {
  border-radius: var(--r-lg); overflow: hidden;
  padding: 2.5rem; position: relative;
  transition: transform 0.3s;
}
.mode-card:hover { transform: translateY(-4px); }
.mode-noir {
  background: linear-gradient(135deg, #111008 0%, #1a1410 50%, #0d0c09 100%);
  border: 1px solid rgba(200,145,42,0.2);
}
.mode-card-bg {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 20px,
    rgba(200,145,42,0.015) 20px, rgba(200,145,42,0.015) 21px
  );
}
.mode-card-glow {
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,145,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.mode-light {
  background: var(--cream); border: none;
}
.mode-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-dim);
  padding: 0.25rem 0.7rem; border-radius: 2px;
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.mode-tag-light {
  color: var(--gold-dim); border-color: var(--gold-dim);
}
.mode-title {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--cream);
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.mode-title-dark { color: var(--dark); }
.mode-desc {
  font-family: var(--font-fell); font-size: 1rem;
  color: var(--text-muted); line-height: 1.8;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.mode-desc-dark { color: #3a3020; }
.mode-features {
  position: relative; z-index: 1; margin-bottom: 2rem;
}
.mode-features li {
  font-size: 0.8rem; letter-spacing: 0.04em;
  color: var(--text-light); padding: 0.4rem 0;
  border-bottom: 1px solid rgba(200,145,42,0.1);
  padding-left: 1.2rem; position: relative;
}
.mode-features li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--gold);
}
.mode-features-dark li { color: #3a3020; border-bottom-color: rgba(0,0,0,0.08); }
.mode-features-dark li::before { color: var(--gold-dim); }

/* Mini phones in mode cards */
.mode-screens {
  display: flex; gap: -0.5rem;
  position: relative; z-index: 1; margin-top: 1rem;
}
.mini-phone {
  width: 90px; flex-shrink: 0;
  background: #1a1410; border-radius: 16px;
  border: 1px solid rgba(200,145,42,0.2);
  padding: 4px 3px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transform: rotate(-3deg);
}
.mini-phone.shift  { transform: rotate(1deg) translateX(-10px); }
.mini-phone.shift2 { transform: rotate(-2deg) translateX(-20px); }
.mini-phone img { border-radius: 12px; width: 100%; aspect-ratio: 9/19.5; object-fit: cover; }
.mini-phone-light { background: #e8e3da; border-color: rgba(0,0,0,0.15); }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
#how {
  background: var(--black);
  position: relative;
}
#how::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.steps-container {
  display: flex; align-items: flex-start;
  gap: 0; margin-bottom: 5rem; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 200px; padding: 0 1.5rem;
  text-align: center;
}
.step-num {
  font-family: var(--font-serif); font-size: 4rem;
  font-weight: 900; color: rgba(200,145,42,0.12);
  line-height: 1; margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.step-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.step-title {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 700; color: var(--cream);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
}
.step-line {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  flex-shrink: 0; margin-top: 3rem;
}

/* Big mockup */
.big-mockup {
  display: flex; align-items: center; gap: 3rem;
  background: var(--dark-mid); border-radius: var(--r-lg);
  padding: 3rem; border: 1px solid rgba(200,145,42,0.15);
}
.big-phone-frame {
  width: 200px; flex-shrink: 0;
  background: #111008; border-radius: 36px;
  border: 2px solid rgba(200,145,42,0.2);
  padding: 12px 8px 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.big-phone-notch {
  width: 60px; height: 20px; background: #050503;
  border-radius: 10px; margin: 0 auto 8px;
}
.big-phone-screen {
  border-radius: 24px; overflow: hidden; background: #050503;
  aspect-ratio: 9/19.5;
}
.big-phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.mockup-caption { flex: 1; }
.mockup-tag {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.mockup-caption p {
  font-family: var(--font-fell); font-size: 1.1rem;
  color: var(--text-muted); line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CASES
══════════════════════════════════════════════ */
#cases { background: var(--dark); }
.cases-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem; align-items: start;
}
.cases-grid .case-new-hint { grid-column: 1 / -1; }
.case-pack {
  background: #111008; border-radius: var(--r-lg);
  border: 1px solid rgba(200,145,42,0.2);
  overflow: hidden;
}
.case-pack-light { background: var(--cream); border-color: rgba(0,0,0,0.1); }
.case-pack-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(200,145,42,0.15);
}
.pack-badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 2px;
  margin-bottom: 0.75rem; font-weight: 700;
}
.pack-badge-noir { background: var(--gold); color: var(--black); }
.pack-badge-family { background: var(--dark); color: var(--gold); }
.case-pack-header h3 {
  font-family: var(--font-serif); font-size: 1.6rem;
  font-weight: 800; color: var(--cream);
}
.dark-h3 { color: var(--dark) !important; }
.case-pack-header p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.dark-p { color: #5a5040 !important; }
.case-list { padding: 1rem 1.5rem; }
.case-list li {
  display: flex; justify-content: space-between;
  align-items: center; padding: 0.65rem 0;
  border-bottom: 1px solid rgba(200,145,42,0.08);
}
.case-list li:last-child { border-bottom: none; }
.case-name {
  font-family: var(--font-mono); font-size: 0.82rem;
  color: var(--text-light); letter-spacing: 0.02em;
}
.dark-name { color: #2a2010 !important; }
.case-meta {
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--text-muted); text-align: right;
}
.case-meta-dark { font-size: 0.65rem; color: #8a7a60; text-align: right; }
.case-list-dark li { border-bottom-color: rgba(0,0,0,0.08); }
.case-more {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--gold) !important; letter-spacing: 0.08em;
  font-style: italic;
}
.case-more-dark { color: var(--gold-dim) !important; }
.meta-puzzle-hint {
  display: flex; gap: 0.6rem; align-items: flex-start;
  padding: 1rem 1.5rem;
  background: rgba(200,145,42,0.06);
  border-top: 1px solid rgba(200,145,42,0.12);
}
.meta-puzzle-hint-dark {
  background: rgba(0,0,0,0.05); border-top-color: rgba(0,0,0,0.08);
}
.puzzle-icon { font-size: 1rem; margin-top: 0.1rem; }
.meta-puzzle-hint span:last-child {
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.5;
}
.meta-puzzle-hint-dark span:last-child { color: #7a6a50; }
.case-new-hint {
  background: var(--dark-mid); border-radius: var(--r-lg);
  border: 1px dashed rgba(200,145,42,0.3);
  padding: 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.new-case-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,145,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.new-tag {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.5rem;
}
.case-new-hint p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.6;
}

/* ══════════════════════════════════════════════
   FEATURES GRID
══════════════════════════════════════════════ */
#details {
  background: var(--black);
  border-top: 1px solid rgba(200,145,42,0.08);
}
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feat-item {
  padding: 2rem; background: var(--dark-mid);
  border-radius: var(--r-md);
  border: 1px solid rgba(200,145,42,0.1);
  transition: border-color 0.2s, transform 0.2s;
}
.feat-item:hover {
  border-color: rgba(200,145,42,0.3);
  transform: translateY(-2px);
}
.feat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feat-item h3 {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 700; color: var(--cream);
  margin-bottom: 0.5rem;
}
.feat-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════════════
   VOTE SECTION
══════════════════════════════════════════════ */
#vote {
  background: var(--dark);
  border-top: 1px solid rgba(200,145,42,0.1);
}
.vote-sub { max-width: 700px; }
.vote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.vote-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.25rem 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--dark-mid);
  border: 1px solid rgba(200,145,42,0.12);
  border-radius: var(--r-md);
  text-align: left;
  transition: all 0.2s;
  color: var(--text-light);
}
.vote-item:hover {
  border-color: var(--gold);
  background: rgba(200,145,42,0.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,145,42,0.1);
}
.vote-item--active {
  border-color: var(--gold);
  background: rgba(200,145,42,0.14);
  box-shadow: 0 0 0 1px rgba(200,145,42,0.35);
}
.vote-item--active:hover {
  border-color: var(--gold-light);
}
.vote-item--blocked {
  opacity: 0.45;
  cursor: not-allowed;
}
.vote-item--blocked:hover {
  transform: none;
  border-color: rgba(200,145,42,0.12);
  background: var(--dark-mid);
  box-shadow: none;
}
.vote-item--core {
  border-color: rgba(200,145,42,0.38);
  background: rgba(200,145,42,0.06);
}
.vote-name-wrap {
  display: flex; flex-direction: column; gap: 0.2rem;
  grid-column: 2; align-self: center;
}
.vote-core-tag {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dim); line-height: 1.2;
}
.vote-flag { font-size: 1.5rem; grid-row: span 2; }
.vote-name {
  font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.05em; color: var(--cream);
}
.vote-count {
  font-family: var(--font-mono); font-size: 0.85rem;
  font-weight: 700; color: var(--gold);
  grid-row: span 2; align-self: center; justify-self: end;
}
.vote-bar {
  height: 3px; background: rgba(200,145,42,0.12);
  border-radius: 2px; overflow: hidden;
  grid-column: 2; align-self: end;
}
.vote-bar-fill {
  height: 100%; width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.6s ease;
}
.vote-note {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.05em; margin-top: 1.5rem;
  font-style: italic;
}

/* ══════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════ */
#gallery { background: var(--black); overflow: hidden; }
.gallery-strip {
  display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1.5rem;
  scrollbar-width: thin; scrollbar-color: var(--gold-dim) var(--dark-mid);
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--dark-mid); }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }
.gallery-phone {
  flex-shrink: 0; width: 180px;
  background: #111008; border-radius: 28px;
  border: 1px solid rgba(200,145,42,0.2);
  padding: 10px 8px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: transform 0.2s;
}
.gallery-phone:hover { transform: translateY(-6px) scale(1.02); }
.gallery-phone img {
  border-radius: 20px; width: 100%;
  aspect-ratio: 9/19.5; object-fit: cover;
}
.gal-sub { margin-top: 0.75rem; margin-bottom: 2rem; }

/* FAQ */
#faq { background: var(--dark); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(200,145,42,0.18);
  border-radius: var(--r-md);
  margin-bottom: 0.75rem;
  background: rgba(0,0,0,0.25);
}
.faq-item summary {
  padding: 1rem 1.25rem;
  font-family: var(--font-fell);
  font-size: 1.05rem;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--gold-dim);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Pre-registration CTA */
.dl-prereg-block {
  margin: 1.5rem 0 2rem;
  max-width: 36rem;
}
.dl-prereg-note {
  font-family: var(--font-fell);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.btn-prereg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--gold-dim);
  border-radius: var(--r-md);
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-prereg:hover {
  background: rgba(200,145,42,0.12);
  color: var(--cream);
}

/* Video slots (removed from page; kept for optional reuse) */
.video-slots {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
.video-slot { border-radius: var(--r-lg); overflow: hidden; }
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--dark-mid);
  border: 2px dashed rgba(200,145,42,0.25);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
}
.play-btn {
  width: 64px; height: 64px;
  background: rgba(200,145,42,0.15);
  border: 2px solid rgba(200,145,42,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold);
}
.video-placeholder p {
  font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.1em; color: var(--text-muted);
  text-transform: uppercase;
}
.video-coming {
  font-size: 0.7rem; color: var(--gold-dim);
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--gold-dim);
  padding: 0.2rem 0.6rem; border-radius: 2px;
}

/* ══════════════════════════════════════════════
   DOWNLOAD
══════════════════════════════════════════════ */
#download {
  position: relative;
  background: var(--dark);
  border-top: 1px solid rgba(200,145,42,0.15);
  overflow: hidden;
}
.download-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.dl-fog {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(200,145,42,0.06) 0%, transparent 70%);
}
.dl-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent 0, transparent 39px,
    rgba(200,145,42,0.02) 39px, rgba(200,145,42,0.02) 40px
  );
}
.download-inner {
  display: flex; align-items: center; gap: 4rem;
}
.download-content { flex: 1; }
.download-ctas { display: flex; align-items: center; gap: 2rem; margin-bottom: 1rem; }
.download-youtube {
  margin: 0 0 2rem;
  font-size: 0.92rem;
}
.download-youtube a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  transition: color 0.2s, border-color 0.2s;
}
.download-youtube a:hover {
  color: var(--paper);
  border-bottom-color: rgba(240, 235, 226, 0.5);
}
.btn-play-store {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 2rem;
  background: var(--gold); color: var(--black);
  border-radius: var(--r-md);
  transition: all 0.2s;
  box-shadow: 0 0 32px rgba(200,145,42,0.3);
}
.btn-play-store:hover {
  background: var(--gold-light); color: var(--black);
  transform: translateY(-2px); box-shadow: 0 0 48px rgba(200,145,42,0.5);
}
.btn-play-store--soon {
  cursor: default;
  opacity: 0.72;
  border: 1px dashed rgba(200,145,42,0.45);
  box-shadow: none;
}
.btn-play-store--soon:hover {
  background: var(--gold);
  color: var(--black);
  transform: none;
  box-shadow: none;
}
.store-text { display: flex; flex-direction: column; }
.store-small {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7;
}
.store-big {
  font-family: var(--font-serif); font-size: 1.3rem;
  font-weight: 700; line-height: 1.2;
}
.qr-block {
  text-align: center;
}
.qr-block img {
  border-radius: var(--r-sm);
  border: 2px solid rgba(200,145,42,0.3);
  padding: 6px; background: var(--dark-mid);
}
.qr-block p {
  font-size: 0.7rem; color: var(--text-muted);
  letter-spacing: 0.1em; margin-top: 0.5rem; text-transform: uppercase;
}
.coming-soon-block {
  background: var(--dark-mid); border-radius: var(--r-md);
  border: 1px dashed rgba(255,255,255,0.1);
  padding: 1rem 1.5rem; margin-bottom: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  max-width: 36rem;
}
.cs-inner-secondary { opacity: 0.85; }
.cs-inner { display: flex; align-items: center; gap: 1rem; }
.cs-icon { font-size: 2rem; }
.cs-title {
  font-family: var(--font-mono); font-size: 0.85rem;
  font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.cs-desc { font-size: 0.8rem; color: var(--text-muted); }
.visit-count {
  font-size: 0.78rem; color: var(--text-muted);
  letter-spacing: 0.05em;
}
.visit-count strong { color: var(--gold); }

/* Download phone */
.download-phone { flex-shrink: 0; }
.dl-phone-frame {
  width: 220px;
  background: #111008; border-radius: 36px;
  border: 2px solid rgba(200,145,42,0.25);
  padding: 12px 8px 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.dl-phone-notch {
  width: 60px; height: 20px; background: #050503;
  border-radius: 10px; margin: 0 auto 8px;
}
.dl-phone-screen {
  border-radius: 26px; overflow: hidden;
  background: #050503; aspect-ratio: 9/19.5;
}
.dl-phone-screen img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(200,145,42,0.15);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 2rem; align-items: center;
}
.footer-brand { text-align: center; }
.footer-logo { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.footer-tagline {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
}
.footer-links {
  display: flex; flex-direction: column; gap: 0.5rem;
  text-align: center;
}
.footer-links a {
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-legal {
  font-size: 0.72rem; color: var(--text-muted);
  line-height: 1.8; text-align: right;
}
.footer-copy { margin-top: 0.5rem; color: rgba(240,235,226,0.3); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .modes-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-phone-wrapper { display: none; }
  .download-inner { flex-direction: column; }
  .download-phone { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  #hero { padding-top: calc(var(--nav-h) + 2rem); }
  .cases-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps-container { flex-direction: column; align-items: center; }
  .step-line { width: 80px; height: 1px; margin: 0; }
  .big-mockup { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-legal { text-align: center; }
  .download-ctas { flex-direction: column; align-items: flex-start; }
  .video-slots { grid-template-columns: 1fr; }
  .vote-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .nav-cta { display: none; }
  .nav-access-btn {
    margin-left: 0;
    padding: 0.45rem 0.75rem;
    font-size: 0.65rem;
  }
}
@media (max-width: 640px) {
  .hero-streetlamp { right: 2%; height: 75vh; transform: scale(0.8); transform-origin: bottom right; }
  .hero-fog { opacity: 0.28; }
  .lamp-cone { width: 160px; }
}
@media (max-width: 480px) {
  .section-inner { padding: 4rem 1.25rem; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-streetlamp { display: none; }
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
