/* =========================================================================
   THE WRAP SHEET — marketing site design system
   Direction: prime-time sports broadcast meets modern SaaS.
   Dark stadium-night ground, one electric-amber accent used with discipline,
   green reserved exclusively for the "verified" trust signal.
   Display: Barlow Condensed (scoreboard/masthead). Body: Inter.
   ========================================================================= */

:root {
  /* ---- Ground & surfaces (stadium night) ---- */
  --bg:          #090C15;
  --bg-2:        #0E1220;
  --surface:     #141A2A;
  --surface-2:   #1B2233;
  --surface-3:   #232C41;

  /* ---- Hairlines ---- */
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  /* ---- Text (AAA-ish on --bg) ---- */
  --text:       #F4F7FC;
  --text-muted: #AEB7CC;
  --text-dim:   #727C97;

  /* ---- Accent: electric amber = brand + action ---- */
  --accent:       #FFC233;
  --accent-hi:    #FFD673;
  --accent-press: #E6A413;
  --accent-ink:   #1A1204;              /* text that sits ON amber */
  --accent-glow:  rgba(255, 194, 51, 0.35);
  --accent-wash:  rgba(255, 194, 51, 0.10);

  /* ---- Verified: green, trust signal ONLY ---- */
  --verify:      #34D77E;
  --verify-wash: rgba(52, 215, 126, 0.12);
  --verify-line: rgba(52, 215, 126, 0.35);

  /* ---- Roast accent: sparing warning red ---- */
  --roast:      #FF5D6C;

  /* ---- Radii ---- */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* ---- Elevation ---- */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow:    0 12px 30px -12px rgba(0,0,0,0.7);
  --shadow-lg: 0 40px 80px -24px rgba(0,0,0,0.8);
  --shadow-panel: 0 2px 0 rgba(255,255,255,0.05) inset,
                  0 40px 90px -30px rgba(0,0,0,0.85),
                  0 0 0 1px var(--border-strong);

  /* ---- Type ---- */
  --font-display: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* ---- Layout ---- */
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --nav-h: 68px;
}

/* ------------------------------------------------------------------ reset+ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "cv05" 1, "ss01" 1;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* stadium-night ambient background: two soft broadcast-light pools + vignette */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 78% -8%, rgba(255,194,51,0.10), transparent 60%),
    radial-gradient(50% 45% at 8% 4%, rgba(52,120,255,0.10), transparent 60%),
    linear-gradient(180deg, #0B0F1B 0%, var(--bg) 40%, #070A12 100%);
}
/* faint field-yardline grid */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
}

/* ------------------------------------------------------------------ layout */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section-divider { border-top: 1px solid var(--border); }

/* ------------------------------------------------------------------ type */
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -0.01em; }

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 0.98;
  font-size: clamp(2.9rem, 7.4vw, 5.4rem);
  text-transform: uppercase;
}
.h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); text-transform: uppercase; letter-spacing: -0.005em; }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); text-transform: uppercase; letter-spacing: 0.002em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

.lead { color: var(--text-muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.6; }
.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }
.amber { color: var(--accent); }
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 14px; }
.section-head p { margin: 16px 0 0; }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 24px -8px var(--accent-glow), 0 1px 0 rgba(255,255,255,0.25) inset;
  font-weight: 700;
}
.btn--primary:hover { background: var(--accent-hi); box-shadow: 0 12px 32px -8px var(--accent-glow); }
.btn--ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.28); }
.btn--lg { padding: 17px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn__arrow { transition: transform .18s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ------------------------------------------------------------------ badges */
.verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--verify);
  background: var(--verify-wash);
  border: 1px solid var(--verify-line);
  padding: 7px 14px 7px 11px;
  border-radius: var(--r-pill);
}
.verified svg { width: 16px; height: 16px; flex: none; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
  border: 1px solid var(--border-strong); color: var(--text-muted);
  background: rgba(255,255,255,0.03);
}
.tag--live { color: var(--verify); border-color: var(--verify-line); background: var(--verify-wash); }
.tag--live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--verify); box-shadow: 0 0 0 3px var(--verify-wash); }
.tag--soon { color: var(--text-dim); }

/* ------------------------------------------------------------------ nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(9,12,21,0.72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.wordmark {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; font-size: 1.34rem; line-height: 1; color: var(--text);
}
.wordmark .the { color: var(--text-dim); font-weight: 700; font-size: 0.82em; }
.wordmark .sheet { color: var(--accent); }
.wordmark__rule { display: inline-block; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); transform: translateY(-2px); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a { padding: 9px 14px; border-radius: var(--r-sm); color: var(--text-muted); font-weight: 550; font-size: 0.95rem; transition: color .15s, background .15s; }
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
/* the CTA is a button, not a link: .nav__links a outranks .btn--primary on
   specificity and was washing its text to muted gray (mobile QA 2026-07-19) */
