/* ════════════════════════════════════════════════════════════════
   SWIITCH — Optimized Landing Stylesheet
   Refined street: premium-first, graffiti as accent.
   ════════════════════════════════════════════════════════════════ */

/* ─── AGE GATE ─── */
.age-gate { position: fixed; inset: 0; z-index: 99999; background: #0a0a0a; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 1; transition: opacity 0.5s ease; }
.age-gate.ag-hide { opacity: 0; pointer-events: none; }
body.age-gated { overflow: hidden; }
.age-gate-panel { text-align: center; max-width: 560px; width: 100%; }
.age-gate-logo { width: 110px; margin: 0 auto 44px; display: block; }
.age-gate-tag { font-family: var(--font-mono, 'Space Mono', monospace); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(212,169,42,0.8); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.age-gate-tag::before, .age-gate-tag::after { content: ''; display: block; width: 28px; height: 1px; background: rgba(212,169,42,0.4); }
.age-gate-headline { font-family: var(--font-display, 'Bebas Neue', sans-serif); font-size: clamp(50px, 8vw, 84px); letter-spacing: 0.04em; text-transform: uppercase; color: #fff; line-height: 1.02; margin-bottom: 20px; }
.age-gate-sub { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 360px; margin: 0 auto 36px; }
.age-gate-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.age-gate-btns .btn { min-width: 160px; justify-content: center; }
.age-gate-legal { font-size: 11px; line-height: 1.6; color: rgba(255,255,255,0.25); }
.age-gate-legal a { color: rgba(255,255,255,0.4); text-decoration: underline; }
.age-gate-divider { width: 40px; height: 1px; background: rgba(212,169,42,0.3); margin: 0 auto 32px; }
/* Denied state */
.age-gate-denied { text-align: center; max-width: 420px; width: 100%; }
.age-gate-denied .age-gate-logo { opacity: 0.5; }
.age-gate-denied .age-gate-headline { font-size: clamp(28px, 5vw, 48px); color: rgba(255,255,255,0.7); }
.age-gate-denied .age-gate-sub { color: rgba(255,255,255,0.35); }
.age-gate-denied .age-gate-tag { color: rgba(196,48,48,0.7); }
.age-gate-denied .age-gate-tag::before, .age-gate-denied .age-gate-tag::after { background: rgba(196,48,48,0.3); }

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --off-black: #111110;
  --dark: #16150f;
  --mid: #2a2a2a;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --light: #c8c8c8;
  --white: #f4f2ee;
  --paper: #efece4;
  --ink: #14130f;
  --gold: #d4a92a;
  --gold-light: #e8c84a;
  --gold-dark: #b8902a;
  --blue: #2a42b0;
  --blue-light: #3a54c4;
  --red: #c43030;

  --font-display: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-marker: 'Rock Salt', cursive;

  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(64px, 9vw, 120px);
  --maxw: 1320px;
  --nav-offset: 126px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-offset); }
section { scroll-margin-top: 0; }

p, h1, h2, h3, h4, h5, h6, li, blockquote { text-wrap: balance; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ─── REUSABLE TEXTURES ─── */
.noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04; mix-blend-mode: overlay;
}
.grid-tex {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(255,255,255,0.018) 47px, rgba(255,255,255,0.018) 48px),
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(255,255,255,0.018) 47px, rgba(255,255,255,0.018) 48px);
}

/* ─── UTILITIES ─── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--light); opacity: 0.6;
  margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1.5px;
  background: var(--light); opacity: 0.4; display: inline-block;
}
.eyebrow.dark { color: var(--ink); opacity: 0.5; }

.display-xl { font-family: var(--font-display); font-size: clamp(56px, 10vw, 132px); line-height: 0.9; letter-spacing: -0.005em; text-transform: uppercase; }
.display-lg { font-family: var(--font-display); font-size: clamp(40px, 6.5vw, 92px); line-height: 0.92; letter-spacing: -0.005em; text-transform: uppercase; }
.display-md { font-family: var(--font-display); font-size: clamp(30px, 4vw, 60px); line-height: 0.95; text-transform: uppercase; }

.body-md { font-size: clamp(14px, 1.6vw, 16px); line-height: 1.75; color: var(--light); }

/* Hand-drawn highlight stroke under headline word */
.scribble { position: relative; display: inline-block; color: var(--gold); font-family: var(--font-marker); font-size: 0.45em; }
.scribble svg { display: none; }

