/* ── StringMatch — Landing Page Styles ────────────────────────────────────── */
/* Self-contained: no styles.css dependency — tokens + shared components below  */

/* ── Design tokens ───────────────────────────────────────────────────────────── */
:root {
  --bg:          #0d0d0d;
  --surface:     #161616;
  --surface2:    #1e1e1e;
  --border:      rgba(255, 255, 255, 0.08);
  --border2:     rgba(255, 255, 255, 0.15);
  --text:        #f0ede8;
  --muted:       #7a7672;
  --accent:      #c8f050;
  --accent-dark: #9bbf2a;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       12px;
  --radius-sm:    8px;
}

/* ── Reset ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:  var(--bg);
  color:       var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  min-height:  100vh;
  line-height: 1.6;
}

/* ── Logo ─────────────────────────────────────────────────────────────────────── */
.logo { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); color: var(--text); letter-spacing: -0.02em; line-height: 1; margin-bottom: 0.5rem; }
.logo span { color: var(--accent); font-style: italic; }

/* ── Pill tag ─────────────────────────────────────────────────────────────────── */
.pill { font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); }

/* ── Rec card (results preview mock) ────────────────────────────────────────── */
.rec-card  { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; }
.rec-top   { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.rec-badge { font-size: 0.7rem; background: rgba(200,240,80,0.12); color: var(--accent); border: 1px solid rgba(200,240,80,0.25); border-radius: 20px; padding: 3px 10px; white-space: nowrap; flex-shrink: 0; }
.rec-name  { font-family: var(--font-display); font-size: 1.7rem; color: var(--text); margin-bottom: 4px; }
.rec-brand { font-size: 0.85rem; color: var(--muted); }
.rec-specs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--border); }
.spec      { padding: 1.2rem; text-align: center; border-right: 1px solid var(--border); }
.spec:last-child { border-right: none; }
.spec-val  { font-size: 1.1rem; font-weight: 500; color: var(--text); }
.spec-label{ font-size: 0.72rem; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.08em; }
.rec-bars  { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.bar-row   { display: flex; align-items: center; gap: 12px; }
.bar-name  { font-size: 0.78rem; color: var(--muted); width: 68px; flex-shrink: 0; }
.bar-track { flex: 1; height: 3px; background: var(--border2); border-radius: 2px; overflow: hidden; }
.bar-fill  { height: 100%; background: var(--accent); border-radius: 2px; width: 0; transition: width 0.8s cubic-bezier(0.4,0,0.2,1); }
.bar-pct   { font-size: 0.78rem; color: var(--muted); width: 32px; text-align: right; flex-shrink: 0; }
.rec-explain { padding: 1.5rem; font-size: 0.9rem; line-height: 1.8; color: #bbb; }

/* ── Body ───────────────────────────────────────────────────────────────────── */
.landing-body { overflow-x: hidden; }

/* ── Container ──────────────────────────────────────────────────────────────── */
.l-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Nav ────────────────────────────────────────────────────────────────────── */
.l-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: rgba(13,13,13,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.l-nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-nav-logo { text-decoration: none; }

.l-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.l-nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.15s;
}
.l-nav-link:hover { color: var(--text); }

.l-nav-cta {
  background: var(--accent);
  color: #0d0d0d;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.3s, transform 0.3s, background 0.15s;
}
.l-nav-cta.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.l-nav-cta:hover   { background: #d8ff60; }

/* ── Shared section wrapper ──────────────────────────────────────────────────── */
.l-section { padding: 7rem 0; }

.l-section-header {
  max-width: 620px;
  margin: 0 auto 4rem;
  text-align: center;
}

/* ── Eyebrow ─────────────────────────────────────────────────────────────────── */
.l-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.l-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: lDotPulse 2.2s ease-in-out infinite;
}

@keyframes lDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── Section title ───────────────────────────────────────────────────────────── */
.l-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1rem;
}
.l-section-title em { color: var(--accent); font-style: italic; }

.l-section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── CTA button ──────────────────────────────────────────────────────────────── */
.l-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0d0d0d;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.15s, transform 0.2s, box-shadow 0.2s;
}
.l-cta-btn:hover {
  background: #d8ff60;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,240,80,0.22);
}
.l-cta-sm { font-size: 0.88rem; padding: 0.75rem 1.75rem; }
.l-cta-lg { font-size: 1.05rem; padding: 1rem 2.5rem; }

