/* ============================================================
   PuffcoNYC.com — Site Stylesheet
   Dark, premium aesthetic. Edit colors in :root below.
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --surface: #121216;
  --card: #17171c;
  --card-hover: #1d1d24;
  --border: #26262e;
  --text: #f4f4f6;
  --muted: #a0a0ab;
  --accent: #4fd1ff;
  --accent-2: #7a5cff;
  --accent-glow: rgba(79, 209, 255, 0.25);
  --gradient: linear-gradient(120deg, #4fd1ff 0%, #7a5cff 100%);
  --radius: 14px;
  --maxw: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.brand img { height: 28px; width: auto; }

.brand-suffix {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1;
}

.age-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  border: 1px solid rgba(79, 209, 255, 0.45);
  border-radius: 6px;
  padding: 3px 8px;
  margin-left: 4px;
  line-height: 1;
  white-space: nowrap;
}

.brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-text span { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.main-nav a:hover, .main-nav a.active { color: var(--text); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none !important;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.btn-primary {
  background: var(--gradient);
  color: #06060a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 550px;
  background: radial-gradient(ellipse at center, rgba(79, 209, 255, 0.14) 0%, rgba(122, 92, 255, 0.08) 45%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; }

.hero-mark {
  display: block;
  height: 54px;
  width: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 6px 26px rgba(79, 209, 255, 0.4));
}

.hero-mark-wide { height: 88px; }

.page-hero .hero-mark { height: 38px; margin-bottom: 18px; }

.card .icon img { height: 24px; width: auto; }

.hero-eyebrow {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  max-width: 820px;
  margin: 0 auto 22px;
}

.hero h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 38px;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section.alt { background: var(--surface); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.card:hover { transform: translateY(-4px); border-color: #34343f; background: var(--card-hover); }

.card .icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(79,209,255,0.15), rgba(122,92,255,0.15));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* Center a lone last card in a 3-column grid */
@media (min-width: 901px) {
  .grid-3 > .card:last-child:nth-child(3n+1) { grid-column: 2; }
}

/* ---------- Product cards ---------- */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover { transform: translateY(-4px); border-color: var(--accent); }