.nav__links a.btn--primary { color: var(--accent-ink); }
.nav__links a.btn--primary:hover { color: var(--accent-ink); background: var(--accent-hi); }
.nav__cta { margin-left: 6px; }
.nav__toggle { display: none; background: none; border: 1px solid var(--border-strong); border-radius: var(--r-sm); width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--text); }
.nav__toggle svg { width: 22px; height: 22px; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 104px); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero h1 { margin-top: 20px; }
.hero h1 .fade { color: var(--text-dim); }
.hero h1 .hl { color: var(--accent); }
.hero__sub { margin: 24px 0 0; max-width: 34ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; color: var(--text-dim); font-size: 0.9rem; }

/* broadcast scoreboard ticker */
.scorestrip {
  margin-top: 30px;
  display: flex; align-items: stretch; gap: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  overflow: hidden;
  max-width: 520px;
}
.scorestrip__cell { flex: 1; padding: 12px 16px; border-right: 1px solid var(--border); }
.scorestrip__cell:last-child { border-right: none; }
.scorestrip__k { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); font-weight: 700; }
.scorestrip__v { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; line-height: 1.1; margin-top: 2px; }
.scorestrip__v.pos { color: var(--verify); }
.scorestrip__v.amber { color: var(--accent); }

/* ------------------------------------------------------------------ panel frame (the product art, framed like a broadcast monitor) */
.panel-frame {
  position: relative;
  border-radius: var(--r-lg);
  padding: 10px;
  background: linear-gradient(160deg, #2a3142, #10141f 60%);
  box-shadow: var(--shadow-panel);
}
.panel-frame::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.panel-frame img { border-radius: 12px; width: 100%; }
.panel-frame__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 6px 10px;
}
.panel-frame__dots { display: flex; gap: 6px; }
.panel-frame__dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.panel-frame__label { margin-left: auto; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); font-weight: 700; }
.hero__panel { position: relative; }
.hero__panel .verified { position: absolute; right: 18px; bottom: 18px; z-index: 3; backdrop-filter: blur(6px); background: rgba(9,12,21,0.72); }
.panel-glow { position: absolute; inset: -8% -6% -14% -6%; z-index: -1; background: radial-gradient(60% 55% at 50% 45%, var(--accent-glow), transparent 70%); filter: blur(24px); opacity: 0.55; }

/* ------------------------------------------------------------------ proof (panel + quote) */
.proof__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.pullquote { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.06; letter-spacing: -0.005em; }
.pullquote .mark { color: var(--accent); }
.proof__meta { margin-top: 22px; display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-size: 0.9rem; }
.proof__meta .pill { padding: 4px 10px; border: 1px solid var(--border); border-radius: var(--r-pill); font-weight: 600; color: var(--text-muted); }
.proof__quotes { margin-top: 26px; display: grid; gap: 14px; }

/* ------------------------------------------------------------------ wrap excerpt */
.wrap-excerpt {
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.wrap-excerpt__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.wrap-excerpt__lede { font-size: 1.18rem; color: var(--text); }
.wrap-excerpt p { line-height: 1.7; color: var(--text-muted); margin: 0 0 16px; }
.wrap-excerpt p b { color: var(--text); }
.wrap-excerpt__foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 6px; font-size: 0.85rem; }
.miniquote { border-left: 2px solid var(--accent); padding: 4px 0 4px 16px; color: var(--text-muted); font-size: 0.98rem; }
.miniquote b { color: var(--text); font-weight: 600; }