/* ─── GLOBAL ROUNDED CORNERS ─── */
.btn, .hero-tag, .feature-card,
.pod-card-image, .comparison-col, .comparison-visual,
.system-part-image, .insta-cell, .hw-thumb,
.email-perks span, .retail-cities button,
.field input, .form-success, .map-placeholder { border-radius: 5px; }
.retail-search input { border-radius: 5px 0 0 5px; }
.retail-search button { border-radius: 0 5px 5px 0; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 10px 18px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap; position: relative;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.btn-dark { background: transparent; color: var(--ink); border-color: rgba(0,0,0,0.25); }
.btn-dark:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: transparent; padding-left: 0; }
.btn-ghost:hover { color: var(--gold); }
.btn-block { width: 100%; justify-content: center; }

/* ─── PLACEHOLDERS (explicit TBD) ─── */
.ph {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 12px, transparent 12px 24px),
    linear-gradient(150deg, #18181655 0%, #1f1f1c 100%);
  border: 1px dashed rgba(255,255,255,0.14);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; gap: 8px; text-align: center;
}
.ph::before {
  content: ''; width: 26px; height: 26px; opacity: 0.32;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.4'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.6'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
}
.ph .ph-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.32);
  padding: 0 14px; line-height: 1.5;
}
.ph .ph-tag {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); opacity: 0.55;
}
.ph.light { background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.028) 0 12px, transparent 12px 24px),
    linear-gradient(150deg, #e3e0d6 0%, #d9d6cb 100%);
  border-color: rgba(0,0,0,0.18); }
.ph.light .ph-label { color: rgba(0,0,0,0.4); }
.ph.light::before { filter: invert(1); opacity: 0.28; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scribble path { stroke-dashoffset: 0; }
}

/* ─── AGE STRIP ─── */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.age-strip { background: var(--off-black); border-bottom: 1px solid var(--line); padding: 9px 0; position: fixed; top: 0; left: 0; right: 0; z-index: 120; overflow: hidden; }
.age-strip-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.age-strip p { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); opacity: 0.55; white-space: nowrap; padding: 0 48px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 110;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad-x);
  background: rgba(255,255,255,0.02); backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.3s, border-color 0.3s, padding 0.3s;
}
nav.scrolled { background: rgba(255,255,255,0.04); border-bottom-color: rgba(255,255,255,0.1); padding-top: 12px; padding-bottom: 12px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 60px; width: auto; display: block; }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--light); text-decoration: none; opacity: 0.85;
  transition: color 0.2s; position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-ig { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); text-decoration: none; opacity: 0.85; transition: opacity 0.2s; }
.nav-ig:hover { opacity: 1; color: var(--white); }
.nav-ig svg { width: 17px; height: 17px; }
.nav-cta { display: inline-flex; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
#hero { position: relative; display: block; overflow: hidden; margin-top: 94px; min-height: 600px; max-height: 88vh; background: linear-gradient(rgba(0,0,0,0.40), rgba(0,0,0,0.40)), url('hf_20260602_082609_fe7c3870-5412-439d-a78e-ec78403931e7.png') center / cover no-repeat var(--off-black); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; gap: 0; padding: 80px var(--pad-x) 80px; max-width: 54%; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; margin-bottom: 26px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--light); border: 1px solid var(--line-strong); padding: 7px 14px; background: rgba(255,255,255,0.04); }
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(212,169,42,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(212,169,42,0.55); } 70% { box-shadow: 0 0 0 9px rgba(212,169,42,0); } 100% { box-shadow: 0 0 0 0 rgba(212,169,42,0); } }
.hero-content h1 { color: var(--white); margin-bottom: 26px; }
.hero-content h1 .line2 { display: block; }
.hero-sub { font-size: clamp(15px, 1.7vw, 17px); line-height: 1.7; color: var(--light); max-width: 400px; margin-bottom: 38px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-meta { display: flex; gap: 34px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-stat .n { font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--white); }
.hero-stat .l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); opacity: 0.55; margin-top: 6px; }
.hero-stat .n em { color: var(--white); font-style: normal; }

