/* ============================================================
   Purple Troll — full stylesheet (v2)
   Sections: topbar, tickers, hero (one-screen), scenes, crowd
   + new troll-ctas (JOIN US / FOLLOW), modal, float-buy, coin rain.
   Dropped: jokes corner, chart/monitor.
   ============================================================ */

/* ---- custom fonts ---- */
@font-face {
  font-family: 'TrollHand';
  src: url('fonts/HandwrittenHeading.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'TrollDoodle';
  src: url('fonts/HandwrittenDoodles-Regular.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'TrollNat';
  src: url('fonts/HandwrittenNat29.ttf') format('truetype');
  font-display: swap;
}

/* ---- design tokens ---- */
:root {
  --purple:        #B66DFF;
  --purple-bright: #D9A6FF;
  --purple-deep:   #7C3AED;
  --purple-darker: #4A1D8C;
  --purple-night:  #1a0530;

  --pink:          #FF5FBE;
  --pink-bright:   #FF8FD6;
  --pink-deep:     #C92E92;
  --pink-hot:      #FF3FA9;

  --lime:          #C4FF4F;
  --lime-bright:   #DCFF88;
  --yellow:        #FFE066;
  --yellow-bright: #FFF099;

  --cream:         #FBE9CC;
  --paper:         #FFF4E2;
  --ink:           #1B0B30;
  --ink-2:         #2D1450;
  --bg:            #1a0530;
  --bg-2:          #240a44;

  --shadow-strong: 0 6px 0 var(--ink);
  --shadow-soft:   0 12px 32px rgba(0,0,0,.4);

  --font-heading:  'TrollHand', 'Caveat Brush', cursive;
  --font-copy:     'TrollHand', 'TrollDoodle', 'Comic Sans MS', system-ui, sans-serif;
  --font-marker:   'TrollNat', 'TrollHand', cursive;
  --font-mono:     ui-monospace, 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-copy);
  font-weight: 400;
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--pink); color: var(--bg); }

/* ============================================================
   01 — TOPBAR + TICKERS
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 10px 16px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.35);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-coin {
  width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid var(--ink);
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple-deep) 100%);
  padding: 4px;
  object-fit: contain;
  box-shadow: 2px 3px 0 var(--ink), 0 0 18px rgba(255, 95, 190, 0.35);
  transform: rotate(-6deg);
  transition: transform .2s ease;
}
.brand:hover .brand-coin { transform: rotate(8deg) scale(1.06); }
.brand-word {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 32px; color: #fff;
  letter-spacing: -.5px;
  text-shadow: 2px 2px 0 var(--ink);
  line-height: 1;
}

.topbar-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; border-radius: 999px;
  border: 3px solid var(--ink);
  font-weight: 800; letter-spacing: .3px;
  font-size: 15px;
  background: #fff; color: var(--ink);
  cursor: pointer; user-select: none;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s;
  box-shadow: 0 4px 0 var(--ink);
  font-family: var(--font-heading);
}
.btn-buy {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
}
.topbar .btn-buy { font-size: 22px; padding: 7px 22px; line-height: 1.05; background: var(--yellow); color: var(--ink); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink); background: var(--pink-bright); }
.btn:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--ink); }
.buy-short { display: none; }
.buy-full  { display: inline; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--ink); color: #fff;
  border: 3px solid var(--ink);
  transition: transform .12s, background .12s;
  box-shadow: 0 4px 0 rgba(0,0,0,.5);
}
.icon-btn svg { width: 20px; height: 20px; fill: currentColor; }
.icon-btn:hover { transform: translateY(-2px); }
.icon-btn:active { transform: translateY(1px); box-shadow: 0 2px 0 rgba(0,0,0,.5); }
.icon-btn--tg { background: #29A5DE; border-color: var(--ink); }

/* ---- ticker bars ---- */
.ticker {
  background: var(--ink); color: #fff;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.ticker-track {
  display: inline-flex; gap: 36px; white-space: nowrap;
  padding: 9px 0;
  font-family: var(--font-heading);
  font-weight: 700; font-style: italic;
  letter-spacing: 1px; font-size: 18px;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
  color: var(--yellow-bright);
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-jokes {
  background: linear-gradient(90deg, var(--purple-deep) 0%, var(--pink-deep) 50%, var(--purple-deep) 100%);
}
.ticker-jokes .ticker-track {
  font-size: 17px;
  letter-spacing: .3px;
  text-transform: none;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-copy);
}
.ticker-watch  { background: var(--pink); color: var(--ink); }
.ticker-watch .ticker-track { color: var(--ink); }