/* ------------------------------------------------------------------ feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.card__ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--accent-wash); border: 1px solid rgba(255,194,51,0.25); color: var(--accent);
}
.card__ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.28rem; text-transform: uppercase; }
.card p { margin: 10px 0 0; color: var(--text-muted); font-size: 0.98rem; line-height: 1.55; }

/* ------------------------------------------------------------------ style gallery */
.styles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.style-tile {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  min-height: 150px;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.style-tile:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.style-tile__n { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.16rem; letter-spacing: 0.01em; margin-top: auto; }
.style-tile__d { color: var(--text-dim); font-size: 0.85rem; margin-top: 2px; }
.style-tile__swatch { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset; flex: none; }
.style-tile__img { width: 100%; height: auto; border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 12px; }
.style-tile--featured { grid-column: span 3; flex-direction: row; align-items: center; gap: 22px; padding: 18px; min-height: 0; }
.style-tile--featured img { width: clamp(180px, 34%, 320px); border-radius: 10px; box-shadow: var(--shadow); }
.style-tile--featured .meta { display: flex; flex-direction: column; align-items: flex-start; }
.style-tile--featured .style-tile__n { font-size: 1.5rem; }

/* ------------------------------------------------------------------ personas & ratings */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.persona { display: grid; gap: 14px; }
.persona-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.persona-card__badge { flex: none; width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; background: var(--accent-wash); color: var(--accent); border: 1px solid rgba(255,194,51,0.25); }
.persona-card--soon .persona-card__badge { background: rgba(255,255,255,0.03); color: var(--text-dim); border-color: var(--border); }
.persona-card h3 { font-size: 1.35rem; text-transform: uppercase; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.persona-card p { margin: 8px 0 0; color: var(--text-muted); font-size: 0.96rem; }
.ratings { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.ratings__head { padding: 18px 22px; border-bottom: 1px solid var(--border); font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.15rem; }
.rating-row { display: flex; gap: 14px; align-items: center; padding: 15px 22px; border-bottom: 1px solid var(--border); }
.rating-row:last-child { border-bottom: none; }
.rating-chip { flex: none; width: 58px; text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; padding: 6px 0; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--border-strong); letter-spacing: 0.02em; }
.rating-row span { color: var(--text-muted); font-size: 0.94rem; }
.ratings__foot { padding: 14px 22px; font-size: 0.85rem; color: var(--text-dim); background: rgba(255,255,255,0.02); display: flex; align-items: center; gap: 8px; }

/* ------------------------------------------------------------------ pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
}
.price-card--feature {
  border-color: rgba(255,194,51,0.45);
  background: linear-gradient(180deg, rgba(255,194,51,0.08), var(--bg-2) 60%);
  box-shadow: 0 30px 70px -30px var(--accent-glow);
}
.price-card__flag { position: absolute; top: -12px; left: 26px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 5px 12px; border-radius: var(--r-pill); }
.price-card__name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.4rem; letter-spacing: 0.01em; }
.price-card__price { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 4px; }
.price-card__amt { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; letter-spacing: -0.01em; }
.price-card__per { color: var(--text-dim); font-size: 0.9rem; }
.price-card__blurb { color: var(--text-muted); font-size: 0.95rem; min-height: 42px; }
.price-card ul { list-style: none; margin: 18px 0 24px; padding: 0; display: grid; gap: 11px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--text-muted); }
.price-card li svg { width: 17px; height: 17px; margin-top: 3px; flex: none; color: var(--verify); }
.price-card .btn { margin-top: auto; }
.price-card__alt { display: block; text-align: center; margin-top: 10px; font-size: 0.85rem; color: var(--text-dim); }
.price-card__alt:hover { color: var(--text-muted); }
.pricing-note { text-align: center; margin-top: 26px; color: var(--text-dim); font-size: 0.9rem; }

/* ------------------------------------------------------------------ steps (how-it-works) */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 76px 1fr; gap: 22px; align-items: start;
  padding: 26px; border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--surface); position: relative;
}
.step__num {
  counter-increment: step;
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1;
  color: var(--accent); width: 76px; text-align: center;
  font-variant-numeric: tabular-nums;
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.3rem; text-transform: uppercase; }
.step p { margin: 8px 0 0; color: var(--text-muted); }
.step p + p { margin-top: 6px; font-size: 0.9rem; color: var(--text-dim); }
@media (min-width: 760px) {
  .steps--connected .step:not(:last-child)::after {
    content: ""; position: absolute; left: 38px; bottom: -18px; height: 18px; width: 2px;
    background: linear-gradient(var(--border-strong), transparent);
  }
}

/* ------------------------------------------------------------------ FAQ */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--r); background: var(--surface);
  padding: 4px 22px; transition: border-color .2s;
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase; font-size: 1.15rem; letter-spacing: 0.01em;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 20px; color: var(--text-muted); font-size: 0.98rem; }

/* ------------------------------------------------------------------ trust band */
.trustband {
  border: 1px solid var(--verify-line);
  background: linear-gradient(180deg, var(--verify-wash), transparent);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.trustband__badge { width: 72px; height: 72px; border-radius: 18px; display: grid; place-items: center; background: var(--verify-wash); border: 1px solid var(--verify-line); color: var(--verify); }
.trustband__badge svg { width: 38px; height: 38px; }
.trustband h3 { font-size: 1.5rem; text-transform: uppercase; }
.trustband p { margin: 8px 0 0; color: var(--text-muted); max-width: 62ch; }

/* ------------------------------------------------------------------ CTA band */
.ctaband {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, #171d2c, #0d1119);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.ctaband::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% -20%, var(--accent-wash), transparent 60%); }
.ctaband > * { position: relative; }
.ctaband h2 { margin-bottom: 14px; }
.ctaband .hero__cta { justify-content: center; margin-top: 30px; }

/* ------------------------------------------------------------------ forms (signup) */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(26px, 4vw, 40px); }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 0.82rem; font-weight: 650; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }
.field input, .field select {
  width: 100%; padding: 13px 15px; font-size: 1rem; font-family: inherit;
  color: var(--text); background: var(--bg-2);
  border: 1px solid var(--border-strong); border-radius: var(--r-sm);
  transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-wash); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23727C97' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin-top: 6px; font-size: 0.85rem; color: var(--text-dim); }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--r-sm); font-size: 0.95rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--verify-wash); border: 1px solid var(--verify-line); color: var(--verify); }