.hero-visual { position: relative; z-index: 2; min-height: 100vh; }
.hero-visual .ph { position: absolute; inset: 0; border: none; border-left: 1px solid var(--line); }
.hero-badge {
  position: absolute; bottom: 32px; left: 32px; z-index: 4;
  border: 1px solid rgba(212,169,42,0.35); padding: 13px 18px;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(8px);
}
.hero-badge p { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); opacity: 0.6; font-weight: 700; }
.hero-badge span { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.02em; color: var(--white); }
.hero-scroll { position: absolute; bottom: 28px; right: 32px; z-index: 4; display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); opacity: 0.6; }
.hero-scroll .ln { width: 40px; height: 1px; background: var(--light); opacity: 0.4; position: relative; overflow: hidden; }
.hero-scroll .ln::after { content: ''; position: absolute; inset: 0; background: var(--black); animation: scrollLine 1.8s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ─── WHY ─── */
#why { background: var(--paper); color: var(--ink); position: relative; padding: clamp(40px, 6vw, 80px) 0; }
#why .container { display: flex; align-items: stretch; padding-top: 0; padding-bottom: 0; }
.why-intro { flex: 0 0 min(380px, 34%); padding: 0 clamp(28px, 4vw, 56px) 0 0; display: flex; flex-direction: column; justify-content: center; }
#why h2 { color: var(--ink); font-size: clamp(28px, 3.2vw, 52px); margin-bottom: 16px; line-height: 1.05; }
#why .intro-text { font-size: clamp(12px, 1.1vw, 14px); line-height: 1.75; color: var(--ink); opacity: 0.65; margin-bottom: 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); flex: 1; align-self: stretch; align-content: center; }
.feature-card { padding: clamp(24px, 3vw, 40px) clamp(18px, 2.5vw, 30px); position: relative; }
.feature-card + .feature-card { border-left: 1.5px solid rgba(0,0,0,0.14); }
.feature-num { position: absolute; top: 14px; right: 16px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: rgba(0,0,0,0.25); }
.feature-icon { width: 44px; height: 44px; border: 1.5px solid rgba(0,0,0,0.18); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 20px; height: 20px; stroke: var(--ink); }
.feature-card h3 { font-family: var(--font-display); font-size: clamp(18px, 2vw, 26px); letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.feature-card p { font-size: 11.5px; line-height: 1.65; color: var(--ink); opacity: 0.6; }

/* ─── COMPARISON ─── */
#comparison { background: var(--off-black); padding: var(--section-y) 0; overflow: hidden; position: relative; }
#comparison h2 { margin-bottom: 64px; }
.comparison-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; }
.comparison-col { padding: 40px 44px 48px; position: relative; overflow: hidden; }
.comparison-col.left { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.07); }
.comparison-col.left::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-55deg, transparent, transparent 14px, rgba(255,255,255,0.018) 14px, rgba(255,255,255,0.018) 15px); pointer-events: none; }
.comparison-col.right { background: rgba(212,169,42,0.04); border: 1px solid rgba(212,169,42,0.3); box-shadow: 0 0 60px rgba(212,169,42,0.07), inset 0 1px 0 rgba(212,169,42,0.15); }
.comparison-vs { display: flex; align-items: center; justify-content: center; padding: 0 20px; }
.vs-badge { width: 64px; height: 64px; border-radius: 50%; border: 1.5px solid rgba(212,169,42,0.5); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; letter-spacing: 0.05em; color: var(--gold); background: var(--black); box-shadow: 0 0 24px rgba(212,169,42,0.18); }
.comparison-col-label { font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.comparison-col.left .comparison-col-label { color: rgba(255,255,255,0.28); }
.comparison-col.right .comparison-col-label { color: var(--gold); }
.comparison-visual { margin-bottom: 32px; width: 100%; aspect-ratio: 3 / 4; height: auto; overflow: hidden; position: relative; z-index: 1; background: #0a0a0a; border: none; }
.comparison-col.left .comparison-visual { }
.comparison-col.right .comparison-visual { }
.comparison-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.comparison-col.left .comparison-visual img { object-position: center 65%; filter: grayscale(60%) brightness(0.88) contrast(1.05); }
.comparison-col.right .comparison-visual img { object-position: center 25%; }
.comparison-col:hover .comparison-visual img { transform: scale(1.03); }
.comparison-items { list-style: none; display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.comparison-items li { font-size: 13.5px; line-height: 1.55; display: flex; align-items: flex-start; gap: 13px; text-wrap: balance; }
.comparison-col.left .comparison-items li { color: rgba(255,255,255,0.35); }
.comparison-col.right .comparison-items li { color: var(--white); }
.check { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.check-bad { background: rgba(196,48,48,0.14); border: 1px solid rgba(196,48,48,0.35); }
.check-bad::after { content: '×'; font-size: 14px; color: rgba(196,48,48,0.7); font-weight: 700; line-height: 1; }
.check-good { background: rgba(212,169,42,0.16); border: 1px solid rgba(212,169,42,0.5); }
.check-good::after { content: '✓'; font-size: 11px; color: var(--gold); font-weight: 700; line-height: 1; }

/* ─── COLLECT ─── */
#collect { background: var(--black); padding: var(--section-y) 0; overflow: hidden; }
.collect-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.collect-header h2 { max-width: 620px; }
.collect-header .tagline { font-family: var(--font-marker); font-size: 16px; line-height: 1.7; color: var(--light); opacity: 0.65; max-width: 240px; text-align: right; flex-shrink: 0; }
.pods-scroller { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pod-card { position: relative; cursor: pointer; }
.pod-card-image { aspect-ratio: 2 / 3; width: 100%; margin-bottom: 16px; position: relative; overflow: hidden; transition: transform 0.3s var(--ease); }
.pod-card:hover .pod-card-image { transform: translateY(-6px); }
.pod-card-image .ph { position: absolute; inset: 0; }
.pod-card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; transition: transform 0.5s var(--ease); }
.pod-card:hover .pod-card-image img { transform: scale(1.04); }
.pod-type { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; opacity: 0.5; color: var(--gold); }
.pod-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; z-index: 2; }
.pod-rank { position: absolute; top: 10px; left: 10px; z-index: 3; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; color: var(--white); background: rgba(0,0,0,0.6); padding: 3px 7px; }
.pod-number { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); opacity: 0.5; margin-bottom: 6px; }
.pod-name { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); }
.collect-cta { margin-top: 48px; }
.pods-scroll-hint { display: none; justify-content: center; gap: 6px; margin-top: 20px; }
.pods-scroll-hint span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.pods-scroll-hint span:nth-child(1) { background: rgba(255,255,255,0.7); }
@media (max-width: 860px) {
  .pods-scroll-hint { display: flex; }
}

/* ─── SYSTEM ─── */
#system { background: var(--off-black); padding: var(--section-y) 0; }
#system h2 { margin-bottom: 64px; max-width: 460px; }
.system-body { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.system-intro p { font-size: clamp(15px, 1.7vw, 17px); line-height: 1.8; color: var(--light); margin-bottom: 22px; }
.system-intro p.muted { font-size: 14px; opacity: 0.6; }
.system-learn { margin-top: 36px; }
.system-parts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.system-part { text-align: center; }
.system-part-image { aspect-ratio: 3 / 4; width: 100%; margin-bottom: 22px; position: relative; background: var(--black); overflow: hidden; }
.system-part-image .ph { position: absolute; inset: 0; }
.system-part-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.part-num { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--light); opacity: 0.5; margin-bottom: 8px; display: block; }
.system-part h4 { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
.system-part p { font-size: 12.5px; line-height: 1.6; color: var(--light); opacity: 0.6; }

/* ─── HARDWARE ─── */
#hardware { background: var(--black); overflow: hidden; }
.hardware-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.hardware-content { padding: var(--section-y) 0; max-width: 720px; }
.hardware-content h2 { margin-bottom: 30px; }
.hardware-content > p { font-size: 14.5px; line-height: 1.8; color: var(--light); opacity: 0.72; margin-bottom: 48px; max-width: 440px; }
.hardware-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 36px; }
.hw-spec { display: flex; flex-direction: column; gap: 7px; padding-top: 20px; border-top: 1px solid var(--line); }
.hw-spec-icon { display: flex; align-items: center; margin-bottom: 4px; }
.hw-spec-icon svg { width: 18px; height: 18px; stroke: var(--light); opacity: 0.55; }
.hw-spec h5 { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.hw-spec p { font-size: 12.5px; line-height: 1.6; color: var(--light); opacity: 0.55; }

/* ─── COMMUNITY ─── */
#community { display: none; }
.community-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.community-header h2 { max-width: 520px; }
.community-handle { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--white); opacity: 0.75; flex-shrink: 0; text-decoration: none; }
.community-handle svg { width: 18px; height: 18px; }
.insta-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; aspect-ratio: 16 / 7; }
.insta-cell { position: relative; overflow: hidden; cursor: pointer; }
.insta-cell .ph { position: absolute; inset: 0; }
.insta-cell:first-child { grid-row: 1 / 3; }
.insta-cell-hover { position: absolute; inset: 0; background: rgba(255,255,255,0.08); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.25s; z-index: 3; }
.insta-cell:hover .insta-cell-hover { opacity: 1; }
.insta-cell-hover svg { stroke: var(--white); }
.community-cta { margin-top: 40px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* ─── EMAIL CAPTURE ─── */
#email-capture { background: var(--black); padding: var(--section-y) 0; position: relative; overflow: hidden; }
.email-bg-text { position: absolute; font-family: var(--font-display); font-size: 30vw; line-height: 0.8; color: rgba(255,255,255,0.022); top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; letter-spacing: -0.02em; user-select: none; }
.email-crown { position: absolute; top: 8%; left: 50%; transform: translateX(-50%); width: 60px; opacity: 0.5; z-index: 1; }
.email-crown path { fill: var(--gold); }
.email-capture-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.email-capture-content h2 { margin-bottom: 20px; }
.email-capture-content p { font-size: clamp(15px, 1.7vw, 17px); line-height: 1.8; color: var(--light); opacity: 0.7; max-width: 440px; }
.email-perks { display: flex; flex-wrap: wrap; gap: 8px 8px; margin-top: 28px; }
.email-perks span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light); border: 1px solid var(--line-strong); padding: 6px 12px; }
.email-form { display: flex; flex-direction: column; gap: 14px; }
.email-form .field-stack { display: flex; flex-direction: column; gap: 10px; }
.field { position: relative; }
.field label { position: absolute; top: -8px; left: 14px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); opacity: 0.55; background: var(--black); padding: 0 6px; }
.field input { width: 100%; padding: 17px 20px; background: rgba(255,255,255,0.045); border: 1.5px solid var(--line-strong); color: var(--white); font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 0.2s, background 0.2s; }
.field input::placeholder { color: rgba(255,255,255,0.32); }
.field input:focus { border-color: var(--gold); background: rgba(212,169,42,0.05); }
.field.error input { border-color: var(--red); }
.field-row { display: grid; grid-template-columns: 1fr 150px; gap: 10px; }
.email-form button { margin-top: 2px; }
.form-note { font-family: var(--font-mono); font-size: 10px; color: var(--light); opacity: 0.4; line-height: 1.7; letter-spacing: 0.02em; }
.form-success { display: none; padding: 28px; border: 1.5px solid var(--line-strong); background: rgba(255,255,255,0.04); }
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }
.form-success .fs-title { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.03em; color: var(--white); margin-bottom: 8px; }
.form-success p { font-size: 13.5px; color: var(--light); line-height: 1.6; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ─── CONNECT ─── */
#connect { background: var(--black); padding: var(--section-y) 0; position: relative; overflow: hidden; }
.connect-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.connect-content h2 { margin-bottom: 20px; }
.connect-content p { font-size: clamp(15px, 1.7vw, 17px); line-height: 1.8; color: var(--light); opacity: 0.7; max-width: 440px; }
.connect-channels { display: flex; flex-direction: column; gap: 14px; }
.channel-btn {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.04); border: 1.5px solid var(--line-strong);
  text-decoration: none; color: var(--white); border-radius: 5px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.channel-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); transform: translateX(4px); }