/* ============================================================
   02 — HERO (cosmic background image/video + wordmark + copy)
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 102px);
  background: #0a021c;
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

/* media layer — image (picture) + lazy-loaded looping video, full bleed */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media-img,
.hero-media-img img,
.hero-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media-video {
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-media-video.is-loaded { opacity: 1; }

/* veil — vignette + left-side dark gradient so the copy reads cleanly */
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 2, 28, 0.85) 0%, rgba(10, 2, 28, 0.55) 38%, rgba(10, 2, 28, 0.15) 60%, rgba(10, 2, 28, 0) 80%),
    radial-gradient(ellipse 60% 80% at 25% 50%, rgba(124, 58, 237, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(10, 2, 28, 0.6) 0%, transparent 70%);
}

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 600px;
  padding: clamp(40px, 5vw, 70px) clamp(20px, 4vw, 56px);
  margin: 0 auto 0 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: #fff;
  background: rgba(255, 95, 190, 0.18);
  border: 2px dashed rgba(255, 143, 214, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transform: rotate(-2deg);
}
.hero-eyebrow-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime-bright);
  box-shadow: 0 0 12px var(--lime), 0 0 22px rgba(196, 255, 79, 0.6);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}

/* Wordmark image (chrome purple "PURPLE TROLL" lockup) */
.hero-wordmark-wrap {
  margin: 0;
  display: flex;
  align-items: flex-start;
  width: 100%;
  filter: drop-shadow(0 12px 40px rgba(255, 95, 190, 0.35)) drop-shadow(0 0 80px rgba(217, 166, 255, 0.25));
}
.hero-wordmark {
  width: clamp(280px, 38vw, 520px);
  height: auto;
  display: block;
  /* drop the black background of the wordmark PNG so the chrome lettering reads on the cosmic bg */
  mix-blend-mode: screen;
  user-select: none;
  pointer-events: none;
  animation: wordmark-float 5s ease-in-out infinite;
}
@keyframes wordmark-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.hero-desc {
  font-family: var(--font-copy);
  font-size: clamp(17px, 1.6vw, 21px);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.55;
  max-width: 38ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.hero-desc em {
  font-style: italic;
  color: var(--pink-bright);
  text-shadow: 0 0 18px rgba(255, 95, 190, 0.6);
  font-weight: 700;
}

/* ---- NEW CA STRIP — terminal-style ---- */
.ca-strip {
  display: inline-flex;
  align-items: stretch;
  margin-top: 4px;
  max-width: min(520px, 100%);
  width: 100%;
  background: rgba(8, 2, 18, 0.95);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.4px;
  cursor: pointer;
  text-align: left;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s;
  box-shadow:
    0 6px 0 var(--ink),
    0 0 0 1px rgba(196, 255, 79, 0.15) inset,
    0 0 28px rgba(196, 255, 79, 0.18);
  overflow: hidden;
  position: relative;
  outline: none;
}
.ca-strip::before {
  /* scanline shimmer */
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 2px,
    rgba(196, 255, 79, 0.04) 2px,
    rgba(196, 255, 79, 0.04) 3px
  );
  pointer-events: none;
  mix-blend-mode: screen;
}
.ca-strip:hover  { transform: translateY(-2px); box-shadow: 0 8px 0 var(--ink), 0 0 36px rgba(196, 255, 79, 0.35); border-color: var(--lime); }
.ca-strip:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--ink); }
.ca-strip:focus-visible { box-shadow: 0 6px 0 var(--ink), 0 0 0 3px var(--lime); }
.ca-strip.copied { background: rgba(196, 255, 79, 0.12); border-color: var(--lime); }

.ca-strip-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px 0 12px;
  background: rgba(255, 255, 255, 0.05);
  border-right: 2px dashed rgba(196, 255, 79, 0.3);
  flex-shrink: 0;
}
.ca-strip-led {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime), 0 0 16px rgba(196, 255, 79, 0.5);
  animation: led-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes led-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.8); }
}
.ca-strip-label {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--lime-bright);
}
.ca-strip-stat {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 1.5px;
}

