/* Landing page — clean B2B conversion. Scoped to body.landing */

/* Mirror site.css :root (landing is the visual source of those tokens). */
body.landing {
  --lp-ink: var(--ink, #0f172a);
  --lp-ink-soft: var(--ink-2, #334155);
  --lp-muted: var(--muted, #64748b);
  --lp-line: var(--line, #e2e8f0);
  --lp-bg: var(--paper, #f8fafc);
  --lp-bg-alt: #ffffff;
  --lp-blue: var(--blue, #1d4ed8);
  --lp-blue-hover: var(--blue-deep, #1e40af);
  --lp-navy: var(--navy, #0b1f3a);
  --lp-ok: var(--ok, #15803d);
  --lp-miss: var(--miss, #b45309);
  --lp-soft: var(--paper-2, #f1f5f9);
  margin: 0;
  font-family: var(--font-body, "Manrope", sans-serif);
  color: var(--lp-ink);
  background: var(--lp-bg);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

body.landing::before {
  display: none;
}

body.landing a {
  color: var(--lp-blue);
}

body.landing a:hover {
  color: var(--lp-blue-hover);
}

body.landing code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: var(--lp-soft);
  color: var(--lp-ink-soft);
}

.lp-wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* Nav */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 252, 0.94);
  border-bottom: 1px solid var(--lp-line);
  backdrop-filter: blur(8px);
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--lp-ink);
  text-decoration: none;
}

.lp-brand:hover {
  color: var(--lp-ink);
}

.lp-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lp-nav-links a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.lp-nav-links a:hover {
  color: var(--lp-ink);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.7rem 1.15rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lp-btn-lg {
  padding: 0.9rem 1.35rem;
  font-size: 0.98rem;
}

.lp-btn-primary {
  background: var(--lp-blue);
  color: #fff !important;
  border-color: var(--lp-blue);
}

.lp-btn-primary:hover {
  background: var(--lp-blue-hover);
  color: #fff !important;
}

.lp-btn-ghost {
  background: #fff;
  color: var(--lp-ink) !important;
  border-color: var(--lp-line);
}

.lp-btn-ghost:hover {
  border-color: #cbd5e1;
  background: #fff;
  color: var(--lp-ink) !important;
}

/* Hero — single composition, brand-first, calm atmosphere */
.lp-hero {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(29, 78, 216, 0.06), transparent 55%),
    linear-gradient(180deg, #f1f5f9 0%, var(--lp-bg) 70%);
  border-bottom: 1px solid var(--lp-line);
  padding: 2.75rem 0 3.25rem;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.lp-brand-mark {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.04em;
  color: var(--lp-navy);
}

.lp-hero h1 {
  margin: 1.25em 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: var(--lp-navy);
  max-width: 38ch;
  font-weight: 700;
}

.lp-lead {
  margin: 0 0 1.5rem;
  font-size: 1.06rem;
  color: var(--lp-ink-soft);
  max-width: 36rem;
}

.lp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.lp-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--lp-muted);
}

.lp-note a {
  font-weight: 600;
  text-decoration: none;
}

.lp-where {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.15rem 0 0;
  max-width: 40rem;
}

.lp-where-item {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  background: var(--lp-soft);
}

.lp-where-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  color: var(--lp-navy);
}

.lp-where-note {
  margin: 0.25rem 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-pulse {
  margin: 0.85rem 0 0;
  font-size: 0.84rem;
  color: var(--lp-muted);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 48rem;
}

#who .lp-sub {
  margin-bottom: 0;
}

#who .lp-warn {
  margin-top: 1.25rem;
}

.lp-note-center {
  text-align: center;
  margin-top: 1.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* Hero mock — quiet product surface, not a dashboard collage */
.lp-hero-visual {
  min-width: 0;
}

.lp-mock {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  overflow: hidden;
}

.lp-mock-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: var(--lp-soft);
  border-bottom: 1px solid var(--lp-line);
}

.lp-mock-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.lp-mock-bar em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--lp-line);
}

.lp-mock-stats > div {
  padding: 0.85rem 0.75rem;
  border-right: 1px solid var(--lp-line);
}

.lp-mock-stats > div:last-child {
  border-right: 0;
}

.lp-mock-stats span {
  display: block;
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.lp-mock-stats strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.lp-mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.lp-mock-table th,
.lp-mock-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--lp-line);
}

.lp-mock-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lp-muted);
  background: #fafbfc;
}

.lp-mock-table tr:last-child td {
  border-bottom: 0;
}

.lp-mock-table .ok {
  color: var(--lp-ok);
  font-weight: 700;
}

.lp-mock-table .miss {
  color: var(--lp-miss);
  font-weight: 700;
}

/* Sections */
.lp-section {
  padding: 4rem 0;
}

.lp-section-alt {
  background: var(--lp-bg-alt);
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
}

.lp-section h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  letter-spacing: -0.035em;
  color: var(--lp-navy);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lp-sub {
  margin: 0 0 2rem;
  color: var(--lp-muted);
  max-width: 40rem;
  font-size: 1.02rem;
}

.lp-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.lp-point {
  padding: 0;
}

.lp-point h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.lp-point p {
  margin: 0;
  color: var(--lp-ink-soft);
  font-size: 0.95rem;
}

.lp-warn {
  margin: 1.75rem 0 0;
  padding: 0.95rem 1.05rem;
  border-left: 3px solid #94a3b8;
  color: var(--lp-muted);
  font-size: 0.9rem;
  max-width: 48rem;
  background: transparent;
}

/* Modes */
.lp-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lp-modes-3 {
  grid-template-columns: repeat(3, 1fr);
}

.lp-modes-extras {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-mode {
  padding: 1.35rem 1.3rem;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  background: #fff;
}

.lp-mode h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--lp-navy);
}

