/* ============================================================
   2NIGHT — Marketing site
   Bespoke CSS. No frameworks. True-black luxury nightlife brand.
   Flagship edition: cinematic hero, signature interactive phone,
   scroll-driven reveals, kinetic cities, custom cursor, grain.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --black: #0D0D0D;
  --surface: #1A1A1A;
  --border: #2A2A2A;
  --text: #F5F5F5;
  --muted: #7A7A7A;
  --gold: #FFD700;
  --gold-light: #FFF0A0;
  --gold-dark: #B8860B;
  --silver: #C0C0C0;
  --silver-light: #E8E8E8;
  --platinum: #E5E4E2;
  --black-deep: #050505;

  --maxw: 1200px;
  --pad-section: clamp(80px, 12vh, 160px);
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --font: -apple-system, "SF Pro Display", Inter, system-ui, "Segoe UI", Roboto, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--black-deep); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

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

.kicker {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  display: inline-block;
}

.section-title {
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 16ch;
  text-wrap: balance;
}

.section-sub {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 56ch;
  margin-top: 22px;
  line-height: 1.6;
}

/* gold gradient text utility */
.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* ---------- Global grain / noise overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 150;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 50%, var(--gold-light));
  box-shadow: 0 0 14px -2px rgba(255,215,0,.6);
  will-change: transform;
}
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .scroll-progress {
      animation: progress-grow linear both;
      animation-timeline: scroll(root);
    }
  }
}
@keyframes progress-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ============================================================
   Custom cursor (desktop + non-reduced-motion only; JS toggles)
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 400;
  opacity: 0;
  will-change: transform, opacity;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: opacity .3s ease, width .25s var(--ease), height .25s var(--ease);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,215,0,.55);
  transform: translate(-50%, -50%);
  transition: opacity .3s ease, width .3s var(--ease), height .3s var(--ease),
              border-color .3s ease, background .3s ease;
}
body.cursor-on .cursor-dot,
body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-on { cursor: none; }
body.cursor-on a,
body.cursor-on button,
body.cursor-on input,
body.cursor-on [data-magnetic] { cursor: none; }
/* grow ring over interactives */
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: rgba(255,215,0,.9);
  background: rgba(255,215,0,.06);
}
body.cursor-hover .cursor-dot { width: 4px; height: 4px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 15px 28px;
  border-radius: 100px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .25s ease;
  will-change: transform;
}
.btn svg { flex: none; }
.btn-magnetic span, .btn-magnetic svg { position: relative; z-index: 1; transition: transform .25s var(--ease); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--black-deep);
  box-shadow: 0 0 0 rgba(255,215,0,0);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -10px rgba(255,215,0,.55);
}
/* shimmer sweep on gold buttons */
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.45) 50%, transparent 75%);
  background-size: 280% 100%;
  background-position: 180% 0;
  opacity: 0;
  pointer-events: none;
}
.btn-gold:hover::after { animation: shimmer 1.05s var(--ease) forwards; opacity: 1; }
@keyframes shimmer { to { background-position: -120% 0; } }

.btn-light {
  background: var(--text);
  color: var(--black-deep);
}
.btn-light:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  box-shadow: 0 14px 40px -10px rgba(255,215,0,.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-pill {
  padding: 11px 22px;
  font-size: 14.5px;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 8, .72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height .4s var(--ease);
}
.nav.scrolled .nav-inner { height: 62px; }
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 0 18px -4px rgba(255,215,0,.35);
  transition: transform .4s var(--ease);
}
.brand:hover img { transform: rotate(-6deg) scale(1.05); }
.brand-name {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 19px;
  color: var(--gold);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* primary nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-right: 4px;
}
.nav-links a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* language switcher */
.lang {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: color .25s, border-color .25s, background .25s;
}
.lang-btn:hover { color: var(--text); border-color: var(--border); }
.lang-btn svg { opacity: .85; }
.lang-current { text-transform: uppercase; letter-spacing: .04em; }
.lang-caret { transition: transform .3s var(--ease); }
.lang.open .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 188px;
  max-height: 360px;
  overflow-y: auto;
  background: rgba(16,16,16,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 7px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14.5px;
  color: var(--muted);
  transition: background .2s, color .2s;
}
.lang-menu button:hover { background: var(--surface); color: var(--text); }
.lang-menu button.active { color: var(--gold); }
.lang-menu button .tick { opacity: 0; }
.lang-menu button.active .tick { opacity: 1; }