.ca-strip-bar {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  position: relative;
}
.ca-strip-track {
  display: inline-block;
  white-space: nowrap;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.ca-strip .ca-value {
  display: inline-block;
}

.ca-strip-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--pink-hot);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 1px;
  border-left: 2px solid var(--ink);
  text-transform: uppercase;
}
.ca-strip-action-arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 18px;
}
.ca-strip:hover .ca-strip-action { background: var(--pink-bright); color: var(--ink); }

/* hero buttons — totally different look from old hero-link chips */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 0 6px 0 var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform .14s ease, box-shadow .14s ease, background .14s;
}
.hero-btn:hover  { transform: translateY(-3px); box-shadow: 0 9px 0 var(--ink); }
.hero-btn:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--ink); }
.hero-btn--primary {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--pink) 100%);
  color: var(--ink);
  font-size: 24px;
  padding: 16px 26px;
  box-shadow:
    0 8px 0 var(--ink),
    0 0 36px rgba(255, 95, 190, 0.55),
    0 0 64px rgba(255, 95, 190, 0.30);
  animation: btn-glow 2.6s ease-in-out infinite;
}
.hero-btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 11px 0 var(--ink), 0 0 44px rgba(255, 95, 190, 0.7);
}
@keyframes btn-glow {
  0%, 100% { box-shadow: 0 8px 0 var(--ink), 0 0 36px rgba(255, 95, 190, 0.55), 0 0 64px rgba(255, 95, 190, 0.30); }
  50%      { box-shadow: 0 8px 0 var(--ink), 0 0 48px rgba(255, 95, 190, 0.78), 0 0 88px rgba(217, 166, 255, 0.42); }
}
.hero-btn-arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-size: 18px;
  font-weight: 800;
}
.hero-btn--ghost {
  background: rgba(27, 11, 48, 0.55);
  color: #fff;
  border: 3px dashed rgba(217, 166, 255, 0.6);
  box-shadow: 0 6px 0 rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
}
.hero-btn--ghost:hover {
  background: rgba(124, 58, 237, 0.4);
  border-style: solid;
  border-color: var(--pink-bright);
  box-shadow: 0 9px 0 rgba(0,0,0,.5), 0 0 24px rgba(255, 95, 190, 0.4);
}
.hero-btn-ico { width: 22px; height: 22px; object-fit: contain; }

.hero-scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: lowercase;
  text-decoration: none;
  z-index: 3;
  animation: scroll-bounce 2.4s ease-in-out infinite;
  transition: color .2s;
}
.hero-scroll-cue:hover { color: var(--pink-bright); }
@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* ============================================================
   03 — SCENE (full-bleed image + sprite + optional CTA)
   ============================================================ */
.scene {
  position: relative;
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-2);
}
.scene-bg {
  width: 100%; display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1) brightness(0.85);
}
.scene-dad {
  position: absolute;
  bottom: 6%;
  width: clamp(180px, 26vw, 320px);
  filter: drop-shadow(5px 8px 0 rgba(0,0,0,.55));
  user-select: none;
}

.lair-troll {
  left: 4%; bottom: 6%;
  width: clamp(180px, 24vw, 340px);
  animation: lair-bob 5s ease-in-out infinite;
  cursor: pointer;
  pointer-events: auto;
}
@keyframes lair-bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-10px) rotate(3deg); }
}

.court-troll {
  right: 8%; bottom: 8%;
  width: clamp(200px, 28vw, 400px);
  transform-origin: 50% 80%;
  animation: court-sway 6s ease-in-out infinite;
  cursor: pointer;
  pointer-events: auto;
}
@keyframes court-sway {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}

