/* Conversion-focused landing page, layered on the shared design tokens in app.css. */
.landing {
  --lp-gutter: clamp(1rem, 4vw, 2.5rem);
  --lp-maxw: 1220px;
  overflow-x: hidden;
}

.landing .lp-container {
  width: 100%;
  max-width: var(--lp-maxw);
  margin-inline: auto;
  padding-inline: var(--lp-gutter);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: -9999px;
  padding: 0.75rem 1rem;
  border-radius: 0 0 10px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
}
.skip-link:focus { left: 0; }

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
}
.lp-brand .brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.lp-brand-text { font-size: 1rem; }

/* Header and mobile menu */
.lp-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: border-color var(--transition), background var(--transition);
}
.lp-header.is-stuck {
  border-color: var(--border);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  min-height: 70px;
  gap: 1rem;
}
.lp-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}
.lp-nav a {
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.lp-nav a:hover { color: var(--text); background: var(--surface-2); }
.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.lp-header-cta { min-height: 40px; }
.lp-menu-button {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.lp-menu-button svg { width: 21px; height: 21px; }
.lp-mobile-scrim[hidden] { display: none; }
.lp-mobile-scrim {
  position: fixed;
  z-index: 79;
  inset: 0;
  background: rgba(2, 6, 12, 0.58);
  backdrop-filter: blur(2px);
}
.lp-mobile-nav {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(88vw, 380px);
  padding: 1rem 1rem 1.5rem;
  border-left: 1px solid var(--border);
  background: var(--surface);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.24);
  visibility: hidden;
  transform: translateX(102%);
  transition: transform 0.25s ease, visibility 0.25s;
}
.lp-mobile-nav.is-open { visibility: visible; transform: translateX(0); }
.lp-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  margin-bottom: 1.25rem;
}
.lp-mobile-nav-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.lp-mobile-nav .lp-menu-button { display: grid; }
.lp-mobile-nav nav {
  display: grid;
  margin-bottom: auto;
}
.lp-mobile-nav nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.35rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}
.lp-mobile-nav nav a span {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--accent);
}
.lp-mobile-nav > .btn { width: 100%; margin-top: 1.5rem; }
.lp-mobile-sample {
  padding-top: 0.85rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}
body.lp-menu-open { overflow: hidden; }

/* Shared landing elements */
.lp-section { padding: clamp(4.5rem, 8vw, 7rem) 0; }
.lp-section-head {
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.lp-section-head-left { margin-inline: 0; text-align: left; }
.lp-kicker {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lp-section h2,
.lp-final h2 {
  max-width: 20ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}
.lp-section-head:not(.lp-section-head-left) h2 { margin-inline: auto; }
.lp-sub {
  max-width: 58ch;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}
.lp-section-head:not(.lp-section-head-left) .lp-sub { margin-inline: auto; }
.lp-sub a { color: var(--accent); font-weight: 700; }
.lp-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn-quiet {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  box-shadow: none;
  text-decoration: none;
}
.btn-quiet:hover {
  border-color: var(--text-secondary);
  background: var(--surface-2);
  color: var(--text);
}
.btn-light {
  border-color: #fff;
  background: #fff;
  color: #0b1511;
  text-decoration: none;
}
.btn-light:hover { background: #dcfce7; border-color: #dcfce7; }

/* Hero */
.lp-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(3.8rem, 7vw, 6.5rem);
}
.lp-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 30%, transparent), transparent 70%),
    radial-gradient(circle at 82% 12%, var(--accent-glow), transparent 30%);
  opacity: 0.7;
  pointer-events: none;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}
.lp-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 5.8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}
.lp-hero h1 em {
  color: inherit;
  font-style: normal;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(transparent 72%, var(--accent-soft) 72%);
}
.lp-lede {
  max-width: 36em;
  margin-bottom: 1.8rem;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}
.lp-cta-note {
  margin: 0.85rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.lp-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
}
.lp-proof-row b { color: var(--accent); margin-right: 0.25rem; }

/* Truthful miniature of the actual builder */
.lp-builder-preview {
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 75%, var(--text));
  border-radius: 20px;
  background: #0d1117;
  color: #f4f6fa;
  box-shadow: 0 36px 90px -28px rgba(4, 15, 10, 0.5);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}
