/* ============================================================================
   JumpJump — Landing page
   Independent stylesheet. Consumes tokens from jj-system.css only.
   Register: brand. Color strategy: committed inkwell + saturated brand blue.
   ============================================================================ */

/* ---------- Base ---------- */
.lp-body {
  font-family: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--jj-ink);
  background: var(--jj-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-feature-settings: "ss01", "tnum";
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.lp-body a { text-decoration: none; }
.lp-body a:not([class]) { color: inherit; }
.lp-body p { margin: 0; }
.lp-body h1, .lp-body h2, .lp-body h3, .lp-body h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }
.lp-body code { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 0.92em; color: var(--jj-brand-ink); }

/* ---------- Tokens local to landing (extend, not override) ---------- */
:root {
  --lp-ink-deep:     oklch(16% 0.020 248);
  --lp-ink-mid:      oklch(28% 0.025 248);
  --lp-rule:         oklch(91% 0.010 248);
  --lp-paper:        oklch(99.0% 0.004 248);
  --lp-paper-warm:   oklch(97.2% 0.012 60);     /* warm offwhite for the math/modules surface */
  --lp-enemy:        oklch(54% 0.18 25);        /* rust for competitor amounts */
  --lp-enemy-soft:   oklch(96% 0.025 25);
  --lp-ours:         oklch(48% 0.18 248);
  --lp-ours-soft:    oklch(96% 0.035 248);
  --lp-hero-bg-1:    oklch(22% 0.06 248);
  --lp-hero-bg-2:    oklch(14% 0.04 248);
  --lp-grid:         color-mix(in oklab, white 8%, transparent);
}

/* ============================================================================
   BETA BANNER
   ============================================================================ */
.lp-beta {
  position: relative;
  z-index: 50;
  background:
    linear-gradient(90deg,
      oklch(58% 0.18 248) 0%,
      oklch(50% 0.18 248) 50%,
      oklch(58% 0.18 248) 100%);
  color: var(--lp-paper);
  padding: 10px max(24px, 5vw);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}
.lp-beta__inner {
  max-width: 1320px; margin: 0 auto;
  display: inline-flex; gap: 10px; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.lp-beta strong { font-weight: 700; letter-spacing: -0.005em; }
.lp-beta em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lp-beta__dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: oklch(86% 0.16 145);
  box-shadow: 0 0 0 3px oklch(86% 0.16 145 / 0.35);
  animation: lp-beta-pulse 2.4s ease-in-out infinite;
}
@keyframes lp-beta-pulse {
  0%, 100% { box-shadow: 0 0 0 3px oklch(86% 0.16 145 / 0.20); }
  50%      { box-shadow: 0 0 0 6px oklch(86% 0.16 145 / 0.05); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-beta__dot { animation: none; }
}

/* ============================================================================
   NAV
   ============================================================================ */
.lp-nav {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px max(24px, 5vw);
  background: var(--lp-paper);
  border-bottom: 1px solid var(--lp-rule);
}
.lp-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--lp-ink-deep);
}
.lp-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--lp-ours);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.04em;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, white 18%, transparent),
              0 2px 6px -2px oklch(40% 0.18 248 / 0.45);
}
.lp-mark--sm { width: 26px; height: 26px; font-size: 11px; border-radius: 6px; }

.lp-nav__links {
  display: inline-flex;
  gap: 26px;
  justify-self: center;
  font-size: 14px;
  color: var(--jj-ink-2);
}
.lp-nav__links a { position: relative; padding: 4px 0; transition: color 160ms var(--ease); }
.lp-nav__links a:hover { color: var(--lp-ink-deep); }
.lp-nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: currentColor;
  transition: right 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lp-nav__links a:hover::after { right: 0; }

.lp-nav__cta { display: inline-flex; align-items: center; gap: 18px; }
.lp-link-quiet { font-size: 14px; color: var(--jj-ink-2); transition: color 160ms; }
.lp-link-quiet:hover { color: var(--lp-ink-deep); }