.crowd-wojak {
  position: absolute;
  filter: drop-shadow(4px 6px 0 rgba(0,0,0,.5));
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
  z-index: 1;
  transition: transform .2s ease;
}
.crowd-wojak:hover { transform: translateY(-5px) rotate(-4deg); }
.crowd-w1 { left:  3%; bottom:  4%; width: clamp(120px, 17vw, 230px); z-index: 2; transform: rotate(-4deg); }
.crowd-w2 { left: 14%; bottom:  6%; width: clamp(110px, 14vw, 195px); z-index: 1; transform: rotate(3deg); }
.crowd-w3 { left: 25%; bottom:  3%; width: clamp(120px, 16vw, 220px); z-index: 2; transform: rotate(-2deg); }
.crowd-w4 { right: 25%; bottom: 3%; width: clamp(120px, 16vw, 220px); z-index: 2; transform: rotate(4deg); }
.crowd-w5 { right: 12%; bottom: 5%; width: clamp(110px, 14vw, 195px); z-index: 1; transform: rotate(-3deg); }
.crowd-w6 { right:  2%; bottom: 4%; width: clamp(120px, 17vw, 230px); z-index: 2; transform: rotate(5deg); }
.crowd-w7 { left: 50%; bottom:  2%; width: clamp(140px, 18vw, 250px); transform: translateX(-50%); z-index: 3; }
.crowd-w7:hover { transform: translateX(-50%) translateY(-5px) rotate(-3deg); }

.cta {
  position: absolute;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 40px);
  letter-spacing: 1px;
  border: 3px solid var(--ink); border-radius: 22px;
  cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 0 var(--ink);
}
.cta:hover  { transform: translate(-2px, -3px); box-shadow: 0 11px 0 var(--ink); }
.cta:active { transform: translate(0, 4px);     box-shadow: 0 4px 0 var(--ink); }
.cta-buy { right: 8%; bottom: 18%; background: var(--yellow); color: var(--ink); text-shadow: 2px 2px 0 #fff; }

/* ============================================================
   04 — NEW JOIN US / FOLLOW TROLL-CTAs (sticker-pill combo)
   ============================================================ */
.troll-ctas {
  position: absolute;
  left: 50%; top: 62%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 5;
  flex-wrap: nowrap;
}

.troll-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  height: 78px;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 18px;
  font-family: var(--font-heading);
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  position: relative;
  isolation: isolate;
}
.troll-cta::before {
  /* glow underglow */
  content: '';
  position: absolute;
  inset: -10px -10px -14px -10px;
  background: radial-gradient(ellipse at center, rgba(255, 95, 190, 0.55) 0%, transparent 70%);
  filter: blur(18px);
  opacity: .9;
  z-index: -1;
  pointer-events: none;
  transition: opacity .15s;
}
.troll-cta--tg {
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-bright) 100%);
  box-shadow: 0 10px 0 var(--ink), 0 0 24px rgba(196, 255, 79, 0.4);
  transform: rotate(-3deg);
}
.troll-cta--tg::before {
  background: radial-gradient(ellipse at center, rgba(196, 255, 79, 0.6) 0%, transparent 70%);
}
.troll-cta--x {
  background: linear-gradient(135deg, var(--pink-hot) 0%, var(--purple) 100%);
  color: #fff;
  box-shadow: 0 10px 0 var(--ink), 0 0 24px rgba(255, 95, 190, 0.45);
  transform: rotate(3deg);
}
.troll-cta--x::before {
  background: radial-gradient(ellipse at center, rgba(255, 95, 190, 0.7) 0%, transparent 70%);
}
.troll-cta:hover  { transform: rotate(0deg) translateY(-4px); box-shadow: 0 14px 0 var(--ink), 0 0 40px rgba(255, 95, 190, 0.6); }
.troll-cta:hover::before { opacity: 1.4; }
.troll-cta:active { transform: rotate(0deg) translateY(4px); box-shadow: 0 4px 0 var(--ink); }

.troll-cta-disc {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px;
  background: var(--ink);
  color: var(--lime);
  border-right: 4px solid var(--ink);
  border-radius: 14px 0 0 14px;
}
.troll-cta--x .troll-cta-disc {
  background: var(--ink);
  color: var(--pink-hot);
}
.troll-cta-disc svg { width: 30px; height: 30px; }

.troll-cta-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 18px;
  gap: 1px;
}
.troll-cta-top {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  line-height: 1;
  font-style: italic;
}
.troll-cta-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.75;
  text-transform: uppercase;
}

.troll-cta-arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px;
  font-size: 28px;
  font-weight: 800;
  font-style: italic;
  border-left: 3px dashed rgba(27, 11, 48, 0.4);
}
.troll-cta--x .troll-cta-arrow { border-left-color: rgba(255, 255, 255, 0.35); }

/* ============================================================
   08 — FLOAT BUY (sticky bottom-right)
   ============================================================ */