/* Subtle pulse on the hero CTA only */
.l-cta-pulse {
  animation: lCtaPulse 2.8s ease-in-out infinite;
  animation-delay: 1.2s;
}
.l-cta-pulse:hover { animation: none; }
@keyframes lCtaPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(200,240,80,0); }
  50%       { box-shadow: 0 0 0 10px rgba(200,240,80,0.12); }
}

/* ── Scroll reveal ────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.l-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

/* ── Background layers ───────────────────────────────────────────────────────── */
.l-hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* Outer soft bloom — JS moves this via style.transform on mousemove */
.l-hero-glow {
  position: absolute;
  top: -18%;
  left: 38%;
  transform: translateX(-50%);
  width: 1100px;
  height: 900px;
  background: radial-gradient(ellipse at center,
    rgba(200,240,80,0.1) 0%,
    rgba(200,240,80,0.04) 42%,
    transparent 68%);
  filter: blur(55px);
  will-change: transform;
  transition: transform 0.5s ease-out;
}

/* Inner sharp core — CSS-only pulse, not moved by JS */
.l-hero-glow-core {
  position: absolute;
  top: 8%;
  left: 32%;
  transform: translateX(-50%);
  width: 520px;
  height: 440px;
  background: radial-gradient(ellipse at center,
    rgba(200,240,80,0.16) 0%,
    rgba(200,240,80,0.05) 50%,
    transparent 78%);
  filter: blur(22px);
  animation: lCoreGlowPulse 4.5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes lCoreGlowPulse {
  from { opacity: 0.65; transform: translateX(-50%) scale(0.94); }
  to   { opacity: 1;    transform: translateX(-50%) scale(1.06); }
}

/* Racket string diagonal weave — subtle cross-hatch that breathes */
.l-hero-strings {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      47deg,
      rgba(200,240,80,0.028) 0px,
      rgba(200,240,80,0.028) 1px,
      transparent 1px,
      transparent 38px
    ),
    repeating-linear-gradient(
      -47deg,
      rgba(200,240,80,0.028) 0px,
      rgba(200,240,80,0.028) 1px,
      transparent 1px,
      transparent 38px
    );
  mask-image: radial-gradient(ellipse 80% 85% at 55% 45%, black 15%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 85% at 55% 45%, black 15%, transparent 80%);
  animation: lStringsBreath 7s ease-in-out infinite alternate;
}
@keyframes lStringsBreath {
  from { opacity: 0.55; }
  to   { opacity: 1; }
}

/* Film grain texture — adds tactile depth */
.l-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
}

.l-hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 55% at 50% 108%, rgba(13,13,13,1) 0%, transparent 52%),
    radial-gradient(ellipse 55% 100% at 0% 50%, rgba(13,13,13,0.65) 0%, transparent 65%),
    radial-gradient(ellipse 40% 100% at 100% 50%, rgba(13,13,13,0.5) 0%, transparent 65%);
}

/* ── Hero inner — split grid layout ─────────────────────────────────────────── */
.l-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

/* ── Left: text content ──────────────────────────────────────────────────────── */
.l-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Staggered entrance — pure CSS */
.l-fade-up {
  opacity: 0;
  animation: lFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes lFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.l-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 1rem 0 1.5rem;
}

/* Gradient shimmer on italic "racket string." */
.l-hero-headline em {
  font-style: italic;
  background: linear-gradient(105deg, var(--accent) 0%, #e6ff7a 40%, var(--accent) 80%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: lEmShimmer 6s linear infinite;
  animation-delay: 1.4s;
}
@keyframes lEmShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: -220% center; }
}

.l-hero-sub {
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2rem;
}

.l-sport-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.l-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid var(--border2);
  background: rgba(22,22,22,0.9);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.l-chip:hover { border-color: rgba(200,240,80,0.3); color: var(--text); transform: translateY(-2px); }
