/* ============================================================
   PokeGem — design system
   Dark neon hero → clean light body
   ============================================================ */

:root {
  /* brand */
  --violet:        #7C3AED;
  --violet-bright: #A855F7;
  --magenta:       #D946EF;
  --magenta-glow:  #E879F9;
  --cyan:          #22D3EE;
  --cyan-soft:     #67E8F9;
  --lilac:         #C4B5FD;

  /* dark surfaces */
  --ink:    #0A0613;
  --ink-2:  #120A24;
  --ink-3:  #1A0F33;

  /* light surfaces */
  --paper:  #FFFFFF;
  --tint:   #F7F5FF;
  --line:   #EBE6F8;

  /* text */
  --text:   #1A1326;
  --muted:  #6B6480;
  --muted-d:#A99FC4;     /* muted on dark */
  --white:  #FFFFFF;

  /* gradients */
  --grad:   linear-gradient(120deg, var(--violet-bright) 0%, var(--magenta) 55%, var(--cyan) 120%);
  --grad-btn: linear-gradient(120deg, var(--violet) 0%, var(--magenta) 100%);

  --maxw: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -28px rgba(60, 20, 110, .35);
  --shadow-glow: 0 0 0 1px rgba(217,70,239,.25), 0 20px 60px -20px rgba(217,70,239,.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; margin: 0; letter-spacing: -.02em; }

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

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: 760px; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .95rem;
  padding: .72em 1.35em; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: .92em 1.7em; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad-btn); color: #fff;
  box-shadow: 0 10px 30px -8px rgba(217,70,239,.55), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover { box-shadow: 0 16px 40px -8px rgba(217,70,239,.7), inset 0 1px 0 rgba(255,255,255,.25); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--violet-bright); color: var(--violet); }
/* nav AI Grader button: keep the hover accent (violet) on all the time */
.nav__actions .btn--ghost { border-color: var(--violet-bright); color: var(--violet); }

.btn--glass {
  background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }

/* ---------- eyebrow / tags ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .82rem; font-weight: 500; color: var(--lilac);
  background: rgba(168,85,247,.12); border: 1px solid rgba(168,85,247,.3);
  padding: .4em .9em; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-soft); box-shadow: 0 0 10px var(--cyan); }

.tag {
  display: inline-block; font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--violet); background: rgba(124,58,237,.08);
  padding: .35em .85em; border-radius: 999px; margin-bottom: 18px;
}
.tag--light { color: var(--lilac); background: rgba(196,181,253,.14); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px -20px rgba(60,20,110,.4);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s;
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 34px; height: 34px; filter: drop-shadow(0 0 10px rgba(217,70,239,.55)); }
.brand__name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--text); letter-spacing: -.01em; }
.brand__accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav__links { display: flex; gap: 26px; margin-left: 14px; margin-right: auto; }
.nav__links a { font-size: .92rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--violet); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

/* scrolled state — light glass */
.nav.scrolled { background: rgba(255,255,255,.82); backdrop-filter: blur(14px); border-bottom-color: var(--line); box-shadow: 0 8px 30px -20px rgba(60,20,110,.4); }
.nav.scrolled .brand__name { color: var(--text); }
.nav.scrolled .nav__links a { color: var(--muted); }
.nav.scrolled .nav__links a:hover { color: var(--violet); }
.nav.scrolled .nav__burger span { background: var(--text); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px; padding: 12px 24px 22px;
  background: rgba(12,6,22,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__mobile a { color: #fff; padding: 12px 4px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.07); }
.nav__mobile a.btn { border: 0; margin-top: 12px; color: #fff; }
.nav__mobile.show { display: flex; }

/* ============================================================
   HERO (dark)
   ============================================================ */
.hero {
  position: relative; background: var(--ink); color: #fff;
  padding: 132px 0 64px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.hero__glow--1 { width: 480px; height: 480px; background: var(--violet); top: -140px; left: -80px; }
.hero__glow--2 { width: 520px; height: 520px; background: var(--magenta); top: -100px; right: -120px; opacity: .42; }
.hero__glow--3 { width: 360px; height: 360px; background: var(--cyan); bottom: -160px; left: 38%; opacity: .25; }

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
/* Let both columns shrink below their content's intrinsic width — without this
   the float-cluster's fixed 460px forces the grid wider than a phone viewport
   and clips the hero copy off the right edge. */
.hero__inner > * { min-width: 0; }
.hero__title { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 700; margin-bottom: 22px; }
.hero__sub { font-size: 1.12rem; color: #d9d2ee; max-width: 30em; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__platforms { margin-top: 38px; }
.hero__platforms-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-d); margin-bottom: 12px; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  font-size: .82rem; font-weight: 500; color: #d9d2ee;
  padding: .42em .9em; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}

/* hero visual */
.hero__visual { position: relative; display: flex; flex-direction: column; align-items: center; min-width: 0; overflow: hidden; }
.gem-orb { position: relative; width: 200px; margin: 0 auto -42px; z-index: 2; }
.gem-orb__img { width: 200px; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 12px 40px rgba(217,70,239,.6)); }
.gem-orb__halo {
  position: absolute; inset: -30% ; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,70,239,.5), transparent 62%);
  filter: blur(20px); animation: pulse 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pulse { 0%,100% { opacity: .55; transform: scale(.95);} 50% { opacity: .85; transform: scale(1.05);} }

/* ---------- glass dashboard card ---------- */
.glass-card {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 22px; backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glow); width: 100%; max-width: 400px;
}
.float-card { animation: float 7s ease-in-out infinite; }

/* ---------- hero alert embed (Discord-style restock alert) ---------- */
.alert-embed { padding: 0; overflow: hidden; position: relative; background: rgba(13,9,26,.66); border-color: rgba(255,255,255,.1); }
.alert-embed__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: #3BA55D; }
.alert-embed__main { padding: 16px 20px 15px 22px; }
.alert-embed__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.alert-embed__head { display: flex; align-items: center; gap: 9px; }
.ae-spark { width: 18px; height: 18px; flex: none; filter: drop-shadow(0 0 4px rgba(255,194,32,.5)); }
.alert-embed__status { display: inline-flex; align-items: center; gap: 7px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .95rem; color: #fff; }
.ae-dot { width: 9px; height: 9px; flex: none; border-radius: 50%; background: #3BA55D; }
.ae-dot--green { background: #43DC80; box-shadow: 0 0 8px rgba(67,220,128,.8); }
.alert-embed__thumb { width: 52px; height: 52px; flex: none; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); background: #fff; }
.alert-embed__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.alert-embed__title { display: block; margin: 12px 0 14px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.02rem; line-height: 1.25; color: #6FB8FF; }
.alert-embed__title:hover { text-decoration: underline; }
.alert-embed__fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px 10px; margin-bottom: 14px; }
.ae-field { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ae-field__k { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .74rem; color: #fff; }
.ae-field__v { font-size: .82rem; line-height: 1.3; color: var(--muted-d); }
.ae-instock { display: inline-flex; align-items: center; gap: 6px; color: #43DC80; font-weight: 600; }
.alert-embed__block { margin-bottom: 12px; }
.alert-embed__sig { margin: 3px 0 0; font-size: .82rem; line-height: 1.4; color: var(--muted-d); }
.alert-embed__links { margin: 3px 0 0; font-size: .82rem; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.alert-embed__links a { color: #6FB8FF; }
.alert-embed__links a:hover { text-decoration: underline; }
.alert-embed__links span { color: rgba(255,255,255,.25); }
.alert-embed__foot { margin: 14px 0 0; font-size: .72rem; color: rgba(217,210,235,.55); }
/* Solid (non-glass) variant for use on light sections, e.g. #alert */
.alert-embed--solid {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  box-shadow: 0 34px 80px -38px rgba(60,20,110,.7);
  color: #fff;
  max-width: 100%;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.glass-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.glass-card__title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .95rem; color: #fff; }

.pill { display: inline-flex; align-items: center; gap: .45em; font-size: .74rem; font-weight: 600; padding: .3em .7em; border-radius: 999px; }
.pill--live { color: var(--cyan-soft); background: rgba(34,211,238,.12); border: 1px solid rgba(34,211,238,.3); }
.pill--soft { color: var(--violet); background: rgba(124,58,237,.1); }
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.35;} }

.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.kpi { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); padding: 12px 14px; }
.kpi__label { display: block; font-size: .72rem; color: var(--muted-d); }
.kpi__value { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.35rem; color: #fff; margin: 2px 0; }
.kpi__delta { font-size: .74rem; font-weight: 600; }
.kpi__delta.up, .up { color: #4ade80; }
.kpi__delta.down, .down { color: #fb7185; }
.spark { background: rgba(255,255,255,.03); border-radius: var(--radius-sm); padding: 6px; }
.spark svg { width: 100%; height: 64px; display: block; }

/* trust strip */
.trust { position: relative; z-index: 1; margin-top: 64px; text-align: center; }
.trust__label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-d); margin-bottom: 18px; }
.trust__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; }
.trust__logos span { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; color: #fff; opacity: .55; transition: opacity .2s; }
.trust__logos span:hover { opacity: 1; }

/* ============================================================
   SECTIONS (light)
   ============================================================ */
.section { padding: 92px 0; }
.section--tint { background: var(--tint); }
.section__head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 700; margin-bottom: 14px; }
.section__head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* dashboard */
.dash { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.dash__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: start; }
.metric { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.metric__label { display: block; font-size: .82rem; color: var(--muted); }
.metric__value { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 2rem; margin: 4px 0 6px; }
.metric__delta { font-size: .82rem; font-weight: 600; }

.dash__table { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.dash__table-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash__table-head h3 { font-size: 1.15rem; }
.dash__table table { width: 100%; border-collapse: collapse; }
.dash__table th { text-align: left; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; padding: 8px 6px; border-bottom: 1px solid var(--line); }
.dash__table td { padding: 13px 6px; font-size: .92rem; border-bottom: 1px solid var(--line); }
.dash__table tr:last-child td { border-bottom: 0; }
.dash__table td:first-child { font-weight: 600; }
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 8px; }
.dot--g { background: #4285F4; } .dot--m { background: #D946EF; } .dot--p { background: #E60023; } .dot--t { background: #00C4CC; }
.bar { display: block; width: 80px; height: 7px; background: var(--line); border-radius: 99px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--grad-btn); border-radius: 99px; }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(168,85,247,.4); box-shadow: 0 30px 60px -30px rgba(168,85,247,.5); }
.feature__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; font-size: 1.5rem; color: #fff; margin-bottom: 18px; background: var(--grad-btn); box-shadow: 0 10px 24px -8px rgba(217,70,239,.6); }
.feature h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature p { color: var(--muted); margin: 0 0 16px; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ticks li { position: relative; padding-left: 26px; font-size: .92rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--violet); font-weight: 700; }

/* ============================================================
   AUDIT (dark accent)
   ============================================================ */
.audit { position: relative; background: var(--ink-2); color: #fff; padding: 92px 0; overflow: hidden; }
.audit__bg { position: absolute; inset: 0; opacity: .5; }
.audit__bg .hero__glow--2 { right: 10%; top: 10%; }
.audit__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.audit__copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.audit__copy p { color: var(--muted-d); font-size: 1.05rem; margin-bottom: 26px; }
.glass-card--dark { max-width: none; }
.audit__list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.audit__list li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); font-size: .92rem; }
.audit__row-r.save { color: var(--cyan-soft); font-weight: 600; font-size: .85rem; white-space: nowrap; }
.audit__result { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.audit__result-label { display: block; font-size: .75rem; color: var(--muted-d); text-transform: uppercase; letter-spacing: .08em; }
.audit__result-val { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; }
.audit__result-val strong { color: var(--cyan-soft); }

/* ============================================================
   WHY
   ============================================================ */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why__item { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.why__num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.why__item h3 { font-size: 1.18rem; margin: 12px 0 8px; }
.why__item p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ============================================================
   STATS BAND (dark)
   ============================================================ */
.stats { position: relative; background: var(--ink); color: #fff; padding: 84px 0; overflow: hidden; }
.stats__bg { position: absolute; inset: 0; opacity: .5; }
.stats__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; position: relative; z-index: 1; }
.stats__head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.stats__updated { font-size: .85rem; color: var(--muted-d); display: inline-flex; align-items: center; gap: 10px; }
.stats__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 28px 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.stat__value { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { font-size: .9rem; color: var(--muted-d); }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 40px; }
.proof__col { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.proof__label { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--violet); margin-bottom: 16px; }
.logo-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.logo-grid span { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .9rem; color: var(--text); opacity: .75; background: var(--tint); border: 1px solid var(--line); padding: .4em .8em; border-radius: 999px; }

.agency-band {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(124,58,237,.08), rgba(217,70,239,.08));
  border: 1px solid rgba(168,85,247,.25); border-radius: var(--radius); padding: 30px 34px;
}
.agency-band h3 { font-size: 1.4rem; margin-bottom: 6px; }
.agency-band p { color: var(--muted); margin: 0; max-width: 40em; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); }
/* lift via margin (not transform) so the .reveal.in { transform:none } rule can't flatten it */
.plan--featured { border: 1.5px solid transparent; background:
  linear-gradient(var(--paper), var(--paper)) padding-box,
  var(--grad-btn) border-box;
  box-shadow: 0 30px 70px -30px rgba(217,70,239,.55); margin-top: -12px; }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-btn); color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .74rem; padding: .4em 1em; border-radius: 999px; white-space: nowrap; }
.plan__name { font-size: 1.4rem; margin-bottom: 6px; }
.plan__desc { color: var(--muted); font-size: .92rem; margin: 0 0 18px; min-height: 2.6em; }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 20px; }
.plan__amt { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 2.6rem; }
.plan__per { color: var(--muted); font-weight: 500; }
.plan__feats { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 11px; }
.plan__feats li { position: relative; padding-left: 26px; font-size: .92rem; }
.plan__feats li::before { content: "✓"; position: absolute; left: 0; color: var(--violet); font-weight: 700; }
/* Muted variant (free Lobby tier): grey dots instead of violet checkmarks. */
.plan__feats--muted li::before { content: ""; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; box-shadow: var(--shadow); }
.faq__item summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--violet); transition: transform .25s; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); margin: 0 0 18px; }