.float-buy {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px 11px 11px;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 6px 0 var(--ink), 0 12px 28px rgba(0,0,0,.35);
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 1px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.float-buy:hover  { transform: translateY(-2px); box-shadow: 0 8px 0 var(--ink), 0 14px 32px rgba(0,0,0,.4); }
.float-buy:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--ink); }
.float-buy-arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-size: 16px;
  font-weight: 800;
}

/* ============================================================
   09 — COIN LAYER (rain of trolls)
   ============================================================ */
.coin-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 70;
  overflow: hidden;
}
.coin {
  position: absolute;
  width: 28px; height: 28px;
  background: url('assets/cutouts/logo-bg.webp') center center / contain no-repeat;
  filter: drop-shadow(2px 3px 0 rgba(0,0,0,.45));
  animation: coin-fall var(--d, 2s) cubic-bezier(.4, .8, .6, 1) forwards;
  --xt: 0;
  --rt: 360deg;
}
@keyframes coin-fall {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(var(--xt), 90vh) rotate(var(--rt)); opacity: 0; }
}

/* ============================================================
   10 — "COMING SOON" MODAL
   ============================================================ */
.cs-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.cs-modal[hidden] { display: none; }
.cs-backdrop {
  position: absolute; inset: 0;
  background: rgba(26, 5, 48, 0.85);
  backdrop-filter: blur(8px);
}
.cs-card {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 24px 28px 22px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 14px 0 var(--ink), 0 24px 60px rgba(0,0,0,.5);
  transform: rotate(-1.5deg);
  font-family: var(--font-copy);
}
.cs-close {
  position: absolute;
  top: 10px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--ink);
  color: var(--ink);
  font-size: 22px; font-weight: 800;
  cursor: pointer;
  box-shadow: 0 3px 0 var(--ink);
  line-height: 1;
}
.cs-close:hover { background: var(--pink-bright); }
.cs-coin {
  width: 86px; height: 86px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple-deep) 100%);
  border: 4px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 0 var(--ink);
}
.cs-coin img { width: 74%; height: 74%; object-fit: contain; }
.cs-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--purple-deep);
  margin: 0;
}
.cs-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.4vw, 44px);
  margin: 6px 0 10px;
  color: var(--ink);
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
}
.cs-body {
  font-size: 16px;
  margin: 0 auto 16px;
  color: var(--ink-2);
  line-height: 1.55;
}
.cs-cta-row {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px;
  margin-bottom: 8px;
}
.cs-cta {
  font-family: var(--font-heading);
  background: var(--pink); color: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 18px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 0 var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
}
.cs-cta:hover  { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink); }
.cs-cta:active { transform: translateY(2px);  box-shadow: 0 2px 0 var(--ink); }
.cs-cta--ghost { background: #fff; color: var(--ink); }
.cs-cta--ghost:hover { background: var(--yellow-bright); }
.cs-foot {
  font-size: 12px;
  opacity: 0.7;
  margin: 0;
}

/* ============================================================
   11 — RESPONSIVE
   ============================================================ */
@media (max-width: 760px) {
  /* Hero on phone: media (mobile poster) anchors the top, copy sits below */
  .hero {
    display: block;
    min-height: auto;
  }
  .hero-media,
  .hero-media-img,
  .hero-media-img img,
  .hero-media-video {
    position: relative;
    inset: auto;
    height: auto;
    width: 100%;
  }
  .hero-media-img img {
    /* the mobile poster includes copy space — render it at natural aspect */
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: center top;
    max-height: 78vh;
  }
  /* Mobile video — portrait, fills behind the content */
  .hero-media-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero-veil {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 2, 28, 0.05) 50%, rgba(10, 2, 28, 0.85) 92%, var(--bg) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 4;
    margin: -38vh auto 0;
    padding: 0 22px 40px;
    align-items: center;
    text-align: center;
    max-width: 560px;
  }
  .hero-wordmark-wrap { justify-content: center; }
  .hero-wordmark { width: clamp(220px, 70vw, 360px); }
  .hero-desc { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-scroll-cue { display: none; }

  .troll-ctas { flex-direction: column; gap: 14px; top: 56%; }

  /* About + Howto stack tighter on tablet */
  .info-about .info-inner { min-height: auto; }
  .info-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .howto-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .buy-full { display: none; }
  .buy-short { display: inline; }
  .topbar { padding: 8px 12px; }
  .brand-word { font-size: 26px; }
  .brand-coin { width: 40px; height: 40px; }
  .ticker-track { font-size: 15px; gap: 24px; }
  .hero-content { margin-top: -36vh; padding: 0 16px 32px; }
  .hero-desc { font-size: 16px; }
  .hero-btn { font-size: 17px; padding: 11px 16px; }
  .hero-btn--primary { font-size: 20px; padding: 13px 20px; }
  .scene-bg { aspect-ratio: 4 / 3; }
  .cta { padding: 11px 20px; }
  .cta-buy { right: 50%; transform: translateX(50%); bottom: 8%; }
  .cta-buy:hover { transform: translateX(50%) translateY(-3px); }
  .float-buy { font-size: 14px; padding: 9px 14px 9px 9px; }
  .float-buy img { width: 28px; height: 28px; }
  .troll-cta { height: 68px; }
  .troll-cta-disc { width: 56px; }
  .troll-cta-disc svg { width: 24px; height: 24px; }
  .troll-cta-top { font-size: 20px; }
  .troll-cta-sub { font-size: 10px; letter-spacing: 1.5px; }
  .troll-cta-arrow { width: 38px; font-size: 22px; }
  .cs-card { padding: 20px 18px 18px; transform: rotate(0deg); }

  /* About + Howto on phone */
  .info-card { transform: rotate(0deg); padding: 22px 20px; }
  .howto-step { transform: rotate(0deg) !important; }
  .howto-steps { grid-template-columns: 1fr; }
  .ca-strip { font-size: 11px; flex-wrap: wrap; }
  .ca-strip-head { width: 100%; padding: 8px 12px; border-right: 0; border-bottom: 2px dashed rgba(196, 255, 79, 0.3); justify-content: flex-start; }
  .ca-strip-bar { padding: 6px 12px; }
  .ca-strip-action { padding: 6px 12px; font-size: 13px; border-left: 0; border-top: 2px solid var(--ink); width: 100%; justify-content: center; }
}

/* ============================================================
   12 — PAPARAZZI FLASH (camera-flash bursts)
   ============================================================ */
.papz {
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.5) 25%, transparent 60%);
  filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  animation: papz-flash 7s ease-out infinite;
  will-change: opacity, transform;
}
@keyframes papz-flash {
  0%, 92%, 100% { opacity: 0; transform: scale(0.6); }
  93%   { opacity: 1; transform: scale(1.4); }
  93.5% { opacity: 0.85; transform: scale(1.2); }
  94%   { opacity: 0.95; transform: scale(1.6); }
  96%   { opacity: 0; transform: scale(2); }
}

