/* PLO Hero — public landing page.
 * Aesthetic: a refined "high-stakes card room" — near-black depth, deep-felt green
 * atmosphere, gold leaf + emerald accents. Fraunces (display serif) over Inter (body).
 * Reuses the app theme tokens (--gold/--green/--felt/--panel…) from theme.css. */

.home-view {
  --lp-ink: #0a0b0e;
  /* neutral grey "glow" used for the soft puddles behind frames (was felt green) */
  --lp-felt-glow: rgba(70, 74, 82, 0.35);
  --lp-gold: var(--gold);
  /* a lighter shade of the (user-selectable) highlight, so the whole page follows it */
  --lp-gold-2: color-mix(in srgb, var(--gold) 70%, #fff);
  --lp-emerald: var(--green);
  --lp-edge: color-mix(in srgb, var(--gold) 18%, transparent);
  --lp-maxw: 1180px;
  --lp-display: 'Fraunces', Georgia, 'Times New Roman', serif;

  position: relative;
  min-height: 100vh;
  color: var(--text);
  /* neutral dark-grey backdrop, harmonized with the trainer/dashboard body bg */
  background:
    radial-gradient(1200px 760px at 50% -10%, #1b1c20 0%, rgba(12, 14, 19, 0) 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--lp-ink) 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* when the home view is active, let the document scroll (the app shell is overflow:hidden) */
body.home-mode .app { height: auto; overflow: visible; }
body.home-mode { overflow-y: auto; }

/* fine grain + a faint felt weave for tactile depth */
.home-view::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; opacity: 0.6;
}
.home-view > * { position: relative; z-index: 1; }

.lp-wrap { width: min(var(--lp-maxw), 92vw); margin-inline: auto; }

/* ---------- nav ---------- */
.lp-nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 18px;
  width: min(var(--lp-maxw), 92vw); margin: 0 auto;
  padding: 16px 0;
}
.lp-nav.scrolled {
  width: 100%; padding-inline: max(4vw, calc((100vw - var(--lp-maxw)) / 2));
  background: rgba(8, 10, 14, 0.72); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--lp-edge); margin: 0;
}
/* brand uses the shared .brand/.brand-mark (theme.css); no per-page nudge here */
.home-view .brand { transform: none; }
.lp-navlinks { display: flex; gap: 26px; margin-left: 28px; }
.lp-navlinks a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.18s; position: relative;
}
.lp-navlinks a:hover { color: var(--text); }
.lp-nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* ---------- buttons ---------- */
.lp-btn {
  font: inherit; font-weight: 650; font-size: 14.5px; cursor: pointer; border: none;
  border-radius: 11px; padding: 11px 20px; line-height: 1; letter-spacing: 0.2px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.lp-btn:active { transform: translateY(1px); }
.lp-btn-gold {
  color: #1a1408;
  background: linear-gradient(180deg, var(--lp-gold-2) 0%, var(--lp-gold) 60%, var(--gold-soft) 100%);
  box-shadow: 0 10px 26px -10px color-mix(in srgb, var(--gold) 65%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.lp-btn-gold:hover { filter: brightness(1.06); box-shadow: 0 14px 34px -10px color-mix(in srgb, var(--gold) 80%, transparent); }
.lp-btn-ghost {
  color: var(--text); background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.lp-btn-ghost:hover { border-color: var(--lp-gold); color: var(--lp-gold-2); }
.lp-btn-lg { padding: 15px 26px; font-size: 15.5px; border-radius: 13px; }

/* ---------- hero ---------- */
.lp-hero {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; align-items: center;
  padding: 64px 0 78px;
}
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--lp-gold-2); padding: 7px 13px; border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 8%, transparent); border: 1px solid var(--lp-edge);
}
.lp-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lp-emerald); box-shadow: 0 0 10px var(--lp-emerald); }
.lp-h1 {
  font-family: var(--lp-display); font-weight: 600; font-optical-sizing: auto;
  font-size: clamp(40px, 5.6vw, 70px); line-height: 1.02; letter-spacing: -0.5px;
  margin: 0 0 22px;
}
.lp-h1 .gold {
  background: linear-gradient(100deg, var(--lp-gold-2), var(--lp-gold) 55%, var(--gold-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-style: italic;
}
.lp-lede { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--muted); max-width: 32em; margin: 0 0 30px; }
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.lp-trust { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: 13px; }
.lp-trust span { display: inline-flex; align-items: center; gap: 7px; }
.lp-trust .tick { color: var(--lp-emerald); }

/* staggered entrance */
.lp-hero > div > * { opacity: 0; transform: translateY(14px); animation: lpRise 0.7s cubic-bezier(0.22, 0.8, 0.25, 1) forwards; }
.lp-hero .lp-eyebrow { animation-delay: 0.05s; }
.lp-hero .lp-h1 { animation-delay: 0.13s; }
.lp-hero .lp-lede { animation-delay: 0.22s; }
.lp-hero .lp-hero-cta { animation-delay: 0.30s; }
.lp-hero .lp-trust { animation-delay: 0.38s; }
@keyframes lpRise { to { opacity: 1; transform: none; } }

/* ---------- hero product frame ---------- */
.lp-frame-wrap { position: relative; opacity: 0; animation: lpRise 0.9s cubic-bezier(0.22, 0.8, 0.25, 1) 0.34s forwards; }
.lp-frame-wrap::after { /* felt glow puddle under the frame */
  content: ''; position: absolute; inset: -8% -6% -14% -6%; z-index: -1; border-radius: 30px;
  background: radial-gradient(60% 60% at 50% 45%, var(--lp-felt-glow), transparent 70%);
  filter: blur(14px);
}
.lp-frame {
  border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, #12151d, #0c0e13);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px color-mix(in srgb, var(--gold) 8%, transparent);
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg); transform-origin: center;
}
.lp-frame-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: rgba(255, 255, 255, 0.03); border-bottom: 1px solid var(--line); }
.lp-dot { width: 11px; height: 11px; border-radius: 50%; background: #2b3140; }
.lp-frame-url { margin-left: 10px; font-size: 11px; color: var(--muted); letter-spacing: 0.3px; }
.lp-felt {
  position: relative; padding: 30px 26px 26px; min-height: 250px;
  background:
    radial-gradient(120% 90% at 50% 8%, #1a5444 0%, var(--felt) 45%, var(--felt-2) 100%);
}
.lp-felt-label { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); }
.lp-pot {
  font-size: 12px; font-weight: 800; letter-spacing: 1px; color: var(--lp-gold-2);
  background: rgba(8, 10, 15, 0.6); border: 1px solid var(--lp-edge); border-radius: 999px; padding: 5px 14px;
}
.lp-board { display: flex; justify-content: center; gap: 8px; margin: 8px 0 22px; }
.lp-hole-row { display: flex; justify-content: center; align-items: flex-end; gap: 9px; }
.lp-felt .hand-cards { display: contents; }
.lp-felt .pcard-svg { filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.5)); animation: lpDeal 0.5s cubic-bezier(0.22, 0.8, 0.25, 1) backwards; }
.lp-board .pcard-svg:nth-child(1) { animation-delay: 0.5s; }
.lp-board .pcard-svg:nth-child(2) { animation-delay: 0.6s; }
.lp-board .pcard-svg:nth-child(3) { animation-delay: 0.7s; }
.lp-hole-row .pcard-svg:nth-child(1) { animation-delay: 0.82s; }
.lp-hole-row .pcard-svg:nth-child(2) { animation-delay: 0.89s; }
.lp-hole-row .pcard-svg:nth-child(3) { animation-delay: 0.96s; }
.lp-hole-row .pcard-svg:nth-child(4) { animation-delay: 1.03s; }
@keyframes lpDeal { from { opacity: 0; transform: translateY(-22px) rotate(-6deg) scale(0.92); } }
.lp-hud {
  display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 22px;
  opacity: 0; animation: lpRise 0.6s ease 1.1s forwards;
}
.lp-hud-chip { background: rgba(8, 10, 15, 0.66); border: 1px solid var(--line); border-radius: 10px; padding: 7px 11px; text-align: center; }
.lp-hud-chip.coach { flex-basis: 100%; }
.lp-hud-chip b { display: block; font-size: 15px; font-weight: 800; line-height: 1; }
.lp-hud-chip span { font-size: 9px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); }
.lp-hud-chip.eq b { color: var(--lp-emerald); }
.lp-hud-chip.coach { border-left: 3px solid var(--lp-emerald); text-align: left; }
.lp-hud-chip.coach b { color: var(--lp-emerald); font-size: 11px; }
.lp-hud-chip.coach span { text-transform: none; letter-spacing: 0; }