/* ============================================================
   FINAL CTA (dark)
   ============================================================ */
.cta { position: relative; background: var(--ink); color: #fff; padding: 100px 0; overflow: hidden; text-align: center; }
.cta__bg { position: absolute; inset: 0; }
.cta__bg .hero__glow--1 { left: 15%; top: -120px; opacity: .4; }
.cta__bg .hero__glow--3 { right: 12%; bottom: -160px; left: auto; opacity: .3; }
.cta__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta__gem { width: 84px; margin: 0 auto 22px; filter: drop-shadow(0 0 24px rgba(217,70,239,.7)); animation: float 6s ease-in-out infinite; }
.cta h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 16px; }
.cta p { color: var(--muted-d); font-size: 1.1rem; margin-bottom: 30px; }
.cta .hero__cta { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; overflow: hidden; background: var(--ink-2); color: var(--muted-d); padding: 64px 0 28px; }
.footer__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.025; pointer-events: none; }
.footer .container { position: relative; z-index: 1; }
.footer .brand__name { color: #fff; }

/* ============================================================
   STORE LOGO CAROUSEL (#stats band) — auto-scrolling marquee
   ============================================================ */
.logos__label { text-align: center; margin: 0; font-family: 'Space Grotesk', sans-serif; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-d); }
.logos-band { padding: 28px 0; }
.logos {
  position: relative; z-index: 1; margin-top: 14px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logos__track { display: flex; gap: 14px; width: max-content; animation: logos-scroll 42s linear infinite; }
.logo-chip__img { width: 26px; height: 26px; flex: none; border-radius: 6px; object-fit: contain; background: #fff; padding: 3px; box-sizing: border-box; }
.logos:hover .logos__track, .logos:focus-within .logos__track { animation-play-state: paused; }
@keyframes logos-scroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }
.logo-chip {
  display: inline-flex; align-items: center; gap: .6em; flex: none; white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; color: #E7E0F5;
  padding: .65em 1.2em .65em .65em; border-radius: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.logo-chip__mk { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 8px; font-size: .8rem; font-weight: 700; color: #fff; background: var(--grad-btn); }
@media (prefers-reduced-motion: reduce) { .logos__track { animation: none; } }

/* ============================================================
   ACTIVATION / SUCCESS PAGE (success.html) — dark, matches landing
   ============================================================ */
body.activate { background: var(--ink); color: #fff; }
.activate[data-gating] { visibility: hidden; }

.act-nav { border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(11,4,32,.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.act-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.act-nav .brand__name { color: #fff; }
.act-nav__back { font-size: .9rem; color: var(--muted-d); transition: color .2s; }
.act-nav__back:hover { color: #fff; }

.activate__main { position: relative; min-height: calc(100vh - 64px); padding: 72px 0 90px; overflow: hidden; }
.activate__bg { position: absolute; inset: 0; z-index: 0; opacity: .6; }
.activate__inner { position: relative; z-index: 1; max-width: 960px; }

.activate__head { margin-bottom: 34px; }
.activate__title { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; margin: 8px 0 14px; }
.activate__sub { color: var(--muted-d); font-size: 1.08rem; max-width: 46em; margin: 0; }

.act-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 22px; }
.act-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 22px; min-height: 178px;
  padding: 24px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.act-card:hover { transform: translateY(-4px); border-color: rgba(217,70,239,.5); box-shadow: 0 24px 50px -28px rgba(217,70,239,.6); }
.act-card--primary { background: linear-gradient(150deg, rgba(217,70,239,.22), rgba(34,211,238,.08)); border-color: rgba(217,70,239,.45); }
.act-card h2 { font-size: 1.25rem; margin: 0 0 9px; color: #fff; }
.act-card p { font-size: .92rem; color: var(--muted-d); margin: 0; line-height: 1.5; }
.act-card__cta { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .9rem; color: var(--cyan-soft); }

.act-status { max-width: none; margin-top: 4px; }
.act-status__title { font-size: 1.5rem; margin: 12px 0 8px; color: #fff; }
.act-status__desc { color: var(--muted-d); font-size: .96rem; line-height: 1.6; margin: 0 0 18px; }
.act-status__desc strong { color: #fff; }
.act-status__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.act-stat { padding: 14px 16px; border-radius: var(--radius-sm); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.act-stat__k { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-d); margin-bottom: 5px; }
.act-stat__v { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem; color: #fff; }

.act-note { text-align: center; margin: 22px 0 0; font-size: .82rem; color: var(--muted-d); }

@media (max-width: 760px) {
  .act-cards, .act-status__grid { grid-template-columns: 1fr; }
}
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand .brand { margin-bottom: 14px; }
.footer__brand p { margin: 0 0 16px; max-width: 26em; }
.footer__status { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--cyan-soft); }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__links h4 { color: #fff; font-size: .9rem; margin-bottom: 14px; }
.footer__links a { display: block; font-size: .92rem; padding: 5px 0; transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 22px; font-size: .84rem; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Scroll-reveal animation removed by request: every section is fully visible
   immediately, with no fade/slide as it enters the viewport. The .reveal classes
   stay in the markup (and landing.js still adds .in, now inert) so nothing else
   needs to change. */
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card, .gem-orb__img, .gem-orb__halo, .cta__gem, .pill__dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: 2; }
  .dash, .audit__inner { grid-template-columns: 1fr; }
  .features, .why, .pricing, .proof, .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 110px 0 48px; }
  .features, .why, .pricing, .proof, .stats__grid, .dash__metrics, .kpi-grid, .footer__links { grid-template-columns: 1fr; }
  .plan--featured { margin-top: 0; }
  .hero__cta .btn, .cta .hero__cta .btn { flex: 1; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .agency-band { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; }
}

/* Hero background photo (Sableye crystal cave), made a little transparent so
   the headline, glows and drop-alert card stay readable over it. */
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  pointer-events: none;
}
/* The rich pixel scene replaces the dotted grid overlay. */
.hero .hero__grid { display: none; }
/* Readability scrim: dark under the headline (left) and along the bottom,
   fading out over the right-hand artwork (tree / shrine). */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,6,19,.92) 0%, rgba(10,6,19,.5) 30%, rgba(10,6,19,0) 58%),
    linear-gradient(0deg, rgba(10,6,19,.8) 0%, rgba(10,6,19,0) 42%);
}
/* On the stacked mobile layout the copy sits over the full-width scene, so
   darken top + bottom and ease the artwork back a touch. */
@media (max-width: 940px) {
  .hero__photo { opacity: 0.7; }
  .hero__bg::after {
    background: linear-gradient(180deg, rgba(10,6,19,.55) 0%, rgba(10,6,19,.15) 38%, rgba(10,6,19,.72) 100%);
  }
}

/* "What you get" — punchy benefit grid (quick hits above the feature cards) */
.wyg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}
@media (max-width: 1024px) { .wyg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .wyg-grid { grid-template-columns: 1fr; } }
.wyg {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgb(235, 230, 248);
  background: #ffffff;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.wyg:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 70, 239, 0.5);
  box-shadow: 0 14px 34px rgba(217, 70, 239, 0.16);
}
.wyg__ico { font-size: 22px; line-height: 1.1; filter: drop-shadow(0 0 8px rgba(217, 70, 239, 0.45)); }
.wyg__body { min-width: 0; }
.wyg__t { font-size: 15px; font-weight: 700; color: rgb(26, 19, 38); margin: 0 0 3px; letter-spacing: -0.01em; }
.wyg__d { font-size: 13px; color: rgb(107, 100, 128); margin: 0; line-height: 1.4; }

/* ============================================================
   ALERT ANATOMY  (#alert) — annotated mock drop alert
   ============================================================ */
.anatomy { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.alertcard {
  display: flex; overflow: hidden;
  background: var(--ink-2); color: #fff;
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  box-shadow: 0 34px 80px -38px rgba(60,20,110,.7);
}
.alertcard__bar { width: 4px; flex: none; background: var(--grad-btn); }
.alertcard__body { width: 100%; padding: 20px 22px; }
.alertcard__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.alertcard__store { display: flex; align-items: center; gap: 11px; }
.alertcard__avatar { width: 38px; height: 38px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--grad-btn); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .8rem; }
.alertcard__retailer { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .95rem; }
.alertcard__tag { display: inline-block; margin-top: 3px; font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--cyan-soft); background: rgba(34,211,238,.12); border: 1px solid rgba(34,211,238,.3); padding: .15em .6em; border-radius: 999px; }
.alertcard__product { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.08rem; line-height: 1.25; margin: 0 0 16px; }
.alertcard__rows { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.arow { display: flex; justify-content: space-between; gap: 10px; padding: 9px 12px; font-size: .86rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); }
.arow span { color: var(--muted-d); }
.arow b { font-family: 'Space Grotesk', sans-serif; }
.alertcard__links { display: flex; gap: 10px; margin-bottom: 14px; }
.alertcard__btn { font-size: .82rem; font-weight: 600; padding: .5em 1em; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); }
.alertcard__btn--primary { background: var(--grad-btn); border-color: transparent; }
.alertcard__foot { font-size: .74rem; color: var(--muted-d); margin: 0; }

.anatomy__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.anatomy__list li { display: flex; gap: 15px; }
.anatomy__ico { flex: none; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; font-size: 1.35rem; background: var(--paper); border: 1px solid var(--line); }
.anatomy__list h3 { font-size: 1.12rem; margin: 2px 0 5px; }
.anatomy__list p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ============================================================
   MEMBER WINS  (#wins) — receipts grid
   ============================================================ */
.wins { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.win { margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s; }
.win:hover { transform: translateY(-5px); border-color: rgba(168,85,247,.4); box-shadow: 0 30px 60px -30px rgba(168,85,247,.5); }
.win__head { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.win__avatar { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 50%; color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .85rem; background: var(--grad-btn); }
.win__avatar--a { background: linear-gradient(135deg, var(--violet-bright), var(--magenta)); }
.win__avatar--b { background: linear-gradient(135deg, #0EA5E9, var(--cyan)); }
.win__avatar--c { background: linear-gradient(135deg, #16A34A, #4ADE80); }
.win__avatar--d { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.win__user { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .98rem; }
.win__user::before { content: "@"; opacity: .5; }
.win__meta { display: block; font-size: .78rem; color: var(--muted); }
.win__badge { margin-left: auto; align-self: flex-start; font-size: .72rem; font-weight: 600; white-space: nowrap; color: #16A34A; background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.25); padding: .3em .7em; border-radius: 999px; }
.win__text { margin: 0; color: var(--text); font-size: .96rem; line-height: 1.55; }
.wins__foot { text-align: center; margin: 32px 0 0; color: var(--muted); font-size: .95rem; }
.wins__foot strong { color: var(--violet); }

/* ============================================================
   HERO FLOATING ACCENT CHIPS — staggered bob, same `float` keyframe
   as .gem-orb__img / .float-card (the technique poketoolz layers up)
   ============================================================ */
.float-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: .4em;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .8rem; color: #fff;
  padding: .5em .9em; border-radius: 999px; white-space: nowrap;
  background: rgba(18,10,36,.72); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px -14px rgba(217,70,239,.6);
  animation: float 5.5s ease-in-out infinite;
}
.float-chip--1 { top: 4%; left: -4%; animation-delay: .4s; }
.float-chip--2 { bottom: 12%; right: -3%; color: var(--cyan-soft); animation-duration: 6.8s; animation-delay: 1.1s; }

@media (max-width: 940px) {
  .float-chip { display: none; }
  .anatomy { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .alertcard__rows { grid-template-columns: 1fr; }
  .wins { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .float-chip { animation: none; }
}

/* ============================================================
   HERO FLOATING BOX CLUSTER — each tile bobs on a staggered
   delay (the poketoolz technique: float keyframe + offset delays)
   ============================================================ */
.float-cluster { position: relative; width: 460px; height: 490px; margin: 0 auto; }
.fbox { position: absolute; animation: fbob 6s ease-in-out infinite; will-change: transform; }
/* subtle bob for the boxes */
@keyframes fbob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* product box tiles — trimmed cutouts at a consistent size; shadow follows the silhouette */
.fbox--box { width: 102px; height: 102px; }
.fbox--box img { width: 100%; height: 100%; object-fit: contain; display: block; filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff) drop-shadow(0 0 6px rgba(255,255,255,.4)) drop-shadow(0 14px 22px rgba(0,0,0,.55)); }
/* mirror the right-hand boxes (flip on the img so the float animation on .fbox is unaffected) */
.fbox--b2 img, .fbox--b4 img { transform: scaleX(-1); }

/* restock alert card centerpiece — wider, smaller and shorter than the #alert
   version: a wide base width + scale-down keeps all the content but compacts it */
.fbox--alert { width: 520px; }
.fbox--alert .alert-embed { transform: scale(.5); transform-origin: top center; }
/* white outline around the hero restock card (ring via box-shadow so no layout shift;
   scoped to the hero so the #alert section's identical card is unchanged) */
.fbox--alert .alert-embed { box-shadow: 0 0 0 4px rgba(255,255,255,.9), 0 34px 80px -38px rgba(60,20,110,.7); }

/* positions within the 460×490 stage: card centred, a box in each corner with
   even gaps that stay clear of the card through the bob */
.fbox--alert { top: 150px; left: -30px; z-index: 3; animation: none; }
/* top pair synced together, bottom pair synced together (offset from the top) */
.fbox--b1    { top: 12px;  left: 8px;   z-index: 2; animation-duration: 6s; animation-delay: 0s;   }
.fbox--b2    { top: 20px;  right: 8px;  z-index: 2; animation-duration: 6s; animation-delay: 0s;   }
.fbox--b3    { top: 376px; left: 8px;   z-index: 2; animation-duration: 6s; animation-delay: 1.8s; }
.fbox--b4    { top: 384px; right: 8px;  z-index: 2; animation-duration: 6s; animation-delay: 1.8s; }

/* Scale the fixed 460x490 stage to fit narrow columns. The negative
   margin-bottom collapses the empty space the scale (origin top) leaves below,
   so the next section tucks up cleanly. margin-bottom = -490 * (1 - scale). */
@media (max-width: 940px) { .float-cluster { transform: scale(.9);  transform-origin: top center; margin: 0 -23px -49px;  } }
@media (max-width: 600px) { .float-cluster { transform: scale(.72); transform-origin: top center; margin: 0 -64px -137px; } }
@media (max-width: 380px) { .float-cluster { transform: scale(.62); transform-origin: top center; margin: 0 -87px -187px; } }
@media (prefers-reduced-motion: reduce) { .fbox { animation: none; } }

/* ============================================================
   COVERAGE  (#coverage) — retailer + region showcase (dark band)
   ============================================================ */
.cover { position: relative; background: var(--ink); color: #fff; padding: 88px 0; overflow: hidden; }
.cover__bg { position: absolute; inset: 0; opacity: .45; }
.cover .section__head h2 { color: #fff; }
.cover .section__head p { color: var(--muted-d); }
.cover__regions { position: relative; z-index: 1; display: grid; gap: 0; }
.cover__region { display: grid; grid-template-columns: 210px 1fr; gap: 22px; align-items: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); }
.cover__region:first-child { border-top: 0; }
.cover__rlabel { display: inline-flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.02rem; color: #fff; }
.cover__flag { font-size: 1.25rem; letter-spacing: -2px; }
.cover__tiles { display: flex; flex-wrap: wrap; gap: 10px; }
.ptile { display: inline-flex; align-items: center; gap: .55em; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .88rem; color: #E7E0F5; padding: .5em 1em .5em .5em; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.ptile:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); border-color: rgba(217,70,239,.5); }
.ptile__mk { width: 24px; height: 24px; flex: none; display: grid; place-items: center; border-radius: 7px; font-size: .72rem; font-weight: 700; color: #fff; background: var(--grad-btn); }
.ptile__logo { width: 24px; height: 24px; flex: none; border-radius: 6px; object-fit: contain; background: #fff; padding: 3px; box-sizing: border-box; }
.cover__note { position: relative; z-index: 1; text-align: center; margin: 32px 0 0; font-size: .9rem; color: var(--muted-d); }
@media (max-width: 760px) { .cover__region { grid-template-columns: 1fr; gap: 12px; } }

/* ============================================================
   WALL OF LOVE  (#testimonials) — masonry testimonial wall
   ============================================================ */
.wall { column-count: 3; column-gap: 20px; }
@media (max-width: 940px) { .wall { column-count: 2; } }
@media (max-width: 600px) { .wall { column-count: 1; } }
.wall__card { break-inside: avoid; margin: 0 0 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s; }
.wall__card:hover { transform: translateY(-4px); border-color: rgba(168,85,247,.4); box-shadow: 0 30px 60px -30px rgba(168,85,247,.5); }
.wall__head { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.wall__avatar { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 50%; color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .85rem; background: var(--grad-btn); }
.wall__avatar--a { background: linear-gradient(135deg, var(--violet-bright), var(--magenta)); }
.wall__avatar--b { background: linear-gradient(135deg, #0EA5E9, var(--cyan)); }
.wall__avatar--c { background: linear-gradient(135deg, #16A34A, #4ADE80); }
.wall__avatar--d { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.wall__avatar--e { background: linear-gradient(135deg, #EC4899, #F472B6); }
.wall__avatar--grad { background: var(--grad-btn); font-size: 1.4rem; }
.wall__name { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .98rem; }
.wall__role { display: block; font-size: .78rem; color: var(--muted); }
.wall__badge { margin-left: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: .4em; font-size: .7rem; font-weight: 600; color: var(--violet); background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.22); padding: .28em .65em; border-radius: 999px; white-space: nowrap; }
.wall__badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }
.wall__quote { margin: 0; color: var(--text); font-size: .96rem; line-height: 1.6; }
.wall__stars { display: block; color: #F59E0B; letter-spacing: 3px; font-size: 1rem; margin-bottom: 6px; }
.wall__card--stat { text-align: center; background: linear-gradient(140deg, rgba(124,58,237,.12), rgba(217,70,239,.1)); border-color: rgba(168,85,247,.3); }
.wall__big { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 3.4rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.wall__bigsub { color: var(--muted); margin: 8px 0 14px; font-size: .92rem; }
.wall__src { font-size: .74rem; font-weight: 600; color: var(--violet); }
.wall__card--feature { position: relative; border: 1.5px solid transparent; background: linear-gradient(var(--paper), var(--paper)) padding-box, var(--grad-btn) border-box; }
.wall__feat { display: inline-block; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .7rem; color: #fff; background: var(--grad-btn); padding: .25em .7em; border-radius: 999px; margin-bottom: 14px; }
.wall__badge--win { color: #16A34A; background: rgba(22,163,74,.1); border-color: rgba(22,163,74,.28); }
.wall__badge--win::before { display: none; }
.wall__card--cta h3 { font-size: 1.18rem; margin: 12px 0 8px; }
.wall__card--cta p { color: var(--muted); font-size: .94rem; margin: 0 0 16px; }

/* ── Dark section variant (Wall of Love, matching the Coverage band) ── */
.section--dark { background: var(--ink); color: #fff; }
.section--dark .section__head p { color: var(--muted-d); }
.section--dark .wall__card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); box-shadow: 0 24px 60px -30px rgba(0,0,0,.5); }
.section--dark .wall__card:hover { border-color: rgba(168,85,247,.5); box-shadow: 0 30px 60px -30px rgba(168,85,247,.45); }
.section--dark .wall__name { color: #fff; }
.section--dark .wall__role { color: var(--muted-d); }
.section--dark .wall__quote { color: rgba(255,255,255,.82); }
.section--dark .wall__bigsub { color: var(--muted-d); }
.section--dark .wall__badge { color: var(--lilac); background: rgba(196,181,253,.12); border-color: rgba(196,181,253,.28); }
.section--dark .wall__badge::before { background: var(--lilac); }
.section--dark .wall__badge--win { color: #43DC80; background: rgba(67,220,128,.12); border-color: rgba(67,220,128,.3); }
.section--dark .wall__card--stat { background: linear-gradient(140deg, rgba(124,58,237,.2), rgba(217,70,239,.12)); border-color: rgba(168,85,247,.35); }
.section--dark .wall__card--feature { background: linear-gradient(rgba(255,255,255,.05), rgba(255,255,255,.05)) padding-box, var(--grad-btn) border-box; }
.section--dark .wall__card--cta p { color: var(--muted-d); }
.section--dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.22); }
.section--dark .btn--ghost:hover { color: #fff; border-color: rgba(255,255,255,.45); }