/* hero flashes — staggered across the hero edges */
.papz-1 { top:  8%; left: 6%;  animation-delay: 0.4s; animation-duration: 5.2s; }
.papz-2 { top:  3%; right: 22%; animation-delay: 2.1s; animation-duration: 6.4s; width: 80px; height: 80px; }
.papz-3 { top: 48%; left: 2%;  animation-delay: 3.6s; animation-duration: 5.8s; width: 90px; height: 90px; }
.papz-4 { bottom: 16%; right: 4%; animation-delay: 1.2s; animation-duration: 6.8s; width: 120px; height: 120px; }
.papz-5 { bottom: 8%; left: 30%; animation-delay: 4.3s; animation-duration: 5.4s; }
.papz-6 { top: 28%; right: 8%; animation-delay: 5.5s; animation-duration: 7.2s; width: 70px; height: 70px; }
.papz-7 { top: 64%; right: 38%; animation-delay: 2.8s; animation-duration: 6.0s; width: 60px; height: 60px; }

/* info section flashes */
.papz-about-1 { top: 14%; left: 8%;  animation-delay: 1.6s; animation-duration: 6.0s; z-index: 5; }
.papz-about-2 { top: 6%;  right: 6%; animation-delay: 3.2s; animation-duration: 5.4s; z-index: 5; width: 80px; height: 80px; }
.papz-about-3 { bottom: 18%; right: 18%; animation-delay: 4.8s; animation-duration: 6.8s; z-index: 5; }
.papz-about-4 { bottom: 8%;  left: 12%; animation-delay: 2.4s; animation-duration: 5.8s; z-index: 5; width: 90px; height: 90px; }