.l-chip svg { color: var(--accent); flex-shrink: 0; }

.l-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

/* Shimmer sweep on the CTA button */
.l-hero-actions .l-cta-btn {
  position: relative;
  overflow: hidden;
}
.l-hero-actions .l-cta-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: lBtnShimmer 4s ease-in-out infinite;
  animation-delay: 2.5s;
  pointer-events: none;
}
@keyframes lBtnShimmer {
  0%, 100% { left: -100%; }
  55%       { left: 150%; }
}

.l-hero-note {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  opacity: 0.65;
}

/* ── Right: floating result visual ──────────────────────────────────────────── */
.l-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

/* Main result card — floats gently */
.l-hero-result-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  background: var(--surface);
  border: 1px solid rgba(200,240,80,0.14);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(200,240,80,0.06),
    inset 0 1px 0 rgba(255,255,255,0.04);
  animation: lResultIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both, lFloat1 5.5s ease-in-out infinite;
  animation-delay: 0.6s, 1.4s;
  /* Subtle top accent line */
  background-image: linear-gradient(to bottom, rgba(200,240,80,0.07) 0px, transparent 2px);
}

@keyframes lResultIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lFloat1 {
  0%, 100% { transform: translateY(0) rotate(0.4deg); }
  50%       { transform: translateY(-14px) rotate(-0.4deg); }
}

/* Card header */
.l-hero-rc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-hero-rc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,240,80,0.1);
  border: 1px solid rgba(200,240,80,0.22);
  border-radius: 20px;
  padding: 3px 10px;
}
.l-hero-rc-badge svg { fill: var(--accent); }
.l-hero-rc-pts {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1;
}
.l-hero-rc-pts em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--muted);
  margin-left: 2px;
  /* override the parent em shimmer */
  background: none;
  -webkit-text-fill-color: var(--muted);
  animation: none;
}

/* String name */
.l-hero-rc-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.01em;
}
.l-hero-rc-meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: -0.5rem;
}

/* Score bars */
.l-hero-rc-bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.l-hero-rcb-row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.l-hero-rcb-lbl {
  font-size: 0.7rem;
  color: var(--muted);
  width: 58px;
  flex-shrink: 0;
}
.l-hero-rcb-track {
  flex: 1;
  height: 3px;
  background: var(--border2);
  border-radius: 2px;
  overflow: hidden;
}
.l-hero-rcb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(200,240,80,0.6));
  border-radius: 2px;
  width: 0;
  animation: lRcBarFill 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.l-hero-rcb-row:nth-child(1) .l-hero-rcb-fill { animation-delay: 1.3s; }
.l-hero-rcb-row:nth-child(2) .l-hero-rcb-fill { animation-delay: 1.5s; }
.l-hero-rcb-row:nth-child(3) .l-hero-rcb-fill { animation-delay: 1.7s; }
@keyframes lRcBarFill { to { width: var(--rcw); } }

.l-hero-rcb-val {
  font-size: 0.7rem;
  color: var(--text);
  width: 20px;
  text-align: right;
  flex-shrink: 0;
}

/* AI explanation quote */
.l-hero-rc-explain {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  padding-left: 0.8rem;
  position: relative;
}
.l-hero-rc-explain::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
}

/* Scoring dimensions row */
.l-hero-rc-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.l-hero-rc-dim {
  font-size: 0.63rem;
  padding: 2px 7px;
  border-radius: 10px;
  background: rgba(200,240,80,0.06);
  border: 1px solid rgba(200,240,80,0.14);
  color: rgba(200,240,80,0.6);
  font-family: var(--font-body);
}
.l-hero-rc-dim--more {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  color: var(--muted);
}

