  :root {
    --bg:        #0a0f18;
    --bg-alt:    #0d1420;
    --bg-card:   #111827;
    --bg-card2:  #141b24;
    --border:    rgba(255,255,255,0.06);
    --border-md: rgba(255,255,255,0.12);
    --red:       #dc3c28;
    --red-dark:  #b91c1c;
    --red-glow:  rgba(220,60,40,0.15);
    --gold:      #fbbf24;
    --gold-2:    #f97316;
    --white:     #edf0f5;
    --muted:     #8a9ab0;
    --dim:       #4a6070;
    --pc-green:  #00b87a;
    --pc-green-glow: rgba(0,184,122,0.15);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body { background: var(--bg); color: var(--white); font-family: 'Segoe UI', system-ui, sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
  a { text-decoration: none; color: inherit; }
  p { color: var(--muted); }

  /* ── NAV ── */
  /* anchors: keep jump targets clear of the sticky nav */
  #plans, #pricing, #features, #pokercoaching, #coaches { scroll-margin-top: 80px; }

  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,15,24,0.9); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    height: 64px; display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { font-size: 1.15rem; font-weight: 900; letter-spacing: -0.02em; }
  .nav-logo span { color: var(--red); }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta { background: var(--red); color: #fff !important; padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: 0.85rem !important; }
  .nav-login { border: 1px solid var(--border-md); color: var(--muted) !important; padding: 7px 18px; border-radius: 50px; font-weight: 600; font-size: 0.85rem !important; transition: border-color 0.2s, color 0.2s; }
  .nav-login:hover { border-color: rgba(255,255,255,0.3); color: var(--white) !important; }

  /* ── HERO ── */
  .hero {
    padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 3vw, 2rem);
    position: relative; overflow: hidden;
    min-height: 90vh; display: flex; align-items: center;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(220,60,40,0.1) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-inner {
    position: relative; max-width: 1440px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 4rem); align-items: center;
  }
  .hero-copy { position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border-left: 3px solid var(--red); background: rgba(220,60,40,0.08);
    padding: 5px 14px 5px 12px; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; color: #f4714a; margin-bottom: 1.5rem;
    border-radius: 0 6px 6px 0;
  }
  .hero h1 {
    font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.08;
    letter-spacing: -0.02em; margin-bottom: 1.25rem;
  }
  .hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--gold), var(--gold-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .hero-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; max-width: 480px; }
  .hero-free-callout {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 1.05rem; font-weight: 700; color: var(--gold);
    margin-bottom: 1.75rem; max-width: 480px;
  }
  .hero-free-callout::before {
    content: ''; display: block; flex-shrink: 0;
    width: 18px; height: 2px; background: var(--gold); border-radius: 2px;
  }
  .hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.85rem; }
  .btn-primary { display: inline-block; background: var(--red); color: #fff; font-weight: 700; font-size: 1rem; padding: 0.85rem 2rem; border-radius: 8px; box-shadow: 0 0 32px var(--red-glow); transition: background 0.2s, transform 0.2s; }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
  .btn-ghost { display: inline-block; background: transparent; border: 1px solid var(--red); color: var(--white); font-weight: 600; font-size: 1rem; padding: 0.85rem 2rem; border-radius: 8px; }
  .hero-note { font-size: 0.875rem; color: var(--dim); letter-spacing: 0.04em; margin-bottom: 2rem; }
  .hero-stats { display: flex; gap: 2rem; padding-top: 1.75rem; border-top: 1px solid var(--border); }
  .hero-stat-val { font-size: 1.4rem; font-weight: 900; background: linear-gradient(135deg, var(--red), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.02em; }
  .hero-stat-lbl { font-size: 0.72rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.15rem; }

  /* ── HERO IMAGE ── */
  .hero-image { position: relative; z-index: 0; }
  .hero-image::before {
    content: ''; position: absolute; z-index: 0;
    top: 50%; left: 0; transform: translate(-22%, -50%);
    height: 100%; aspect-ratio: 1 / 1; border-radius: 50%;
    background: radial-gradient(circle, rgba(220,60,40,0.15) 0%, rgba(220,60,40,0.06) 45%, transparent 70%);
    filter: blur(20px); pointer-events: none;
  }
  .hero-glow-right {
    content: ''; position: absolute; z-index: 0;
    top: 50%; right: 0; transform: translate(40%, -50%);
    height: 110%; aspect-ratio: 1 / 1; border-radius: 50%;
    background: radial-gradient(circle, rgba(220,60,40,0.15) 0%, rgba(220,60,40,0.06) 50%, transparent 76%);
    filter: blur(20px); pointer-events: none;
  }
  .hero-image img {
    position: relative; z-index: 1;
    display: block; width: 100%; height: auto;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.45));
  }
  /* soft glow to blend the red fringe on the shirt's lower-right edge */
  .hero-image::after {
    content: ''; position: absolute; z-index: 2;
    left: 90%; top: 68%; transform: translate(-50%, -50%);
    width: 28%; aspect-ratio: 1 / 1; border-radius: 50%;
    background: radial-gradient(circle, rgba(220,60,40,0.22) 0%, rgba(220,60,40,0.08) 45%, transparent 70%);
    filter: blur(22px); pointer-events: none;
  }
  .hero-image-caption {
    position: absolute; right: 0.75rem; bottom: 0.5rem; text-align: right;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  }
  .hero-image-name { font-size: 1.05rem; font-weight: 800; color: var(--white); }
  .hero-image-cred { font-size: 0.85rem; font-weight: 600; color: var(--gold); margin-top: 0.1rem; }

  /* ── PROMO VIDEO (Swarmify) ── */
  .promo-video {
    position: relative; max-width: 860px; margin: 2.5rem auto 0;
    aspect-ratio: 16 / 9; /* reserve the player's box before Swarmify loads — prevents layout shift that breaks #plans anchor jumps */
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border-md);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(220,60,40,0.08);
  }
  .promo-video .swarm-fluid,
  .promo-video smartvideo,
  .promo-video video { display: block; width: 100%; height: 100%; }

  /* ── SECTION BASE ── */
  .sec { padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem); }
  .sec.alt { background: var(--bg-alt); }
  .container { max-width: 960px; margin: 0 auto; }
  .section-label {
    display: inline-flex; align-items: center; gap: 8px;
    border-left: 3px solid var(--red); background: none; border-radius: 0 6px 6px 0;
    padding: 5px 14px 5px 12px; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1rem;
  }
  .section-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
  .section-title em { font-style: normal; background: linear-gradient(135deg, var(--gold), var(--red)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .section-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.75; max-width: 580px; }

  /* ── PROBLEM + SYSTEM ── */
  .problem-intro { margin-bottom: 3rem; }
  .system-flow {
    display: flex; flex-direction: column; gap: 0;
    position: relative; max-width: 860px; margin: 0 auto;
    padding-left: 1.75rem;
  }
  .system-flow::before {
    content: ''; position: absolute; top: 24px; bottom: calc(1.25rem + 20px); left: 48px;
    width: 2px; background: linear-gradient(180deg, var(--red), var(--gold));
    opacity: 0.18; z-index: 0;
  }
  .system-step {
    display: grid; grid-template-columns: 240px 1fr; gap: 0 2rem;
    align-items: start; position: relative; z-index: 1; padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
  }
  .system-step:last-child { border-bottom: none; }
  .step-left { display: flex; align-items: flex-start; gap: 1rem; }
  .step-number {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: var(--bg-alt); border: 2px solid var(--red);
    color: var(--red); font-size: 1rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
  }
  .step-header h3 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 0.2rem; }
  .step-tagline { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); }
  .system-step > p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; padding-top: 0.35rem; }
  .system-summary { margin-top: 3rem; text-align: center; max-width: 540px; margin-left: auto; margin-right: auto; }
  .system-summary p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }

  /* ── STUDENT RESULTS ── */
  .student-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .student-card {
    border-radius: 14px; overflow: hidden; aspect-ratio: 1;
    border-left: 4px solid var(--red);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .student-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
  .student-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .student-disclaimer { text-align: center; margin-top: 1.25rem; font-size: 0.75rem; color: var(--dim); font-style: italic; }

  /* ── FREE TIER ── */
  .free-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
  .free-side { border-radius: 12px; padding: 1.75rem; }
  .free-side.f { background: rgba(220,60,40,0.04); border: 1px solid rgba(220,60,40,0.15); }
  .free-side.p { background: linear-gradient(135deg, rgba(220,60,40,0.08), rgba(251,191,36,0.05)); border: 1px solid rgba(220,60,40,0.3); border-left: 3px solid var(--red); position: relative; }
  .free-side-label { font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.1rem; }
  .free-side.f .free-side-label { color: var(--muted); }
  .free-side.p .free-side-label { color: var(--gold); }
  .free-item { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
  .free-item:last-child { border-bottom: none; }
  .free-item-check { color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }
  .free-item-check.gold { color: var(--gold); }
  .free-item-body {}
  .free-item-title { font-weight: 600; color: var(--white); }
  .free-item-desc  { font-size: 0.875rem; color: var(--muted); margin-top: 0.1rem; }
  .free-limit { display: inline-block; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; background: rgba(220,60,40,0.15); border: 1px solid rgba(220,60,40,0.3); color: #f4714a; padding: 0.1rem 0.45rem; border-radius: 3px; margin-left: 0.4rem; vertical-align: middle; }
  .free-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
  .btn-outline { display: block; text-align: center; background: transparent; border: 1px solid var(--border-md); color: var(--muted); font-weight: 600; font-size: 0.9rem; padding: 0.75rem 1rem; border-radius: 8px; }
  .btn-red-full { display: block; text-align: center; background: var(--red); color: #fff; font-weight: 700; font-size: 0.9rem; padding: 0.75rem 1rem; border-radius: 8px; box-shadow: 0 0 24px var(--red-glow); }

  /* ── POKERCOACHING BRIDGE ── */
  .pc-logo { height: 26px; width: auto; display: block; margin-bottom: 1.25rem; }
  .pc-showcase-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 2rem; margin-top: 2.5rem; align-items: start; }
  .pc-tabs { display: flex; flex-direction: column; gap: 0.5rem; }
  .pc-tab { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.1rem; cursor: pointer; display: flex; align-items: flex-start; gap: 0.85rem; transition: all 0.3s; }
  .pc-tab:hover { background: var(--bg-card2); border-color: var(--border-md); }
  .pc-tab.active { background: radial-gradient(ellipse at 0% 0%, rgba(0,184,122,0.12) 0%, transparent 25%), var(--bg-card2); border-color: transparent; border-left: 3px solid var(--pc-green); transform: translateX(4px); }
  .pc-tab-icon { font-size: 1.2rem; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .pc-tab-text { flex: 1; min-width: 0; }
  .pc-tab-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--white); }
  .pc-tab-desc { font-size: 0.875rem; color: var(--dim); line-height: 1.45; transition: color 0.3s; }
  .pc-tab.active .pc-tab-desc { color: var(--muted); }
  .pc-showcase-display { position: relative; min-height: 400px; overflow: hidden; }
  .pc-panel { position: absolute; inset: 0; opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; }
  .pc-panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
  .pc-panel-video { border-radius: 14px; overflow: hidden; aspect-ratio: 16/9; background: var(--bg-card); border: 1px solid var(--border); position: relative; }
  .pc-panel-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 14px; }
  .pc-panel-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
  .pc-panel-placeholder { border-radius: 14px; aspect-ratio: 16/9; background: var(--bg-card2); border: 1px solid var(--border); border-left: 3px solid var(--pc-green); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem; }
  .pc-panel-placeholder-icon { font-size: 2rem; }
  .pc-panel-placeholder-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dim); }
  .pc-panel-info { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.4rem; margin-top: 0.75rem; }
  .pc-panel-info h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.4rem; }
  .pc-panel-info p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
  #pokercoaching .section-title em { background: linear-gradient(135deg, var(--pc-green), #7ee8c0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  #pokercoaching .btn-primary { background: var(--pc-green); box-shadow: 0 0 32px var(--pc-green-glow); }
  #pokercoaching .btn-primary:hover { background: #009e68; }

  /* ── COACH CAROUSEL ── */
  .coach-carousel-wrap { position: relative; display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; }
  .coach-carousel { overflow-x: auto; flex: 1; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
  .coach-carousel::-webkit-scrollbar { display: none; }
  .coach-carousel-track { display: flex; }
  .coach-slide { min-width: calc(100% / 3.25); padding: 0 0.625rem; box-sizing: border-box; scroll-snap-align: start; }
  .coach-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; text-align: center; height: 100%; display: flex; flex-direction: column; }
  .coach-card img { width: 100px; height: 100px; border-radius: 12px; object-fit: cover; object-position: top; margin: 0 auto 1rem; display: block; }
  .coach-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
  .coach-creds { color: var(--muted); font-size: 0.85rem; margin-bottom: 1rem; line-height: 1.4; }
  .coach-stat-box { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 10px; padding: 0.85rem; margin-top: auto; }
  .coach-stat-val { font-size: 1.4rem; font-weight: 900; color: var(--gold); display: block; }
  .coach-stat-lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--dim); margin-top: 4px; display: block; }
  .carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-md); background: var(--bg-card); color: var(--white); cursor: pointer; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; line-height: 1; }
  .carousel-btn:hover { background: var(--bg-alt); border-color: rgba(255,255,255,0.2); }
  .carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 1.5rem; }
  .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-md); cursor: pointer; transition: background 0.2s; border: none; padding: 0; }
  .carousel-dot.active { background: var(--red); }
  .coach-closing { max-width: 680px; margin-top: 2.5rem; color: var(--muted); font-size: 1rem; line-height: 1.6; }
  .coach-closing strong { color: var(--white); }

  /* ── MONTHLY CHALLENGE ── */
  .challenge-card {
    background: radial-gradient(ellipse at 0% 0%, rgba(220,60,40,0.12) 0%, transparent 40%), var(--bg-card2);
    border: 1px solid rgba(220,60,40,0.25);
    border-left: 3px solid var(--red);
    border-radius: 16px; padding: 2.5rem;
    display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
    margin-top: 2.5rem;
  }
  .challenge-eyebrow { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); margin-bottom: 0.6rem; }
  .challenge-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 900; line-height: 1.15; margin-bottom: 0.75rem; }
  .challenge-title em { font-style: normal; color: var(--gold); }
  .challenge-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; max-width: 480px; }
  .challenge-checks { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
  .challenge-check { font-size: 0.9rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
  .challenge-check::before { content: '✓'; color: var(--red); font-weight: 700; }
  .challenge-widget {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 1.5rem; text-align: center; min-width: 200px;
  }
  .widget-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dim); margin-bottom: 0.5rem; }
  .widget-coach { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
  .widget-ev { font-size: 2rem; font-weight: 900; color: var(--red); }
  .widget-ev-label { font-size: 0.65rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
  .widget-vs { font-size: 0.68rem; color: var(--dim); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 0.75rem; }
  .widget-you { font-size: 1.5rem; font-weight: 900; color: var(--dim); }
  .widget-you-label { font-size: 0.65rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; }

  /* Condensed monthly-challenge callout band */
  .challenge-slim {
    background: radial-gradient(ellipse at 0% 0%, rgba(220,60,40,0.12) 0%, transparent 45%), var(--bg-card2);
    border: 1px solid rgba(220,60,40,0.25);
    border-left: 3px solid var(--red);
    border-radius: 16px; padding: 1.75rem 2rem;
    display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
  }
  .challenge-slim-title { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 900; line-height: 1.15; margin-bottom: 0.5rem; }
  .challenge-slim-title em { font-style: normal; color: var(--gold); }
  .challenge-slim-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.1rem; max-width: 520px; }

  /* ── LEAK FINDER CALLOUT ── */
  .leak-finder-callout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
  .lf-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(99,179,237,0.1); border: 1px solid rgba(99,179,237,0.25); color: #63b3ed; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 50px; margin-bottom: 1rem; }
  .lf-steps { display: flex; flex-direction: column; gap: 1rem; margin: 1.25rem 0 1.75rem; }
  .lf-step { display: flex; align-items: flex-start; gap: 0.9rem; }
  .lf-step-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(220,60,40,0.12); border: 1px solid rgba(220,60,40,0.3); color: var(--red); font-size: 0.8rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem; }
  .lf-step-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.15rem; }
  .lf-step-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }

  .lf-mock { background: var(--bg-card); border: 1px solid var(--border-md); border-radius: 14px; overflow: hidden; }
  .lf-mock-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
  .lf-mock-title { font-size: 0.88rem; font-weight: 700; color: var(--white); }
  .lf-mock-sub { font-size: 0.7rem; color: var(--dim); }
  .lf-mock-tag { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: rgba(99,179,237,0.12); border: 1px solid rgba(99,179,237,0.25); color: #63b3ed; padding: 3px 10px; border-radius: 50px; }
  .lf-mock-body { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
  .lf-leak-row { display: flex; align-items: center; gap: 0.75rem; }
  .lf-leak-icon { font-size: 1rem; flex-shrink: 0; }
  .lf-leak-info { flex: 1; min-width: 0; }
  .lf-leak-spot { font-size: 0.875rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
  .lf-leak-bar-wrap { height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
  .lf-leak-bar { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--red), var(--gold)); }
  .lf-leak-ev { font-size: 0.875rem; font-weight: 700; color: #e05a4f; flex-shrink: 0; }
  .lf-mock-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
  .lf-mock-footer-text { font-size: 0.875rem; color: var(--muted); }
  .lf-drill-pill { background: rgba(220,60,40,0.12); border: 1px solid rgba(220,60,40,0.3); color: var(--red); font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; cursor: pointer; }

  /* ── FEATURE SHOWCASE (vertical tabs) ── */
  .showcase-wrap { display: grid; grid-template-columns: 320px 1fr; gap: 2rem; margin-top: 2.5rem; align-items: start; }
  .showcase-tabs { display: flex; flex-direction: column; gap: 0.5rem; }
  .s-tab {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 1rem 1.1rem;
    cursor: pointer; display: flex; align-items: flex-start; gap: 0.85rem;
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .s-tab::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; border-radius: 0 3px 3px 0;
    background: var(--red); opacity: 0; transition: opacity 0.3s;
  }
  .s-tab:hover { background: var(--bg-card2); border-color: var(--border-md); }
  .s-tab.active {
    background: radial-gradient(ellipse at 0% 0%, rgba(220,60,40,0.14) 0%, transparent 25%), var(--bg-card2);
    border-color: transparent; border-left: 3px solid var(--red);
    transform: translateX(4px);
  }
  .s-tab.active::before { opacity: 0; }
  .s-tab-icon { font-size: 1.2rem; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .s-tab-text { flex: 1; min-width: 0; }
  .s-tab-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--white); }
  .s-tab-desc  { font-size: 0.875rem; color: var(--dim); line-height: 1.45; transition: color 0.3s; }
  .s-tab.active .s-tab-desc { color: var(--muted); }

  .showcase-display { position: relative; min-height: 400px; overflow: hidden; }
  .s-panel { position: absolute; inset: 0; opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; }
  .s-panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
  .s-panel-video { border-radius: 14px; overflow: hidden; aspect-ratio: 16/9; background: var(--bg-card); border: 1px solid var(--border); }
  .s-panel-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
  .s-panel-placeholder {
    border-radius: 14px; aspect-ratio: 16/9; background: var(--bg-card2);
    border: 1px solid var(--border); border-left: 3px solid var(--red);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 0.5rem;
  }
  .s-panel-placeholder-icon { font-size: 2rem; }
  .s-panel-placeholder-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dim); }
  .s-panel-info { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.4rem; margin-top: 0.75rem; }
  .s-panel-info h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.4rem; }
  .s-panel-info p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }


  /* ── ANALYSIS CALLOUT ── */
  .analysis-callout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
  .analysis-stats { display: flex; flex-direction: column; gap: 1rem; }
  .analysis-stat { display: flex; align-items: flex-start; gap: 0.75rem; }
  .analysis-stat-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
  .analysis-stat-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.15rem; }
  .analysis-stat-desc  { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }

  .analysis-mock {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden;
  }
  .analysis-mock-header {
    padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
    display: flex; align-items: baseline; justify-content: space-between;
  }
  .analysis-mock-title { font-size: 0.88rem; font-weight: 700; color: var(--white); }
  .analysis-mock-sub   { font-size: 0.68rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; }
  .analysis-leak-row {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1.25rem; border-bottom: 1px solid var(--border);
    transition: background 0.2s;
  }
  .analysis-leak-row.highlight { background: rgba(220,60,40,0.05); border-left: 3px solid var(--red); }
  .leak-rank { font-size: 0.7rem; font-weight: 800; color: var(--dim); min-width: 1.2rem; }
  .analysis-leak-row.highlight .leak-rank { color: var(--red); }
  .leak-body { flex: 1; min-width: 0; }
  .leak-spot { font-size: 0.875rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .leak-bar-wrap { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; }
  .leak-bar { height: 100%; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: 2px; }
  .leak-ev { font-size: 0.8rem; font-weight: 700; color: var(--red); white-space: nowrap; }
  .analysis-mock-footer { padding: 1rem 1.25rem; }
  .analysis-cta-pill {
    display: inline-block; background: rgba(220,60,40,0.12); border: 1px solid rgba(220,60,40,0.3);
    color: #f4714a; font-size: 0.78rem; font-weight: 700; padding: 0.5rem 1rem; border-radius: 6px;
    cursor: pointer;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
  .tcard {
    background: radial-gradient(ellipse at 0% 0%, rgba(220,60,40,0.08) 0%, transparent 30%), var(--bg-card2);
    border: 1px solid var(--border); border-left: 3px solid var(--red);
    border-radius: 14px; padding: 1.5rem;
  }
  .tcard-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 3px; margin-bottom: 0.75rem; }
  .tcard-quote { font-size: 0.9rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 1.1rem; }
  .tcard-author { display: flex; align-items: center; gap: 0.65rem; }
  .tcard-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--red-dark), var(--red)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.78rem; flex-shrink: 0; }
  .tcard-name { font-size: 0.85rem; font-weight: 700; color: var(--white); }
  .tcard-detail { font-size: 0.8rem; color: var(--dim); margin-top: 0.1rem; }


  /* ── BILLING TOGGLE ── */
  .billing-toggle-wrap { display: flex; justify-content: center; margin: 2rem 0 2rem; }
  .billing-toggle { display: inline-flex; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 4px; gap: 2px; }
  .billing-btn { background: none; border: none; color: var(--muted); font-family: inherit; font-size: 0.88rem; font-weight: 600; padding: 0.55rem 1.25rem; border-radius: 7px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 0.5rem; }
  .billing-btn.active { background: var(--red); color: #fff; }
  .billing-save-badge { background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
  .billing-btn.active .billing-save-badge { background: rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.4); }
  .price-billing-note { font-size: 0.75rem; color: var(--dim); margin: -0.5rem 0 0.75rem; }
  .price-was { text-decoration: line-through; color: var(--dim); }
  .price-per { font-size: 0.9rem; color: var(--dim); font-weight: 400; }

  /* ── PRICING ── */
  .pricing-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; align-items: start; }
  .price-card { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; }
  .price-card.featured { border-color: var(--red); box-shadow: 0 0 48px var(--red-glow); position: relative; }
  .price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
  .price-tier { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim); margin-bottom: 0.5rem; }
  .price-name { font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 0.25rem; }
  .price-amount { font-size: 2.2rem; font-weight: 900; color: var(--white); letter-spacing: -0.03em; margin: 0.75rem 0 0.25rem; }
  .price-amount .price-per { font-size: 0.9rem; color: var(--dim); font-weight: 400; }
  .price-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.55; margin-bottom: 1.25rem; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.5rem; }
  .price-features li { font-size: 0.875rem; color: var(--muted); display: flex; align-items: flex-start; gap: 0.5rem; }
  .price-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
  .price-features li.dim { color: var(--dim); }
  .price-features li.dim::before { color: var(--dim); content: '–'; }
  .btn-price-primary { display: block; text-align: center; background: var(--red); color: #fff; font-weight: 700; font-size: 0.9rem; padding: 0.8rem; border-radius: 8px; box-shadow: 0 0 24px var(--red-glow); }
  .btn-price-ghost { display: block; text-align: center; background: transparent; border: 1px solid var(--border-md); color: var(--muted); font-weight: 600; font-size: 0.9rem; padding: 0.8rem; border-radius: 8px; }

  /* ── COMPARISON MATRIX ── */
  .compare-wrapper { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; margin-top: 3.5rem; position: relative; }
  .compare-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--red), var(--gold), var(--red)); opacity: 0.7; }
  .compare-header-bar { background: linear-gradient(135deg, rgba(220,60,40,0.06), rgba(251,191,36,0.03)); padding: 2rem clamp(1.75rem, 4vw, 3rem); border-bottom: 1px solid var(--border); }
  .compare-header-bar h3 { font-weight: 900; font-size: 1.4rem; margin-bottom: 0.4rem; color: var(--white); }
  .compare-header-bar p { color: var(--muted); font-size: 1rem; line-height: 1.6; }
  .compare-table-wrap { padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.75rem, 4vw, 3rem) 1rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { width: 100%; border-collapse: collapse; min-width: 480px; }
  .compare-table th, .compare-table td { padding: 0.65rem 1rem; text-align: center; font-size: 0.875rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
  .compare-table th { font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; padding-bottom: 0.6rem; }
  .compare-table th:first-child, .compare-table td:first-child { text-align: left; }
  .compare-table td:first-child { color: var(--muted); font-weight: 500; }
  .compare-table tbody tr:last-child td { border-bottom: none; padding-bottom: 0; }
  .compare-table tbody tr:hover td { background: rgba(255,255,255,0.015); }
  .th-free { color: var(--dim) !important; }
  .th-peak { color: var(--red) !important; }
  .th-bundle { color: var(--gold) !important; }
  .compare-group-row td { padding: 1rem 1rem 0.35rem; border-bottom: none; }
  .compare-group { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
  .compare-group.peak { color: var(--red); }
  .compare-group.pc { color: var(--pc-green); }
  .c-check { color: var(--red); font-size: 1.1rem; display: inline-block; }
  .c-check-free { color: var(--muted); }
  .c-check-bundle { color: var(--gold); }
  .c-check-gold { color: var(--gold); font-size: 1.3rem; }
  .c-check-anim { opacity: 0; transform: scale(0.6); transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .c-check-anim.pop { opacity: 1; transform: scale(1); }
  .c-no { color: var(--dim); }
  .c-pill { font-size: 0.75rem; display: inline-block; padding: 3px 12px; border-radius: 100px; border: 1px solid var(--border-md); }
  .c-pill-dim { color: var(--muted); border-color: var(--border-md); }
  .c-pill-peak { color: var(--red); border-color: rgba(220,60,40,0.3); }
  .compare-footer { padding: 1.5rem clamp(1.75rem, 4vw, 3rem) 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.25rem; border-top: 1px solid var(--border); }
  .compare-savings { font-size: 0.875rem; color: var(--muted); }
  .compare-savings strong { color: var(--gold); }
  .compare-cards-mobile { display: none; padding: 1.5rem clamp(1.25rem, 4vw, 2rem); }
  .compare-card-row { padding: 1rem 0; border-bottom: 1px solid var(--border); }
  .compare-card-row:last-child { border-bottom: none; }
  .compare-card-feature { font-size: 0.875rem; color: var(--white); margin-bottom: 0.65rem; font-weight: 500; }
  .compare-card-plans { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .compare-card-plan { text-align: center; padding: 0.6rem 0.25rem; border-radius: 8px; background: var(--bg-alt); border: 1px solid var(--border); }
  .compare-card-label { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
  .label-free { color: var(--dim); }
  .label-peak { color: var(--red); }
  .label-bundle { color: var(--gold); }

  /* ── FAQ ── */
  .faq-list { max-width: 680px; margin: 2.5rem auto 0; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item.open { border-bottom-color: transparent; border-left: 3px solid var(--red); background: rgba(220,60,40,0.03); border-radius: 0 8px 8px 0; padding-left: 1rem; margin-bottom: 0.25rem; }
  .faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: inherit; font-size: 0.95rem; font-weight: 700; padding: 1.25rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; }
  .faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; color: var(--dim); }
  .faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }
  .faq-a { display: none; padding-bottom: 1.1rem; font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
  .faq-item.open .faq-a { display: block; }

  /* ── FINAL CTA ── */
  .final-cta {
    background: var(--bg-alt); border-top: 1px solid var(--border);
    padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
    text-align: center; position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(220,60,40,0.08) 0%, transparent 65%);
    pointer-events: none;
  }
  .final-cta-inner { position: relative; max-width: 600px; margin: 0 auto; }
  .final-eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--red); margin-bottom: 1rem; }
  .final-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem; }
  .final-title em { font-style: normal; background: linear-gradient(135deg, var(--gold), var(--gold-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .final-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
  .final-note { font-size: 0.75rem; color: var(--dim); margin-top: 0.75rem; }

  /* ── 30-DAY GUARANTEE ── */
  .guarantee { text-align: center; }
  .guarantee .section-title { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
  .guarantee-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center; margin-top: 2.5rem; text-align: left;
  }
  .guarantee-lead { font-size: 1.25rem; color: var(--white); line-height: 1.6; margin-bottom: 1.1rem; }
  .guarantee-lead em { font-style: italic; color: var(--gold); }
  .guarantee-lead strong { color: var(--gold); font-weight: 800; }
  .guarantee-badge { display: block; width: 400px; max-width: 100%; height: auto; margin-top: 1.75rem; }
  .guarantee-right { display: flex; justify-content: center; }
  .guarantee-photo-img { display: block; width: 100%; max-width: 520px; height: auto; margin: 0 auto; }
  .guarantee-fine { max-width: 720px; margin: 2.75rem auto 0; font-size: 0.95rem; color: var(--dim); line-height: 1.75; }
  .guarantee-fine a, .guarantee-fine strong { color: var(--gold); }
  .guarantee-fine strong { font-weight: 700; }

  /* ── FOOTER ── */
  footer { background: #060a12; border-top: 1px solid var(--border); padding: 2rem clamp(1.5rem, 4vw, 3rem); text-align: center; }
  .footer-logo-img { height: 20px; width: auto; display: block; margin: 0 auto 0.75rem; opacity: 0.85; }
  .footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.75rem; }
  .footer-links a { font-size: 0.875rem; color: var(--dim); }
  .footer-copy { font-size: 0.72rem; color: rgba(74,96,112,0.5); }

/* Neutralize any Instapage .reveal animation — keep our elements visible */
  .reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* ── Tablet: ≤ 900px ── */
@media (max-width: 900px) {

  /* Nav — hide text links, keep logo + CTAs */
  .nav-links a:not(.nav-login):not(.nav-cta) { display: none; }

  /* Guarantee — stack + center */
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-left { text-align: center; }
  .guarantee-seal { margin-left: auto; margin-right: auto; }
  .guarantee-right { order: -1; }

  /* Hero — stack copy above video */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy { order: 1; }
  .hero-image { order: 2; max-width: 420px; margin: 0 auto; }
  .hero-image-caption { text-align: center; right: 0; left: 0; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-free-callout { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }

  /* Free tier — stack columns */
  .free-split { grid-template-columns: 1fr; }
  .free-ctas  { grid-template-columns: 1fr; }

  /* Feature showcase — tabs above, display below */
  .showcase-wrap { grid-template-columns: 1fr; }

  /* Challenge card — stack */
  .challenge-card { grid-template-columns: 1fr; }
  .challenge-slim { grid-template-columns: 1fr; }
  .challenge-widget { max-width: 280px; }

  /* Leak finder — stack */
  .leak-finder-callout { grid-template-columns: 1fr; gap: 2rem; }

  /* Analysis callout — stack */
  .analysis-callout { grid-template-columns: 1fr; gap: 2rem; }

  /* PokerCoaching bridge — stack */
  .pc-showcase-wrap { grid-template-columns: 1fr; }

  /* Comparison — footer stack */
  .compare-footer { flex-direction: column; text-align: center; }

  /* Coach carousel — 2 per page */
  .coach-slide { min-width: calc(100% / 2.25); }

  /* Testimonials — 2 columns */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  /* Pricing — stack */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .price-card.featured { margin-top: 1rem; }
}

/* ── Mobile: ≤ 600px ── */
@media (max-width: 600px) {

  /* Nav */
  nav { padding: 0 1rem; }
  .nav-login { display: none; }
  .nav-cta { font-size: 0.875rem !important; padding: 10px 18px; min-height: 44px; display: flex; align-items: center; }

  /* Hero */
  .hero { padding: 2.5rem 1rem 2rem; min-height: auto; }
  .hero h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 1rem; }
  .hero-free-callout { font-size: 1rem; }
  .hero-note { font-size: 0.875rem; }
  .hero-stat-lbl { font-size: 0.75rem; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }

  /* Hero CTAs — stack vertically, full width */
  .hero-ctas { flex-direction: column; gap: 0.75rem; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; text-align: center; justify-content: center; box-sizing: border-box; }

  /* Sections */
  .sec { padding: 2.5rem 1rem; }
  .final-cta { padding: 3rem 1rem; }

  /* Buttons — 48px min touch targets */
  .btn-primary   { padding: 0.95rem 1.75rem; font-size: 1rem; min-height: 48px; }
  .btn-ghost     { padding: 0.95rem 1.75rem; font-size: 1rem; min-height: 48px; }
  .btn-outline   { padding: 0.95rem 1rem; font-size: 0.95rem; min-height: 48px; }
  .btn-red-full  { padding: 0.95rem 1rem; font-size: 0.95rem; min-height: 48px; }
  .btn-price-primary { padding: 0.95rem; font-size: 0.95rem; min-height: 48px; }
  .btn-price-ghost   { padding: 0.95rem; font-size: 0.95rem; min-height: 48px; }

  /* Problem + system */
  .system-step { grid-template-columns: 1fr; gap: 0.5rem; }
  .system-flow { padding-left: 0; }
  .system-flow::before { display: none; }

  /* Student grid */
  .student-grid { grid-template-columns: repeat(2, 1fr); }

  /* Free tier */
  .free-side-label { font-size: 0.95rem; }
  .free-item-desc  { font-size: 0.875rem; }

  /* Feature showcase tabs — horizontal scroll */
  .showcase-tabs { flex-direction: row; overflow-x: auto; gap: 0.5rem; padding-bottom: 0.5rem; }
  .s-tab { min-width: 180px; flex-shrink: 0; padding: 0.875rem 1rem; }
  .s-tab.active { transform: none; }
  .s-tab-title { font-size: 1rem; }
  .s-tab-desc { font-size: 0.875rem; }
  .s-panel-info p { font-size: 0.9rem; }

  /* Challenge */
  .challenge-check { font-size: 0.9rem; }
  .challenge-desc  { font-size: 0.95rem; }
  .challenge-widget { max-width: 100%; }

  /* Leak finder */
  .lf-step-desc { font-size: 0.875rem; }
  .lf-mock-sub  { font-size: 0.875rem; }

  /* Analysis */
  .analysis-stat-desc { font-size: 0.875rem; }

  /* Comparison — swap to mobile cards */
  .compare-table-wrap { display: none; }
  .compare-cards-mobile { display: block; }

  /* PokerCoaching tabs — horizontal scroll */
  .pc-tabs { flex-direction: row; overflow-x: auto; gap: 0.5rem; padding-bottom: 0.5rem; }
  .pc-tab { min-width: 180px; flex-shrink: 0; }
  .pc-tab.active { transform: none; }

  /* Coach carousel — 1 per page */
  .coach-slide { min-width: calc(100% / 1.15); }

  /* Testimonials — single column */
  .testimonials-grid { grid-template-columns: 1fr; }
  .tcard-quote  { font-size: 0.95rem; }
  .tcard-detail { font-size: 0.8rem; }

  /* Billing toggle */
  .billing-toggle { width: 100%; justify-content: center; }
  .billing-btn { font-size: 0.9rem; padding: 0.65rem 1rem; min-height: 44px; flex: 1; justify-content: center; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .price-desc { font-size: 0.875rem; }
  .price-features li { font-size: 0.875rem; }

  /* FAQ */
  .faq-q { font-size: 0.95rem; padding: 1.1rem 0; min-height: 52px; }
  .faq-a { font-size: 0.95rem; }

  /* Final CTA */
  .final-title { font-size: 1.75rem; }
  .final-sub { font-size: 0.95rem; }

  /* Labels & eyebrows */
  .hero-badge { font-size: 0.75rem; }
  .section-label { font-size: 0.75rem; }
  .step-tagline { font-size: 0.75rem; }
  .challenge-eyebrow { font-size: 0.75rem; }

  /* Widget mock */
  .widget-label { font-size: 0.72rem; }
  .widget-ev-label { font-size: 0.72rem; }
  .widget-vs { font-size: 0.72rem; }
  .widget-you-label { font-size: 0.72rem; }

  /* Leak finder mock */
  .lf-badge { font-size: 0.75rem; }
  .lf-mock-tag { font-size: 0.72rem; }
  .lf-drill-pill { font-size: 0.8rem; }

  /* Analysis mock */
  .analysis-mock-sub { font-size: 0.75rem; }
  .leak-rank { font-size: 0.75rem; }

  /* Coach carousel */
  .coach-stat-lbl { font-size: 0.75rem; }

  /* Testimonials */
  .tcard-stars { font-size: 0.85rem; }
  .tcard-avatar { font-size: 0.85rem; }
  .tcard-detail { font-size: 0.875rem; }

  /* Pricing micro-labels */
  .price-badge { font-size: 0.72rem; }
  .price-tier { font-size: 0.75rem; }
  .price-billing-note { font-size: 0.8rem; }
  .billing-save-badge { font-size: 0.72rem; }

  /* Misc */
  .student-disclaimer { font-size: 0.8rem; }
  .s-panel-placeholder-label { font-size: 0.8rem; }

  /* Footer */
  .footer-links a { font-size: 0.875rem; }
}

/* ── Small mobile: ≤ 400px ── */
@media (max-width: 400px) {
  .hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.6rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { text-align: center; }
}