@media (max-width: 860px) {
  .lp-nav { grid-template-columns: auto 1fr; gap: 16px; }
  .lp-nav__links { display: none; }
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms var(--ease),
              background 160ms var(--ease),
              color 160ms var(--ease),
              box-shadow 200ms var(--ease),
              border-color 160ms var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.lp-btn i, .lp-btn svg { width: 16px; height: 16px; }
.lp-btn--sm { padding: 8px 14px; font-size: 13px; }
.lp-btn--lg { padding: 14px 24px; font-size: 15px; border-radius: 10px; }
.lp-btn--lg i, .lp-btn--lg svg { width: 18px; height: 18px; }

/* Primary — brand blue, max legibility */
a.lp-btn--primary,
button.lp-btn--primary,
.lp-btn.lp-btn--primary {
  background: var(--lp-ours);
  color: #fff;
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.15) inset,
              0 2px 4px oklch(40% 0.18 248 / 0.25),
              0 10px 24px -8px oklch(40% 0.18 248 / 0.45);
}
a.lp-btn--primary:hover,
button.lp-btn--primary:hover,
.lp-btn.lp-btn--primary:hover {
  transform: translateY(-1px);
  background: var(--jj-brand-hover);
  color: #fff;
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.18) inset,
              0 4px 8px oklch(40% 0.18 248 / 0.28),
              0 16px 36px -10px oklch(40% 0.18 248 / 0.55);
}
.lp-btn.lp-btn--primary:active { transform: translateY(0); }

/* Brand — same as primary but extra emphasis for final CTA */
a.lp-btn--brand,
button.lp-btn--brand,
.lp-btn.lp-btn--brand {
  background: var(--lp-ours);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.18) inset,
              0 4px 10px oklch(40% 0.18 248 / 0.30),
              0 14px 30px -10px oklch(40% 0.18 248 / 0.55);
}
a.lp-btn--brand:hover,
button.lp-btn--brand:hover,
.lp-btn.lp-btn--brand:hover {
  transform: translateY(-1px);
  background: var(--jj-brand-hover);
  color: #fff;
}

a.lp-btn--ghost,
button.lp-btn--ghost,
.lp-btn.lp-btn--ghost {
  background: transparent;
  color: var(--lp-ink-deep);
  border-color: var(--lp-rule);
  font-weight: 600;
}
a.lp-btn--ghost:hover,
button.lp-btn--ghost:hover,
.lp-btn.lp-btn--ghost:hover {
  background: var(--jj-surface-2);
  border-color: var(--jj-rule-strong);
  color: var(--lp-ink-deep);
}

/* Hero variants — white button on dark hero */
.lp-hero .lp-btn--primary {
  background: var(--lp-paper);
  color: var(--lp-ink-deep);
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.4) inset,
              0 2px 6px oklch(0% 0 0 / 0.25),
              0 12px 30px -8px oklch(0% 0 0 / 0.45);
}
.lp-hero .lp-btn--primary:hover {
  background: #fff;
  color: var(--jj-brand-active);
}
.lp-hero .lp-btn--ghost {
  color: #fff;
  border-color: oklch(100% 0 0 / 0.28);
  font-weight: 600;
}
.lp-hero .lp-btn--ghost:hover {
  background: oklch(100% 0 0 / 0.08);
  border-color: oklch(100% 0 0 / 0.45);
}

/* ============================================================================
   TYPE SYSTEM
   ============================================================================ */
.lp-kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jj-ink-3);
  padding: 6px 10px;
  border: 1px solid var(--lp-rule);
  border-radius: 999px;
  background: var(--lp-paper);
}
.lp-kicker--light {
  color: oklch(82% 0.015 248);
  border-color: oklch(100% 0 0 / 0.18);
  background: oklch(100% 0 0 / 0.04);
}

.lp-display {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.lp-display--final { font-size: clamp(36px, 5.4vw, 64px); }

.lp-h1 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.lp-h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lp-em {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.lp-underline {
  position: relative;
  white-space: nowrap;
}
.lp-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.06em;
  height: 0.10em;
  background: var(--jj-brand);
  border-radius: 2px;
  transform: skewX(-12deg);
}

.lp-pill {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  background: var(--lp-ours-soft);
  color: var(--lp-ours);
  margin-bottom: 8px;
}

/* ============================================================================
   HERO
   ============================================================================ */
.lp-hero {
  position: relative;
  color: oklch(94% 0.008 248);
  background:
    radial-gradient(900px 600px at 88% -10%, oklch(58% 0.16 248 / 0.55), transparent 60%),
    radial-gradient(700px 480px at -10% 110%, oklch(48% 0.14 220 / 0.40), transparent 60%),
    linear-gradient(180deg, var(--lp-hero-bg-1) 0%, var(--lp-hero-bg-2) 100%);
  overflow: hidden;
  isolation: isolate;
}
.lp-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--lp-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--lp-grid) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}

.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 88px max(24px, 5vw) 80px;
  max-width: 1320px;
  margin: 0 auto;
}