/* mobile nav */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  position: relative;
  transition: background .2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--text);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav.menu-open .nav-toggle span { background: transparent; }
.nav.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-right .btn-gold { display: none; }
  .nav.menu-open .nav-right .btn-gold {
    display: inline-flex;
    position: fixed;
    top: 96px; left: var(--gutter); right: var(--gutter);
    justify-content: center;
    z-index: 101;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black-deep);
}
#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* layered, drifting gold aurora / gradient mesh behind the headline */
.hero-aurora {
  position: absolute;
  inset: -10% -10% 0 -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 22% 32%, rgba(255,215,0,.18), transparent 60%),
    radial-gradient(38% 46% at 78% 28%, rgba(184,134,11,.20), transparent 62%),
    radial-gradient(50% 60% at 62% 72%, rgba(255,240,160,.10), transparent 64%);
  filter: blur(40px) saturate(125%);
  will-change: transform;
  animation: aurora-drift 22s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1.02); }
  50%  { transform: translate3d(3%, 2%, 0) scale(1.08); }
  100% { transform: translate3d(-1%, 3%, 0) scale(1.04); }
}
.hero-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  width: min(840px, 92vw);
  height: min(840px, 92vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,215,0,.14) 0%, rgba(255,215,0,.04) 34%, transparent 64%);
  z-index: 0;
  pointer-events: none;
  filter: blur(8px);
  will-change: transform;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 35%, rgba(5,5,5,.55) 100%),
    linear-gradient(to bottom, transparent 58%, var(--black) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-block: 124px 64px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
}
.hero-copy { will-change: transform; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,26,26,.6);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 17px 9px 14px;
  font-size: 14px;
  color: var(--silver-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 32px;
}
.dot-pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
  animation: pulse 2.4s infinite;
  flex: none;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.55); }
  70% { box-shadow: 0 0 0 9px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.hero-badge #count { color: var(--gold); font-weight: 700; font-variant-numeric: tabular-nums; }
.hero-badge .city-wrap { position: relative; display: inline-block; }
#city { color: var(--text); font-weight: 600; transition: opacity .4s ease; }
#city.fading { opacity: 0; }

.hero-title {
  font-weight: 900;
  font-size: clamp(52px, 10.5vw, 150px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: 0 0 30px;
}
/* per-line staggered reveal: each line wraps a span we slide in */
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}
.hero-title .line > span {
  display: block;
  transform: translateY(110%);
  opacity: 0;
}
.hero-title.in .line > span {
  animation: line-rise .95s var(--ease-out) forwards;
}
.hero-title.in .line:nth-child(2) > span { animation-delay: .10s; }
.hero-title.in .line:nth-child(3) > span { animation-delay: .20s; }
@keyframes line-rise {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.hero-tagline {
  margin: -10px 0 22px;
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(17px, 2.3vw, 22px);
  line-height: 1.5;
  max-width: 40ch;
}
.hero-sub span { display: block; }
.hero-sub .accent { color: var(--silver-light); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

/* tier legend */
.tier-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 48px;
}
.tier-legend li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--muted);
}
.tier-legend .tdot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.tier-legend .tdot.silver { background: linear-gradient(135deg, var(--silver-light), var(--silver)); }
.tier-legend .tdot.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); }
.tier-legend .tdot.platinum { background: linear-gradient(135deg, #fff, var(--platinum)); }
.tier-legend strong { color: var(--text); font-weight: 600; }
.tier-legend em { font-style: normal; color: var(--muted); }

/* ---------- Signature interactive hero phone ---------- */
.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  will-change: transform;
}
.hero-stage .device {
  --rx: 0deg; --ry: 0deg;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .25s var(--ease);
}
.hero-stage .device-shadow {
  position: absolute;
  bottom: -6%;
  left: 50%;
  width: 70%;
  height: 60px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,0,0,.7), transparent 70%);
  filter: blur(18px);
  z-index: -1;
}
.hero-stage .device-halo {
  position: absolute;
  inset: -16%;
  background: radial-gradient(circle, rgba(255,215,0,.16), transparent 60%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}

/* device frame & auto-cycling crossfade screens */
.device {
  position: relative;
  width: clamp(230px, 30vw, 320px);
  aspect-ratio: 322 / 700;
  border-radius: 44px;
  padding: 8px;
  background: linear-gradient(160deg, #232323, #050505);
  border: 1px solid #383838;
  box-shadow:
    0 50px 110px -34px rgba(0,0,0,.92),
    inset 0 0 0 1px rgba(255,255,255,.03);
}
/* gold rim-light */
.device::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 45px;
  padding: 1px;
  background: linear-gradient(150deg, rgba(255,240,160,.55), rgba(184,134,11,.18) 35%, transparent 55%, rgba(255,215,0,.30) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
}
.device::after {
  /* notch */
  content: "";
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 22px;
  background: #050505;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.device-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 37px;
  overflow: hidden;
  background: #0a0a0a;
}
.device-screen img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity .7s var(--ease);
}
.device-screen img.active { opacity: 1; }
/* fallback when JS disabled / reduced motion: show first only */
.no-js .device-screen img:first-child,
.device-screen img.active { opacity: 1; }
/* tiny gloss */
.device-screen::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 30%);
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scroll-cue .mouse {
  width: 22px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  position: relative;
}
.scroll-cue .mouse::after {
  content: "";
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollwheel 1.8s infinite var(--ease);
}
@keyframes scrollwheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 12px); }
  100% { opacity: 0; }
}