/* ---------- trainer screenshot showcase ---------- */
.lp-showcase { position: relative; }
.lp-shot { position: relative; margin: 0 auto; max-width: 1080px; }
.lp-shot::before { /* felt glow puddle behind the frame */
  content: ''; position: absolute; inset: -6% -4% 4% -4%; z-index: 0; border-radius: 28px;
  background: radial-gradient(55% 60% at 50% 38%, var(--lp-felt-glow), transparent 72%); filter: blur(20px);
}
.lp-shot-frame {
  position: relative; z-index: 1; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12); background: #0c0e13;
  box-shadow: 0 50px 110px -40px rgba(0, 0, 0, 0.85), 0 0 0 1px color-mix(in srgb, var(--gold) 10%, transparent);
}
.lp-shot-frame img { display: block; width: 100%; height: auto; }
.lp-shot-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 22px; color: var(--muted); font-size: 13.5px; }
.lp-shot-tags span { display: inline-flex; align-items: center; gap: 8px; }
.lp-shot-tags i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.lp-shot-tags .d-eq { background: var(--lp-emerald); box-shadow: 0 0 9px var(--lp-emerald); }
.lp-shot-tags .d-coach { background: var(--lp-gold); box-shadow: 0 0 9px color-mix(in srgb, var(--gold) 70%, transparent); }
.lp-shot-tags .d-chart { background: var(--blue); box-shadow: 0 0 9px rgba(74, 163, 255, 0.6); }

