*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  color-scheme: dark;
  --bg-1: #0b0f19;
  --bg-2: #101827;
  --bg-3: #0f172a;
  --surface: rgba(15, 23, 42, 0.72);
  --surface-strong: #0f172a;
  --surface-muted: #1f2937;
  --surface-glass: rgba(20, 26, 42, 0.78);
  --surface-glass-strong: rgba(12, 18, 32, 0.92);
  --border: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #b1bfd3;
  --header-text: #f8fafc;
  --header-muted: #b1bfd3;
  --accent: #a16ae8;
  --accent-strong: #8b5cf6;
  --warm: #f59e0b;
  --shadow: 0 30px 70px rgba(2, 6, 23, 0.65);
  --danger: #ef4444;
  --shadow-soft: 0 16px 40px rgba(2, 6, 23, 0.45);
  --grid-dot: rgba(148, 163, 184, 0.12);
  --orb-1: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.35), transparent 65%);
  --orb-2: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.28), transparent 60%);
  --orb-3: radial-gradient(circle at 40% 40%, rgba(251, 191, 36, 0.22), transparent 65%);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

html[data-theme="light"],
body[data-theme="light"] {
  color-scheme: light;
  --bg-1: #f9fafb;
  --bg-2: #e5e7eb;
  --bg-3: #f9fafb;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-strong: #ffffff;
  --surface-muted: #f5f5f5;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --surface-glass-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(15, 23, 42, 0.12);
  --text: #1b1b1b;
  --muted: #4d4d4d;
  --header-text: #172033;
  --header-muted: #566174;
  --accent: #a16ae8;
  --accent-strong: #7c3aed;
  --warm: #f59e0b;
  --shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
  --danger: #dc2626;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --grid-dot: rgba(148, 163, 184, 0.2);
  --orb-1: radial-gradient(circle at 30% 30%, #f5edff, transparent 65%);
  --orb-2: radial-gradient(circle at 50% 50%, #e0f2fe, transparent 60%);
  --orb-3: radial-gradient(circle at 40% 40%, #fef3c7, transparent 65%);
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(160deg, var(--bg-1), var(--bg-2) 45%, var(--bg-3));
  min-height: 100vh;
  line-height: 1.6;
  transition: background 0.4s ease, color 0.3s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    var(--grid-dot) 1px,
    transparent 0
  );
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.ambient {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.orb-one {
  top: -200px;
  right: -180px;
  background: var(--orb-1);
}

.orb-two {
  bottom: -220px;
  left: -160px;
  background: var(--orb-2);
}

.orb-three {
  top: 30%;
  left: 55%;
  width: 420px;
  height: 420px;
  background: var(--orb-3);
}

.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 16px;
  z-index: 2;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface-muted);
  padding: 6px;
  border: 1px solid var(--border);
}

.brand-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.05rem;
  color: var(--header-text);
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.nav-link {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--surface-glass);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  font-size: 0.92rem;
  color: var(--header-muted);
}

.nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(161, 106, 232, 0.35);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.15);
  color: var(--header-text);
}

.nav-link.is-active {
  border-color: rgba(161, 106, 232, 0.5);
  background: rgba(161, 106, 232, 0.18);
  color: var(--header-text);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
  color: #fff;
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-switch:empty {
  display: none;
}

.page-landing-product .page-shell {
  max-width: 1360px;
}

.page-landing-product .main-content {
  max-width: 1100px;
  width: 100%;
  margin: 40px auto 0;
}

/* Product landing has one extra nav item and a longer Spanish label; widen the
   header area first, then wrap only when the viewport genuinely needs it. */
.page-landing-product .site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  grid-template-rows: auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 0;
  border-radius: 999px;
}

.page-landing-product .brand {
  grid-column: 1;
  grid-row: 1;
  flex-shrink: 0;
}

.page-landing-product .header-tools {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  flex-shrink: 0;
  margin-left: 0;
}

.page-landing-product .lang-switch {
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
  flex-shrink: 0;
}

.page-landing-product .nav-links {
  grid-column: 2;
  grid-row: 1;
  flex: none;
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: center;
  overflow: visible;
  padding-inline: 0;
  gap: 8px;
}

.page-landing-product .nav-link {
  white-space: nowrap;
  padding: 7px 10px;
  font-size: 0.84rem;
  flex: 0 0 auto;
}