/* ── Satellite pills ─────────────────────────────────────────────────────────── */
.l-hero-sat {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  font-size: 0.72rem;
  font-family: var(--font-body);
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.l-hero-sat svg { color: var(--accent); flex-shrink: 0; }

.l-hero-sat--tl {
  top: 2%;
  left: -8%;
  animation: lFloat2 6.5s ease-in-out infinite;
  animation-delay: 0.8s;
}
.l-hero-sat--r {
  top: 42%;
  right: -10%;
  animation: lFloat3 5s ease-in-out infinite;
  animation-delay: 1.2s;
}
.l-hero-sat--b {
  bottom: 4%;
  left: 5%;
  animation: lFloat2 7s ease-in-out infinite;
  animation-delay: 0.4s;
}

@keyframes lFloat2 {
  0%, 100% { transform: translateY(-5px) rotate(-0.8deg); }
  50%       { transform: translateY(8px) rotate(0.8deg); }
}
@keyframes lFloat3 {
  0%, 100% { transform: translateY(6px) rotate(1deg); }
  50%       { transform: translateY(-9px) rotate(-1deg); }
}

/* ── Scroll indicator ────────────────────────────────────────────────────────── */
.l-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(200,240,80,0.6), transparent);
  transform-origin: top;
  animation: lScrollLine 2.4s ease-in-out infinite;
}
@keyframes lScrollLine {
  0%   { transform: scaleY(0); opacity: 0; }
  20%  { opacity: 1; }
  55%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── Responsive: collapse to single column ───────────────────────────────────── */
@media (max-width: 900px) {
  .l-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .l-hero-content { align-items: center; }
  .l-hero-sub { max-width: 520px; }
  .l-sport-chips { justify-content: center; }
  .l-hero-actions { align-items: center; }
  .l-hero-headline { font-size: clamp(3rem, 10vw, 5.5rem); }
  /* Hide floating visual on mobile to avoid overlap */
  .l-hero-visual { display: none; }
}

/* ── How It Works (Bento) ────────────────────────────────────────────────────── */
.l-how { background: var(--bg); }

/* Asymmetric 2-col row 1, full-width row 2 */
.l-how-bento {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1.25rem;
}

/* ── Base card ─────────────────────────────────────────────────────────────── */
.l-how-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.l-how-card:hover {
  border-color: rgba(200,240,80,0.2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* ── Step tag (editorial label) ───────────────────────────────────────────── */
.l-how-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.l-how-step-tag span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0;
}
.l-how-step-tag--featured { color: rgba(200,240,80,0.7); }

/* ── Icon ─────────────────────────────────────────────────────────────────── */
.l-how-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(200,240,80,0.12) 0%, rgba(200,240,80,0.04) 100%);
  border: 1px solid rgba(200,240,80,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.l-how-icon--featured {
  background: linear-gradient(135deg, rgba(200,240,80,0.2) 0%, rgba(200,240,80,0.06) 100%);
  border-color: rgba(200,240,80,0.28);
}

/* ── Title + desc ─────────────────────────────────────────────────────────── */
.l-how-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
.l-how-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Step 01: sport list ──────────────────────────────────────────────────── */
.l-how-sport-list {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.l-how-sport-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.84rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.l-how-sport-item:last-child { border-bottom: none; }
.l-how-sport-item:hover { background: var(--surface2); }
.l-how-sport-item svg { color: var(--accent); flex-shrink: 0; }
.l-how-sport-item span {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 8px;
}

/* ── Step 02: big 9 + question chips ─────────────────────────────────────── */
.l-how-02-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.l-how-big-nine {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.85;
  color: var(--accent);
  opacity: 0.11;
  user-select: none;
  pointer-events: none;
  margin-top: -0.25rem;
}
.l-how-q-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.25rem;
}
.l-how-q-chips span {
  font-size: 0.71rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-body);
}
.l-how-q-chip--more {
  background: rgba(200,240,80,0.06) !important;
  border-color: rgba(200,240,80,0.2) !important;
  color: var(--accent) !important;
}

/* ── Step 03: full-width featured card ────────────────────────────────────── */
.l-how-card--03 {
  grid-column: 1 / -1;
  border-color: rgba(200,240,80,0.1);
  background-image: radial-gradient(ellipse 55% 100% at 100% 50%, rgba(200,240,80,0.035) 0%, transparent 65%);
}
.l-how-card--03:hover { border-color: rgba(200,240,80,0.26); }

.l-how-03-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Scoring dimension tags */
.l-how-dim-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.25rem;
}
.l-how-dim-tags span {
  font-size: 0.68rem;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(200,240,80,0.07);
  border: 1px solid rgba(200,240,80,0.18);
  color: var(--accent);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

/* ── Mini result preview (right column of step 03) ────────────────────────── */
.l-how-03-preview {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.l-how-preview-eyebrow {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  opacity: 0.55;
}
.l-how-preview-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.l-how-preview-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.2;
}
.l-how-preview-brand {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 3px;
}
.l-how-preview-badge {
  font-size: 0.63rem;
  background: rgba(200,240,80,0.1);
  color: var(--accent);
  border: 1px solid rgba(200,240,80,0.22);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Score bars */
.l-how-preview-bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
}
.l-how-pbar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-how-pbar-lbl {
  font-size: 0.7rem;
  color: var(--muted);
  width: 60px;
  flex-shrink: 0;
}
.l-how-pbar-track {
  flex: 1;
  height: 3px;
  background: var(--border2);
  border-radius: 2px;
  overflow: hidden;
}
.l-how-pbar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(200,240,80,0.65));
  border-radius: 2px;
  width: 0;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1) var(--bar-delay, 0ms);
}
/* Staggered delays per bar row */
.l-how-pbar-row:nth-child(1) .l-how-pbar-fill { --bar-delay: 350ms; }
.l-how-pbar-row:nth-child(2) .l-how-pbar-fill { --bar-delay: 500ms; }
.l-how-pbar-row:nth-child(3) .l-how-pbar-fill { --bar-delay: 650ms; }
.l-how-pbar-row:nth-child(4) .l-how-pbar-fill { --bar-delay: 800ms; }
/* Animate bars when step 03 card enters viewport */
.l-how-card--03.revealed .l-how-pbar-fill { width: var(--w); }