/* ---------- preflop chart showcase ---------- */
.lp-chartsec { position: relative; }
.lp-chart-split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; }
.lp-chart-copy .lp-kicker { display: block; }
.lp-chart-copy .lp-h2 { text-align: left; margin-top: 12px; }
.lp-chart-copy .lp-sub { text-align: left; }
.lp-check { list-style: none; margin: 22px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.lp-check li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--text); }
.lp-check .tick { color: var(--lp-emerald); flex-shrink: 0; margin-top: 1px; }
.lp-chart-shot { position: relative; margin: 0; }
.lp-chart-shot::before { /* gold-leaf glow behind the chart */
  content: ''; position: absolute; inset: -5% -4% 2% -4%; z-index: 0; border-radius: 26px;
  background: radial-gradient(55% 60% at 60% 35%, color-mix(in srgb, var(--gold) 16%, transparent), transparent 72%); filter: blur(20px);
}
.lp-chart-shot .lp-shot-frame { position: relative; z-index: 1; }
.lp-chart-shot img { display: block; width: 100%; height: auto; max-height: 620px; object-fit: cover; object-position: top; }

/* ---------- analytics showcase ---------- */
.lp-analytics { position: relative; overflow: hidden; }
/* faded "data in motion" band behind the section head (the equity-over-time close-up) */
.lp-analytics::before {
  content: ''; position: absolute; top: 36px; left: 0; right: 0; height: 200px; z-index: 0;
  background: url("../images/chart-4-wild-graph.png") center/cover no-repeat;
  opacity: 0.10;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent),
                      linear-gradient(180deg, #000, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent),
                      linear-gradient(180deg, #000, transparent);
  -webkit-mask-composite: source-in; mask-composite: intersect;
  pointer-events: none;
}
.lp-analytics > * { position: relative; z-index: 1; }
.lp-analytics-shot { max-width: 860px; margin: 0 auto; }
.lp-analytics-shot::before { /* felt glow puddle behind the panel (reuse the showcase look) */
  content: ''; position: absolute; inset: -5% -4% 3% -4%; z-index: 0; border-radius: 26px;
  background: radial-gradient(55% 55% at 50% 40%, var(--lp-felt-glow), transparent 72%); filter: blur(20px);
}
.lp-analytics-shot .lp-shot-frame { position: relative; z-index: 1; }
.lp-analytics-shot img { display: block; width: 100%; height: auto; }
.lp-analytics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.lp-acard {
  padding: 20px 18px; border-radius: 14px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(29, 34, 48, 0.55), rgba(18, 21, 29, 0.55));
}
.lp-acard i { display: block; width: 10px; height: 10px; border-radius: 50%; margin-bottom: 12px; }
.lp-acard .d-eq { background: var(--blue); box-shadow: 0 0 9px rgba(74, 163, 255, 0.6); }
.lp-acard .d-won { background: var(--green); box-shadow: 0 0 9px var(--green); }
.lp-acard .d-net { background: var(--lp-gold); box-shadow: 0 0 9px color-mix(in srgb, var(--gold) 70%, transparent); }
.lp-acard .d-time { background: var(--red); box-shadow: 0 0 9px rgba(255, 90, 106, 0.6); }
.lp-acard h3 { font-size: 15px; font-weight: 700; margin: 0 0 6px; letter-spacing: 0.1px; }
.lp-acard p { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0; }