.channel-icon { width: 44px; height: 44px; flex-shrink: 0; border: 1.5px solid var(--line-strong); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.channel-icon svg { width: 20px; height: 20px; }
.tato-icon { font-family: var(--font-display); font-size: 22px; color: var(--gold); letter-spacing: 0; }
.channel-info { flex: 1; }
.channel-name { display: block; font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.channel-handle { display: block; font-size: 12px; color: var(--light); opacity: 0.55; }
.channel-arrow { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.4; transition: transform 0.25s var(--ease), opacity 0.2s; }
.channel-btn:hover .channel-arrow { transform: translateX(4px); opacity: 0.8; }

/* ─── RETAIL ─── */
#retail { background: var(--dark); padding: calc(var(--section-y) + var(--nav-offset)) 0 var(--section-y); }
.retail-inner { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: 64px; align-items: start; }
.retail-content h2 { margin-bottom: 20px; }
.retail-content > p { font-size: 14.5px; line-height: 1.8; color: var(--light); opacity: 0.68; margin-bottom: 30px; }
.retail-search { display: flex; gap: 0; margin-bottom: 30px; max-width: 420px; }
.retail-search input { flex: 1; padding: 16px 18px; background: rgba(255,255,255,0.05); border: 1.5px solid var(--line-strong); border-right: none; color: var(--white); font-family: var(--font-body); font-size: 14px; outline: none; }
.retail-search input::placeholder { color: rgba(255,255,255,0.3); }
.retail-search input:focus { border-color: var(--gold); }
.retail-search button { padding: 0 20px; background: var(--gold); border: 1.5px solid var(--gold); color: var(--black); cursor: pointer; display: flex; align-items: center; }
.retail-search button svg { width: 18px; height: 18px; }
.retail-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.retail-cities button { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light); background: transparent; border: 1px solid var(--line); padding: 7px 12px; cursor: pointer; transition: all 0.2s; }
.retail-cities button:hover, .retail-cities button.active { color: var(--white); border-color: var(--line-strong); background: rgba(255,255,255,0.06); }
.map-wrap { position: relative; aspect-ratio: 16 / 11; }
.map-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #14140f 0%, #1c1c16 100%); overflow: hidden; }
.map-placeholder::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 35% 55%, rgba(212,169,42,0.15) 0%, transparent 25%), radial-gradient(circle at 60% 35%, rgba(212,169,42,0.1) 0%, transparent 20%), radial-gradient(circle at 75% 65%, rgba(212,169,42,0.08) 0%, transparent 18%); }
.map-placeholder .grid-tex { opacity: 0.6; }
.map-pin { position: absolute; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.map-pin-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--white); box-shadow: 0 0 0 4px rgba(255,255,255,0.15), 0 0 18px rgba(255,255,255,0.2); }
.map-pin-label { font-family: var(--font-mono); font-size: 8px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--light); background: rgba(0,0,0,0.75); padding: 2px 6px; white-space: nowrap; }
.map-bar { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 22px; background: rgba(0,0,0,0.82); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.map-bar p { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.map-bar span { font-family: var(--font-mono); font-size: 10px; color: var(--light); opacity: 0.5; }

/* ─── FOOTER ─── */
footer { background: var(--black); border-top: 1px solid var(--line); padding: 76px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 60px; }
.footer-brand .footer-logo { height: 108px; width: auto; display: block; margin-bottom: 20px; }
.footer-social { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-social a { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); text-decoration: none; opacity: 0.55; transition: opacity 0.2s, color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-social a:hover { opacity: 1; color: var(--white); }
.footer-col h6 { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; opacity: 0.55; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 12.5px; letter-spacing: 0.02em; color: var(--light); opacity: 0.55; text-decoration: none; transition: opacity 0.2s, color 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--white); }
.footer-addr { font-family: var(--font-mono); font-size: 11px; color: var(--light); opacity: 0.38; line-height: 1.7; margin-top: 20px; }
.footer-bottom { padding-top: 30px; border-top: 1px solid var(--line); display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; }
.compliance { font-size: 11px; color: var(--light); opacity: 0.35; line-height: 1.7; max-width: 720px; }
.compliance strong { display: block; margin-bottom: 4px; opacity: 0.7; }
.footer-legal { display: flex; gap: 20px; flex-shrink: 0; }
.footer-legal a { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--light); opacity: 0.35; text-decoration: none; transition: opacity 0.2s; }
.footer-legal a:hover { opacity: 0.75; }

/* ─── STICKY MOBILE CTA ─── */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 105; display: none; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(10,10,10,0.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); transform: translateY(120%); transition: transform 0.35s var(--ease); }
.sticky-cta.show { transform: none; }
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  #hero { min-height: 560px; }
.hero-content { max-width: 100%; padding: 60px var(--pad-x) 60px; }
  .hero-meta { gap: 20px; }
  #why .container { flex-direction: column; }
  .why-intro { flex: none; padding: var(--section-y) 0 40px; border-right: none; border-bottom: 1.5px solid rgba(0,0,0,0.14); }
  .features-grid { grid-template-columns: repeat(4, 1fr); border-top: none; }
  .feature-card { padding: 20px 12px 24px; }
  .feature-card p { display: none; }
  .feature-card h3 { font-size: 16px; }
  .system-body { grid-template-columns: 1fr; gap: 48px; }
  .retail-inner { grid-template-columns: 1fr; gap: 40px; }
  .pods-scroller { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 36px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta, .nav-right .nav-ig { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 0; z-index: 109; background: rgba(10,10,10,0.98); backdrop-filter: blur(16px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .nav-open .mobile-menu { opacity: 1; pointer-events: auto; }
  .mobile-menu a { font-family: var(--font-display); font-size: 40px; letter-spacing: 0.03em; color: var(--white); text-decoration: none; }
  .mobile-menu a.ig { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; color: var(--gold); display: flex; align-items: center; gap: 8px; }
  .mobile-menu .btn { margin-top: 12px; }

  .comparison-grid { grid-template-columns: 1fr auto 1fr; gap: 0; }
  .comparison-col { padding: 20px 16px 24px; }
  .comparison-visual { aspect-ratio: 3 / 4; height: auto; margin-bottom: 14px; }
  .comparison-vs { padding: 0 10px; }
  .vs-badge { width: 32px; height: 32px; font-size: 11px; }
  .comparison-col-label { font-size: 9px; letter-spacing: 0.12em; margin-bottom: 14px; }
  .comparison-items { gap: 8px; }
  .comparison-items li { font-size: 10.5px; gap: 7px; }
  .check { width: 15px; height: 15px; }
  .check-bad::after { font-size: 10px; }
  .check-good::after { font-size: 8px; }
  .hardware-inner { grid-template-columns: 1fr; }
  .hardware-visual { min-height: 420px; }
  .email-capture-inner { grid-template-columns: 1fr; gap: 40px; }
  .connect-inner { grid-template-columns: 1fr; gap: 40px; }
  .insta-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, 1fr); aspect-ratio: auto; }
  .insta-cell { aspect-ratio: 1; }
  .insta-cell:first-child { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .collect-header { flex-direction: column; align-items: flex-start; gap: 18px; }
  .collect-header .tagline { text-align: left; }
  .pods-scroller { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 12px; padding-bottom: 16px; scroll-snap-type: x proximity; overscroll-behavior: none; touch-action: pan-x; }
  .pods-scroller::-webkit-scrollbar { display: none; }
  .pod-card { flex: 0 0 200px; scroll-snap-align: start; }
  .community-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 20px; }
  .sticky-cta { display: block; }
  #hero { background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('hf_20260602_082609_fe7c3870-5412-439d-a78e-ec78403931e7.png') center / cover no-repeat var(--off-black); }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .hero-meta { gap: 16px; flex-wrap: nowrap; }
  .hero-stat .n { font-size: clamp(18px, 5vw, 28px); }
  .hero-stat .l { font-size: 8px; white-space: nowrap; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-card { padding: 16px 8px 20px; }
  .feature-card h3 { font-size: 13px; }
  .feature-num { font-size: 8px; }
  .feature-icon { width: 36px; height: 36px; margin-bottom: 10px; }
  .feature-icon svg { width: 14px; height: 14px; }
  .pod-card { flex: 0 0 160px; }
  .system-parts { grid-template-columns: 1fr; gap: 28px; max-width: 300px; margin: 0 auto; }
  .hardware-specs { grid-template-columns: 1fr; gap: 22px; }
  .hardware-content { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .field-row { grid-template-columns: 1fr; }
  .retail-search { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-bar { flex-direction: column; align-items: flex-start; gap: 4px; }
  .email-bg-text { font-size: 46vw; }
  .map-pin-label { display: none; }
  .map-pin.is-active .map-pin-label { display: block; }
}