.lp-mode p {
  margin: 0 0 0.65rem;
  color: var(--lp-ink-soft);
  font-size: 0.95rem;
}

.lp-mode p:last-child {
  margin-bottom: 0;
}

.lp-mode-accent {
  border-color: #bfdbfe;
  background: #f8fafc;
}

.lp-callout {
  margin-top: 1.5rem;
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  background: #fff;
}

.lp-callout h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--lp-navy);
}

.lp-callout p {
  margin: 0;
  color: var(--lp-ink-soft);
  font-size: 0.95rem;
  max-width: 52rem;
}

/* Steps (legacy list, kept for other pages if needed) */
.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
}

.lp-steps > li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--lp-line);
}

.lp-steps > li:last-child {
  border-bottom: 0;
}

.lp-step-n {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--lp-navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.lp-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.lp-steps p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.95rem;
  max-width: 46rem;
}

/* How-it-works visual workflow */
.lp-flow {
  margin-top: 1.75rem;
}

.lp-flow-pick-label {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-flow-pick-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.85rem;
}

.lp-flow-pick-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.lp-flow-pick-markets {
  grid-template-columns: 1.7fr 1fr;
  align-items: stretch;
}

.lp-flow-market {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.85rem 0.85rem 0.9rem;
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  background: var(--lp-soft);
}

.lp-flow-market:has(input:checked) {
  border-color: #93c5fd;
  background: #fff;
}

.lp-flow-market-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem;
  margin: 0;
  padding: 0 0.15rem;
}

.lp-flow-market-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  color: var(--lp-navy);
}

.lp-flow-market-note {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-flow-market-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  flex: 1;
}

.lp-flow-market-cards-one {
  grid-template-columns: 1fr;
}

.lp-flow-choice {
  display: block;
  height: 100%;
  min-width: 0;
  cursor: pointer;
}

.lp-flow-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lp-flow-choice-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 100%;
  padding: 1.15rem 1.2rem;
  border: 1.5px solid var(--lp-line);
  border-radius: 14px;
  background: #fff;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.lp-flow-choice:hover .lp-flow-choice-card {
  border-color: #93c5fd;
  transform: translateY(-2px);
}