.l-how-pbar-val {
  font-size: 0.7rem;
  color: var(--text);
  width: 22px;
  text-align: right;
  flex-shrink: 0;
}

.l-how-preview-quote {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  padding-left: 0.9rem;
  position: relative;
}
.l-how-preview-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .l-how-pbar-fill { transition: none; }
}

/* ── Results Preview ──────────────────────────────────────────────────────────── */
.l-preview {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.l-preview-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.l-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface2);
}
.l-preview-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* The mock card uses all existing .rec-card classes from styles.css       */
/* Only add shadow and subtle accent border for the landing context         */
.l-mock-card {
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,240,80,0.07);
}

.l-explain-credit {
  margin-top: 0.8rem;
  font-size: 0.73rem;
  color: var(--muted);
  opacity: 0.6;
  font-style: italic;
}

.l-preview-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Score breakdown sidebar */
.l-score-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 1.25rem 1.5rem;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
}
.l-score-dim {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--muted);
}
.l-score-dim-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.l-score-dim strong { color: var(--text); font-weight: 500; }

/* ── Stats strip ─────────────────────────────────────────────────────────────── */
.l-stats-strip {
  background: var(--bg);
  padding: 3.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.l-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-stat {
  flex: 1;
  text-align: center;
  padding: 1rem 2rem;
}

.l-stat-val {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.l-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.l-stats-sep {
  width: 1px;
  height: 52px;
  background: var(--border2);
  flex-shrink: 0;
}

/* ── Who It's For ────────────────────────────────────────────────────────────── */
.l-who { background: var(--bg); }

.l-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

/* ── Base profile card ────────────────────────────────────────────────────────── */
.l-profile-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.l-profile-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* Featured card (card 1) — accent glow treatment */
.l-profile-card--featured {
  border-color: rgba(200,240,80,0.16);
  background-image: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(200,240,80,0.05) 0%, transparent 70%);
}
.l-profile-card--featured:hover {
  border-color: rgba(200,240,80,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(200,240,80,0.08);
}

/* Decorative bg element on featured card */
.l-profile-card-bg {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,240,80,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Card top row: avatar icon + pills ────────────────────────────────────────── */
.l-profile-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.l-profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(200,240,80,0.12) 0%, rgba(200,240,80,0.04) 100%);
  border: 1px solid rgba(200,240,80,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.l-profile-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 2px;
}

/* New pill design — replaces old .pill generic */
.l-profile-pill {
  font-size: 0.68rem;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  letter-spacing: 0.02em;
}
/* Alert pill (arm pain, injury) */
.l-profile-pill--alert {
  background: rgba(255, 120, 80, 0.08);
  border-color: rgba(255, 120, 80, 0.22);
  color: #ff9070;
}
/* Spin pill */
.l-profile-pill--spin {
  background: rgba(100, 180, 255, 0.08);
  border-color: rgba(100, 180, 255, 0.22);
  color: #88c8ff;
}
/* Budget pill */
.l-profile-pill--budget {
  background: rgba(200,240,80,0.07);
  border-color: rgba(200,240,80,0.2);
  color: var(--accent);
}

/* ── Quote ─────────────────────────────────────────────────────────────────────── */
.l-profile-story {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.85;
  flex: 1;
  font-style: italic;
  position: relative;
  padding-left: 1rem;
}
.l-profile-story::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--border2), transparent);
}
.l-profile-card--featured .l-profile-story::before {
  background: linear-gradient(to bottom, rgba(200,240,80,0.35), transparent);
}

