/* ============ V-DIP — street-premium dark/gold ============ */
:root {
  --bg: #0a0a0c;
  --bg2: #121216;
  --ink: #f4f2ee;
  --muted: #b3aea6;
  --gold: #D9A441;
  --gold-hi: #f0c46a;
  --maxw: 1140px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }

h1, h2, .logo {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 em, h2 em { font-style: normal; color: var(--gold); }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; margin-bottom: 0.6em; }
section { padding: 5.5rem 1.25rem; max-width: var(--maxw); margin: 0 auto; }
.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.section-sub { color: var(--muted); max-width: 560px; margin-bottom: 2.5rem; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none !important; }
}

/* ============ nav ============ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.9rem 1.5rem;
  background: rgba(10,10,12,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217,164,65,0.14);
}
.logo { font-size: 1.5rem; color: var(--ink); }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.5rem; margin-left: auto; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.nav-links a:hover { color: var(--gold-hi); }
.btn-nav { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
@media (max-width: 720px) { .nav-links { display: none; } .btn-nav { margin-left: auto; } }

/* ============ buttons ============ */
.btn {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.95rem 1.9rem;
  border-radius: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: #171205;
  box-shadow: 0 6px 24px rgba(217,164,65,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(217,164,65,0.5); }
.btn-ghost { border: 1px solid rgba(244,242,238,0.28); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); }
.btn-big { font-size: 1.15rem; padding: 1.2rem 2.6rem; }

/* ============ hero ============ */
.hero {
  padding: 7.5rem 1.25rem 4rem;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(217,164,65,0.14), transparent 60%),
    radial-gradient(700px 400px at -10% 40%, rgba(217,164,65,0.07), transparent 60%),
    var(--bg);
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center;
}
.eyebrow { color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.75rem; font-weight: 800; margin-bottom: 1.1rem; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; margin-bottom: 1.2rem; }
.sub { color: var(--muted); font-size: 1.08rem; max-width: 480px; margin-bottom: 1.2rem; }
.price-line { font-size: 1.05rem; margin-bottom: 1.6rem; }
.price-line strong { color: var(--gold-hi); font-size: 1.5rem; font-weight: 800; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.trust-row { display: flex; gap: 0.6rem; flex-wrap: wrap; color: var(--muted); font-size: 0.9rem; align-items: baseline; }
.trust-row strong { color: var(--ink); }
.trust-row .half { opacity: 0.35; }
.dot { color: var(--gold); }

/* phone frame */
.phone {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 3px solid #26262c;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(217,164,65,0.15);
  aspect-ratio: 9 / 16;
  background: #000;
}
.phone video { width: 100%; height: 100%; object-fit: cover; }
.hero-video { max-width: 320px; justify-self: end; width: 100%; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-video { justify-self: center; max-width: 260px; }
}

/* ============ ticker ============ */
.ticker {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(217,164,65,0.25);
  border-bottom: 1px solid rgba(217,164,65,0.25);
  background: var(--bg2);
  padding: 0.8rem 0;
}
.ticker-track { display: inline-block; animation: tick 28s linear infinite; }
.ticker-track span {
  font-family: "Anton", Impact, sans-serif;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ moves ============ */
.moves-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.move {
  position: relative; border-radius: 12px; overflow: hidden;
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.06);
}
.move img { aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; filter: saturate(1.15) contrast(1.05); transition: transform 0.5s ease; }
.move:hover img { transform: scale(1.045); }
.move figcaption { padding: 1rem 1.1rem 1.2rem; }
.move h3 {
  font-family: "Anton", Impact, sans-serif; font-weight: 400;
  text-transform: uppercase; color: var(--gold); font-size: 1.15rem; margin-bottom: 0.25rem;
}
.move p { color: var(--muted); font-size: 0.9rem; }
.move:nth-child(4), .move:nth-child(5) { grid-column: span 1; }
@media (max-width: 860px) { .moves-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .moves-grid { grid-template-columns: 1fr; } }

/* ============ street feed ============ */
.feed-section { max-width: none; background: var(--bg2); }
.feed-section > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.feed-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.feed-card .phone { cursor: pointer; }
.sound {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  background: rgba(10,10,12,0.65); color: var(--ink);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  width: 40px; height: 40px; font-size: 1rem; cursor: pointer;
}
.hook { margin-top: 0.8rem; font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.feed-follow { margin-top: 2.4rem; color: var(--muted); font-weight: 600; }
@media (max-width: 980px) { .feed-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .feed-grid { grid-template-columns: 1fr; max-width: 300px; } }

/* ============ why ============ */
.why-section { max-width: none; }
.why-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.2rem; align-items: center;
}
.why-copy p { color: var(--muted); margin-bottom: 1rem; max-width: 520px; }
.why-copy strong { color: var(--ink); }
blockquote {
  margin-top: 1.8rem; padding-left: 1.2rem;
  border-left: 3px solid var(--gold);
  font-size: 1.35rem; font-weight: 600; line-height: 1.4; color: var(--ink);
}
blockquote cite { display: block; margin-top: 0.5rem; font-size: 0.85rem; color: var(--gold); font-style: normal; }
.why-img img { border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
@media (max-width: 860px) { .why-inner { grid-template-columns: 1fr; } }

/* ============ founder ============ */
.founder-section { max-width: none; background: var(--bg2); }
.founder-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.2rem; align-items: center;
}
.founder-img img { border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,0.5); filter: saturate(1.15) contrast(1.05); }
.founder-copy p { color: var(--muted); margin-bottom: 1rem; max-width: 540px; }
.founder-copy strong { color: var(--ink); }
.founder-follow { font-weight: 600; }
@media (max-width: 860px) {
  .founder-inner { grid-template-columns: 1fr; }
  .founder-img { max-width: 380px; margin: 0 auto; }
}

/* ============ faq ============ */
.faq-list { max-width: 720px; }
details {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.1rem 0;
}
summary {
  cursor: pointer; font-weight: 800; font-size: 1.05rem;
  list-style: none; position: relative; padding-right: 2rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  color: var(--gold); font-size: 1.4rem; line-height: 1;
  transition: transform 0.2s ease;
}
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); margin-top: 0.7rem; max-width: 640px; }

/* ============ final cta ============ */
.final-cta {
  text-align: center;
  background:
    radial-gradient(700px 340px at 50% 110%, rgba(217,164,65,0.2), transparent 65%),
    var(--bg);
  max-width: none;
  padding-bottom: 7rem;
}
.final-cta h2 { font-size: clamp(2.4rem, 6vw, 4rem); }
.final-cta .price-line { margin-bottom: 2rem; }
.cta-note { margin-top: 1.1rem; color: var(--muted); font-size: 0.9rem; }

/* ============ footer ============ */
footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 2.5rem 1.25rem; }
.foot-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.foot-links { display: flex; gap: 1.4rem; }
.foot-links a { color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.foot-links a:hover { color: var(--gold-hi); }
footer p { color: #6d6a64; font-size: 0.85rem; margin-left: auto; }
@media (max-width: 640px) { footer p { margin-left: 0; } }

/* ============ mobile buy bar ============ */
#buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none;
  align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(10,10,12,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(217,164,65,0.3);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
#buybar.show { transform: none; }
#buybar .btn { padding: 0.7rem 1.5rem; font-size: 0.9rem; white-space: nowrap; }
.bb-price { display: flex; flex-direction: column; line-height: 1.2; }
.bb-price strong { color: var(--gold-hi); font-size: 1.15rem; }
.bb-price span { color: var(--muted); font-size: 0.72rem; }
@media (max-width: 720px) { #buybar { display: flex; } }