.lp-flow-choice input:checked + .lp-flow-choice-card {
  border-color: var(--lp-navy);
  background: linear-gradient(165deg, #0b1f3a 0%, #14345c 100%);
  color: #e2e8f0;
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.18);
}

.lp-flow-choice input:focus-visible + .lp-flow-choice-card {
  outline: 2px solid var(--lp-blue);
  outline-offset: 3px;
}

.lp-flow-choice-badge {
  align-self: flex-start;
  margin-bottom: 0.15rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(29, 78, 216, 0.12);
  color: var(--lp-blue);
}

.lp-flow-choice input:checked + .lp-flow-choice-card .lp-flow-choice-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #93c5fd;
}

.lp-flow-choice-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--lp-ink);
}

.lp-flow-choice input:checked + .lp-flow-choice-card .lp-flow-choice-title {
  color: #fff;
}

.lp-flow-choice-desc {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--lp-muted);
}

.lp-flow-choice input:checked + .lp-flow-choice-card .lp-flow-choice-desc {
  color: rgba(226, 232, 240, 0.82);
}

.lp-flow-track {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  position: relative;
}

.lp-flow:has(#lp-flow-auto:checked) .lp-flow-auto,
.lp-flow:has(#lp-flow-manual:checked) .lp-flow-manual,
.lp-flow:has(#lp-flow-excel:checked) .lp-flow-excel {
  display: grid;
  animation: lp-flow-in 0.35s ease both;
}

@keyframes lp-flow-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-flow-step {
  position: relative;
  padding: 1.15rem 1rem 1.2rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--lp-line);
  min-height: 11.5rem;
}

.lp-flow-step::after {
  content: "";
  position: absolute;
  top: 2.15rem;
  right: -0.55rem;
  width: 0.7rem;
  height: 2px;
  background: var(--lp-line);
  z-index: 1;
}

.lp-flow-step:last-child::after {
  display: none;
}

.lp-flow-n {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 0.75rem;
  border-radius: 9px;
  background: var(--lp-navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.lp-flow-step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lp-flow-step p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--lp-muted);
}

.lp-flow-note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--lp-muted);
  max-width: 46rem;
}

.lp-flow-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

@media (max-width: 1200px) {
  .lp-modes-extras {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .lp-where,
  .lp-flow-pick-row,
  .lp-flow-pick-row-3,
  .lp-flow-pick-markets,
  .lp-modes-3,
  .lp-modes-extras {
    grid-template-columns: 1fr;
  }

  .lp-flow-market-cards {
    grid-template-columns: 1fr;
  }

  .lp-flow-track {
    grid-template-columns: 1fr 1fr;
  }

  .lp-flow-step::after {
    display: none;
  }

  .lp-flow-step {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .lp-flow-track {
    grid-template-columns: 1fr;
  }
}

/* Pricing comparison */
.lp-compare-wrap {
  overflow-x: auto;
  margin: 0.5rem 0 1rem;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  background: #fff;
}

.lp-compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.92rem;
}

.lp-compare th,
.lp-compare td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--lp-line);
  vertical-align: top;
}

.lp-compare th {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted);
  background: rgba(11, 31, 58, 0.03);
}