/* ---------- feature pills strip ---------- */
.lp-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 6px 0 8px; }
.lp-pill { font-size: 12.5px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; background: rgba(255, 255, 255, 0.02); }
.lp-pill b { color: var(--lp-gold-2); font-weight: 700; }

/* ---------- section scaffolding ---------- */
.lp-section { padding: 86px 0; }
.lp-section-head { text-align: center; max-width: 40rem; margin: 0 auto 52px; }
.lp-kicker { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--lp-gold); }
.lp-h2 { font-family: var(--lp-display); font-weight: 600; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -0.3px; margin: 14px 0 12px; }
.lp-sub { color: var(--muted); font-size: 16px; line-height: 1.6; }
.lp-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--lp-edge), transparent); border: 0; }

/* ---------- features ---------- */
.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-feature {
  position: relative; padding: 26px 24px 24px; border-radius: 16px;
  background: linear-gradient(180deg, rgba(29, 34, 48, 0.6), rgba(18, 21, 29, 0.6));
  border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.lp-feature::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, transparent, var(--lp-gold), transparent); opacity: 0; transition: opacity 0.25s; }
.lp-feature:hover { transform: translateY(-4px); border-color: var(--lp-edge); box-shadow: 0 26px 50px -28px rgba(0, 0, 0, 0.8); }
.lp-feature:hover::before { opacity: 0.8; }
.lp-fic {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
  color: var(--lp-gold-2); background: radial-gradient(120% 120% at 30% 20%, color-mix(in srgb, var(--gold) 16%, transparent), color-mix(in srgb, var(--gold) 4%, transparent));
  border: 1px solid var(--lp-edge);
}
.lp-fic svg { width: 22px; height: 22px; }
.lp-feature h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; letter-spacing: 0.1px; }
.lp-feature p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* ---------- about / who it's for ---------- */
/* extra top gap so the hero/pills -> about spacing matches the section-to-section rhythm */
.lp-about { margin-top: 78px; }
.lp-about .lp-section-head { max-width: 52rem; margin-bottom: 40px; }
.lp-about .lp-sub { margin: 0; }
.lp-about .lp-sub + .lp-sub { margin-top: 14px; }
.lp-about .lp-sub em { color: var(--text); font-style: italic; }
.lp-about-grid { margin-top: 8px; }
.lp-about-note {
  text-align: center; color: var(--muted); font-size: 14px; line-height: 1.6;
  max-width: 46rem; margin: 26px auto 22px;
}
.lp-about-note em { color: var(--text); font-style: italic; }