.lp-hero__copy { display: flex; flex-direction: column; gap: 22px; max-width: 720px; }
.lp-hero__lead {
  color: oklch(82% 0.010 248);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 60ch;
}
.lp-hero__lead strong { color: var(--lp-paper); font-weight: 600; }
.lp-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.lp-hero__micro {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: oklch(68% 0.012 248);
  margin-top: 4px;
}

/* Stack — the cost ladder card */
.lp-hero__proof {
  position: relative;
  background: oklch(100% 0 0 / 0.04);
  border: 1px solid oklch(100% 0 0 / 0.14);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 30px 80px -30px oklch(0% 0 0 / 0.55);
}
.lp-stack { display: flex; flex-direction: column; gap: 6px; }
.lp-stack__line {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 10px 4px;
  color: oklch(82% 0.010 248);
  font-size: 14px;
}
.lp-stack__label { color: oklch(76% 0.012 248); }
.lp-stack__amount {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-feature-settings: "tnum";
  font-weight: 500;
  color: oklch(90% 0.010 248);
}
.lp-stack__amount small { color: oklch(60% 0.012 248); margin-left: 4px; font-weight: 400; }
.lp-stack__line--strike .lp-stack__amount { text-decoration: line-through; text-decoration-color: oklch(58% 0.16 25 / 0.7); text-decoration-thickness: 1.5px; }
.lp-stack__op {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  color: oklch(60% 0.012 248);
  text-align: center;
  padding: 0 4px;
}
.lp-stack__line--sum {
  padding: 12px;
  background: oklch(58% 0.18 25 / 0.10);
  border: 1px solid oklch(58% 0.18 25 / 0.35);
  border-radius: 8px;
  margin-top: 4px;
}
.lp-stack__line--sum .lp-stack__label { color: oklch(86% 0.04 25); font-weight: 500; }
.lp-stack__amount--big { font-size: 18px; font-weight: 700; }
.lp-stack__divider {
  height: 1px;
  background: oklch(100% 0 0 / 0.10);
  margin: 12px -8px;
}
.lp-stack__line--ours {
  padding: 14px 12px;
  background: oklch(60% 0.18 248 / 0.16);
  border: 1px solid oklch(70% 0.16 248 / 0.40);
  border-radius: 8px;
}
.lp-stack__line--ours .lp-stack__label { color: oklch(94% 0.020 248); font-weight: 600; }
.lp-stack__amount--ours a {
  color: oklch(96% 0.014 248);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 600;
  border-bottom: 1px solid oklch(70% 0.16 248);
  padding-bottom: 1px;
}
.lp-stack__amount--ours a:hover { color: oklch(86% 0.14 248); }
.lp-stack__note {
  font-size: 11px;
  color: oklch(60% 0.012 248);
  margin-top: 10px;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .lp-hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }
  .lp-hero__proof { order: 2; }
}

/* Ticker — seamless loop via duplicated track */
.lp-hero__ticker {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 18px 0;
  border-top: 1px solid oklch(100% 0 0 / 0.10);
  border-bottom: 1px solid oklch(100% 0 0 / 0.10);
  background: oklch(0% 0 0 / 0.20);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: oklch(62% 0.012 248);
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.lp-hero__ticker-track {
  display: flex;
  gap: 22px;
  padding-right: 22px;
  flex: 0 0 auto;
  animation: lp-tick 36s linear infinite;
}
@keyframes lp-tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero__ticker-track { animation: none; }
}

/* ============================================================================
   SECTION SHELL
   ============================================================================ */
.lp-section {
  padding: 112px max(24px, 5vw);
  max-width: 1320px;
  margin: 0 auto;
}
.lp-section__head { max-width: 820px; margin-bottom: 56px; display: flex; flex-direction: column; gap: 18px; }
.lp-section__lead {
  color: var(--jj-ink-2);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  max-width: 65ch;
}
.lp-section__lead strong { color: var(--lp-ink-deep); font-weight: 600; }
.lp-section__lead .lp-tag-paid { display: inline-flex; }

/* ============================================================================
   MATH — contained panel, not full-bleed
   ============================================================================ */
.lp-math {
  position: relative;
  background: var(--lp-paper-warm);
  border-radius: 20px;
  padding: clamp(48px, 6vw, 88px) clamp(24px, 4vw, 64px);
  border: 1px solid color-mix(in oklab, var(--lp-enemy) 10%, var(--lp-rule));
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.6) inset,
              0 30px 60px -40px oklch(58% 0.18 25 / 0.20);
  overflow: hidden;
}
.lp-math::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(700px 360px at 0% 0%, oklch(58% 0.18 25 / 0.06), transparent 60%),
    radial-gradient(500px 300px at 100% 100%, oklch(58% 0.18 25 / 0.05), transparent 60%);
  pointer-events: none;
}
.lp-math > * { position: relative; z-index: 1; }