/* ============================================================
   Stats band
   ============================================================ */
.stats {
  border-block: 1px solid var(--border);
  background:
    linear-gradient(to bottom, rgba(255,215,0,.025), transparent),
    var(--black-deep);
  padding-block: clamp(40px, 6vh, 70px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 60px);
  text-align: center;
}
.stat { position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 56%;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.stat .num {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
/* word-based stat (e.g. "Anywhere in the world") — smaller, balanced */
.stat .num.num-text {
  font-size: clamp(22px, 3.4vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 48%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.stat .label {
  margin-top: 12px;
  font-size: 12.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   How it works
   ============================================================ */
.how-head { margin-bottom: clamp(48px, 7vh, 90px); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.step {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  transition: border-color .4s var(--ease);
}
.step:hover { border-top-color: rgba(255,215,0,.4); }
.step .num {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,215,0,.32);
  margin-bottom: 22px;
  transition: -webkit-text-stroke-color .4s var(--ease);
}
.step:hover .num { -webkit-text-stroke-color: rgba(255,215,0,.7); }
.step h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.step p { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 34ch; }

/* ============================================================
   Tiers
   ============================================================ */
.tiers-head { text-align: center; margin: 0 auto clamp(48px, 7vh, 80px); }
.tiers-head .section-title, .tiers-head .section-sub { margin-inline: auto; }
.tiers-head .kicker { display: inline-flex; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: center;
}
.tier-card {
  position: relative;
  border-radius: 24px;
  padding: 38px 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.tier-card:hover { transform: translateY(-8px); }
/* gold hover-glow follows cursor via JS vars */
.tier-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(255,215,0,.12), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.tier-card:hover::after { opacity: 1; }

.tier-card.silver {
  background:
    linear-gradient(150deg, rgba(232,232,232,.10) 0%, rgba(192,192,192,.03) 40%, rgba(26,26,26,.9) 100%),
    var(--surface);
  border-color: rgba(192,192,192,.22);
}
/* Silver flashes/glows on hover the same way Gold does — tinted silver/white */
.tier-card.silver::after {
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(232,232,232,.16), transparent 60%);
}
.tier-card.silver:hover {
  transform: translateY(-8px);
  border-color: rgba(232,232,232,.55);
  box-shadow: 0 40px 90px -30px rgba(232,232,232,.4);
  animation: silver-flash 1.05s var(--ease) forwards;
}
.tier-card.silver:hover::after { opacity: 1; }
@keyframes silver-flash {
  0%   { box-shadow: 0 40px 90px -30px rgba(232,232,232,.4); }
  35%  { box-shadow: 0 0 60px -6px rgba(245,245,245,.65), 0 40px 90px -30px rgba(232,232,232,.5); border-color: rgba(255,255,255,.85); }
  100% { box-shadow: 0 40px 90px -30px rgba(232,232,232,.4); }
}

.tier-card.gold {
  background:
    linear-gradient(155deg, rgba(255,215,0,.16) 0%, rgba(184,134,11,.08) 45%, rgba(20,18,8,.96) 100%),
    var(--surface);
  border-color: rgba(255,215,0,.4);
  transform: scale(1.04);
  box-shadow: 0 30px 80px -30px rgba(255,215,0,.35);
  z-index: 2;
}
.tier-card.gold:hover { transform: scale(1.04) translateY(-8px); box-shadow: 0 40px 90px -30px rgba(255,215,0,.5); }

.tier-card.platinum {
  background:
    linear-gradient(155deg, rgba(229,228,226,.10) 0%, rgba(0,0,0,.4) 45%, var(--black-deep) 100%),
    var(--black-deep);
  border-color: transparent;
}
.tier-card.platinum::before {
  content: "";
  position: absolute; inset: 0;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.7), rgba(229,228,226,.15) 30%, transparent 55%, rgba(229,228,226,.4) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.tier-card.platinum:hover { box-shadow: 0 30px 70px -30px rgba(229,228,226,.22); }

.tier-popular {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black-deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 1;
}

.tier-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  position: relative;
}
.tier-card.silver .tier-name { color: var(--silver-light); }
.tier-card.gold .tier-name { color: var(--gold-light); }
.tier-card.platinum .tier-name { color: var(--platinum); }

.tier-tag { color: var(--muted); font-size: 14px; margin-bottom: 24px; position: relative; }
.tier-price {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  position: relative;
}
.tier-card.gold .tier-price { color: var(--gold); }
.tier-card.silver .tier-price { color: var(--silver-light); }

.tier-features { display: flex; flex-direction: column; gap: 14px; position: relative; }
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.tier-features li svg { flex: none; margin-top: 3px; }
.tier-card.silver .tier-features svg { color: var(--silver); }
.tier-card.gold .tier-features svg { color: var(--gold); }
.tier-card.platinum .tier-features svg { color: var(--platinum); }

/* ============================================================
   Phone frame (screens gallery)
   ============================================================ */
.phone {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 322 / 700;
  border-radius: 44px;
  padding: 8px;
  background: linear-gradient(160deg, #1b1b1b, #050505);
  border: 1px solid #313131;
  box-shadow:
    0 40px 90px -30px rgba(0,0,0,.9),
    0 0 60px -20px rgba(255,215,0,.14);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.screen-item:hover .phone {
  transform: translateY(-10px);
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.95), 0 0 80px -16px rgba(255,215,0,.28);
}
.phone::after {
  /* notch */
  content: "";
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 22px;
  background: #050505;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 37px;
  overflow: hidden;
  background: #0a0a0a;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ============================================================
   Screens showcase
   ============================================================ */
.screens-head { margin-bottom: clamp(48px, 7vh, 80px); max-width: 44ch; }
.screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 30px);
  align-items: end;
}
.screens-grid .phone { max-width: none; margin-inline: auto; }
/* staggered vertical offset on desktop */
.screens-grid .screen-item:nth-child(odd) { transform: translateY(0); }
.screens-grid .screen-item:nth-child(2) { margin-bottom: 48px; }
.screens-grid .screen-item:nth-child(4) { margin-bottom: 48px; }
.screen-item .caption {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.screen-item:hover .caption { color: var(--gold-light); }

/* ============================================================
   Worldwide + radius
   ============================================================ */
.radius {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(255,215,0,.05), transparent 55%),
    var(--black);
}
.radius-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  max-width: 130vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,215,0,.08), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.radius .container { position: relative; z-index: 1; }
.radius-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(48px, 7vh, 80px); }
.radius-head .section-title, .radius-head .section-sub { margin-inline: auto; }
.radius-head .kicker { display: inline-flex; }

.radius-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* concentric range rings */
.radius-rings {
  position: relative;
  width: min(440px, 78vw);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.radius-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,245,245,.12);
  display: grid;
  place-items: start center;
}
.radius-rings .ring-50 {
  inset: 0;
  border-color: rgba(229,228,226,.32);
  background: radial-gradient(circle, transparent 58%, rgba(229,228,226,.05) 100%);
}
.radius-rings .ring-15 {
  inset: 27%;
  border-color: rgba(255,215,0,.40);
  background: radial-gradient(circle, transparent 50%, rgba(255,215,0,.06) 100%);
}
.radius-rings .ring-5 {
  inset: 54%;
  border-color: rgba(192,192,192,.55);
  background: radial-gradient(circle, transparent 40%, rgba(192,192,192,.07) 100%);
}
.radius-rings .ring-tag {
  margin-top: -11px;
  padding: 3px 11px;
  font-size: 11.5px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  border-radius: 100px;
  background: rgba(13,13,13,.92);
  border: 1px solid var(--border);
}
.radius-rings .ring-50 .ring-tag { color: var(--platinum); }
.radius-rings .ring-15 .ring-tag { color: var(--gold); border-color: rgba(255,215,0,.4); }
.radius-rings .ring-5 .ring-tag { color: var(--silver-light); }
.radius-rings .ring-core {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px -2px var(--gold);
  z-index: 2;
}
.radius-rings .ring-pulse {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,215,0,.5);
  z-index: 1;
  animation: radius-pulse 3.4s var(--ease) infinite;
}
@keyframes radius-pulse {
  0%   { transform: scale(1); opacity: .55; }
  70%  { transform: scale(16); opacity: 0; }
  100% { transform: scale(16); opacity: 0; }
}