.lp-compare th span {
  display: inline;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.lp-compare th .lp-th-list {
  display: block;
  margin-top: 0.35rem;
  max-width: 14rem;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  color: var(--lp-ink-soft);
  white-space: normal;
}

.lp-compare tbody tr:last-child td {
  border-bottom: 0;
}

.lp-compare-featured td {
  background: rgba(11, 31, 58, 0.06);
  font-weight: 600;
  color: var(--lp-navy);
}

/* Pricing cards (legacy / optional) */
.lp-prices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.lp-price {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.2rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
}

.lp-price h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-price-sum {
  margin: 0.15rem 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  color: var(--lp-navy);
}

.lp-price-desc {
  margin: 0 0 0.85rem;
  color: var(--lp-ink-soft);
  font-size: 0.9rem;
  flex: 1;
}

.lp-price .lp-btn {
  width: 100%;
}

.lp-price-featured {
  background: var(--lp-navy);
  border-color: var(--lp-navy);
  color: #e2e8f0;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.18);
}

.lp-price-featured h3,
.lp-price-featured .lp-price-sum {
  color: #fff;
}

.lp-price-featured .lp-price-desc {
  color: rgba(226, 232, 240, 0.78);
}

.lp-price-featured .lp-btn-primary {
  background: #fff;
  color: var(--lp-navy) !important;
  border-color: #fff;
}

.lp-price-featured .lp-btn-primary:hover {
  background: #e2e8f0;
  color: var(--lp-navy) !important;
}

.lp-price-badge {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93c5fd;
}

/* FAQ */
.lp-faq-wrap {
  max-width: 720px;
}

.lp-faq details {
  border-bottom: 1px solid var(--lp-line);
  padding: 0.95rem 0;
}

.lp-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--lp-ink);
  font-size: 1rem;
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq summary::after {
  content: "+";
  float: right;
  color: var(--lp-muted);
  font-weight: 500;
}

.lp-faq details[open] summary::after {
  content: "−";
}

.lp-faq details p {
  margin: 0.55rem 0 0.15rem;
  color: var(--lp-muted);
  font-size: 0.95rem;
  clear: both;
}

/* Footer */
.lp-footer {
  padding: 2.25rem 0 2.75rem;
  border-top: 1px solid var(--lp-line);
  background: #fff;
  scroll-margin-top: 4.5rem;
}

.lp-footer-inner {
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.lp-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--lp-ink);
}

.lp-footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.lp-footer p {
  margin: 0;
  max-width: 40rem;
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
}

.lp-footer-links a {
  color: var(--lp-ink-soft);
  text-decoration: none;
  font-weight: 600;
}

.lp-footer-links a:hover {
  color: var(--lp-blue);
}

.lp-footer-copy {
  margin-top: 1.15rem;
  font-size: 0.82rem;
}

/* Final CTA — centered, reuses section / button tokens */
.lp-final-cta {
  border-top: 1px solid var(--lp-line);
  background: var(--lp-bg-alt);
}

.lp-final-cta-inner {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.lp-final-cta h2 {
  margin: 0 0 0.65rem;
  max-width: none;
}

.lp-final-cta-sub {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
}

.lp-final-cta-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* Cookie banner on landing */
body.landing .cookie-banner {
  background: #fff;
  border-color: var(--lp-line);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

body.landing .cookie-banner .btn-primary {
  border-radius: 10px;
  background: var(--lp-blue);
  box-shadow: none;
}

/* Responsive */
@media (max-width: 960px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-hero h1 {
    max-width: none;
  }

  .lp-points,
  .lp-prices,
  .lp-modes {
    grid-template-columns: 1fr 1fr;
  }

  .lp-price-featured {
    transform: none;
  }

  .lp-nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .lp-nav-actions .lp-btn-ghost {
    display: none;
  }

  .lp-nav-actions .lp-btn-primary {
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }

  .lp-points,
  .lp-prices,
  .lp-modes {
    grid-template-columns: 1fr;
  }

  .lp-mock-stats {
    grid-template-columns: 1fr 1fr;
  }

  .lp-mock-stats > div:nth-child(2) {
    border-right: 0;
  }

  .lp-mock-stats > div:nth-child(1),
  .lp-mock-stats > div:nth-child(2) {
    border-bottom: 1px solid var(--lp-line);
  }

  .lp-mock-table th:nth-child(2),
  .lp-mock-table td:nth-child(2) {
    display: none;
  }

  .lp-hero {
    padding: 1.75rem 0 2.25rem;
  }

  .lp-hero h1 {
    font-size: clamp(1.4rem, 6.2vw, 1.75rem);
  }

  .lp-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-cta .lp-btn {
    width: 100%;
  }

  .lp-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-section {
    padding: 3rem 0;
  }

  .lp-section h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
  }
}