.lp-math__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.lp-bill {
  display: flex;
  flex-direction: column;
  background: var(--lp-paper);
  border: 1px solid var(--lp-rule);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.lp-bill:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px oklch(20% 0.02 248 / 0.18); }
.lp-bill__head { padding: 24px 24px 16px; }
.lp-bill__rank {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jj-ink-3);
}
.lp-bill__name { font-size: 22px; margin-top: 6px; letter-spacing: -0.02em; color: var(--lp-ink-deep); }
.lp-bill__sub { font-size: 13.5px; color: var(--jj-ink-2); margin-top: 6px; line-height: 1.5; }

.lp-bill__lines { list-style: none; margin: 0; padding: 0 24px; flex: 1; }
.lp-bill__lines li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name strong" "calc strong";
  row-gap: 2px;
  column-gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px dashed var(--lp-rule);
}
.lp-bill__lines li:first-child { border-top: 0; }
.lp-bill__lines li > span:first-child { grid-area: name; font-size: 14px; color: var(--jj-ink); font-weight: 500; }
.lp-bill__lines li > span:nth-child(2) {
  grid-area: calc;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--jj-ink-3);
}
.lp-bill__lines li > strong {
  grid-area: strong;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13.5px;
  color: var(--lp-enemy);
  font-weight: 600;
  white-space: nowrap;
}

.lp-bill__lines--ours li > strong {
  color: var(--lp-ours);
  font-size: 16px;
}

.lp-bill__foot {
  padding: 24px;
  background: var(--lp-enemy-soft);
  border-top: 1px solid color-mix(in oklab, var(--lp-enemy) 25%, transparent);
  display: flex; flex-direction: column; gap: 4px;
}
.lp-bill__foot--ours {
  background: var(--lp-ours-soft);
  border-top-color: color-mix(in oklab, var(--lp-ours) 25%, transparent);
}
.lp-bill__total-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-enemy);
}
.lp-bill__foot--ours .lp-bill__total-label { color: var(--lp-ours); }
.lp-bill__total {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: var(--lp-enemy);
  line-height: 1;
}
.lp-bill__total--ours { color: var(--lp-ours); font-size: 28px; }
.lp-bill__total--ours a { color: inherit; border-bottom: 2px solid currentColor; padding-bottom: 1px; }
.lp-bill__total--ours a:hover { color: var(--jj-brand-hover); }
.lp-bill__hint { font-size: 12px; color: var(--jj-ink-3); margin-top: 6px; line-height: 1.5; }

.lp-bill--ours {
  background:
    radial-gradient(400px 200px at 100% 0%, oklch(60% 0.16 248 / 0.06), transparent 60%),
    var(--lp-paper);
  border-color: color-mix(in oklab, var(--lp-ours) 30%, var(--lp-rule));
  outline: 1px solid color-mix(in oklab, var(--lp-ours) 14%, transparent);
  outline-offset: 0;
}

.lp-math__disclaimer {
  font-size: 12px;
  color: var(--jj-ink-3);
  text-align: center;
  margin-top: 32px;
  max-width: 70ch;
  margin-inline: auto;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .lp-math__grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   COMPARISON TABLE
   ============================================================================ */
.lp-vs { padding-bottom: 96px; }
.lp-tag-paid {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: var(--jj-warning-soft);
  color: oklch(48% 0.16 75);
}

.lp-table-wrap {
  border: 1px solid var(--lp-rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--lp-paper);
  box-shadow: 0 24px 48px -28px oklch(20% 0.02 248 / 0.16);
}
.lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.lp-table thead th {
  text-align: center;
  padding: 18px 12px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--jj-ink-2);
  background: var(--jj-surface-2);
  border-bottom: 1px solid var(--lp-rule);
}
.lp-table thead th.lp-table__ours {
  background: var(--lp-ours);
  color: var(--lp-paper);
  font-weight: 700;
}
.lp-table thead th.lp-table__feature { text-align: left; padding-left: 24px; }

