/* ── LANDING PAGE ──────────────────────────────────────────────────────── */
#screen-landing { background: var(--bg); }
.lp-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--nav-bg); backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border); height: 56px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 24px; }
.lp-wordmark { font-family: 'Instrument Serif', Georgia, serif; font-size: 19px; letter-spacing: -0.4px; color: var(--text); }
.lp-nav-right { display: flex; align-items: center; gap: 8px; }
.lp-btn-ghost { height: 34px; padding: 0 16px; border-radius: var(--radius-full);
  border: 1px solid var(--border); background: transparent; color: var(--text2);
  font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.15s ease; font-family: 'DM Sans', sans-serif; }
.lp-btn-ghost:hover { border-color: var(--border-hover); color: var(--text); }
.lp-btn-fill { height: 34px; padding: 0 18px; border-radius: var(--radius-full);
  border: none; background: var(--text); color: var(--bg);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: opacity 0.15s ease; font-family: 'DM Sans', sans-serif; }
.lp-btn-fill:hover { opacity: 0.85; }

/* HERO */
.lp-hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 100px 24px 80px; position: relative; overflow: hidden; }
/* hero before handled by .lp-grid-bg and .lp-orb elements */
.lp-eyebrow { display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 4px 12px; font-size: 11px; font-weight: 600; color: var(--text3);
  letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 28px;
  animation: fadeUp 0.5s ease both; }
.lp-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
/* lp-h1 overridden by personality CSS below */
/* lp-sub overridden by personality CSS below */
.lp-cta-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 56px; animation: fadeUp 0.5s 0.22s ease both; }
.lp-cta-primary { height: 44px; padding: 0 28px; border-radius: var(--radius-full);
  border: none; background: var(--text); color: var(--bg);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: opacity 0.15s ease, transform 0.15s ease; font-family: 'DM Sans', sans-serif; }
.lp-cta-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.lp-cta-secondary { height: 44px; padding: 0 28px; border-radius: var(--radius-full);
  border: 1px solid var(--border); background: transparent; color: var(--text2);
  font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.15s ease; font-family: 'DM Sans', sans-serif; }
.lp-cta-secondary:hover { border-color: var(--border-hover); color: var(--text); }
/* lp-social-proof overridden */

/* FEATURE STRIP */
.lp-features { padding: 80px 24px; max-width: 880px; margin: 0 auto; }
.lp-features-label { font-size: 10px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--text3); text-align: center; margin-bottom: 40px; }
.lp-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.lp-feat { background: var(--bg); padding: 28px 24px; }
.lp-feat-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--surface2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.lp-feat-icon svg { width: 16px; height: 16px; stroke: var(--text2); }
.lp-feat-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: -0.2px; }
.lp-feat-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* SUBJECTS STRIP */
.lp-subjects { padding: 60px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.lp-subjects-inner { display: flex; gap: 8px; animation: marquee 28s linear infinite; width: max-content; }
.lp-subject-pill { flex-shrink: 0; border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 8px 18px; font-size: 13px; font-weight: 500; color: var(--text2); white-space: nowrap; }

/* HOW IT WORKS */
.lp-how { padding: 80px 24px; max-width: 680px; margin: 0 auto; }
.lp-how-label { font-size: 10px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--text3); text-align: center; margin-bottom: 12px; }
.lp-how-h2 { font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -1px; color: var(--text); text-align: center; margin-bottom: 48px; line-height: 1.1; }
.lp-steps { display: flex; flex-direction: column; gap: 0; }
.lp-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.lp-step:last-child { border-bottom: none; }
.lp-step-num { font-family: 'Instrument Serif', Georgia, serif; font-size: 22px;
  color: var(--text3); letter-spacing: -0.5px; flex-shrink: 0; width: 28px; padding-top: 1px; }
.lp-step-content { flex: 1; }
.lp-step-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; letter-spacing: -0.2px; }
.lp-step-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* BOARDS STRIP */
.lp-boards { padding: 60px 24px; text-align: center; }
.lp-boards-label { font-size: 10px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--text3); margin-bottom: 20px; }
.lp-boards-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.lp-board-tag { border: 1px solid var(--border); border-radius: 6px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--text2); letter-spacing: 0.5px; text-transform: uppercase; }

