:root {
  --ink: #1a2b32;
  --muted: #5a6f78;
  --bg: #f7f3ee;
  --card: #ffffff;
  --teal: #0f3d4c;
  --teal-soft: #e6f1f4;
  --accent: #e07a3d;
  --accent-dark: #c45f24;
  --line: #d9cfc4;
  --ok: #2a9d8f;
  --danger: #b33a3a;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(26, 43, 50, 0.08);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  --tap: 44px;
  --bottom-nav-h: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  padding-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 0.5rem);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal);
}

a:hover {
  color: var(--accent-dark);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus {
  left: 0;
}

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

.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: var(--safe-top);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand img {
  display: block;
  max-height: 40px;
  width: auto;
}

.sponsor-bar {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0 0 0.65rem;
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.15rem;
}

.nav a.is-active,
.nav a[aria-current="page"] {
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  min-height: var(--tap);
  min-width: var(--tap);
  padding: 0.4rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  min-height: var(--tap);
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(224, 122, 61, 0.35);
  touch-action: manipulation;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--teal) !important;
  border: 2px solid var(--teal);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--teal-soft);
}

.btn-small {
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
  min-height: 40px;
}

.btn-block {
  width: 100%;
}

.btn-danger {
  background: var(--danger);
  box-shadow: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Install banner ---------- */
.install-banner {
  background: var(--teal);
  color: #e6f1f4;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.install-banner.hidden,
.install-banner[hidden] {
  display: none !important;
}

.install-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.install-banner__text {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.95rem;
}

.install-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.install-banner .btn-ghost {
  border-color: #fff;
  color: #fff !important;
}

.install-banner__dismiss {
  background: transparent;
  border: none;
  color: #cfe3ea;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  min-height: var(--tap);
  padding: 0.35rem 0.5rem;
}

.install-steps--primary {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(224, 122, 61, 0.25), var(--shadow);
}

.install-steps--secondary {
  opacity: 0.92;
}

/* ---------- Bottom nav (mobile app feel) ---------- */
.bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 0.35rem 0.25rem calc(0.35rem + var(--safe-bottom));
  justify-content: space-around;
  align-items: stretch;
  box-shadow: 0 -6px 20px rgba(26, 43, 50, 0.06);
}

.bottom-nav__link {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.68rem;
  min-height: var(--tap);
  padding: 0.25rem 0.15rem;
  border-radius: 10px;
  touch-action: manipulation;
}

.bottom-nav__icon {
  font-size: 1.05rem;
  line-height: 1;
}

.bottom-nav__link.is-active,
.bottom-nav__link[aria-current="page"] {
  color: var(--accent-dark);
  background: var(--teal-soft);
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0 1.5rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--teal);
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.hero-points {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink);
}

.hero-points a {
  font-weight: 600;
}

.hero-panel h2 {
  margin-top: 0;
  color: var(--teal);
}

.steps {
  padding-left: 1.2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.card-inset {
  background: var(--teal-soft);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
}

.section {
  padding: 1.5rem 0;
}

.section h2,
.section > h1 {
  color: var(--teal);
}

.grid {
  display: grid;
  gap: 1rem;
}

.templates-grid,
.feature-grid,
.charts-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tags span {
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.9rem;
}

.hidden {
  display: none !important;
}

.planner-layout,
.progress-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: end;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  min-height: var(--tap);
  background: #fff;
  color: var(--ink);
  width: 100%;
  max-width: 100%;
  font-size: 16px; /* avoids iOS zoom on focus */
}

.form-inline label {
  flex: 1 1 140px;
  min-width: 0;
}

.form-inline .btn {
  flex: 0 0 auto;
}

.panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.panel-head h2 {
  margin: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.day-block h3 {
  margin: 0.5rem 0;
  color: var(--teal);
}

.set-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin: 0.4rem 0;
}

.set-label {
  min-width: 3.5rem;
  font-weight: 600;
  color: var(--muted);
}