@media (max-width: 1120px) and (min-width: 601px) {
  .page-landing-product .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-rows: auto auto;
    row-gap: 10px;
  }

  .page-landing-product .header-tools {
    grid-column: 2;
  }

  .page-landing-product .lang-switch {
    grid-column: 3;
  }

  .page-landing-product .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
  }
}

.lang-chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--header-muted);
  background: var(--surface-glass);
  transition: all 0.2s ease;
}

.lang-chip.is-active {
  color: var(--header-text);
  background: rgba(124, 58, 237, 0.16);
  border-color: rgba(124, 58, 237, 0.35);
}

.main-content {
  margin-top: 40px;
  display: grid;
  gap: 28px;
}

.hero {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface-glass-strong), var(--surface));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 10px;
}

.hero-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 60ch;
}

.content-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.link-card {
  display: block;
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(161, 106, 232, 0.35);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

.card-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.link-card h3 {
  margin: 10px 0 8px;
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.2rem;
}

.link-card p {
  margin: 0;
  color: var(--muted);
}

.doc {
  font-size: 0.98rem;
  max-width: 72ch;
  margin: 0 auto;
}

.doc h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.4rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.doc h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

.doc p {
  margin: 0 0 14px;
}

.doc ul,
.doc ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.doc li {
  margin-bottom: 6px;
}

.doc a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-operator-note {
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--muted);
}

.legal-operator-note a {
  text-decoration-thickness: 1px;
}

.theme-toggle {
  position: relative;
  width: 92px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(56, 189, 248, 0.22));
  box-shadow: 0 16px 28px rgba(12, 18, 32, 0.45);
  cursor: pointer;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  isolation: isolate;
  appearance: none;
  -webkit-appearance: none;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  inset: -60% 30% -60% -20%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 60%);
  opacity: 0.5;
  transform: rotate(-12deg);
  z-index: 0;
  transition: opacity 0.3s ease;
}

.theme-toggle__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: rgba(226, 232, 240, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(2, 6, 23, 0.4));
}

.theme-toggle__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.theme-toggle__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

html[data-theme="light"] .theme-toggle {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.55), rgba(251, 146, 60, 0.35));
}

html[data-theme="light"] .theme-toggle__thumb {
  transform: translateX(48px);
}

html[data-theme="light"] .theme-toggle__icon--sun {
  color: rgba(234, 88, 12, 0.9);
  transform: scale(1.08);
}

html[data-theme="dark"] .theme-toggle__icon--moon {
  color: rgba(165, 180, 252, 0.95);
  transform: scale(1.08);
}

.theme-toggle:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 10px 20px rgba(12, 18, 32, 0.35);
}

.theme-toggle:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.7);
  outline-offset: 3px;
}

.nav-link:focus-visible,
.header-cta:focus-visible,
.lp-cta-btn:focus-visible,
.lp-store-btn:focus-visible,
.seo-feature-card:focus-visible,
.seo-channel-card a:focus-visible,
.faq-item summary:focus-visible,
a.del-cta-btn:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.7);
  outline-offset: 3px;
}

.site-footer {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .site-header {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
  }

  .header-tools {
    justify-content: center;
  }

  .lang-switch {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding: 24px 18px 36px;
  }

  .hero,
  .content-card {
    padding: 22px 20px;
  }

  .brand-title {
    font-size: 1rem;
  }
}


@media (prefers-reduced-motion: reduce) {
  .fade-up {
    animation: none;
  }

  .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lp-mockup {
    animation: none;
  }
}
/* ─── Scroll-reveal animation ─── */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[id].lp-section,
[id].lp-reveal {
  scroll-margin-top: 90px;
}

/* ─── Landing-page body: wider shell ─── */
.page-landing-product .page-shell {
  max-width: 960px;
}

.page-landing-product .hero {
  text-align: center;
  padding: 48px 32px 40px;
  background: linear-gradient(
    145deg,
    var(--surface-glass-strong),
    var(--surface),
    rgba(161, 106, 232, 0.06)
  );
}

.page-landing-product .hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.page-landing-product .hero-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-landing-product .content-card {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.footer-store-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s;
}

.footer-store-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(161, 106, 232, 0.3);
}

.footer-store-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 16px;
}

/* ─── Landing-page components (lp-*) ─── */
.lp-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