.papz-howto-1 { top: 8%; right: 12%; animation-delay: 0.8s; animation-duration: 6.4s; z-index: 5; }
.papz-howto-2 { bottom: 12%; left: 6%; animation-delay: 3.6s; animation-duration: 5.6s; z-index: 5; width: 80px; height: 80px; }
.papz-howto-3 { top: 52%; right: 4%;  animation-delay: 5.0s; animation-duration: 7.0s; z-index: 5; }

/* ============================================================
   13 — INFO SECTIONS (About + How to Buy)
   ============================================================ */
.info {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 3px solid var(--ink);
  background: var(--bg);
}
.info-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.05) brightness(0.55);
  z-index: 0;
}
.info-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(26, 5, 48, 0.65) 0%, rgba(26, 5, 48, 0.92) 100%),
    linear-gradient(180deg, rgba(26, 5, 48, 0.55) 0%, rgba(26, 5, 48, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}
.info-overlay--howto {
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(74, 29, 140, 0.55) 0%, rgba(26, 5, 48, 0.95) 100%),
    linear-gradient(180deg, rgba(26, 5, 48, 0.75) 0%, rgba(26, 5, 48, 0.92) 100%);
}

.info-inner {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 7vw, 110px) clamp(20px, 4vw, 40px);
  color: #fff;
}

.info-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: #fff;
  background: rgba(255, 95, 190, 0.18);
  border: 2px dashed rgba(255, 143, 214, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transform: rotate(-2deg);
  margin-bottom: 14px;
}
.info-eyebrow-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime-bright);
  box-shadow: 0 0 10px var(--lime), 0 0 20px rgba(196, 255, 79, 0.6);
  animation: pulse 1.6s ease-in-out infinite;
}