.lp-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}
.lp-preview-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}
.lp-preview-brand i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: #10b981;
  color: #fff;
  font-size: 0.62rem;
  font-style: normal;
}
.lp-preview-status { color: #98a2b3; }
.lp-preview-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: #34d399;
}
.lp-preview-body {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  min-height: 415px;
}
.lp-preview-steps {
  display: grid;
  align-content: start;
  gap: 0.25rem;
  padding: 1.15rem 0.75rem;
  list-style: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-preview-steps li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.55rem;
  align-items: center;
  padding: 0.65rem 0.55rem;
  border-radius: 8px;
  color: #98a2b3;
  font-size: 0.66rem;
}
.lp-preview-steps li span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.58rem;
}
.lp-preview-steps li.done span { border-color: rgba(52, 211, 153, 0.35); color: #34d399; }
.lp-preview-steps li.active { background: rgba(16, 185, 129, 0.14); color: #fff; }
.lp-preview-steps li.active span { border-color: #10b981; background: #10b981; color: #fff; }
.lp-preview-main { min-width: 0; padding: 1.25rem; background: #f7f8fa; color: #111827; }
.lp-preview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.lp-preview-heading div { display: grid; }
.lp-preview-heading small { color: #059669; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em; }
.lp-preview-heading strong { font-size: 1.35rem; letter-spacing: -0.03em; }
.lp-preview-heading > span {
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  background: #e8ecf2;
  color: #667085;
  font-size: 0.62rem;
  font-weight: 700;
}
.lp-preview-exercise {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.55rem;
  border: 1px solid #e5e8ee;
  border-radius: 10px;
  background: #fff;
}
.lp-exercise-order { color: #98a2b3; font-family: var(--mono); font-size: 0.62rem; }
.lp-preview-exercise > div:nth-child(2) { display: grid; min-width: 0; }
.lp-preview-exercise strong { overflow: hidden; font-size: 0.75rem; text-overflow: ellipsis; white-space: nowrap; }
.lp-preview-exercise span { color: #7a8495; font-size: 0.62rem; }
.lp-preview-exercise > b { font-family: var(--mono); font-size: 0.68rem; }
.lp-preview-progression {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 10px;
  background: #edf0f4;
}
.lp-preview-progression span { flex: 0 0 auto; color: #7a8495; font-size: 0.5rem; line-height: 1.5; }
.lp-preview-progression span b { color: #111827; font-size: 0.62rem; }
.lp-preview-progression i { height: 1px; min-width: 10px; flex: 1; margin-inline: 0.4rem; background: #cdd3dc; }
.lp-preview-progression .deload { color: #b45309; }
.lp-preview-progression .deload b { color: #b45309; }

/* Trust strip */
.lp-trust {
  border-block: 1px solid var(--border);
  background: var(--surface);
}
.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.lp-trust-grid > div {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  padding: 1.35rem clamp(0.75rem, 2vw, 1.5rem);
  border-right: 1px solid var(--border);
}
.lp-trust-grid > div:last-child { border-right: 0; }
.lp-trust svg { width: 24px; flex: 0 0 24px; color: var(--accent); stroke-width: 1.7; }
.lp-trust span { display: grid; color: var(--muted); font-size: 0.78rem; }
.lp-trust b { color: var(--text); font-size: 0.86rem; }

/* Program cards */
.lp-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.lp-program-card {
  position: relative;
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: transform var(--transition), border-color var(--transition);
}
.lp-program-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.lp-program-featured {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 48%);
}
.lp-program-meta { display: flex; gap: 0.45rem; margin-bottom: 2.8rem; }
.lp-program-meta span {
  padding: 0.28rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
}
.lp-program-number {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: var(--border-strong);
  font-family: var(--mono);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.lp-program-card h3 { margin-bottom: 0.65rem; font-size: 1.35rem; letter-spacing: -0.025em; }
.lp-program-card p { min-height: 5.3em; color: var(--text-secondary); font-size: 0.91rem; }
.lp-week-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.25rem; margin: 1.5rem 0; }
.lp-week-strip b,
.lp-week-strip i {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-style: normal;
}
.lp-week-strip b { background: var(--btn-bg); color: var(--btn-fg); }
.lp-week-strip i { background: var(--surface-3); color: var(--muted); }
.lp-program-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}
.lp-program-card > a span { color: var(--accent); font-size: 1.1rem; }
.lp-program-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Dark how-it-works block */
.lp-section-dark {
  background: #0c1210;
  color: #f4f8f6;
}
[data-theme="dark"] .lp-section-dark { background: #101713; }
.lp-section-dark .lp-kicker { color: #34d399; }
.lp-section-dark .lp-sub { color: #a9b7af; }
.lp-how-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}
.lp-how-layout .lp-section-head { position: sticky; top: 105px; margin-bottom: 0; }
.lp-how-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.lp-how-actions > a:not(.btn) { color: #d1ddd7; font-size: 0.9rem; font-weight: 700; text-decoration: none; }
.lp-steps { display: grid; padding: 0; margin: 0; list-style: none; }
.lp-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.lp-steps li:first-child { padding-top: 0; }
.lp-steps > li > span { color: #34d399; font-family: var(--mono); font-size: 0.7rem; }
.lp-steps h3 { margin-bottom: 0.35rem; color: #fff; font-size: 1.12rem; }
.lp-steps p { color: #9caaa2; font-size: 0.92rem; line-height: 1.65; }

/* Feature rows */
.lp-feature-list {
  max-width: 980px;
  margin-inline: auto;
  border-top: 1px solid var(--border);
}
.lp-feature-list article {
  display: grid;
  grid-template-columns: 70px 54px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 2.25rem) 0;
  border-bottom: 1px solid var(--border);
}
.lp-feature-index { padding-top: 0.85rem; color: var(--muted); font-family: var(--mono); font-size: 0.65rem; }
.lp-feature-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}
.lp-feature-icon svg { width: 23px; height: 23px; stroke-width: 1.7; }
.lp-feature-list h3 { margin-bottom: 0.4rem; font-size: 1.12rem; }
.lp-feature-list p { max-width: 66ch; color: var(--text-secondary); }

/* Export */
.lp-export-section { border-block: 1px solid var(--border); background: var(--surface); }
.lp-export-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.lp-export-copy .lp-sub { margin-bottom: 1.5rem; }
.lp-check-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.lp-check-list li { display: flex; gap: 0.6rem; min-width: 0; overflow-wrap: anywhere; }
.lp-check-list li::before { content: "✓"; color: var(--accent); font-weight: 800; }
.lp-export-preview {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: var(--bg);
  box-shadow: var(--shadow-lg);
}
.lp-export-bar,
.lp-export-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: var(--surface-2);
  font-family: var(--mono);
  font-size: 0.65rem;
}
.lp-export-bar { border-bottom: 1px solid var(--border); }
.lp-export-bar b { color: var(--accent); font-size: 0.58rem; }
.lp-export-grid {
  display: grid;
  grid-template-columns: 0.5fr 0.7fr 2.4fr 0.7fr 0.8fr;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 0.66rem;
}
.lp-export-grid > * {
  min-width: 0;
  padding: 0.65rem;
  overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lp-export-grid > span { background: var(--surface-2); color: var(--muted); font-size: 0.55rem; letter-spacing: 0.06em; }
.lp-export-grid strong { color: var(--text); font-weight: 600; }
.lp-export-grid .deload { background: var(--warn-soft); color: var(--warn); }
.lp-export-foot { border-top: 0; color: var(--muted); }
.lp-export-foot span:first-child { display: flex; align-items: center; }
.lp-export-foot i { width: 7px; height: 7px; margin-right: 0.4rem; border-radius: 50%; background: var(--warn); }

/* Local storage explanation */
.lp-local-note { padding-block: clamp(2.5rem, 5vw, 4rem); }
.lp-local-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(120deg, var(--accent-soft), var(--surface) 45%);
}
.lp-local-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--btn-bg);
  color: var(--btn-fg);
}
.lp-local-mark svg { width: 28px; height: 28px; stroke-width: 1.7; }
.lp-local-card h2 { max-width: 26ch; margin: 0; font-size: clamp(1.35rem, 2.8vw, 2rem); }
.lp-local-card > p { color: var(--text-secondary); font-size: 0.92rem; }

/* FAQ */
.lp-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}
.lp-faq-layout .lp-section-head { margin-bottom: 0; }
.lp-faq { border-top: 1px solid var(--border); }
.lp-faq details { border-bottom: 1px solid var(--border); }
.lp-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: "+"; color: var(--accent); font-family: var(--mono); font-size: 1.2rem; }
.lp-faq details[open] summary::after { content: "−"; }
.lp-faq details p {
  max-width: 62ch;
  padding: 0 2rem 1.25rem 0;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* Final CTA */
.lp-final { padding: 0 0 clamp(4.5rem, 8vw, 7rem); }
.lp-final-inner {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 6vw, 4rem);
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 0, rgba(52, 211, 153, 0.2), transparent 35%),
    #0c1210;
  color: #f6faf8;
  text-align: center;
}
.lp-final .lp-kicker { color: #34d399; }
.lp-final h2 { max-width: 18ch; margin-inline: auto; }
.lp-final p { margin-bottom: 1.75rem; color: #a9b7af; }
.lp-final .lp-cta-row { justify-content: center; }
.lp-final .btn-quiet {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #f6faf8;
}
.lp-final .btn-quiet:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Footer */
.lp-footer { padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--border); background: var(--surface); }
.lp-footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 2.15fr);
  gap: clamp(2rem, 7vw, 6rem);
  padding-bottom: 3rem;
}
.lp-footer-brand p { max-width: 32ch; margin-top: 1rem; color: var(--muted); font-size: 0.9rem; }
.lp-footer-nav { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.lp-footer-nav > div { display: grid; align-content: start; gap: 0.6rem; }
.lp-footer-nav h3 {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.lp-footer-nav a { color: var(--text-secondary); font-size: 0.88rem; text-decoration: none; }
.lp-footer-nav a:hover { color: var(--accent); }
.lp-footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.15rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .lp-hero-inner { grid-template-columns: minmax(0, 1fr); }
  .lp-hero-copy { max-width: 720px; }
  .lp-hero h1 { max-width: 11ch; }
  .lp-builder-preview { max-width: 760px; transform: none; }
  .lp-export-layout { grid-template-columns: minmax(0, 1fr); }
  .lp-export-preview { max-width: 780px; }
}

@media (max-width: 880px) {
  .lp-nav { display: none; }
  .lp-menu-button { display: grid; }
  .lp-header-actions { margin-left: auto; }
  .lp-how-layout,
  .lp-faq-layout { grid-template-columns: minmax(0, 1fr); }
  .lp-how-layout .lp-section-head { position: static; }
  .lp-program-grid { grid-template-columns: minmax(0, 1fr); }
  .lp-program-card p { min-height: 0; }
  .lp-trust-grid { grid-template-columns: minmax(0, 1fr); }
  .lp-trust-grid > div { border-right: 0; border-bottom: 1px solid var(--border); }
  .lp-trust-grid > div:last-child { border-bottom: 0; }
  .lp-local-card { grid-template-columns: 62px minmax(0, 1fr); }
  .lp-local-card > p { grid-column: 2; }
  .lp-footer-inner { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 620px) {
  .lp-header-inner { min-height: 62px; }
  .lp-brand .brand-mark { width: 32px; height: 32px; }
  .lp-brand-text { font-size: 0.9rem; }
  .lp-header-cta { display: none; }
  .lp-hero { padding-top: 3rem; }
  .lp-hero h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .lp-cta-row { align-items: stretch; }
  .lp-cta-row .btn { width: 100%; justify-content: center; }
  .lp-proof-row { display: grid; }
  .lp-preview-body { grid-template-columns: 1fr; min-height: 0; }
  .lp-preview-steps {
    grid-template-columns: repeat(4, 1fr);
    padding: 0.65rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .lp-preview-steps li { display: flex; justify-content: center; padding: 0.45rem; }
  .lp-preview-steps li b { display: none; }
  .lp-preview-main { padding: 0.85rem; }
  .lp-preview-exercise { padding: 0.62rem; }
  .lp-preview-progression span { font-size: 0.44rem; }
  .lp-preview-progression span b { font-size: 0.52rem; }
  .lp-program-action { align-items: stretch; flex-direction: column; text-align: center; }
  .lp-feature-list article { grid-template-columns: 38px minmax(0, 1fr); }
  .lp-feature-icon { grid-column: 2; grid-row: 1; width: 42px; height: 42px; }
  .lp-feature-list article > div:last-child { grid-column: 2; }
  .lp-feature-index { grid-row: 1 / span 2; }
  .lp-export-grid { min-width: 560px; }
  .lp-export-preview { overflow-x: auto; }
  .lp-export-bar,
  .lp-export-foot { min-width: 560px; }
  .lp-local-card { grid-template-columns: 1fr; text-align: left; }
  .lp-local-card > p { grid-column: 1; }
  .lp-footer-nav { grid-template-columns: 1fr 1fr; }
  .lp-footer-base { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .lp-builder-preview { transform: none; }
}