/* FOOTER */
.lp-footer { border-top: 1px solid var(--border); padding: 28px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.lp-footer-word { font-family: 'Instrument Serif', Georgia, serif; font-size: 16px; color: var(--text2); }
.lp-footer-copy { font-size: 12px; color: var(--text3); }
.lp-footer-links { display: flex; gap: 18px; }
.lp-footer-links a { font-size: 12px; color: var(--text3); text-decoration: none; transition: color 0.15s ease; }
.lp-footer-links a:hover { color: var(--text); }

/* ── ONBOARDING STEPS ──────────────────────────────────────────────────── */
#screen-onboard { background: var(--bg); }
.ob-outer { flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 48px 24px; text-align: center; }
.ob-step { width: 100%; max-width: 400px; animation: fadeUp 0.3s ease both; }
.ob-step-progress { display: flex; gap: 4px; margin-bottom: 36px; }
.ob-step-dot { flex: 1; height: 2px; border-radius: 2px; background: var(--border); transition: background 0.3s ease; }
.ob-step-dot.done { background: var(--text); }
.ob-step-label { font-size: 11px; font-weight: 600; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--text3); margin-bottom: 10px; }
.ob-step-title { font-family: 'Instrument Serif', Georgia, serif;
  font-size: 28px; letter-spacing: -0.8px; color: var(--text); margin-bottom: 8px; line-height: 1.1; }
.ob-step-sub { font-size: 14px; color: var(--text2); margin-bottom: 28px; line-height: 1.6; }
.ob-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; text-align: left; }
.ob-option { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 16px;
  cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease;
  display: flex; align-items: center; justify-content: space-between; background: var(--surface); }
.ob-option:hover { border-color: var(--border-hover); }
.ob-option.selected { border-color: var(--text); background: var(--surface2); }
.ob-option-label { font-size: 14px; font-weight: 500; color: var(--text); }
.ob-option-sub { font-size: 12px; color: var(--text3); margin-top: 1px; }
.ob-option-check { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.15s ease; }
.ob-option.selected .ob-option-check { background: var(--text); border-color: var(--text); }
.ob-option.selected .ob-option-check::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--bg); }
.ob-chips-wrap { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.ob-chip-btn { border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 7px 14px; font-size: 13px; font-weight: 500; color: var(--text2);
  cursor: pointer; background: transparent; transition: all 0.15s ease; font-family: 'DM Sans', sans-serif; }
.ob-chip-btn:hover { border-color: var(--border-hover); color: var(--text); }
.ob-chip-btn.selected { background: var(--text); border-color: var(--text); color: var(--bg); }
.ob-next-btn { width: 100%; height: 44px; border-radius: var(--radius-full);
  border: none; background: var(--text); color: var(--bg);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: opacity 0.15s ease; font-family: 'DM Sans', sans-serif; }
.ob-next-btn:hover { opacity: 0.85; }
.ob-skip { display: block; text-align: center; margin-top: 14px; font-size: 13px;
  color: var(--text3); cursor: pointer; background: none; border: none; font-family: 'DM Sans', sans-serif; }
.ob-skip:hover { color: var(--text2); }

.ob-recap-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 4px 16px; margin-bottom: 28px; }
.ob-recap-row { padding: 12px 0; }
.ob-recap-row + .ob-recap-row { border-top: 1px solid var(--border); }
.ob-recap-key { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.4px;
  text-transform: uppercase; color: var(--text3); margin-bottom: 6px; }
.ob-recap-value { font-size: 14px; font-weight: 500; color: var(--text); }
.ob-recap-chips { display: flex; flex-wrap: wrap; gap: 6px; }

/* ── CANVAS STROKE LAYER ─────────────────────────────────────── */
#lp-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0; transition: opacity 1.2s ease; }
#lp-canvas.visible { opacity: 1; }
#screen-landing { position: relative; z-index: 1; }
#screen-landing > * { position: relative; z-index: 1; }

/* ── TYPEWRITER SECTION ──────────────────────────────────────── */
.lp-typewriter-section { padding: 80px 24px 80px; display: flex;
  flex-direction: column; align-items: center; text-align: center;
  border-top: 1px solid var(--border); }
.lp-tw-label { font-size: 10px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--text3); margin-bottom: 32px; }
.lp-tw-wrap { display: flex; align-items: baseline; gap: 0; flex-wrap: wrap;
  justify-content: center; min-height: 4rem; }
.lp-tw-prefix { font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(32px, 6vw, 56px); letter-spacing: -1.5px; color: var(--text3);
  font-style: italic; white-space: nowrap; margin-right: 14px; }
.lp-tw-text { font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(32px, 6vw, 56px); letter-spacing: -1.5px; color: var(--text);
  display: inline; }