.info-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  margin: 0 0 18px;
  color: #fff;
  text-shadow:
    4px 4px 0 var(--purple-deep),
    7px 7px 0 var(--ink),
    0 0 36px rgba(255, 95, 190, 0.4);
  letter-spacing: -1px;
}
.info-title em {
  font-style: italic;
  background: linear-gradient(180deg, var(--pink-bright) 0%, var(--pink) 60%, var(--purple-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(3px 3px 0 var(--ink));
}
.info-title--center { text-align: center; }

.info-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-lede {
  font-family: var(--font-copy);
  font-size: clamp(18px, 2.2vw, 24px);
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}

/* ---- ABOUT card layout ---- */
.info-about .info-inner {
  display: flex;
  align-items: center;
  min-height: clamp(540px, 75vh, 720px);
}
.info-inner--split {
  display: grid !important;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

/* About — featured portrait of the previous hero */
.info-portrait {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-left: auto;
}
.info-portrait-aura {
  position: absolute;
  inset: -8% -8% -8% -8%;
  background:
    radial-gradient(ellipse 60% 70% at 50% 55%, rgba(255, 95, 190, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 65%, rgba(217, 166, 255, 0.32) 0%, transparent 70%);
  filter: blur(36px);
  z-index: 0;
  animation: portrait-aura 5.5s ease-in-out infinite;
}
@keyframes portrait-aura {
  0%, 100% { transform: scale(1); opacity: .9; }
  50%      { transform: scale(1.06); opacity: 1; }
}
.info-portrait-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(6px 10px 0 rgba(0,0,0,0.55))
    drop-shadow(0 0 30px rgba(255, 95, 190, 0.4))
    drop-shadow(0 0 70px rgba(217, 166, 255, 0.3));
  animation: portrait-bob 4.6s ease-in-out infinite;
  transform-origin: 50% 80%;
  user-select: none;
}
@keyframes portrait-bob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}
.info-portrait-tag {
  position: absolute;
  top: 5%; right: -4%;
  z-index: 2;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  padding: 6px 12px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  transform: rotate(8deg);
  box-shadow: 3px 4px 0 var(--ink);
  text-transform: uppercase;
}

.info-card {
  max-width: 720px;
  background: rgba(20, 6, 42, 0.72);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow:
    0 14px 0 var(--ink),
    0 24px 60px rgba(0,0,0,0.55),
    0 0 60px rgba(124, 58, 237, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: rotate(-0.8deg);
}
.info-body {
  font-family: var(--font-copy);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin: 0 0 14px;
}
.info-body strong {
  color: var(--yellow-bright);
  font-weight: 700;
  text-shadow: 2px 2px 0 var(--ink);
}
.info-hl {
  color: var(--pink-bright);
  font-weight: 700;
  text-shadow: 1px 1px 0 var(--ink);
}
.info-hl-2 {
  color: var(--lime-bright);
  font-weight: 700;
  text-shadow: 1px 1px 0 var(--ink);
}

.info-stats {
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 2px dashed rgba(255, 143, 214, 0.35);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.info-stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.info-stats b {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1;
  color: #fff;
  text-shadow: 3px 3px 0 var(--purple-deep), 4px 4px 0 var(--ink);
  font-style: italic;
}
.info-stats span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

/* ---- HOWTO 4-step grid ---- */
.howto-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.howto-step {
  position: relative;
  background: rgba(20, 6, 42, 0.78);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 28px 22px 24px;
  box-shadow:
    0 10px 0 var(--ink),
    0 18px 40px rgba(0,0,0,0.55),
    0 0 40px rgba(124, 58, 237, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.howto-step:nth-child(1) { transform: rotate(-1.5deg); }
.howto-step:nth-child(2) { transform: rotate(1deg); }
.howto-step:nth-child(3) { transform: rotate(-1deg); }
.howto-step:nth-child(4) { transform: rotate(1.5deg); }
.howto-step:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow:
    0 14px 0 var(--ink),
    0 26px 50px rgba(0,0,0,0.55),
    0 0 60px rgba(255, 95, 190, 0.35);
}
.howto-step-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.85;
  background: linear-gradient(180deg, var(--pink-bright) 0%, var(--pink) 60%, var(--purple-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(3px 3px 0 var(--ink));
  margin-bottom: 14px;
}
.howto-step-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 0 0 10px;
  color: var(--yellow-bright);
  text-shadow: 2px 2px 0 var(--ink);
  text-transform: lowercase;
}
.howto-step-body {
  font-family: var(--font-copy);
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin: 0;
}
.howto-step-body em { color: var(--pink-bright); font-style: italic; }

.howto-cta-row {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 4vw, 56px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow, .hero-troll-aura, .hero-troll-img, .hero-eyebrow-dot,
  .info-eyebrow-dot, .lair-troll, .court-troll, .ticker-track, .coin,
  .hero-btn--primary, .hero-scroll-cue, .papz, .ca-strip-led {
    animation: none !important;
  }
}

/* ============================================================
   14 — END-OF-FILE RESPONSIVE OVERRIDES
   (placed last so they beat the base section rules above)
   ============================================================ */
@media (max-width: 960px) {
  .info-inner--split {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .info-portrait {
    max-width: 320px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    order: -1;
  }
  .info-about .info-inner { min-height: auto !important; padding-top: clamp(40px, 7vw, 70px); padding-bottom: clamp(40px, 7vw, 70px); }
  .howto-steps { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
}

@media (max-width: 600px) {
  /* About: shrink portrait, drop rotation */
  .info-portrait { max-width: 240px; }
  .info-portrait-img { animation: none; transform: rotate(-2deg); }
  .info-card { transform: rotate(0deg); padding: 22px 20px; }
  .info-portrait-tag { font-size: 12px; padding: 4px 9px; top: 2%; right: -2%; }

  /* Howto: single column compact cards */
  .howto-steps { grid-template-columns: 1fr !important; gap: 12px !important; }
  .howto-step {
    transform: rotate(0deg) !important;
    padding: 18px 18px 16px !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 0 var(--ink), 0 12px 28px rgba(0,0,0,0.4) !important;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 14px;
    align-items: start;
  }
  .howto-step-num {
    font-size: 40px !important;
    margin-bottom: 0 !important;
    grid-row: 1 / 3;
    align-self: center;
    line-height: 1;
  }
  .howto-step-title {
    font-size: 19px !important;
    margin: 2px 0 4px !important;
  }
  .howto-step-body {
    grid-column: 2 / 3;
    font-size: 14px !important;
    line-height: 1.45;
  }
  .howto-cta-row { margin-top: 24px !important; }
  .info-inner { padding: 48px 18px !important; }
  .info-title { font-size: clamp(40px, 11vw, 60px) !important; margin-bottom: 12px !important; }
  .info-head { margin-bottom: 28px !important; }
  .info-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
}