.lp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.35);
  color: #fff;
}

.lp-cta-btn:active {
  transform: translateY(0);
}

.lp-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}

.lp-section {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}

.lp-section h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 8px;
  text-align: center;
}

/* Problem agitation grid */
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lp-problem-card {
  padding: 22px 20px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  text-align: center;
}

.lp-problem-card .lp-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.lp-problem-card h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.05rem;
  margin: 0 0 6px;
}

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

/* Transformation / How it works */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.lp-step {
  text-align: center;
  padding: 18px 14px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

.lp-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.lp-step h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1rem;
  margin: 0 0 6px;
}

.lp-step p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.lp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lp-benefit {
  text-align: center;
  padding: 18px 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    rgba(161, 106, 232, 0.06),
    transparent
  );
  border: 1px solid var(--border);
}

.lp-benefit .lp-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.lp-benefit h4 {
  font-size: 0.92rem;
  margin: 0 0 4px;
}

.lp-benefit p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

/* Stats row */
.lp-stats {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.lp-stat {
  padding: 14px 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
  flex: 1 1 180px;
  max-width: 260px;
}

.lp-stat-value {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.lp-stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Feature groups */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.lp-feature-card {
  padding: 24px 22px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lp-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.1);
}

.lp-feature-card .lp-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.lp-feature-card h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.lp-feature-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* About / mission */
.lp-about {
  text-align: center;
}

.lp-about p {
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* FAQ accordion */
.lp-faq-list {
  max-width: 680px;
  margin: 0 auto;
}

/* FAQ shared base */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item summary:hover {
  color: var(--accent-strong);
}

.faq-item p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* Landing FAQ overrides */
.lp-faq-item summary {
  padding: 16px 0;
  font-size: 0.92rem;
}

.lp-faq-item p {
  font-size: 0.88rem;
  padding: 0 0 16px;
}

/* Final CTA */
.lp-cta-final {
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.08),
    rgba(56, 189, 248, 0.05)
  );
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: var(--shadow-soft);
}

.lp-cta-final h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.lp-cta-final p {
  color: var(--muted);
  margin: 0 auto 24px;
  max-width: 48ch;
  font-size: 0.95rem;
}

/* Store buttons (placeholder) */
.lp-store-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.lp-store-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(161, 106, 232, 0.35);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.12);
}

.lp-store-btn svg,
.lp-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─── App phone mockup ─── */
.lp-mockup {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s 0.4s ease both;
}

.lp-phone {
  width: 280px;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 2px solid var(--border);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.1);
  padding: 12px 14px 18px;
  position: relative;
  overflow: hidden;
}

.lp-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.04), transparent 60%);
  pointer-events: none;
}

.lp-phone-notch {
  width: 80px;
  height: 6px;
  border-radius: 999px;
  background: var(--border);
  margin: 0 auto 14px;
}

.lp-phone-screen {
  text-align: center;
}

.lp-phone-eyebrow {
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

.lp-phone-verse {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--text);
  font-style: italic;
}

.lp-phone-ref {
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.lp-phone-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
}

.lp-phone-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-block;
}

.lp-phone-btn--like {
  background: rgba(144, 195, 121, 0.2);
  border: 1.5px solid rgba(144, 195, 121, 0.4);
}

.lp-phone-btn--dislike {
  background: rgba(207, 109, 109, 0.2);
  border: 1.5px solid rgba(207, 109, 109, 0.4);
}

.lp-phone-btn--share {
  background: rgba(161, 106, 232, 0.2);
  border: 1.5px solid rgba(161, 106, 232, 0.4);
}

.lp-phone-streak {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--warm);
}

.lp-phone-fire::before {
  content: "\1F525";
  font-size: 0.72rem;
}

html[data-theme="light"] .lp-phone {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(124, 58, 237, 0.08);
}

/* ─── SEO acquisition pages (seo-*) ─── */
.seo-page .page-shell {
  max-width: 1040px;
}