.lp-tw-cursor { display: inline-block; width: 2px; height: 0.75em;
  background: var(--accent); margin-left: 4px; vertical-align: middle;
  animation: cursorBlink 0.9s ease-in-out infinite; }

/* ── HERO PERSONALITY ───────────────────────────────────────── */
.lp-hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 100px 24px 80px;
  position: relative; overflow: hidden; }

/* Subtle grid texture overlay */
.lp-grid-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 100%); }

/* Floating accent orbs */
.lp-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(60px); opacity: 0; animation: orbFloat 8s ease-in-out infinite both; }
.lp-orb-1 { width: 320px; height: 320px; top: 10%; left: -8%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  animation-delay: 0s; }
.lp-orb-2 { width: 280px; height: 280px; top: 20%; right: -6%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  animation-delay: -3s; }
.lp-orb-3 { width: 200px; height: 200px; bottom: 20%; left: 30%;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  animation-delay: -5s; }

/* Eyebrow — pulsing dot */
.lp-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite; flex-shrink: 0; }

/* Hero headline — refined sizing */
.lp-h1 { font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(44px, 9vw, 80px); line-height: 0.96; letter-spacing: -2.5px;
  color: var(--text); margin-bottom: 24px; max-width: 700px;
  animation: fadeUp 0.6s 0.08s ease both; }
.lp-h1 em { font-style: italic; color: var(--accent); position: relative; }
/* Underline accent on em */
.lp-h1 em::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 2px; background: var(--accent); opacity: 0.35; border-radius: 2px; }

/* Sub — max-width tighter for rhythm */
.lp-sub { font-size: 17px; color: var(--text2); max-width: 400px; line-height: 1.65;
  margin-bottom: 36px; animation: fadeUp 0.6s 0.18s ease both; font-weight: 300; }

/* Social proof — small caps feel */
.lp-social-proof { font-size: 11px; color: var(--text3); letter-spacing: 0.4px;
  animation: fadeUp 0.6s 0.3s ease both; }

/* ── FEATURE GRID — elevated cards ──────────────────────────── */
.lp-feat { background: var(--surface); padding: 28px 24px;
  transition: border-color 0.2s ease; position: relative; overflow: hidden; }
.lp-feat::before { content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
  opacity: 0; transition: opacity 0.3s ease; }
.lp-feat:hover::before { opacity: 1; }
.lp-feat-icon { width: 36px; height: 36px; border-radius: 9px;
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.lp-feat-icon svg { width: 16px; height: 16px; stroke: var(--accent); }
.lp-feat-title { font-size: 14px; font-weight: 600; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.3px; }
.lp-feat-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ── STATS STRIP — personality numbers ──────────────────────── */
.lp-stats { padding: 56px 24px; border-top: 1px solid var(--border);
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2px; }
.lp-stat-card { padding: 28px 24px; text-align: center; }
.lp-stat-num { font-family: 'Instrument Serif', Georgia, serif;
  font-size: 42px; letter-spacing: -2px; color: var(--text); line-height: 1;
  margin-bottom: 6px; }
.lp-stat-num span { color: var(--accent); }
.lp-stat-label { font-size: 12px; color: var(--text3); font-weight: 500;
  letter-spacing: 0.3px; text-transform: uppercase; }

/* ── QUOTE STRIP — social proof with personality ─────────────── */
.lp-quotes { padding: 64px 24px; border-top: 1px solid var(--border);
  max-width: 880px; margin: 0 auto; }
.lp-quotes-label { font-size: 10px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--text3); text-align: center; margin-bottom: 36px; }
.lp-quotes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; }
.lp-quote-card { background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px;
  transition: border-color 0.15s ease, transform 0.15s ease; }
.lp-quote-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.lp-quote-text { font-family: 'Instrument Serif', Georgia, serif;
  font-size: 15px; color: var(--text); line-height: 1.55; margin-bottom: 14px;
  letter-spacing: -0.2px; font-style: italic; }
.lp-quote-author { font-size: 12px; color: var(--text3); font-weight: 500;
  letter-spacing: 0.2px; display: flex; align-items: center; gap: 8px; }
.lp-quote-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-border); }

/* ── HOW IT WORKS — numbered steps with accent left border ───── */
.lp-step { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border);
  align-items: flex-start; }
.lp-step:last-child { border-bottom: none; }
.lp-step-num { font-family: 'Instrument Serif', Georgia, serif; font-size: 13px;
  color: var(--accent); letter-spacing: 0.2px; flex-shrink: 0; width: 24px;
  padding-top: 2px; font-style: italic; opacity: 0.8; }