.set-row label {
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.set-row input {
  width: 5.5rem;
  min-height: var(--tap);
}

.history-list {
  margin: 0;
  padding-left: 1.1rem;
}

.ad-slot {
  width: min(1100px, calc(100% - 2rem));
  margin: 1.5rem auto;
  padding: 1rem 1.25rem;
  background: #fff8f2;
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  text-align: center;
}

.ad-slot--compact {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ad-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.ad-cta {
  margin: 0.35rem 0 0.6rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.ad-link {
  display: inline-block;
}

.ad-credit {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0 2.5rem;
  background: var(--teal);
  color: #e6f1f4;
}

.site-footer a {
  color: #fff;
}

.footer-inner p {
  margin: 0.4rem 0;
}

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

.footer-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.disclaimer {
  max-width: 70ch;
}

.prose {
  max-width: 70ch;
}

.prose h1,
.prose h2,
.prose h3 {
  color: var(--teal);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.4rem 0.55rem;
  text-align: left;
}

.guide-article .prose {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.print-only {
  display: none;
}

@media print {
  .site-header,
  .site-footer,
  .ad-slot,
  .btn,
  .nav-toggle,
  .skip,
  .bottom-nav,
  .install-banner {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  body {
    background: #fff;
    padding-bottom: 0;
  }
  .print-sheet {
    padding: 1rem;
  }
  .print-sheet h1 {
    color: #0f3d4c;
  }
}

/* Desktop: hide bottom nav, restore body padding */
@media (min-width: 861px) {
  body {
    padding-bottom: 0;
  }
  .bottom-nav {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .hero,
  .planner-layout,
  .progress-layout {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.75rem;
  }
  .nav a {
    padding: 0.65rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }
  .nav .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
  .nav.is-open {
    display: flex;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .sponsor-bar {
    font-size: 0.78rem;
  }
  .bottom-nav {
    display: flex;
  }
  .set-row {
    gap: 0.5rem;
  }
  .set-row input {
    width: 4.75rem;
    flex: 1 1 4.75rem;
  }
  .data-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .guide-article .prose {
    padding: 1.1rem;
  }
  .hero-cta .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: calc(100% - 1.25rem);
  }
  .card {
    padding: 1rem;
  }
  .bottom-nav__label {
    font-size: 0.62rem;
  }
}


/* Advertise here */
.advertise-slot {
  margin: 1.5rem auto;
  padding: 1.25rem 1.35rem;
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.08), rgba(15, 23, 42, 0.6));
  max-width: 920px;
}
.advertise-slot--compact { padding: 1rem; }
.advertise-title {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.25rem;
  line-height: 1.3;
}
.advertise-copy { margin: 0 0 1rem; color: var(--muted, #94a3b8); }
.advertise-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #06280f !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
}
.advertise-whatsapp:hover { filter: brightness(1.05); }
@media (max-width: 640px) {
  .advertise-whatsapp { width: 100%; }
}


/* ---------- Auth ---------- */
.auth-page {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.auth-card {
  width: min(440px, 100%);
  margin-inline: auto;
}

.auth-card h1 {
  margin-top: 0;
  font-size: clamp(1.4rem, 4vw, 1.75rem);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.25rem 0 0.75rem;
}

.auth-form label {
  gap: 0.4rem;
}

.auth-form input {
  font-size: 16px;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
}

.auth-form .btn {
  min-height: 48px;
  margin-top: 0.25rem;
}

.auth-status {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.auth-status--ok {
  background: #e8f6f3;
  color: #1a6b5f;
}

.auth-status--err {
  background: #fdecec;
  color: var(--danger);
}

.auth-status--info {
  background: var(--teal-soft);
  color: var(--teal);
}

.auth-switch {
  margin-top: 1.25rem;
}

.nav-auth {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .nav-auth {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-auth .btn {
    width: 100%;
    text-align: center;
  }
}


/* Matrix sponsor banners */
.ad-banner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  min-height: 7rem;
  justify-content: center;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.ad-banner:hover { transform: translateY(-1px); filter: brightness(1.05); }
.ad-banner__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 600;
}
.ad-banner__headline {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.ad-banner__sub {
  font-size: 0.92rem;
  opacity: 0.9;
  max-width: 36rem;
}
.ad-banner__cta {
  margin-top: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.ad-banner--peptide {
  background: linear-gradient(135deg, #0f766e 0%, #134e4a 45%, #042f2e 100%);
  color: #ecfdf5;
  border: 1px solid rgba(45, 212, 191, 0.35);
}
.ad-banner--biology {
  background: linear-gradient(135deg, #7c2d12 0%, #9a3412 40%, #1c1917 100%);
  color: #fff7ed;
  border: 1px solid rgba(251, 146, 60, 0.4);
}
.ad-banner--biology .ad-banner__headline {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ad-slot--compact .ad-banner { min-height: 5.5rem; padding: 0.9rem 1rem; }
.ad-slot--compact .ad-banner__sub { display: none; }
@media (max-width: 640px) {
  .ad-banner { min-height: 6.5rem; }
}


/* App Store / Play Store coming soon */
.store-coming-soon {
  text-align: center;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1.25rem;
}
.store-badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.92;
}
.store-badge img {
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(15, 61, 76, 0.18);
  filter: grayscale(0.15);
}
.store-badge__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f3d4c;
  background: #e8f2f4;
  border: 1px solid rgba(15, 61, 76, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

/* ---------- Custom plan builder ---------- */
.custom-builder-card {
  margin-top: 1rem;
}

.custom-builder-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.custom-plan-name {
  flex: 1 1 220px;
  min-width: 0;
}

.custom-day {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  margin-bottom: 0.85rem;
  background: color-mix(in srgb, var(--card, #fff) 92%, var(--teal) 8%);
}

.custom-day-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.custom-day-name {
  flex: 1 1 180px;
  min-width: 0;
}

.custom-ex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: end;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
}
.custom-ex-row > label {
  flex: 1 1 140px;
}
.custom-ex-row > .custom-ex-actions {
  flex: 0 0 auto;
}

.custom-ex-row .custom-ex-name,
.custom-ex-row .custom-ex-muscle,
.custom-ex-row .custom-ex-pick,
.custom-ex-row .custom-ex-scheme {
  min-width: 0;
}

.custom-ex-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  justify-content: flex-end;
}

.ex-name {
  margin-right: 0.35rem;
}

.demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--teal);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  min-height: 1.75rem;
}

.demo-link:hover,
.demo-link:focus-visible {
  border-color: var(--teal);
  outline: none;
}

.demo-link:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Demo modal */
.demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.demo-overlay.hidden {
  display: none !important;
}

.demo-modal {
  width: min(420px, 100%);
  max-height: min(90vh, 640px);
  overflow: auto;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  padding: 1rem 1.1rem 1.15rem;
}

.demo-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.demo-title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--teal);
}

.demo-media {
  display: flex;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.demo-media img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.demo-actions {
  margin: 0.5rem 0 0;
}

.demo-credit {
  margin: 0.75rem 0 0;
}

@media (max-width: 720px) {
  .custom-ex-row {
    grid-template-columns: 1fr;
  }
  .custom-ex-actions {
    justify-content: stretch;
  }
  .custom-ex-actions .btn,
  .custom-ex-actions .demo-link {
    flex: 1 1 auto;
  }
  .custom-builder-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ---------- UX tidy: choice cards, next steps, start/FAQ ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0.75rem 0 1rem;
}

.choice-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  padding: 1rem 1.05rem;
  min-height: var(--tap);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  box-shadow: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.choice-card:hover,
.choice-card:focus-visible {
  border-color: var(--teal);
  outline: none;
}

.choice-card.is-active {
  border-color: var(--teal);
  background: var(--teal-soft);
  box-shadow: var(--shadow);
}

.choice-card__label {
  font-weight: 800;
  color: var(--teal);
  font-size: 1.05rem;
}

.choice-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.35;
}

.planner-choose-title {
  margin: 1.5rem 0 0.25rem;
  font-size: 1.25rem;
  color: var(--teal);
}

.planner-panels {
  margin-bottom: 1rem;
}

.planner-panel {
  margin-top: 0.25rem;
}

.next-steps {
  margin: 1rem 0;
  background: var(--teal-soft);
  border-color: color-mix(in srgb, var(--teal) 28%, var(--line));
}

.next-steps__title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--teal);
}

.next-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.next-steps__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  min-height: var(--tap);
}

.next-steps__item:hover,
.next-steps__item:focus-visible {
  border-color: var(--teal);
  color: var(--ink);
  outline: none;
}

.next-steps__item strong {
  color: var(--teal);
}

.next-steps__item span {
  font-size: 0.85rem;
  color: var(--muted);
}

.start-steps {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.start-steps > .card h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 0.65rem 0;
}

.faq-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--teal);
  min-height: var(--tap);
  display: flex;
  align-items: center;
}

.faq-item p {
  margin: 0.35rem 0 0.5rem;
  color: var(--muted);
}

.store-coming-soon-inline {
  margin: 1rem 0;
  text-align: center;
}

.store-coming-soon-inline .store-badges {
  margin-top: 0.75rem;
}

@media (max-width: 720px) {
  .choice-grid,
  .next-steps__grid {
    grid-template-columns: 1fr;
  }
}
