/* ============================================================
   Hustlezz Premium — design system
   Bold Grotesk + NeoPOP, cinematic Ink canvas, Hustle Lime accent.
   ============================================================ */

:root {
  /* brand tokens (mirror core:design HustlezzColors) */
  --lime: #B4FF39;
  --lime-shadow: #6DA80F;
  --deep-shadow: #3F6B00;
  --ink: #0A0A0C;
  --ink-2: #101014;
  --charcoal: #16161C;
  --steel: #22222B;
  --line: rgba(255,255,255,.10);
  --line-2: rgba(255,255,255,.06);
  --smoke: #A6A6B2;
  --smoke-2: #6E6E7A;
  --white: #FFFFFF;

  /* type scale */
  --f-display: "Syne", "Space Grotesk", system-ui, sans-serif;
  --f-body: "Space Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --radius: 4px;

  /* spacing */
  --s-section: clamp(72px, 12vw, 160px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* cinematic background: soft lime glow at top + perforation dots + fine grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1200px 700px at 78% -10%, rgba(180,255,57,.14), transparent 60%),
    radial-gradient(900px 600px at 0% 8%, rgba(180,255,57,.05), transparent 55%),
    radial-gradient(circle, rgba(255,255,255,.045) 1.3px, transparent 1.9px),
    var(--ink);
  background-size: auto, auto, 56px 56px, auto;
  background-repeat: no-repeat, no-repeat, repeat, no-repeat;
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: .04; 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='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
h1 { font-family: var(--f-display); font-weight: 800; line-height: .9; letter-spacing: -.025em; text-transform: uppercase;
     font-size: clamp(44px, 8.5vw, 118px); }
h2 { font-family: var(--f-display); font-weight: 800; line-height: .95; letter-spacing: -.02em; text-transform: uppercase;
     font-size: clamp(30px, 5vw, 60px); }
h3 { font-family: var(--f-display); font-weight: 700; letter-spacing: -.01em; font-size: clamp(19px, 2vw, 24px); }
p  { color: var(--smoke); }
.lead { font-size: clamp(17px, 1.6vw, 21px); color: #C9C9D2; max-width: 54ch; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 600; font-size: 12.5px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--lime);
}
.kicker::before { content: ""; width: 7px; height: 7px; background: var(--lime); box-shadow: 0 0 12px var(--lime); }

.text-lime { color: var(--lime); }
.muted { color: var(--smoke-2); font-size: 14px; }

/* ---------- Buttons (NeoPOP) ---------- */
.btn {
  --face: var(--lime); --edge: var(--deep-shadow); --fg: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 700; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 15px 28px; color: var(--fg);
  background: var(--face);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--edge);
  transition: transform .08s ease, box-shadow .08s ease, background .2s ease;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translate(2px,2px); box-shadow: 4px 4px 0 var(--edge); }
.btn:active { transform: translate(6px,6px); box-shadow: 0 0 0 var(--edge); }
.btn.ghost {
  --face: rgba(255,255,255,.04); --edge: rgba(255,255,255,.14); --fg: var(--white);
  border-color: var(--line); backdrop-filter: blur(6px);
}
.btn.ghost:hover { background: rgba(255,255,255,.07); }
.btn.disabled { --face: var(--steel); --edge: rgba(255,255,255,.08); --fg: var(--smoke);
  cursor: default; pointer-events: none; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,12,.6);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand img { height: 24px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--smoke); font-weight: 600; font-size: 15px; transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--white); }
.nav a.active { position: relative; }
.nav a.active::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background: var(--lime); box-shadow:0 0 10px var(--lime); }
.nav .btn { padding: 10px 18px; font-size: 13px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--white);
  width: 42px; height: 42px; border-radius: var(--radius); cursor: pointer; }

/* ---------- Sections ---------- */
section { padding-block: var(--s-section); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 18px; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(60px, 8vw, 110px); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin: 22px 0 0; }
.hero h1 .stroke { color: transparent; -webkit-text-stroke: 2px var(--lime); }
.hero .lead { margin-top: 26px; }
.hero .btn-row { margin-top: 34px; }
.hero .trust { margin-top: 26px; display: flex; gap: 22px; flex-wrap: wrap; color: var(--smoke-2); font-size: 13.5px; }
.hero .trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero .trust span::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--lime); }