.form-status.err { background: rgba(255,93,108,0.1); border: 1px solid rgba(255,93,108,0.35); color: var(--roast); }
.form-status.info { background: var(--accent-wash); border: 1px solid rgba(255,194,51,0.3); color: var(--accent-hi); }
.signup-aside .verified { margin-bottom: 20px; }
.signup-aside ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.signup-aside li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); }
.signup-aside li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--accent); }
.commish-login { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 0.95rem; color: var(--text-dim); }
.commish-login a { color: var(--accent); font-weight: 600; }
.commish-login a:hover { text-decoration: underline; }

/* ------------------------------------------------------------------ footer */
.footer { border-top: 1px solid var(--border); padding-block: 48px 40px; margin-top: 40px; }
.footer__grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a { color: var(--text-muted); font-size: 0.94rem; }
.footer__links a:hover { color: var(--text); }
.footer__legal { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.85rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ------------------------------------------------------------------ reveal anim
   Gated on html.js so content stays fully visible if scripts never run. */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .card, .style-tile, .price-card { transition: none !important; }
}

/* ------------------------------------------------------------------ responsive */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; }
  .hero__panel { order: -1; }
  .proof__grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .styles { grid-template-columns: repeat(2, 1fr); }
  .style-tile--featured { grid-column: span 2; }
  .split { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .form-wrap { grid-template-columns: 1fr; }
  .signup-aside { order: -1; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  /* collapse only when JS is live (html.js set inline in <head>) — without
     JS the toggle has no handler, so links must stay visible */
  .js .nav__links { display: none; }
  .js .nav__toggle { display: flex; }
  .nav[data-open="true"] .nav__links {
    display: flex; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    /* fully opaque: translucency here reads as content bleed-through, not
       frosted glass (mobile QA 2026-07-19) */
    padding: 14px var(--gutter) 20px; background: var(--bg-2);
    border-bottom: 1px solid var(--border-strong);
    box-shadow: 0 24px 40px -16px rgba(0,0,0,0.8);
  }
  .nav[data-open="true"] .nav__links a { padding: 12px 14px; }
  .nav[data-open="true"] .nav__cta { margin: 6px 0 0; }
  .features { grid-template-columns: 1fr; }
  .styles { grid-template-columns: 1fr; }
  .style-tile--featured { grid-column: span 1; flex-direction: column; align-items: stretch; }
  .style-tile--featured img { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .scorestrip { max-width: none; }
  .step { grid-template-columns: 1fr; gap: 6px; }
  .step__num { text-align: left; width: auto; }
  .steps--connected .step:not(:last-child)::after { display: none; }
  .hero__cta .btn { flex: 1; }
}

/* ------------------------------------------------------------------ real-league showcase (2026-07-19) */
/* feature-card screenshots */
.card__shot { margin-top: 18px; border: 1px solid var(--border-strong); border-radius: var(--r-sm); overflow: hidden; background: var(--bg-2); box-shadow: var(--shadow-sm); }
.card__shot img { display: block; width: 100%; height: auto; }

/* cast strip: team name -> mascot */
.cast { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.cast-chip { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; padding: 16px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); min-width: 0; }
.cast-chip__name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.12rem; color: var(--text); flex: none; }
.cast-chip__arrow { color: var(--accent); flex: none; font-weight: 700; }
.cast-chip__desc { color: var(--text-muted); font-size: 0.95rem; }
.cast-foot { margin-top: 22px; color: var(--text-dim); font-size: 0.95rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* origin strip */
.origin { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px, 5vw, 64px); align-items: center; }

/* setup band + MFL badge */
.setup { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.setup-step { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); }
.setup-step__num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--accent); }
.setup-step h3 { margin: 10px 0 8px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.2rem; }
.setup-step p { margin: 0; color: var(--text-muted); font-size: 0.97rem; line-height: 1.6; }
.mfl-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px; border: 1px solid var(--border-strong); border-radius: var(--r-pill); background: var(--surface); color: var(--text-muted); font-size: 0.9rem; font-weight: 600; }
.mfl-badge svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

@media (max-width: 960px) {
  .origin { grid-template-columns: 1fr; }
  .setup { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cast { grid-template-columns: 1fr; }
  .cast-chip { flex-wrap: wrap; }
}