.product-img {
  height: 210px;
  background: linear-gradient(160deg, #1a1a22 0%, #101014 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img img { height: 100%; width: 100%; object-fit: cover; }

/* Product photos: soft light tile; multiply blend melts the photo's
   white background into the tile so there are no hard photo edges */
.product-img.photo { background: linear-gradient(165deg, #f7f7f9 0%, #e7e8ee 100%); }
.product-img.photo img { object-fit: contain; padding: 16px; mix-blend-mode: multiply; }

/* Rotating photo frames — stacked and crossfaded by js/main.js */
.product-img.photo img.rotator-frame {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.product-img.photo img.rotator-frame.active { opacity: 1; }

.product-img .placeholder-glyph {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}

.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-body .cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.product-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-body p { color: var(--muted); font-size: 0.9rem; flex: 1; margin-bottom: 18px; }

/* ---------- Forms ---------- */
.form-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  max-width: 780px;
  margin: 0 auto;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.field label .req { color: var(--accent); }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 209, 255, 0.12);
}

.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a0ab' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.field textarea { min-height: 120px; resize: vertical; }

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 18px;
}

.form-actions { margin-top: 30px; text-align: center; }
.form-actions .btn { width: 100%; max-width: 340px; }

/* Checkbox rows (e.g. separate billing address) */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Honeypot — hidden from humans */
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Order form rows ---------- */
.order-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }

.order-row {
  display: grid;
  grid-template-columns: 1fr 120px 44px;
  gap: 12px;
  align-items: center;
}

.order-row select, .order-row input {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
}

.order-row .remove-row {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.order-row .remove-row:hover { color: #ff6b6b; border-color: #ff6b6b; }

.add-row-btn {
  background: transparent;
  border: 1px dashed var(--border);
  border-radius: 10px;
  color: var(--accent);
  padding: 12px;
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.add-row-btn:hover { border-color: var(--accent); background: rgba(79, 209, 255, 0.06); }

/* ---------- Newsletter strip ---------- */
.newsletter-strip {
  background: linear-gradient(120deg, rgba(79,209,255,0.09), rgba(122,92,255,0.09));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-inner h2 { font-size: 1.7rem; margin-bottom: 8px; }
.newsletter-inner p { color: var(--muted); }

.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }

.newsletter-form input {
  padding: 13px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  min-width: 240px;
}

.newsletter-form input:focus { outline: none; border-color: var(--accent); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.step .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 70px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 600px 300px at 50% -60px, rgba(79,209,255,0.1), transparent),
    var(--bg);
}

.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- Alerts / badges ---------- */
.notice {
  background: rgba(79, 209, 255, 0.07);
  border: 1px solid rgba(79, 209, 255, 0.25);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 30px;
}

.notice strong { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-grid h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--text); font-size: 0.92rem; text-decoration: none; }
.footer-grid a:hover { color: var(--accent); }

.footer-about p { color: var(--muted); font-size: 0.9rem; margin-top: 14px; max-width: 320px; }

.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.age-badge {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  margin-right: 10px;
}

/* ---------- Age gate ---------- */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 6, 10, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 460px;
  text-align: center;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.age-gate-box h2 { font-size: 1.6rem; margin-bottom: 12px; }
.age-gate-box p { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }
.age-gate-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Thank you ---------- */
.thanks-panel {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 90px 24px;
}

.thanks-panel .checkmark {
  width: 84px; height: 84px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #06060a;
  font-weight: 800;
}

.thanks-panel h1 { font-size: 2.1rem; margin-bottom: 14px; }
.thanks-panel p { color: var(--muted); margin-bottom: 34px; }

/* ---------- Contact info blocks ---------- */
.contact-block { text-align: center; }
.contact-block .icon { margin: 0 auto 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Collapse nav to the hamburger menu before it can crowd the logo */
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2, .steps, .form-grid { grid-template-columns: 1fr; }
  .form-panel { padding: 28px 20px; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 38px; }

  /* Hero: tighter spacing, smaller logo, thumb-friendly full-width buttons */
  .hero { padding: 64px 0 56px; }
  .hero-mark-wide { height: 58px; }
  .hero p.lead { font-size: 1.02rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .page-hero { padding: 48px 0 38px; }
  .page-hero .hero-mark { height: 32px; }

  /* 16px form text stops iPhones from zooming in when a field is tapped */
  .field input, .field select, .field textarea,
  .order-row select, .order-row input,
  .newsletter-form input { font-size: 16px; }

  /* Order line items: tighter grid so the product dropdown gets more room */
  .order-row { grid-template-columns: 1fr 78px 44px; gap: 8px; }

  /* Newsletter: stack the form full-width instead of squeezing on one line */
  .newsletter-form { width: 100%; flex-direction: column; }
  .newsletter-form input { min-width: 0; width: 100%; }
  .newsletter-form .btn { width: 100%; }

  /* Age gate: fit small screens, stack the buttons */
  .age-gate-box { padding: 34px 24px; }
  .age-gate-actions { flex-direction: column; }
  .age-gate-actions .btn { width: 100%; }

  /* Bigger tap target for the menu button */
  .nav-toggle { padding: 10px 12px; }
}

/* ============================================================
   PREMIUM MOTION LAYER
   Cinematic entrances, scroll reveals, marquee, stats, grain.
   ============================================================ */

/* Subtle film grain over the whole site */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Hero glow slowly breathes */
.hero::before { animation: glowBreathe 12s ease-in-out infinite alternate; }
@keyframes glowBreathe {
  from { opacity: 0.8; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.12); }
}

/* Staggered hero entrance (pure CSS, runs on load) */
.hero .container > * {
  animation: riseIn 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.hero .container > *:nth-child(1) { animation-delay: 0.1s; }
.hero .container > *:nth-child(2) { animation-delay: 0.25s; }
.hero .container > *:nth-child(3) { animation-delay: 0.4s; }
.hero .container > *:nth-child(4) { animation-delay: 0.55s; }
.hero .container > *:nth-child(5) { animation-delay: 0.7s; }
.hero .container > *:nth-child(6) { animation-delay: 0.9s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(30px); } }

/* Scroll cue at the bottom of the hero */
.scroll-cue {
  display: block;
  margin: 56px auto 0;
  width: max-content;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none !important;
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 42px;
  margin: 10px auto 0;
  background: linear-gradient(var(--accent), transparent);
  animation: cuePulse 2.2s ease-in-out infinite;
}
@keyframes cuePulse {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Header: tightens and deepens once you scroll */
.site-header { transition: box-shadow 0.4s, background 0.4s; }
.site-header.scrolled {
  background: rgba(8, 8, 10, 0.95);
  box-shadow: 0 1px 0 rgba(79, 209, 255, 0.18), 0 12px 40px rgba(0, 0, 0, 0.45);
}
.nav-wrap { transition: height 0.4s; }
.site-header.scrolled .nav-wrap { height: 60px; }

/* Marquee ticker */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 0;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 36s linear infinite;
}
.marquee span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 244, 246, 0.88);
  margin: 0 30px;
}
.marquee i { font-style: normal; color: var(--accent); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Stats band */
.stats-band {
  display: flex;
  justify-content: center;
  gap: clamp(36px, 9vw, 120px);
  flex-wrap: wrap;
  padding: 84px 24px;
  background:
    radial-gradient(ellipse 700px 300px at 50% 120%, rgba(122, 92, 255, 0.07), transparent 70%),
    var(--bg);
}
.stat-item { text-align: center; }
.stat-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-item span {
  display: block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Scroll reveals — hidden only when JS is available (html.js-anim) */
.js-anim .will-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-anim .will-reveal.in { opacity: 1; transform: translateY(0); }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero .container > *, .marquee-track, .hero::before, .scroll-cue::after {
    animation: none !important;
  }
  .js-anim .will-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