/* km scale tied to tiers */
.radius-scale {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.radius-scale .rscale {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.radius-scale .rscale:hover { transform: translateX(4px); }
.radius-scale .rscale.silver:hover { border-color: rgba(192,192,192,.4); }
.radius-scale .rscale.gold:hover { border-color: rgba(255,215,0,.5); }
.radius-scale .rscale.platinum:hover { border-color: rgba(229,228,226,.4); }
.radius-scale .rdot {
  grid-row: 1 / span 2;
  width: 12px; height: 12px;
  border-radius: 50%;
}
.radius-scale .silver .rdot { background: var(--silver); box-shadow: 0 0 12px -2px var(--silver); }
.radius-scale .gold .rdot { background: var(--gold); box-shadow: 0 0 12px -2px var(--gold); }
.radius-scale .platinum .rdot { background: var(--platinum); box-shadow: 0 0 12px -2px var(--platinum); }
.radius-scale .rkm {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.radius-scale .silver .rkm { color: var(--silver-light); }
.radius-scale .gold .rkm { color: var(--gold-light); }
.radius-scale .platinum .rkm { color: var(--platinum); }
.radius-scale .rnote {
  grid-column: 2;
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}
.radius-caption {
  text-align: center;
  margin-top: clamp(40px, 6vh, 64px);
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta { text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 800px; height: 800px;
  max-width: 110vw;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,215,0,.12), transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-title {
  font-size: clamp(40px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 24px;
  text-wrap: balance;
}
.final-sub { color: var(--muted); font-size: clamp(17px, 2.2vw, 21px); margin-bottom: 44px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 64px 48px;
  background: var(--black-deep);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { max-width: 32ch; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 15px; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  text-align: right;
}
.footer-links a { color: var(--muted); font-size: 15px; transition: color .25s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--muted); font-size: 13px; opacity: .8; }

/* ============================================================
   Waitlist modal
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(3,3,3,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  transform: translateY(16px) scale(.98);
  transition: transform .4s var(--ease);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.9), 0 0 60px -30px rgba(255,215,0,.3);
}
.modal.open .modal-card { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.modal-close:hover { color: var(--text); background: var(--border); }
.modal-card h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.modal-card p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.waitlist-form { display: flex; flex-direction: column; gap: 12px; }
.waitlist-form input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 12px;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 16px;
  transition: border-color .25s;
}
.waitlist-form input:focus { outline: none; border-color: var(--gold); }
.waitlist-form input::placeholder { color: var(--muted); }
.waitlist-form .btn { justify-content: center; }
.waitlist-done { color: var(--gold); font-size: 15px; margin-top: 14px; min-height: 20px; }

/* ============================================================
   Legal pages (privacy / terms)
   ============================================================ */
.legal { padding-top: 140px; padding-bottom: var(--pad-section); }
.legal h1 { font-size: clamp(34px, 6vw, 56px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 48px; }
.legal h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 40px 0 14px; }
.legal p { color: var(--silver); margin-bottom: 16px; max-width: 70ch; line-height: 1.7; }
.legal a { color: var(--gold); }

/* ============================================================
   Scroll reveal
   IntersectionObserver fallback baseline. Progressive enhancement
   with animation-timeline: view() further down.
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Native scroll-driven reveals where supported (graceful, never hides
   content permanently because IO also adds .in as a safety net). */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal:not(.in) {
      opacity: 0;
      transform: translateY(26px);
      animation: reveal-in both linear;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
  }
}
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: left;
    padding-block: 120px 80px;
    gap: 48px;
  }
  .hero-stage { order: 2; }
  .hero-copy { order: 1; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin: 0;
    padding: 14px var(--gutter) 20px;
    background: rgba(8,8,8,.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .nav.menu-open .nav-links a { font-size: 17px; padding: 8px 0; }
  .radius-stage { grid-template-columns: 1fr; gap: clamp(36px, 7vw, 56px); }
  .radius-rings { order: -1; }
}

@media (max-width: 920px) {
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { padding-block: 26px; }
  .tier-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .tier-card.gold { transform: scale(1); order: -1; }
  .tier-card.gold:hover { transform: translateY(-8px); }
  .screens-grid { grid-template-columns: repeat(2, 1fr); }
  .screens-grid .screen-item { margin-bottom: 0 !important; }
}

@media (max-width: 720px) {
  .stats-grid { gap: 16px; }
  .stat .num { font-size: clamp(30px, 11vw, 48px); }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero .container { padding-block: 108px 72px; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .tier-legend { gap: 14px 22px; }
  .screens-grid { grid-template-columns: 1fr; max-width: 260px; margin-inline: auto; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stat + .stat { padding-top: 22px; border-top: 1px solid var(--border); }
  .footer-inner { flex-direction: column; }
  .footer-links { align-items: flex-start; text-align: left; }
}

/* hide custom cursor + heavy motion on touch/coarse pointers */
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ============================================================
   Reduced motion — everything static & fully visible
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-title .line > span { transform: none !important; opacity: 1 !important; }
  .hero-aurora { animation: none !important; }
  .city-track { animation: none !important; }
  .scroll-progress { display: none; }
  .cursor-dot, .cursor-ring { display: none !important; }
  .device-screen img { opacity: 1 !important; }
  .device-screen img:not(:first-child) { display: none; }
}

/* ============================================================
   Sub-pages (About / Support) — shared editorial layout
   ============================================================ */
.page { padding-top: 150px; padding-bottom: var(--pad-section); position: relative; }
.page-hero { text-align: center; max-width: 56ch; margin: 0 auto clamp(56px, 8vh, 96px); }
.page-hero .kicker { display: inline-flex; }
.page-hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 20px 0 0;
  text-wrap: balance;
}
.page-hero .lead {
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
  margin-top: 24px;
  line-height: 1.6;
}

/* About — narrative blocks */
.about-block {
  max-width: 70ch;
  margin: 0 auto clamp(40px, 6vh, 64px);
}
.about-block h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.about-block p {
  color: var(--silver);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-block .pull {
  color: var(--gold);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}

/* who-it's-for cards */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--maxw);
  margin: clamp(40px, 6vh, 64px) auto 0;
}
.who-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  padding: 30px 28px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.who-card:hover { transform: translateY(-6px); border-color: rgba(255,215,0,.35); }
.who-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--gold-light);
}
.who-card p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* ============================================================
   Support — FAQ accordion + contact
   ============================================================ */
.faq { max-width: 76ch; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 26px 4px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color .25s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q .faq-icon {
  flex: none;
  width: 24px; height: 24px;
  position: relative;
}
.faq-q .faq-icon::before,
.faq-q .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-q .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-q .faq-icon::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease);
}
.faq-item.open .faq-a { max-height: 480px; }
.faq-a-inner {
  padding: 0 4px 28px;
  color: var(--silver);
  font-size: 16px;
  line-height: 1.75;
  max-width: 64ch;
}
.faq-a-inner a { color: var(--gold); }