/* ── Result block ──────────────────────────────────────────────────────────────── */
.l-profile-result {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.l-profile-result-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.8;
}
.l-profile-result-label svg { fill: var(--accent); flex-shrink: 0; }
.l-profile-result-string {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.2;
}
.l-profile-result-why {
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 2px;
}

/* ── Final CTA ───────────────────────────────────────────────────────────────── */
.l-final-cta {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 10rem 2rem 9rem;
  overflow: hidden;
}

/* Background layers */
.l-final-bg { position: absolute; inset: 0; pointer-events: none; }

.l-final-glow {
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(200,240,80,0.12) 0%,
    rgba(200,240,80,0.04) 40%,
    transparent 68%);
  filter: blur(50px);
  animation: lFinalGlowPulse 5s ease-in-out infinite alternate;
}
@keyframes lFinalGlowPulse {
  from { opacity: 0.7; transform: translateX(-50%) scale(0.95); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.05); }
}

/* Diagonal string weave — same motif as hero */
.l-final-strings {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      47deg,
      rgba(200,240,80,0.022) 0px,
      rgba(200,240,80,0.022) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      -47deg,
      rgba(200,240,80,0.022) 0px,
      rgba(200,240,80,0.022) 1px,
      transparent 1px,
      transparent 40px
    );
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 10%, transparent 78%);
}

.l-final-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 50% at 0% 50%,   rgba(22,22,22,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 100% 50%, rgba(22,22,22,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(22,22,22,0.9) 0%, transparent 55%);
}

/* Inner content */
.l-final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* ── Sport database strip ─────────────────────────────────────────────────────── */
.l-final-sports {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--border2);
  border-radius: 30px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
.l-final-sport {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--font-body);
}
.l-final-sport svg { color: var(--accent); flex-shrink: 0; }
.l-final-sport strong {
  color: var(--text);
  font-weight: 500;
}
.l-final-sport-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border2);
}

/* ── Headline ─────────────────────────────────────────────────────────────────── */
.l-final-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
}
.l-final-title em {
  font-style: italic;
  background: linear-gradient(105deg, var(--accent) 0%, #e6ff7a 45%, var(--accent) 85%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: lFinalEmShimmer 7s linear infinite;
  animation-delay: 0.8s;
}
@keyframes lFinalEmShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: -220% center; }
}

/* ── CTA button with expanding pulse ring ─────────────────────────────────────── */
.l-final-btn-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Pulsing halo ring behind the button */
.l-final-btn-ring {
  position: absolute;
  inset: -10px;
  border-radius: 18px;
  border: 1px solid rgba(200,240,80,0.35);
  animation: lBtnRingPulse 2.8s ease-out infinite;
  animation-delay: 1s;
  pointer-events: none;
}
.l-final-btn-ring::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 22px;
  border: 1px solid rgba(200,240,80,0.15);
  animation: lBtnRingPulse 2.8s ease-out infinite;
  animation-delay: 1.4s;
}
@keyframes lBtnRingPulse {
  0%   { opacity: 1;   transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.18); }
}