.seo-page .content-card {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.seo-hero {
  text-align: left;
  padding: 44px 40px;
  background: linear-gradient(
    145deg,
    var(--surface-glass-strong),
    var(--surface),
    rgba(245, 158, 11, 0.06)
  );
}

.seo-page .hero-title {
  max-width: 16ch;
}

.seo-page .hero-lead {
  max-width: 66ch;
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.seo-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-glass);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.seo-section {
  margin-bottom: 22px;
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.seo-section h2 {
  margin: 0 0 10px;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.seo-section > p {
  max-width: 70ch;
  margin: 0 0 20px;
  color: var(--muted);
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.seo-feature-card {
  display: block;
  min-height: 132px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-strong);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.seo-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(161, 106, 232, 0.35);
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.1);
}

.seo-feature-card h3 {
  margin: 0 0 8px;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.seo-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.seo-link-card {
  min-height: 72px;
  display: flex;
  align-items: center;
  color: var(--text);
  font-weight: 700;
}

.seo-link-card span::after {
  content: "→";
  margin-left: 8px;
  color: var(--accent);
}

.seo-waitlist-card {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1),
    rgba(245, 158, 11, 0.06)
  );
}

.seo-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.seo-channel-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-strong);
}

.seo-channel-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.seo-channel-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.seo-channel-card a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.seo-faq {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.seo-faq-item summary {
  min-height: 54px;
  padding: 14px 0;
  font-size: 0.95rem;
}

.seo-faq-item p {
  padding: 0 0 16px;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .seo-card-grid,
  .seo-channel-grid {
    grid-template-columns: 1fr;
  }

  .seo-feature-card {
    min-height: auto;
  }
}

/* ─── Delete-account unified components (del-*) ─── */
.page-delete .content-card {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.del-section {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 28px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 14px;
}

.del-section h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0 0 18px;
}

.del-steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.del-steps-track::before {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(100% / 6 + 8px);
  right: calc(100% / 6 + 8px);
  height: 0;
  border-top: 1.5px dashed rgba(161, 106, 232, 0.2);
  z-index: 0;
}

.del-step {
  text-align: center;
  position: relative;
}

.del-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.del-step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 6px;
}

.del-step p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.55;
}

.del-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.del-data-card {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  border-left: 3px solid var(--danger);
}

.del-data-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--muted);
  margin-top: 1px;
}

.del-data-icon svg {
  width: 100%;
  height: 100%;
}

.del-data-card h3 {
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0 0 2px;
}

.del-data-card p {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

.del-retained {
  color: var(--muted);
  font-size: 0.82rem;
  padding: 12px 16px;
  background: rgba(161, 106, 232, 0.06);
  border-radius: var(--radius-sm);
  line-height: 1.6;
}

.del-cta {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 14px;
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.del-cta h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 10px;
}

.del-cta-desc {
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 22px;
  font-size: 0.92rem;
  line-height: 1.6;
}

a.del-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
}

.del-cta-btn svg {
  width: 18px;
  height: 18px;
}

a.del-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(239, 68, 68, 0.3);
  color: #fff;
}

.del-cta-btn:active {
  transform: translateY(0);
}

.del-cta-note {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 14px 0 0;
  opacity: 0.7;
}

/* Delete FAQ overrides */
.del-faq-item summary {
  padding: 14px 0;
  font-size: 0.9rem;
}

.del-faq-item p {
  font-size: 0.85rem;
  padding: 0 0 14px;
}