.lp-step-title { font-size: 15px; font-weight: 600; color: var(--text);
  margin-bottom: 6px; letter-spacing: -0.3px; }
.lp-step-desc { font-size: 13px; color: var(--text2); line-height: 1.7; }

/* ── FINAL CTA BLOCK ─────────────────────────────────────────── */
.lp-cta-block { padding: 80px 24px; text-align: center; border-top: 1px solid var(--border); }
.lp-cta-block-h { font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 5vw, 44px); letter-spacing: -1.2px; margin-bottom: 12px;
  color: var(--text); line-height: 1.05; }
.lp-cta-block-h em { font-style: italic; color: var(--accent); }
.lp-cta-block-sub { font-size: 14px; color: var(--text2); margin-bottom: 28px; }

/* ── FOOTER — refined ────────────────────────────────────────── */
.lp-footer { border-top: 1px solid var(--border); padding: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.lp-footer-word { font-family: 'Instrument Serif', Georgia, serif;
  font-size: 17px; color: var(--text); letter-spacing: -0.3px; }
.lp-footer-copy { font-size: 11px; color: var(--text3); letter-spacing: 0.2px; }

/* ── HERO ELEMENTS z-index fix ───────────────────────────────── */
.lp-hero > *:not(.lp-grid-bg):not(.lp-orb) { position: relative; z-index: 1; }


/* ── FEATURE BENTO CARDS ─────────────────────────────────────── */
.lp-feat-section { padding: 72px 24px; max-width: 920px; margin: 0 auto; }
.lp-feat-section-label { font-size: 10px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--text3); text-align: center; margin-bottom: 36px; }

.lp-feat-bento { display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px; }

/* Base card */
.lp-fc { border-radius: 16px; padding: 28px; overflow: hidden; position: relative; }

/* Card 1 — Dark accent, spans full width */
.lp-fc-wide { grid-column: 1 / -1; }
.lp-fc-dark { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.lp-fc-dark .lp-fc-desc { color: var(--text2); }
.lp-fc-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent-border);
  background: var(--accent-soft); border-radius: 99px; padding: 3px 10px; margin-bottom: 16px; }
.lp-fc-title { font-family: 'Instrument Serif', Georgia, serif;
  font-size: 26px; letter-spacing: -0.8px; line-height: 1.1;
  margin-bottom: 10px; color: inherit; }
.lp-fc-title-sm { font-size: 20px; }
.lp-fc-desc { font-size: 13px; line-height: 1.65; color: var(--text2); margin-bottom: 20px; }
.lp-fc-desc-sm { font-size: 12.5px; }