.lp-table tbody tr { transition: background 160ms var(--ease); }
.lp-table tbody tr:hover { background: var(--jj-surface-2); }
.lp-table tbody th, .lp-table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--lp-rule);
}
.lp-table tbody tr:last-child th, .lp-table tbody tr:last-child td { border-bottom: 0; }
.lp-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--lp-ink-deep);
  padding-left: 24px;
}
.lp-table tbody td {
  text-align: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  color: var(--jj-ink-3);
  font-size: 15px;
}
.lp-table tbody td.lp-table__ours {
  background: color-mix(in oklab, var(--lp-ours) 6%, var(--lp-paper));
  color: var(--lp-ours);
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.lp-table tbody td.lp-table__ours::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  border-left: 1px solid color-mix(in oklab, var(--lp-ours) 20%, transparent);
  border-right: 1px solid color-mix(in oklab, var(--lp-ours) 20%, transparent);
  pointer-events: none;
}
.lp-table__row--punch {
  background: var(--lp-ink-deep);
  color: var(--lp-paper);
}
.lp-table__row--punch th { color: var(--lp-paper); font-weight: 700; padding-top: 18px; padding-bottom: 18px; }
.lp-table__row--punch td { color: oklch(82% 0.010 248); }
.lp-table__row--punch td.lp-table__ours {
  background: var(--lp-ours);
  color: var(--lp-paper);
}
.lp-table__row--punch:hover { background: var(--lp-ink-deep); }

@media (max-width: 820px) {
  .lp-table-wrap { overflow-x: auto; }
  .lp-table { min-width: 720px; }
}

/* ============================================================================
   MODULES
   ============================================================================ */
.lp-modules__list {
  display: flex;
  flex-direction: column;
}
.lp-mod {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--lp-rule);
  align-items: start;
}
.lp-mod:last-child { border-bottom: 1px solid var(--lp-rule); }
.lp-mod__num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 68px;
  line-height: 1;
  color: color-mix(in oklab, var(--jj-brand) 65%, var(--jj-ink-4) 35%);
  letter-spacing: -0.04em;
}
.lp-mod__title {
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.025em;
  color: var(--lp-ink-deep);
  margin-bottom: 16px;
}
.lp-mod__copy {
  color: var(--jj-ink-2);
  line-height: 1.65;
  font-size: 16px;
  max-width: 64ch;
  margin-bottom: 16px;
}
.lp-mod__copy strong { color: var(--lp-ink-deep); }
.lp-mod__bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
  max-width: 60ch;
}
.lp-mod__bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--jj-ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.lp-mod__bullets li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--jj-brand);
  font-weight: 600;
}

.lp-mod--feature .lp-mod__title { font-size: clamp(26px, 2.6vw, 36px); }

/* Flow diagram inside module 03 */
.lp-flow {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  padding: 24px;
  background: var(--lp-paper-warm);
  border: 1px solid var(--lp-rule);
  border-radius: 12px;
}
.lp-flow__step {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: var(--lp-paper);
  border: 1px solid var(--lp-rule);
  border-radius: 8px;
  text-align: left;
}
.lp-flow__step i { width: 18px; height: 18px; color: var(--jj-brand); }
.lp-flow__step strong { font-size: 14px; color: var(--lp-ink-deep); }
.lp-flow__step span { font-size: 12px; color: var(--jj-ink-3); font-family: 'JetBrains Mono', monospace; }
.lp-flow__arrow { color: var(--jj-ink-4); align-self: center; }

@media (max-width: 880px) {
  .lp-mod { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .lp-mod__num { font-size: 48px; }
  .lp-flow { grid-template-columns: 1fr; }
  .lp-flow__arrow { transform: rotate(90deg); justify-self: start; }
}

/* ============================================================================
   BONUS — drenched brand-blue section with paper-card content
   ============================================================================ */
.lp-bonus-shell {
  position: relative;
  isolation: isolate;
  padding: clamp(72px, 8vw, 128px) max(24px, 5vw);
  background:
    radial-gradient(900px 480px at 100% 0%, oklch(62% 0.16 248 / 0.55), transparent 60%),
    radial-gradient(700px 400px at -5% 100%, oklch(54% 0.14 220 / 0.45), transparent 60%),
    linear-gradient(160deg, oklch(38% 0.18 248) 0%, oklch(30% 0.16 248) 60%, oklch(24% 0.14 248) 100%);
  overflow: hidden;
}
.lp-bonus-shell::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(oklch(100% 0 0 / 0.07) 1px, transparent 1px),
    linear-gradient(90deg, oklch(100% 0 0 / 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.lp-bonus-tag {
  position: absolute;
  top: clamp(24px, 4vw, 48px);
  right: clamp(24px, 5vw, 64px);
  z-index: 2;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: oklch(100% 0 0 / 0.07);
  pointer-events: none;
  user-select: none;
}

.lp-bonus-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--lp-paper);
  border-radius: 20px;
  padding: clamp(40px, 5vw, 72px);
  box-shadow:
    0 1px 0 oklch(100% 0 0 / 0.6) inset,
    0 40px 100px -40px oklch(0% 0 0 / 0.50),
    0 18px 40px -20px oklch(20% 0.16 248 / 0.45);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.lp-bonus__head { display: flex; flex-direction: column; gap: 18px; max-width: 68ch; }
.lp-bonus__head .lp-kicker {
  align-self: flex-start;
  background: oklch(96% 0.025 248);
  border-color: color-mix(in oklab, var(--lp-ours) 25%, transparent);
  color: var(--lp-ours);
}
.lp-bonus__title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--lp-ink-deep);
  font-weight: 700;
  margin: 0;
}
.lp-bonus__lede {
  color: var(--jj-ink-2);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  margin: 0;
}
.lp-bonus__lede strong { color: var(--lp-ink-deep); font-weight: 600; }