/* contact panel */
.contact-panel {
  max-width: 76ch;
  margin: clamp(56px, 8vh, 88px) auto 0;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(255,215,0,.06), transparent 60%),
    var(--surface);
  padding: clamp(36px, 6vw, 60px) clamp(24px, 5vw, 48px);
}
.contact-panel h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.contact-panel p { color: var(--muted); font-size: 16px; margin-bottom: 28px; max-width: 48ch; margin-inline: auto; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black-deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  padding: 14px 26px;
  border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 16px 40px -16px rgba(255,215,0,.5);
}
.contact-email:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -16px rgba(255,215,0,.65); }

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

/* ============================================================
   Screenshots disclaimer + Android-soon note
   ============================================================ */
.screens-disclaimer {
  margin-top: clamp(28px, 4vh, 44px);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-style: italic;
}
.footer-disclaimer {
  color: var(--muted);
  font-size: 12.5px;
  font-style: italic;
  margin-top: 10px;
  opacity: .85;
}

.android-soon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.android-soon svg { color: var(--silver); flex: none; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-head {
  max-width: 46ch;
  margin: 0 auto clamp(48px, 7vh, 80px);
  text-align: center;
}
.testimonials-head .kicker { justify-content: center; }
.testimonials-head .section-title,
.testimonials-head .section-sub { margin-inline: auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255,215,0,.04) 0%, rgba(26,26,26,.6) 45%, var(--surface) 100%),
    var(--surface);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(255,215,0,.35);
  box-shadow: 0 30px 70px -34px rgba(255,215,0,.3);
}
.testimonial .quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 0.6;
  height: 28px;
  color: var(--gold);
  opacity: .55;
}
.testimonial blockquote {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  letter-spacing: -0.01em;
  flex: 1;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testimonial .t-name { font-weight: 700; font-size: 15px; color: var(--text); }
.testimonial .t-meta { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.testimonial .t-tier { font-weight: 700; letter-spacing: .02em; }
.testimonial .t-tier.silver { color: var(--silver-light); }
.testimonial .t-tier.gold { color: var(--gold); }
.testimonial .t-tier.platinum { color: var(--platinum); }
.testimonials-note {
  margin-top: clamp(28px, 4vh, 40px);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   Safety tips grid
   ============================================================ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
.tip-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  padding: 32px 30px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.tip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,215,0,.35);
  box-shadow: 0 30px 70px -34px rgba(255,215,0,.28);
}
.tip-card .tip-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 14px;
}
.tip-card h2 {
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.tip-card p { color: var(--silver); font-size: 15.5px; line-height: 1.7; }
.tips-grid + .contact-panel { margin-top: clamp(56px, 8vh, 88px); }

/* ============================================================
   Cookie consent banner (injected by main.js)
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 140%);
  z-index: 250;
  width: min(880px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,215,0,.22);
  background:
    radial-gradient(140% 180% at 0% 0%, rgba(255,215,0,.08), transparent 55%),
    rgba(14,14,14,.96);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 30px 80px -28px rgba(0,0,0,.9), 0 0 50px -22px rgba(255,215,0,.3);
  opacity: 0;
  visibility: hidden;
  transition: transform .5s var(--ease), opacity .5s var(--ease), visibility .5s;
}
.cookie-banner.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.cookie-text {
  flex: 1 1 320px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--silver);
}
.cookie-text strong { color: var(--text); font-weight: 700; }
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
  flex-wrap: wrap;
}
.cookie-actions .btn { padding: 12px 22px; font-size: 14.5px; }
.btn-cookie-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-cookie-ghost:hover { border-color: var(--silver); color: var(--silver-light); transform: translateY(-2px); }
@media (max-width: 600px) {
  .cookie-banner { bottom: 12px; padding: 18px 18px; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 920px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .tips-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* Reduced motion — radius pulse off */
@media (prefers-reduced-motion: reduce) {
  .ring-pulse { display: none !important; }
  .faq-a { transition: none !important; }
  .tier-card.silver:hover { animation: none !important; }
  .cookie-banner { transition: opacity .3s ease, visibility .3s ease; transform: translate(-50%, 0); }
  .cookie-banner:not(.show) { transform: translate(-50%, 0); }
}