/* Score demo inside card 1 */
.lp-fc-demo-score { background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px; }
.lp-fc-demo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.lp-fc-score-pill { font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 99px; flex-shrink: 0; }
.lp-fc-score-amber { background: rgba(245,158,11,0.1); color: #b45309; border: 1px solid rgba(245,158,11,0.25); }
.lp-fc-score-label { font-size: 11px; color: var(--text2); }
.lp-fc-demo-marks { display: flex; flex-direction: column; gap: 5px; }
.lp-fc-mark { font-size: 11.5px; display: flex; gap: 7px; line-height: 1.4; color: var(--text2); }
.lp-fc-mark span { font-weight: 700; flex-shrink: 0; width: 12px; }
.lp-fc-mark-green { color: #15803d; }
.lp-fc-mark-green span { color: #16a34a; }
.lp-fc-mark-red { color: #b91c1c; }
.lp-fc-mark-red span { color: #dc2626; }

/* Card 2 — White, left accent border */
.lp-fc-bordered { background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--accent); }
.lp-fc-board-row { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.lp-fc-board-pill { font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; border: 1px solid var(--border); border-radius: 5px;
  padding: 3px 8px; color: var(--text3); }
.lp-fc-compare { display: flex; flex-direction: column; gap: 6px; }
.lp-fc-cmp-row { border-radius: 8px; padding: 10px 12px; }
.lp-fc-cmp-bad { background: rgba(220,38,38,0.05); border: 1px solid rgba(220,38,38,0.12); }
.lp-fc-cmp-good { background: rgba(37,99,235,0.05); border: 1px solid rgba(37,99,235,0.15); }
.lp-fc-cmp-label { display: block; font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 4px; }
.lp-fc-cmp-bad .lp-fc-cmp-label { color: #dc2626; }
.lp-fc-cmp-good .lp-fc-cmp-label { color: #2563eb; }
.lp-fc-cmp-text { font-size: 11.5px; color: var(--text2); line-height: 1.5; display: block; }

/* Card 3 — Levels, minimal off-white */
.lp-fc-levels { background: var(--bg2); border: 1px solid var(--border); }
.lp-fc-levels-list { display: flex; flex-direction: column; gap: 2px; }
.lp-fc-level { display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border-radius: 8px; transition: background 0.15s ease; }
.lp-fc-level:hover { background: var(--surface); }
.lp-fc-level-num { width: 28px; height: 28px; border-radius: 8px; display: flex;
  align-items: center; justify-content: center; font-family: 'Instrument Serif', Georgia, serif;
  font-size: 15px; flex-shrink: 0; font-style: italic; }
.lp-fc-level-1 .lp-fc-level-num { background: rgba(37,99,235,0.1); color: #2563eb; }
.lp-fc-level-2 .lp-fc-level-num { background: rgba(37,99,235,0.18); color: #1d4ed8; }
.lp-fc-level-3 .lp-fc-level-num { background: rgba(37,99,235,0.28); color: #1e40af; }
.lp-fc-level-name { font-size: 13px; font-weight: 600; color: var(--text); }
.lp-fc-level-eg { font-size: 11px; color: var(--text3); margin-top: 1px; }

/* ── FULL MOBILE RESPONSIVE ──────────────────────────────────── */
@media (max-width: 640px) {
  /* NAV */
  .lp-nav { padding: 0 16px; }
  .lp-nav .lp-btn-ghost { display: none; }

  /* HERO */
  .lp-hero { padding: 80px 20px 0; }
  .lp-h1 { font-size: clamp(36px, 10vw, 52px); letter-spacing: -1.8px; }
  .lp-sub { font-size: 15px; max-width: 100%; }
  .lp-cta-row { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .lp-cta-primary, .lp-cta-secondary { width: 100%; justify-content: center; }
  .lp-social-proof { font-size: 10px; }
  .lp-mockup-wrap { margin-top: 36px; }
  .lp-mock-cards { grid-template-columns: 1fr; }
  .lp-mock-body { padding: 12px; gap: 8px; }
  .lp-mock-qtext { font-size: 11px; }

  /* FEATURE BENTO */
  .lp-feat-bento { grid-template-columns: 1fr; }
  .lp-fc-wide { grid-column: 1; }
  .lp-fc { padding: 22px 20px; }
  .lp-fc-title { font-size: 21px; }

  /* TYPEWRITER */
  .lp-typewriter-section { padding: 48px 20px; }
  .lp-tw-prefix, .lp-tw-text { font-size: clamp(24px, 7vw, 36px); }

  /* SCROLLING SUBJECTS — faster on mobile */
  .lp-subjects-inner { animation-duration: 18s; }
  .lp-subject-pill { font-size: 12px; padding: 6px 14px; }

  /* HOW IT WORKS */
  .lp-how { padding: 48px 20px; }
  .lp-how-h2 { font-size: clamp(24px, 7vw, 34px); }

  /* BOARDS */
  .lp-boards { padding: 40px 20px; }

  /* CTA BLOCK */
  .lp-cta-block { padding: 56px 20px; }
  .lp-cta-block-h { font-size: clamp(24px, 7vw, 34px); }
  .lp-cta-primary { width: auto; }

  /* FOOTER */
  .lp-footer { flex-direction: column; align-items: flex-start; gap: 4px; padding: 20px; }

  /* FEAT SECTION */
  .lp-feat-section { padding: 48px 20px; }

  /* ONBOARDING */
  .ob-outer { padding: 32px 20px; }
  .ob-step-title { font-size: 24px; }

  /* HOME SCREEN */
  .home-body { padding: 20px 16px 100px; }
  .home-greeting { font-size: clamp(23px, 6vw, 28px); }
  .quick-grid { grid-template-columns: 1fr 1fr; }

  /* RESULT SCREEN */
  .result-body { padding: 20px 16px 100px; }

  /* AUTH */
  .auth-card { padding: 28px 20px; }

  /* BOTTOM NAV */
  .bottom-nav { padding: 8px 0 max(12px, env(safe-area-inset-bottom)); }
}

@media (max-width: 400px) {
  .lp-h1 { font-size: 32px; letter-spacing: -1.4px; }
  .quick-grid { grid-template-columns: 1fr; }
  .lp-fc-demo-row { flex-direction: column; align-items: flex-start; gap: 6px; }
}