.lp-bonus__steps {
  list-style: none;
  margin: 0;
  padding: 24px 0 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--lp-rule);
}
.lp-bonus__steps li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px clamp(16px, 2vw, 28px) 0 0;
  position: relative;
}
.lp-bonus__steps li + li {
  padding-left: clamp(20px, 2.5vw, 36px);
  border-left: 1px dashed var(--lp-rule);
}
.lp-bonus__step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lp-ours);
}
.lp-bonus__steps h3 {
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--lp-ink-deep);
  font-weight: 600;
  margin: 4px 0 0;
}
.lp-bonus__steps p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--jj-ink-2);
  margin: 0;
}

.lp-bonus__foot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--lp-rule);
}

/* Bonus button — inkwell on cream card, max contrast */
a.lp-btn--bonus,
button.lp-btn--bonus,
.lp-btn.lp-btn--bonus {
  background: var(--lp-ink-deep);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.18) inset,
              0 2px 4px oklch(20% 0.02 248 / 0.30),
              0 14px 30px -10px oklch(20% 0.02 248 / 0.50);
}
a.lp-btn--bonus:hover,
button.lp-btn--bonus:hover,
.lp-btn.lp-btn--bonus:hover {
  transform: translateY(-1px);
  background: var(--lp-ink-mid);
  color: #fff;
}

.lp-bonus__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12.5px;
  color: var(--lp-ours);
  letter-spacing: 0.02em;
}
.lp-bonus__note-ico { width: 14px; height: 14px; }

@media (max-width: 880px) {
  .lp-bonus__steps {
    grid-template-columns: 1fr;
    padding: 16px 0 4px;
  }
  .lp-bonus__steps li {
    padding: 20px 0 0 0;
  }
  .lp-bonus__steps li + li {
    padding-left: 0;
    border-left: 0;
    border-top: 1px dashed var(--lp-rule);
  }
  .lp-bonus-tag { font-size: 56px; right: 18px; top: 18px; }
}

/* ============================================================================
   EMAIL deep dive
   ============================================================================ */
.lp-email {
  background: var(--lp-ink-deep);
  color: oklch(90% 0.010 248);
  max-width: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.lp-email::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 100% 0%, oklch(60% 0.16 248 / 0.30), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, oklch(54% 0.14 220 / 0.22), transparent 60%);
  pointer-events: none;
}
.lp-email__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 112px max(24px, 5vw);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-email__copy { display: flex; flex-direction: column; gap: 18px; max-width: 60ch; }
.lp-email__copy .lp-kicker {
  background: oklch(100% 0 0 / 0.04);
  border-color: oklch(100% 0 0 / 0.18);
  color: oklch(82% 0.014 248);
  align-self: flex-start;
}
.lp-email__copy h2 { color: var(--lp-paper); }
.lp-email__copy p { color: oklch(80% 0.012 248); line-height: 1.65; font-size: 16px; }
.lp-email__copy p strong { color: var(--lp-paper); font-weight: 600; }
.lp-email__copy .lp-btn { align-self: flex-start; margin-top: 12px; }
.lp-email__copy .lp-btn--primary {
  background: var(--lp-paper);
  color: var(--lp-ink-deep);
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.4) inset,
              0 2px 6px oklch(0% 0 0 / 0.25),
              0 12px 30px -8px oklch(0% 0 0 / 0.45);
}
.lp-email__copy .lp-btn--primary:hover {
  background: #fff;
  color: var(--jj-brand-active);
}