/* Button shimmer sweep */
.l-final-btn {
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  padding: 1rem 2.25rem;
}
.l-final-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
  animation: lFinalBtnShimmer 3.5s ease-in-out infinite;
  animation-delay: 1.8s;
  pointer-events: none;
}
@keyframes lFinalBtnShimmer {
  0%, 100% { left: -100%; }
  50%       { left: 150%; }
}

/* ── Proof row ────────────────────────────────────────────────────────────────── */
.l-final-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.l-final-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--font-body);
}
.l-final-proof-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Testimonials ────────────────────────────────────────────────────────────── */
.l-testimonials {
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
  padding-bottom: 5rem;
}

/* Full-width marquee wrapper — clips the overflow */
.l-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Edge fade masks */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.l-marquee {
  overflow: hidden;
  width: 100%;
}

/* The moving track — contains two identical sets of cards */
.l-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

/* Row 1 scrolls left */
.l-marquee--left .l-marquee-track {
  animation: lMarqueeLeft 38s linear infinite;
}
/* Row 2 scrolls right */
.l-marquee--right .l-marquee-track {
  animation: lMarqueeRight 42s linear infinite;
}

/* Pause on hover */
.l-marquee-wrap:hover .l-marquee-track {
  animation-play-state: paused;
}

@keyframes lMarqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes lMarqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Individual testimonial card */
.l-tcard {
  flex-shrink: 0;
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.2s;
  cursor: default;
}
.l-tcard:hover {
  border-color: rgba(200, 240, 80, 0.18);
}

.l-tcard-quote {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  /* Opening quotation mark as decorative element */
  position: relative;
}
.l-tcard-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: -0.6rem;
  left: -0.3rem;
  line-height: 1;
  pointer-events: none;
}

.l-tcard-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* Reddit source pill */
.l-tcard-source {
  font-size: 0.68rem;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.l-tcard-source--tennis {
  background: rgba(200, 240, 80, 0.1);
  color: var(--accent);
  border: 1px solid rgba(200, 240, 80, 0.2);
}
.l-tcard-source--squash {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border: 1px solid var(--border2);
}

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.l-faq { background: var(--surface); border-top: 1px solid var(--border); }

.l-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.l-faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.l-faq-item[open] { border-color: rgba(200,240,80,0.2); }
.l-faq-item + .l-faq-item { margin-top: 6px; }

.l-faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-body);
  user-select: none;
}
.l-faq-q::-webkit-details-marker { display: none; }
.l-faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.l-faq-item[open] .l-faq-q::after { transform: rotate(45deg); }
.l-faq-q:hover { color: var(--accent); }

.l-faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding-top: 1rem;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.l-footer {
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.l-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.5;
  margin-top: 4px;
}
.l-footer-built {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
}
.l-footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.l-footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.l-footer-links a:hover {
  color: var(--accent);
}
.l-footer-sep {
  color: var(--muted);
  opacity: 0.3;
}
.l-footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.8;
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  .l-how-bento      { grid-template-columns: 1fr; }
  .l-how-card--03   { grid-column: 1; }
  .l-how-03-layout  { grid-template-columns: 1fr; gap: 1.5rem; }
  .l-how-big-nine   { font-size: 5rem; }
  .l-who-grid       { grid-template-columns: 1fr; }
  .l-stats-inner    { flex-wrap: wrap; }
  .l-stats-sep      { display: none; }
  .l-stat           { flex: 0 0 50%; }
}

@media (max-width: 540px) {
  .l-hero-headline { font-size: 3.2rem; }
  .l-section       { padding: 4.5rem 0; }
  .l-final-cta     { padding: 5rem 2rem; }
  .l-final-title   { font-size: 2.8rem; }
  .l-stat          { flex: 0 0 100%; }
  .l-nav           { padding: 0 1rem; }
}