/* Phone mock */
.phone-stage { position: relative; display: grid; place-items: center; }
.phone-stage::before {
  content:""; position:absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,255,57,.28), transparent 65%); filter: blur(20px); z-index: 0;
}
.phone {
  position: relative; z-index: 1; width: min(300px, 78vw); aspect-ratio: 9/19;
  background: linear-gradient(180deg, #17171E, #0C0C10);
  border: 2px solid var(--ink); border-radius: 34px;
  box-shadow: 12px 14px 0 rgba(63,107,0,.55), 0 30px 60px rgba(0,0,0,.5);
  padding: 16px; display: flex; flex-direction: column; gap: 14px;
}
.phone .notch { width: 42%; height: 22px; background: var(--ink); border-radius: 0 0 14px 14px; margin: -16px auto 0; }
.phone .screen-top { display:flex; align-items:center; gap:10px; padding-top: 6px; }
.phone .screen-top img { width: 30px; height: 30px; }
.phone .screen-top b { font-family: var(--f-display); font-size: 16px; letter-spacing:-.01em; }
.result-card {
  margin-top: 4px; background: #1B1B22; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.result-card .img { aspect-ratio: 16/11; background:
    radial-gradient(120px 80px at 70% 30%, rgba(180,255,57,.25), transparent),
    linear-gradient(135deg, #2A2A34, #14141A);
  display:grid; place-items:center; }
.result-card .img img { width: 46%; opacity: .95; }
.result-card .body { padding: 14px; }
.result-card .body .name { font-family: var(--f-display); font-size: 17px; letter-spacing:-.01em; }
.result-card .body .meta { color: var(--smoke); font-size: 13px; margin-top: 2px; }
.value-chip {
  margin-top: 12px; display:inline-flex; align-items:center; gap:8px;
  background: var(--lime); color: var(--ink); font-weight: 800; font-size: 14px;
  padding: 8px 12px; border: 2px solid var(--ink); border-radius: 8px; box-shadow: 3px 3px 0 var(--deep-shadow);
}
.phone .scan-btn {
  margin-top: auto; background: var(--lime); color: var(--ink); font-family: var(--f-display); font-weight: 800;
  text-align:center; padding: 14px; border-radius: 14px; border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--deep-shadow); letter-spacing: .04em;
}

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line-2); padding-block: 22px; overflow: hidden; }
.marquee__track { display: flex; gap: 0; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee__track span { font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(18px, 2.4vw, 30px); color: var(--smoke-2); letter-spacing: -.01em; padding-inline: 28px; }
.marquee__track span.on { color: var(--white); }
.marquee__track span::after { content: "◆"; color: var(--lime); margin-left: 56px; font-size: .5em; vertical-align: middle; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Steps / feature grid ---------- */
.grid { display: grid; gap: clamp(16px, 2vw, 22px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative; background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(180,255,57,.4); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.card .step-n {
  display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px;
  background: var(--lime); color: var(--ink); font-family: var(--f-display); font-weight: 800; font-size: 20px;
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--deep-shadow); border-radius: 8px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15.5px; }

/* ---------- App rows ---------- */
.app-row {
  display: grid; grid-template-columns: 96px 1fr auto; gap: clamp(18px, 3vw, 30px); align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px); margin-top: 18px;
  transition: transform .25s ease, border-color .25s ease;
}
.app-row:hover { transform: translateY(-3px); border-color: rgba(180,255,57,.35); }
.app-row .glyph {
  width: 84px; height: 84px; border-radius: 18px; background: var(--ink-2);
  border: 1px solid var(--line); display: grid; place-items: center;
  box-shadow: inset 0 0 30px rgba(180,255,57,.08);
}
.app-row .glyph img { width: 58px; height: 58px; }
.app-row h3 { margin-bottom: 6px; }
.app-row p { font-size: 15px; }
.app-row.plain { grid-template-columns: 1fr; }
.badge {
  font-family: var(--f-body); font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  padding: 7px 13px; border-radius: 999px; white-space: nowrap;
  background: var(--lime); color: var(--ink); border: 2px solid var(--ink);
}
.badge.soon { background: transparent; color: var(--smoke); border-color: var(--line); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; }
.cta-inner {
  background: var(--lime); color: var(--ink); border: 2px solid var(--ink);
  border-radius: var(--radius); box-shadow: 12px 12px 0 var(--deep-shadow);
  padding: clamp(40px, 6vw, 72px); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.cta-inner h2 { color: var(--ink); }
.cta-inner p { color: rgba(16,16,20,.75); max-width: 46ch; }
.cta-inner .btn { --face: var(--ink); --edge: rgba(0,0,0,.35); --fg: var(--lime); border-color: var(--ink); }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,22px); }

/* ---------- Legal (privacy) ---------- */
.legal { max-width: 780px; margin: 0 auto; padding-block: clamp(56px, 8vw, 96px); }
.legal h1 { font-size: clamp(34px, 6vw, 60px); }
.legal .updated { color: var(--smoke-2); font-size: 14px; margin-top: 10px; }
.legal h2 { font-family: var(--f-display); font-weight: 700; text-transform: none; letter-spacing: -.01em;
  font-size: 22px; margin: 40px 0 12px; }
.legal p, .legal li { color: #C9C9D2; }
.legal ul { margin: 12px 0 12px 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.legal .intro { font-size: 18px; margin-top: 20px; }
.legal h2 { clear: both; }

/* ---------- Article stamp figures (mounted-stamp look) ---------- */
.stamp-fig { float: right; width: min(200px, 42%); margin: 4px 0 14px 22px; }
.stamp-fig.wide { width: min(260px, 50%); }
.stamp-fig img {
  width: 100%; height: auto;
  background: #F4F2EA; padding: 8px;
  border: 1px solid var(--line);
  box-shadow: 8px 8px 0 rgba(180,255,57,.14);
}
.stamp-fig:nth-of-type(odd) { transform: rotate(1.4deg); }
.stamp-fig:nth-of-type(even) { transform: rotate(-1.4deg); }
@media (max-width: 560px) {
  .stamp-fig, .stamp-fig.wide { float: none; width: min(220px, 70%); margin: 16px auto; }
}

/* ---------- Background deco stamps (collector's desk, like the app) ---------- */
.bg-stamps { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg-stamps img { position: absolute; opacity: .13; filter: saturate(.8); }
@media (max-width: 760px) {
  .bg-stamps img { opacity: .09; max-width: 110px; }
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-2); padding-block: 56px 40px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.footer-top .brand img { height: 26px; margin-bottom: 14px; }
.footer-top .tag { color: var(--smoke-2); max-width: 30ch; font-size: 14.5px; }
.foot-cols { display: flex; gap: clamp(40px, 8vw, 96px); flex-wrap: wrap; }
.foot-col h4 { font-family: var(--f-body); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--smoke-2); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--smoke); font-weight: 600; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line-2); color: var(--smoke-2); font-size: 13.5px; }
.zbolt { font-family: var(--f-display); font-weight: 800; color: var(--lime); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-stage { order: -1; margin-bottom: 8px; }
  .grid-3, .values { grid-template-columns: 1fr; }
  .nav { gap: 18px; }
  .nav a:not(.btn) { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .site-header.open + .mobile-menu { display: flex; }
}
@media (max-width: 560px) {
  .app-row { grid-template-columns: 64px 1fr; }
  .app-row .glyph { width: 60px; height: 60px; }
  .app-row .glyph img { width: 40px; height: 40px; }
  .app-row .badge { grid-column: 2; justify-self: start; }
}

/* mobile menu */
.mobile-menu { display: none; position: fixed; inset: 76px 0 auto 0; z-index: 99;
  flex-direction: column; gap: 4px; padding: 18px var(--gutter) 26px;
  background: rgba(10,10,12,.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.mobile-menu a { padding: 14px 4px; font-family: var(--f-display); font-size: 22px; color: var(--white); border-bottom: 1px solid var(--line-2); }