/* Fake card */
.lp-email__card {
  background: var(--lp-paper);
  color: var(--lp-ink-deep);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 40px 80px -30px oklch(0% 0 0 / 0.6),
              0 1px 0 oklch(100% 0 0 / 0.1) inset;
  display: flex; flex-direction: column; gap: 14px;
  transform: rotate(-1deg);
  transition: transform 360ms var(--ease);
}
.lp-email__card:hover { transform: rotate(0deg) translateY(-4px); }
.lp-fake-card__head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--jj-ink-3);
}
.lp-fake-card__pill {
  padding: 3px 8px;
  background: var(--jj-brand-soft);
  color: var(--jj-brand-ink);
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-fake-card__title { font-size: 18px; letter-spacing: -0.015em; color: var(--lp-ink-deep); }
.lp-fake-card__meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--jj-ink-3);
}
.lp-fake-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.lp-fake-card__meta i { width: 14px; height: 14px; }
.lp-fake-card__quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  color: var(--jj-ink-2);
  line-height: 1.6;
  padding: 12px 14px;
  background: var(--jj-surface-2);
  border-left: 3px solid var(--jj-brand);
  border-radius: 0 6px 6px 0;
}
.lp-fake-card__foot {
  display: flex; align-items: center; gap: 8px;
  border-top: 1px solid var(--lp-rule);
  padding-top: 12px;
}
.lp-fake-btn {
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--lp-ink-deep);
  color: var(--lp-paper);
  border: none;
  cursor: pointer;
}
.lp-fake-btn--ghost { background: transparent; color: var(--lp-ink-deep); border: 1px solid var(--lp-rule); }
.lp-fake-card__status {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--jj-warning);
  padding: 3px 8px;
  background: var(--jj-warning-soft);
  border-radius: 3px;
}

@media (max-width: 980px) {
  .lp-email__inner { grid-template-columns: 1fr; padding: 80px 24px; gap: 40px; }
}

/* ============================================================================
   FINAL CTA
   ============================================================================ */
.lp-final {
  text-align: center;
  padding: 128px max(24px, 5vw) 96px;
  background:
    radial-gradient(500px 300px at 50% 0%, oklch(60% 0.16 248 / 0.10), transparent 60%),
    var(--lp-paper);
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.lp-final__sub {
  max-width: 56ch;
  color: var(--jj-ink-2);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
}
.lp-final__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }

/* ============================================================================
   FOOTER
   ============================================================================ */
.lp-foot {
  background: var(--lp-ink-deep);
  color: oklch(76% 0.012 248);
  padding: 36px max(24px, 5vw);
}
.lp-foot__inner {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.lp-foot__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; color: var(--lp-paper);
}
.lp-foot__brand .lp-mark {
  background: var(--lp-paper); color: var(--lp-ink-deep);
}
.lp-foot__links {
  display: inline-flex; gap: 22px; justify-content: center;
  font-size: 13.5px;
}
.lp-foot__links a { color: oklch(82% 0.012 248); transition: color 160ms; }
.lp-foot__links a:hover { color: var(--lp-paper); }
.lp-foot__copy {
  font-size: 12px;
  color: oklch(64% 0.012 248);
  text-align: right;
}

@media (max-width: 760px) {
  .lp-foot__inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .lp-foot__links { justify-content: center; }
  .lp-foot__copy { text-align: center; }
}

/* ============================================================================
   MOBILE — aggressive vertical compression
   The desktop rhythm is built for breathing room. On phones it becomes a
   sausage. Halve all major paddings, tighten gaps, shrink decorative space.
   ============================================================================ */