/* ─── Tablet ─── */
@media (max-width: 820px) {
  .lp-problem-grid,
  .lp-steps,
  .lp-benefits {
    grid-template-columns: 1fr;
  }

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

  /* Steps: horizontal layout on tablet */
  .lp-step,
  .lp-problem-card {
    display: flex;
    gap: 14px;
    text-align: left;
    align-items: flex-start;
  }

  .lp-step .lp-step-num,
  .lp-problem-card .lp-icon {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .lp-benefit {
    display: flex;
    gap: 12px;
    text-align: left;
    align-items: flex-start;
  }

  .lp-benefit .lp-icon {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

/* ─── Mobile — full redesign ─── */
@media (max-width: 600px) {
  /* ── Kill visual noise ── */
  body::before {
    display: none; /* grid dots: gone on mobile */
  }

  .ambient {
    width: 250px;
    height: 250px;
    opacity: 0.25;
  }

  .orb-three {
    width: 180px;
    height: 180px;
  }

  /* ══════════════════════════════════════
   *  HEADER — CSS grid, controlled layout
   * ══════════════════════════════════════ */
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-md);
    padding: 10px 14px;
    top: 8px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    gap: 8px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    padding: 4px;
    border-radius: 8px;
  }

  .brand-title {
    font-size: 0.88rem;
  }

  .header-tools {
    grid-column: 2;
    grid-row: 1;
    gap: 8px;
  }

  .lang-switch {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 4px;
    justify-content: center;
  }

  /* Nav goes full-width on row 3 */
  .nav-links {
    grid-column: 1 / -1;
    grid-row: 3;
    overflow: visible;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  /* Landing: no nav, no CTA (hero has it) */
  .page-landing-product .nav-links {
    display: none;
  }

  .page-landing-product .header-cta {
    display: none;
  }

  .nav-link {
    font-size: 0.76rem;
    padding: 5px 10px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .header-cta {
    font-size: 0.74rem;
    padding: 5px 12px;
  }

  /* Compact toggle */
  .theme-toggle {
    width: 58px;
    height: 28px;
    padding: 0 6px;
    box-shadow: 0 6px 14px rgba(12, 18, 32, 0.25);
  }

  .theme-toggle__thumb {
    width: 20px;
    height: 20px;
    border-radius: 8px;
  }

  html[data-theme="light"] .theme-toggle__thumb {
    transform: translateX(26px);
  }

  .theme-toggle__icon {
    width: 12px;
    height: 12px;
  }

  /* Compact lang chips */
  .lang-chip {
    padding: 3px 7px;
    font-size: 0.65rem;
    gap: 0;
  }

  /* ── Shell: landing = edge-to-edge, others = gutters ── */
  .page-landing-product .page-shell {
    padding: 12px 0 24px;
  }

  .page-landing-product .main-content {
    margin-top: 16px;
    gap: 0;
  }

  /* Header needs own margin when shell is 0 */
  .page-landing-product .site-header {
    margin: 0 12px;
  }

  .page-landing-product .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .page-landing-product .header-tools {
    grid-column: 2;
    grid-row: 1;
  }

  .page-landing-product .lang-switch {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  /* ══════════════════════════════════════
   *  LANDING HERO — immersive, no "card"
   * ══════════════════════════════════════ */
  .page-landing-product .hero {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 32px 20px 24px;
    background: linear-gradient(
      175deg,
      var(--surface-glass-strong),
      transparent 70%
    );
    box-shadow: none;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
  }

  .page-landing-product .hero-title {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
    max-width: none;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .hero-title {
    font-size: clamp(1.35rem, 5.5vw, 1.8rem);
    line-height: 1.2;
  }

  .page-landing-product .hero-lead {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--muted);
  }

  .hero-lead {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  /* CTA: full-width, prominent */
  .lp-hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .lp-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.92rem;
    min-height: 50px;
    border-radius: var(--radius-md);
  }

  .lp-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
  }

  /* ── Phone mockup — smaller, floating feel ── */
  .lp-mockup {
    margin-top: 24px;
  }

  .lp-phone {
    width: 170px;
    padding: 8px 10px 14px;
    border-radius: 20px;
    border-width: 1.5px;
  }

  .lp-phone::before {
    border-radius: 20px;
  }

  .lp-phone-notch {
    width: 48px;
    height: 3px;
    margin-bottom: 10px;
  }

  .lp-phone-eyebrow {
    font-size: 0.4rem;
    margin-bottom: 8px;
  }

  .lp-phone-verse {
    font-size: 0.64rem;
    line-height: 1.4;
    margin-bottom: 5px;
  }

  .lp-phone-ref {
    font-size: 0.52rem;
    margin-bottom: 10px;
  }

  .lp-phone-actions {
    gap: 5px;
    margin-bottom: 8px;
  }

  .lp-phone-btn {
    width: 20px;
    height: 20px;
  }

  .lp-phone-streak {
    font-size: 0.52rem;
    padding: 3px 8px;
    gap: 3px;
  }

  .lp-phone-fire::before {
    font-size: 0.54rem;
  }

  /* ══════════════════════════════════════
   *  LANDING CONTENT — borderless sections
   * ══════════════════════════════════════ */
  .page-landing-product .content-card {
    padding: 0;
  }

  .lp-section {
    border-radius: 0;
    border-left: none;
    border-right: none;
    background: transparent;
    box-shadow: none;
    border-top: 1px solid var(--border);
    border-bottom: none;
    padding: 28px 20px;
    margin-bottom: 0;
  }

  .lp-section h2 {
    font-size: 1.25rem;
    text-align: left;
    margin-bottom: 18px;
  }

  /* ── Problem cards — clean list, no card chrome ── */
  .lp-problem-grid {
    gap: 0;
  }

  .lp-problem-card {
    display: flex;
    gap: 14px;
    text-align: left;
    align-items: flex-start;
    padding: 14px 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
  }

  .lp-problem-card:last-child {
    border-bottom: none;
  }

  .lp-problem-card .lp-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .lp-problem-card h3 {
    font-size: 0.92rem;
    margin-bottom: 3px;
  }

  .lp-problem-card p {
    font-size: 0.82rem;
  }

  /* ── Steps — clean numbered list ── */
  .lp-steps {
    gap: 0;
    margin-bottom: 20px;
  }

  .lp-step {
    display: flex;
    gap: 14px;
    text-align: left;
    align-items: flex-start;
    padding: 12px 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
  }

  .lp-step:last-child {
    border-bottom: none;
  }

  .lp-step-num {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
  }

  .lp-step h3 {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .lp-step p {
    font-size: 0.8rem;
  }

  /* ── Benefits — clean horizontal rows ── */
  .lp-benefits {
    gap: 0;
  }

  .lp-benefit {
    display: flex;
    gap: 12px;
    text-align: left;
    align-items: flex-start;
    padding: 12px 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
  }

  .lp-benefit:last-child {
    border-bottom: none;
  }

  .lp-benefit .lp-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .lp-benefit h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  .lp-benefit p {
    font-size: 0.78rem;
  }

  /* ── Stats — compact inline row ── */
  .lp-stats {
    gap: 0;
    margin-bottom: 0;
    padding: 0 20px;
    border-top: 1px solid var(--border);
  }

  .lp-stat {
    flex: 1 1 0;
    min-width: 0;
    padding: 16px 6px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-right: 1px solid var(--border);
  }

  .lp-stat:last-child {
    border-right: none;
  }

  .lp-stat-value {
    font-size: 1.2rem;
  }

  .lp-stat-label {
    font-size: 0.68rem;
  }

  /* ── Feature cards — horizontal, subtle separator ── */
  .lp-features-grid {
    gap: 0;
  }

  .lp-feature-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
  }

  .lp-feature-card:last-child {
    border-bottom: none;
  }

  .lp-feature-card:hover {
    transform: none;
    box-shadow: none;
  }

  .lp-feature-card .lp-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1;
  }

  .lp-feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .lp-feature-card p {
    font-size: 0.82rem;
  }

  /* ── About — left-aligned, breathing ── */
  .lp-about {
    text-align: left;
  }

  .lp-about p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.65;
  }

  /* ── FAQ — clean, large touch targets ── */
  .lp-faq-list {
    max-width: none;
  }

  .faq-item summary {
    min-height: 48px;
  }

  .lp-faq-item summary {
    padding: 16px 0;
    font-size: 0.88rem;
  }

  .lp-faq-item p {
    font-size: 0.84rem;
  }

  /* ── CTA final — full-bleed accent ── */
  .lp-cta-final {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 32px 20px;
    text-align: center;
  }

  .lp-cta-final h2 {
    font-size: 1.2rem;
  }

  .lp-cta-final p {
    font-size: 0.86rem;
  }

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

  .lp-store-btn {
    justify-content: center;
    min-height: 48px;
    border-radius: var(--radius-md);
  }

  /* ══════════════════════════════════════
   *  NON-LANDING PAGES (doc, hub, delete)
   *  — strip card chrome, native feel
   * ══════════════════════════════════════ */

  /* ── Shared: remove card wrappers ── */
  .page-doc .hero,
  .page-landing .hero,
  .page-delete .hero {
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 20px 20px 16px;
  }

  .page-doc .content-card,
  .page-landing .content-card,
  .page-delete .content-card {
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 20px;
  }

  .page-doc .main-content,
  .page-landing .main-content,
  .page-delete .main-content,
  .seo-page .main-content {
    gap: 0;
  }

  .page-doc .hero-title,
  .page-landing .hero-title,
  .page-delete .hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .page-doc .hero-lead,
  .page-landing .hero-lead,
  .page-delete .hero-lead {
    font-size: 0.86rem;
  }

  .seo-hero {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 28px 20px 22px;
    background: linear-gradient(
      175deg,
      var(--surface-glass-strong),
      transparent 72%
    );
    box-shadow: none;
  }

  .seo-page .content-card {
    padding: 0;
  }

  .seo-cta-row {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .seo-cta-row .lp-cta-btn,
  .seo-cta-row .lp-store-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    border-radius: var(--radius-md);
  }

  .seo-keywords {
    padding: 0 20px;
    margin-top: 10px;
  }

  .seo-section {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    box-shadow: none;
    padding: 26px 20px;
    margin-bottom: 0;
  }

  .seo-section h2 {
    font-size: 1.2rem;
  }

  .seo-section > p,
  .seo-feature-card p,
  .seo-channel-card p,
  .seo-faq-item p {
    font-size: 0.84rem;
  }

  .seo-feature-card,
  .seo-channel-card {
    min-height: auto;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 16px 0;
    background: transparent;
  }

  .seo-feature-card:hover {
    transform: none;
    box-shadow: none;
  }

  .seo-link-card {
    min-height: 48px;
  }

  .page-doc .eyebrow,
  .page-landing .eyebrow,
  .page-delete .eyebrow,
  .seo-page .eyebrow {
    font-size: 0.62rem;
  }

  /* ── Hub pages — big tappable cards ── */
  .page-landing .card-grid {
    gap: 12px;
  }

  .page-landing .link-card {
    padding: 20px 18px;
    border-radius: var(--radius-md);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-landing .link-card h3 {
    font-size: 1.1rem;
    margin: 6px 0 4px;
  }

  .page-landing .link-card p {
    font-size: 0.82rem;
  }

  /* ── Doc pages — clean reading experience ── */
  .page-doc .doc {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .page-doc .doc h2 {
    font-size: 1.2rem;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .page-doc .doc h2:first-child {
    border-top: none;
    padding-top: 0;
  }

  .page-doc .doc h3 {
    font-size: 1rem;
  }

  .page-doc .doc ul,
  .page-doc .doc ol {
    padding-left: 18px;
  }

  /* ── Delete pages — clean sections ── */
  .page-delete .content-card {
    padding: 0;
  }

  .del-section {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: none;
    background: transparent;
    box-shadow: none;
    padding: 24px 20px;
    margin-bottom: 0;
  }

  .del-section h2 {
    font-size: 1.15rem;
    margin-bottom: 14px;
  }

  .del-steps-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .del-steps-track::before {
    display: none;
  }

  .del-step {
    display: flex;
    gap: 12px;
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .del-step:last-child {
    border-bottom: none;
  }

  .del-step-num {
    flex-shrink: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .del-step h3 {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .del-step p {
    font-size: 0.82rem;
  }

  .del-data-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .del-data-card {
    padding: 14px 0;
    border-radius: 0;
    background: transparent;
    border-left: none;
    border-bottom: 1px solid var(--border);
  }

  .del-data-card:last-child {
    border-bottom: none;
  }

  .del-retained {
    margin-top: 8px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
  }

  .del-cta {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-color: var(--border);
    background: transparent;
    padding: 28px 20px;
    margin-bottom: 0;
  }

  .del-cta h2 {
    font-size: 1.15rem;
  }

  .del-cta-desc {
    font-size: 0.85rem;
    max-width: none;
  }

  a.del-cta-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    border-radius: var(--radius-md);
  }

  .del-cta-note {
    font-size: 0.72rem;
  }

  .del-faq-item summary {
    min-height: 48px;
  }

  /* ── Footer ── */
  .site-footer {
    margin-top: 24px;
    font-size: 0.78rem;
    padding: 0 20px;
  }

  .footer-links {
    gap: 8px;
  }
}

/* ─── Extra-small ─── */
@media (max-width: 380px) {
  .page-landing-product .hero {
    padding: 24px 16px 20px;
  }

  .page-landing-product .hero-title {
    font-size: 1.4rem;
  }

  .hero-title {
    font-size: 1.2rem;
  }

  .lp-phone {
    width: 150px;
  }

  .lp-section,
  .lp-stats {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lp-cta-final {
    padding: 24px 16px;
  }

  /* Minimal header — lang to row 2, centered */
  .site-header {
    grid-template-columns: 1fr auto;
    margin: 0 8px;
  }

  .lang-switch {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
  }

  .nav-links {
    grid-row: 3;
  }
}