/* ---------- how it works ---------- */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.lp-step { position: relative; padding: 30px 24px; border-radius: 16px; border: 1px solid var(--line); background: rgba(18, 21, 29, 0.5); }
.lp-step-no {
  font-family: var(--lp-display); font-size: 30px; font-weight: 600; font-style: italic;
  color: var(--lp-gold); display: inline-grid; place-items: center; width: 54px; height: 54px;
  border-radius: 14px; border: 1px dashed var(--lp-edge); margin-bottom: 16px;
}
.lp-step h3 { font-size: 18px; margin: 0 0 8px; }
.lp-step p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* ---------- pricing teaser ---------- */
.lp-pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 340px)); gap: 20px; justify-content: center; }
.lp-plan { position: relative; padding: 30px 28px; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(29, 34, 48, 0.55), rgba(14, 16, 22, 0.65)); }
.lp-plan.best { border-color: var(--lp-edge); box-shadow: 0 0 0 1px var(--lp-edge), 0 30px 70px -34px color-mix(in srgb, var(--gold) 40%, transparent); }
.lp-plan-badge { position: absolute; top: -12px; right: 22px; font-size: 11px; font-weight: 800; letter-spacing: 0.6px; color: #1a1408; background: linear-gradient(180deg, var(--lp-gold-2), var(--lp-gold)); padding: 5px 12px; border-radius: 999px; }
.lp-plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); }
.lp-plan-price { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 4px; }
.lp-plan-price b { font-family: var(--lp-display); font-size: 50px; font-weight: 600; line-height: 1; }
.lp-plan-price span { color: var(--muted); font-size: 15px; }
.lp-plan-note { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.lp-plan ul { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.lp-plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text); }
.lp-plan li .tick { color: var(--lp-emerald); flex-shrink: 0; margin-top: 1px; }
.lp-plan .lp-btn { width: 100%; justify-content: center; }
.lp-pricing-fine { text-align: center; color: var(--muted); font-size: 13px; margin-top: 22px; }

/* ---------- final CTA band ---------- */
.lp-cta-band { text-align: center; padding: 76px 0; }
.lp-cta-band .lp-h2 { margin-bottom: 10px; }

/* ---------- footer ---------- */
.lp-footer { border-top: 1px solid var(--line); background: rgba(7, 9, 13, 0.6); padding: 56px 0 30px; }
.lp-footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 36px; }
.lp-footer-brand p { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin: 14px 0 0; max-width: 28em; }
.lp-fcol h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.lp-fcol a { display: block; color: var(--text); opacity: 0.82; text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.16s, opacity 0.16s; }
.lp-fcol a:hover { color: var(--lp-gold-2); opacity: 1; }
.lp-social { display: flex; gap: 10px; }
.lp-social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); color: var(--muted); }
.lp-social a:hover { color: var(--lp-gold-2); border-color: var(--lp-edge); }
.lp-social svg { width: 18px; height: 18px; }
.lp-footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12.5px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .lp-hero { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .lp-frame { transform: none; }
  .lp-chart-split { grid-template-columns: 1fr; gap: 32px; }
  .lp-chart-copy .lp-kicker, .lp-chart-copy .lp-h2, .lp-chart-copy .lp-sub { text-align: center; }
  .lp-chart-copy .lp-hero-cta { justify-content: center; }
  .lp-check { max-width: 30rem; margin-inline: auto; }
  .lp-features, .lp-steps, .lp-analytics-grid { grid-template-columns: 1fr 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-navlinks { display: none; }
}
@media (max-width: 600px) {
  .lp-features, .lp-steps, .lp-pricing, .lp-analytics-grid { grid-template-columns: 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lp-footer-brand { grid-column: 1 / -1; }
  .lp-section { padding: 60px 0; }
  .lp-about { margin-top: 52px; } /* match the tighter mobile section spacing */
  .lp-nav-cta .lp-btn-ghost.lp-login { display: none; } /* keep one primary CTA on phones */
}
@media (prefers-reduced-motion: reduce) {
  .home-view * { animation: none !important; opacity: 1 !important; transform: none !important; }
}