@media (max-width: 720px) {
  /* Sections */
  .lp-section { padding: 56px 20px; }
  .lp-section__head { margin-bottom: 28px; gap: 12px; }
  .lp-section__lead { font-size: 14.5px; line-height: 1.55; }

  /* Beta banner */
  .lp-beta { padding: 8px 16px; font-size: 12.5px; line-height: 1.4; }

  /* Nav */
  .lp-nav { padding: 10px 16px; gap: 12px; }
  .lp-nav__brand-name { display: none; }

  /* Hero — hide proof card (covered by math section below), tighten the rest */
  .lp-hero__grid { padding: 40px 20px 32px; gap: 24px; }
  .lp-hero__proof { display: none; }
  .lp-hero__copy { gap: 16px; }
  .lp-hero__lead { font-size: 15px; line-height: 1.55; }
  .lp-hero__ctas { gap: 10px; }
  .lp-hero__ctas .lp-btn { width: 100%; }
  .lp-hero__micro { font-size: 11.5px; }
  .lp-display { font-size: clamp(36px, 11vw, 52px); }

  /* Ticker — small and tight */
  .lp-hero__ticker { padding: 12px 0; font-size: 11px; }

  /* Math — tighter panel, denser bills */
  .lp-math {
    padding: 24px 16px 28px;
    border-radius: 14px;
  }
  .lp-math__grid { gap: 12px; }
  .lp-bill__head { padding: 14px 16px 10px; }
  .lp-bill__name { font-size: 18px; }
  .lp-bill__sub { font-size: 12.5px; line-height: 1.4; }
  .lp-bill__lines { padding: 0 16px; }
  .lp-bill__lines li { padding: 9px 0; }
  .lp-bill__lines li > span:first-child { font-size: 13px; }
  .lp-bill__lines li > strong { font-size: 12.5px; }
  .lp-bill__foot { padding: 14px 16px; }
  .lp-bill__total { font-size: 26px; }
  .lp-bill__total--ours { font-size: 22px; }
  .lp-bill__total-label { font-size: 10px; letter-spacing: 0.12em; }
  .lp-bill__hint { font-size: 11.5px; margin-top: 4px; }
  .lp-math__disclaimer { margin-top: 16px; font-size: 11px; }

  /* Comparison table */
  .lp-vs { padding-bottom: 56px; }
  .lp-table thead th, .lp-table tbody th, .lp-table tbody td { padding: 10px 8px; font-size: 13px; }
  .lp-table tbody th { padding-left: 14px; }
  .lp-table thead th.lp-table__feature { padding-left: 14px; }

  /* Modules — tight inline numeral, dense rhythm */
  .lp-mod {
    padding: 20px 0;
    gap: 4px;
    grid-template-columns: 1fr;
  }
  .lp-mod__num {
    font-size: 22px;
    line-height: 1;
    margin-bottom: -2px;
    color: var(--jj-brand);
    opacity: 0.7;
  }
  .lp-mod__title { font-size: 18px; margin-bottom: 4px; line-height: 1.2; }
  .lp-mod__copy { font-size: 14px; line-height: 1.5; margin-bottom: 6px; }
  .lp-mod__bullets { gap: 2px; }
  .lp-mod__bullets li { font-size: 13px; line-height: 1.45; padding-left: 16px; }
  .lp-mod--feature .lp-mod__title { font-size: 20px; }
  .lp-flow { margin-top: 12px; padding: 12px; gap: 6px; }
  .lp-flow__step { padding: 8px 10px; }
  .lp-flow__step strong { font-size: 13px; }
  .lp-flow__step span { font-size: 11px; }

  /* Bonus — smaller card, tighter steps */
  .lp-bonus-shell { padding: 48px 16px; }
  .lp-bonus-tag { font-size: 48px; right: 16px; top: 16px; }
  .lp-bonus-inner {
    padding: 28px 22px;
    border-radius: 14px;
    gap: 22px;
  }
  .lp-bonus__head { gap: 12px; }
  .lp-bonus__title { font-size: 24px; line-height: 1.1; }
  .lp-bonus__lede { font-size: 14.5px; line-height: 1.55; }
  .lp-bonus__steps { padding: 14px 0 0; }
  .lp-bonus__steps li { padding: 14px 0 0 0; gap: 4px; }
  .lp-bonus__step-num { font-size: 22px; }
  .lp-bonus__steps h3 { font-size: 15px; margin: 2px 0 0; }
  .lp-bonus__steps p { font-size: 13.5px; }
  .lp-bonus__foot { padding-top: 16px; gap: 12px; }
  .lp-bonus__foot .lp-btn { width: 100%; }
  .lp-bonus__note { font-size: 12px; }

  /* Email deep-dive */
  .lp-email__inner { padding: 56px 20px; gap: 28px; }
  .lp-email__copy { gap: 14px; }
  .lp-email__copy p { font-size: 14.5px; line-height: 1.55; }
  .lp-email__copy .lp-btn { width: 100%; }
  .lp-fake-card__title { font-size: 16px; }
  .lp-fake-card__quote { font-size: 13.5px; padding: 10px 12px; }

  /* Final CTA */
  .lp-final { padding: 64px 20px 56px; gap: 16px; }
  .lp-display--final { font-size: clamp(32px, 9vw, 48px); }
  .lp-final__sub { font-size: 14.5px; line-height: 1.55; }
  .lp-final__ctas { width: 100%; flex-direction: column; gap: 10px; }
  .lp-final__ctas .lp-btn { width: 100%; }

  /* Footer */
  .lp-foot { padding: 24px 20px; }
}

/* Smallest phones */
@media (max-width: 380px) {
  .lp-display { font-size: 34px; }
  .lp-bonus__title { font-size: 22px; }
  .lp-bill__total { font-size: 24px; }
  .lp-bill__total--ours { font-size: 22px; }
}
