/* Fonts (Fraunces, Source Serif 4, Inter) are loaded in the layout <head>. */

/* =====================================================================
   LUMIVOX — Premium editorial theme
   Calm paper surfaces, one confident accent (deep teal), serif display
   + serif reading body on a clean sans UI. Tokens keep their original
   names so the whole cascade re-skins from here.
   ===================================================================== */
:root {
  /* Warm paper surfaces */
  --lv-bg-0: #faf8f3;   /* page */
  --lv-bg-1: #f4f0e8;   /* tinted section */
  --lv-bg-2: #efeae0;   /* deeper tint */
  --lv-bg-3: #ffffff;   /* raised */

  /* Brand accent — calm deep teal (replaces the neon set) */
  --lv-blue: #1e6e60;
  --lv-cyan: #1e6e60;
  --lv-violet: #1e6e60;
  --lv-pink: #b4532e;   /* warm clay — safety / alert / warm hover */

  /* Ink */
  --lv-text: #232020;
  --lv-muted: #595450;
  --lv-soft: #8a847e;

  /* Cards */
  --lv-card: #ffffff;
  --lv-card-strong: #ffffff;
  --lv-card-border: #e7e1d7;
  --lv-card-border-strong: #d8d0c3;

  --lv-radius-sm: 8px;
  --lv-radius-md: 12px;
  --lv-radius-lg: 16px;
  --lv-radius-xl: 22px;

  /* Soft, neutral, no glow */
  --lv-shadow-glow: 0 1px 2px rgba(40, 33, 28, 0.04);
  --lv-shadow-card: 0 1px 2px rgba(40, 33, 28, 0.04), 0 14px 34px -18px rgba(40, 33, 28, 0.18);
  --lv-gradient-bg: linear-gradient(180deg, #fbf9f4 0%, #f5f1e9 100%);
  --lv-gradient-brand: linear-gradient(90deg, transparent, rgba(30, 110, 96, 0.55), transparent);
  --lv-gradient-cta: linear-gradient(180deg, #237b6c 0%, #1a6055 100%);
  --lv-gradient-heading: #1a1715;

  --white: #ffffff;
  --off: #fbf9f4;
  --off-2: #f4f0e8;
  --ink: #232020;
  --ink-80: #3a3531;
  --ink-60: #595450;
  --ink-40: #8a847e;
  --ink-30: #b8b1a7;
  --ink-08: #e7e1d7;
  --accent: #1e6e60;
  --accent-dark: #18564b;
  --accent-soft: rgba(30, 110, 96, 0.08);
  --accent-mid: rgba(30, 110, 96, 0.18);
  --border: #e7e1d7;
  --border-strong: #d8d0c3;
  --shadow-sm: var(--lv-shadow-card);
  --shadow-md: 0 2px 4px rgba(40, 33, 28, 0.05), 0 22px 48px -24px rgba(40, 33, 28, 0.22);
  --shadow-lg: 0 4px 8px rgba(40, 33, 28, 0.06), 0 34px 70px -30px rgba(40, 33, 28, 0.26);
  --r-sm: var(--lv-radius-sm);
  --r-md: var(--lv-radius-md);
  --r-lg: var(--lv-radius-lg);
  --r-xl: var(--lv-radius-xl);
  --r-pill: 999px;

  /* Editorial additions */
  --lv-paper: #faf8f3;
  --lv-serif-display: "Fraunces", Georgia, "Times New Roman", serif;
  --lv-serif-read: "Source Serif 4", Georgia, "Times New Roman", serif;
  --lv-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lv-highlight-bg: #f6eedd;       /* warm "highlighter" wash for key boxes */
  --lv-highlight-border: #e7d7b6;
  --lv-highlight-ink: #8a6516;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  min-height: 100vh;
  font-family: var(--lv-sans);
  background: var(--lv-bg-0);
  color: var(--lv-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  /* Faint warm light from the top — calm, not neon */
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(30, 110, 96, 0.045), transparent 60%),
    linear-gradient(180deg, #fbf9f4 0%, #f6f2ea 100%);
}
body::after {
  content: none;
}
a { color: inherit; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
img, video, iframe { max-width: 100%; }
h1, h2, h3, h4, .lv-heading-font {
  font-family: var(--lv-serif-display);
  color: var(--lv-text);
  font-optical-sizing: auto;
}
h1 {
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.012em;
}
h2 {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.01em;
}
h3 {
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.lead {
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--lv-muted);
}
.body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.78;
  color: var(--lv-muted);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(250, 248, 243, 0.96);
  border-bottom: 1px solid rgba(216, 208, 195, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 28px -24px rgba(40, 33, 28, 0.36);
  backdrop-filter: blur(16px) saturate(1.02);
  -webkit-backdrop-filter: blur(16px) saturate(1.02);
}
.logo,
.footer-logo {
  color: var(--lv-text);
  font-family: var(--lv-serif-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
}
.logo::after,
.footer-logo::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--lv-cyan);
  box-shadow: none;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  position: relative;
  color: var(--lv-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--lv-text);
  text-shadow: none;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 9px 20px !important;
  border-radius: var(--r-pill) !important;
  background: var(--lv-gradient-cta) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(40, 33, 28, 0.12);
  transition: transform .15s, box-shadow .18s, background .18s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(26, 96, 85, 0.5);
}
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 1px solid var(--lv-card-border);
  border-radius: 9px;
  background: var(--lv-card);
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.hbg:hover { background: var(--lv-card-strong); border-color: rgba(30, 110, 96, 0.34); }
.hbg span {
  display: block;
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--lv-text);
}
.mob {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  flex-direction: column;
  padding: 8px 6% 16px;
  border-bottom: 1px solid var(--lv-card-border);
  background: rgba(250, 248, 243, 0.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}
.mob.open { display: flex; }
.mob a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--lv-text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: color .15s;
}
.mob a:hover { color: var(--lv-cyan); }
.mob a:last-child { border-bottom: none; }

.site-page { padding-top: 64px; min-height: 100vh; }
.rule {
  border: none;
  height: 1px;
  background: var(--lv-card-border);
}
.eyebrow,
.ss-pill,
.guide-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-family: var(--lv-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before,
.ss-pill::before,
.guide-status::before {
  content: "";
  width: 22px;
  height: 1.5px;
  margin-right: 12px;
  background: var(--accent);
}
.sec,
.sec-bg {
  position: relative;
  padding: 96px 6%;
}
.sec-bg {
  background: var(--lv-bg-1);
  border-top: 1px solid var(--lv-card-border);
  border-bottom: 1px solid var(--lv-card-border);
}
.inner { max-width: 1040px; margin: 0 auto; }

.btn,
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  color: var(--lv-text);
  cursor: pointer;
  font-family: var(--lv-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, color .18s, opacity .15s, transform .15s, box-shadow .18s, border-color .18s;
}
.btn:hover,
.pc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(40, 33, 28, 0.28);
}
.btn:active,
.pc-btn:active { transform: translateY(0); }
.btn-dark,
.btn-accent,
.pc-btn {
  background: var(--lv-gradient-cta);
  color: #fff;
}
.btn-dark:hover,
.btn-accent:hover,
.pc-btn:hover {
  background: linear-gradient(180deg, #1f7163 0%, #165449 100%);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(26, 96, 85, 0.5);
}
.btn-outline {
  border: 1px solid var(--border-strong) !important;
  background: #fff;
  color: var(--lv-text);
}
.btn-outline:hover {
  border-color: var(--accent) !important;
  background: var(--accent-soft) !important;
  color: var(--accent-dark);
  box-shadow: none;
  transform: none;
}
.btn-full { width: 100%; justify-content: center; }

.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 80px 6%;
  border-bottom: 1px solid var(--lv-card-border);
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(30, 110, 96, 0.05), transparent 55%),
    transparent;
}
.hero-wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em {
  color: var(--accent);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  font-style: italic;
  font-weight: 400;
}
.hero .lead { max-width: 460px; margin-bottom: 36px; }
.hero-visual,
.hook-visual {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 36% 24%, rgba(30, 110, 96, 0.07), transparent 42%),
    linear-gradient(160deg, #ffffff, #f6f2ea);
  box-shadow: var(--shadow-lg);
}
.hero-visual {
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-visual::before,
.hook-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 32%, rgba(30, 110, 96, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-visual::after,
.hook-visual::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 1px;
  background: var(--lv-gradient-brand);
  opacity: .75;
}
.hv-icon,
.hkv-icon {
  position: relative;
  z-index: 1;
  font-size: 52px;
  filter: drop-shadow(0 1px 1px rgba(40, 33, 28, 0.12));
}
.hv-fw {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.hv-step {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.07);
  color: var(--lv-text);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 1px 2px rgba(40, 33, 28, 0.06);
}
.hv-arrow { color: var(--lv-cyan); font-size: 12px; }
.hv-label {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--lv-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.problem-grid,
.hook-grid,
.about-grid,
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.problem-cards { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.prob-card,
.loop-block,
.why-card,
.ss-prob-card,
.fw-block,
.product-card,
.about-box,
.guide-card,
.error-card,
.article-disclosure,
.affiliate-note,
.video-caption {
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-lg);
  background: #ffffff;
  box-shadow: var(--lv-shadow-card);
}
.prob-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.prob-card:hover,
.loop-block:hover,
.why-card:hover,
.ss-prob-card:hover,
.product-card:hover,
.guide-card:hover {
  border-color: rgba(30, 110, 96, 0.34);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.prob-icon,
.ssp-icon,
.pc-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30, 110, 96, .22);
  border-radius: 10px;
  background: rgba(30, 110, 96, .1);
  font-size: 20px;
}
.prob-text,
.lb-text,
.wc-text,
.ssp-text,
.fw-text,
.pc-desc,
.pc-use,
.guide-card p,
.ab-item p {
  color: var(--lv-muted);
  font-weight: 400;
}
.prob-text { font-size: 15px; line-height: 1.6; }
.problem-close {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(30, 110, 96, .2);
  border-left: 3px solid var(--lv-cyan);
  border-radius: var(--r-md);
  background: rgba(30, 110, 96, .08);
  color: var(--lv-text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.loop-head,
.steps-head {
  max-width: 560px;
  margin: 0 auto 52px;
  text-align: center;
}
.loop-head h2,
.steps-head h2,
.products-head h2 { margin-bottom: 14px; }
.loop-blocks {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  align-items: center;
}
.loop-intro {
  max-width: 620px;
  margin-top: 14px;
}
.lumivox-loop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}
.lumivox-loop li {
  position: relative;
  min-height: 244px;
  padding: 26px 22px;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-md);
  background: var(--lv-card);
  box-shadow: var(--shadow-sm);
}
.lumivox-loop li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -22px;
  z-index: 1;
  color: var(--lv-cyan);
  content: "->";
  font-weight: 800;
  transform: translateY(-50%);
}
.lumivox-loop-number {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(30, 110, 96, 0.34);
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}
.lumivox-loop-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--lv-cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lumivox-loop h3 {
  margin-bottom: 10px;
  color: var(--lv-text);
  font-size: 17px;
}
.lumivox-loop p {
  color: var(--lv-muted);
  font-size: 14px;
  line-height: 1.65;
}
.loop-arrow,
.fw-arrow {
  color: var(--lv-cyan);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}
.loop-block {
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.lb-tag,
.fw-tag,
.pc-cat,
.ab-label {
  color: var(--lv-cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lb-icon,
.fw-icon {
  margin-bottom: 12px;
  font-size: 28px;
  filter: drop-shadow(0 1px 1px rgba(40, 33, 28, 0.12));
}
.lb-title,
.fw-title,
.wc-title,
.ssp-title,
.pc-name {
  color: var(--lv-text);
  font-weight: 800;
}
.lb-title { margin-bottom: 10px; font-size: 16px; }
.lb-text { font-size: 14px; line-height: 1.65; }

.hook-visual {
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hkv-title {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  color: var(--lv-text);
  font-family: var(--lv-serif-display);
  font-size: 20px;
  font-weight: 800;
}
.hkv-sub {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.08);
  color: var(--lv-muted);
  font-size: 12px;
  letter-spacing: .04em;
}
.hook-text h2 { margin-bottom: 16px; }
.hook-text p { margin-bottom: 24px; }
.hook-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.hook-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--lv-muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}
.hook-bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--lv-gradient-brand);
  box-shadow: 0 1px 2px rgba(40, 33, 28, 0.06);
}

.why-head { margin-bottom: 44px; }
.why-head h2 { margin-top: 8px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.why-card {
  padding: 28px 22px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.wc-num {
  margin-bottom: 16px;
  color: rgba(30, 110, 96, 0.36);
  font-family: var(--lv-serif-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.wc-title { margin-bottom: 8px; font-size: 15px; }
.wc-text { font-size: 14px; line-height: 1.68; }

.cta-dark,
.about-mission {
  position: relative;
  overflow: hidden;
  padding: 100px 6%;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(30, 110, 96, .18) 0%, transparent 65%),
    rgba(255,255,255,0.035);
  border-top: 1px solid var(--lv-card-border);
  border-bottom: 1px solid var(--lv-card-border);
}
.cta-dark h2,
.about-mission blockquote {
  position: relative;
  color: var(--lv-text);
}
.cta-dark p {
  position: relative;
  max-width: 380px;
  margin: 0 auto 36px;
  color: var(--lv-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
}

.video-grid {
  gap: 64px;
}
.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-lg);
  background: #02040c;
  box-shadow: var(--shadow-lg);
}
.video-card video,
.video-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
.video-load-button {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 14px;
  border: 0;
  background: linear-gradient(145deg, #164f45, #0d302b);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.video-load-button:hover,
.video-load-button:focus-visible {
  background: linear-gradient(145deg, #1e6e60, #123f37);
}
.video-load-button:focus-visible {
  outline: 3px solid var(--lv-cyan);
  outline-offset: -6px;
}
.video-play-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.video-play-icon::after {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
  content: "";
}
.video-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
}
.video-caption-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lv-pink);
  box-shadow: 0 1px 2px rgba(40, 33, 28, 0.06);
}
.video-caption-text { color: var(--lv-muted); font-size: 12px; font-weight: 500; }
.video-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.affiliate-note {
  max-width: 620px;
  margin-top: 18px;
  padding: 12px 16px;
  color: var(--lv-muted);
  font-size: 13px;
  line-height: 1.65;
}

.home-hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 84px 6%;
  border-bottom: 1px solid var(--lv-card-border);
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(30, 110, 96, 0.06), transparent 55%),
    transparent;
}
.home-hero-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 64px;
  align-items: center;
}
.home-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.4vw, 66px);
}
.home-hero-copy .lead {
  max-width: 660px;
  margin-bottom: 20px;
}
.home-hero-anchor {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--lv-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.home-hero-concept-link {
  color: var(--lv-hero-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(246, 243, 236, .42);
  text-underline-offset: 4px;
}
.home-hero-concept-link:hover {
  color: #fff;
  text-decoration-color: var(--lv-hero-tint);
}
.home-hero-panel,
.room-panel,
.fit-check-card,
.home-bullet-card,
.problem-panel-card,
.method-card,
.system-card,
.system-cost-card,
.path-card,
.reset-panel,
.article-stage,
.flow-card,
.trust-notes,
.trust-card {
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-lg);
  background: #ffffff;
  box-shadow: var(--lv-shadow-card);
}
.home-hero-panel {
  padding: 18px;
}
.room-panel {
  min-height: 420px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 72% 18%, rgba(30, 110, 96, 0.06), transparent 38%),
    linear-gradient(180deg, #ffffff, #f8f5ef);
}
.room-panel-header span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.room-panel-header strong {
  display: block;
  margin-top: 8px;
  color: var(--lv-text);
  font-family: var(--lv-serif-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
}
.room-timeline {
  display: grid;
  gap: 12px;
}
.room-timeline div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-md);
  background: var(--lv-bg-0);
}
.room-timeline span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.room-timeline p {
  color: var(--lv-muted);
  font-weight: 500;
  line-height: 1.35;
}
.home-section {
  padding: 86px 6%;
}
.section-kicker {
  max-width: 720px;
  margin-bottom: 34px;
}
.section-kicker h2 {
  margin-bottom: 14px;
}
.home-split,
.trust-grid,
.reset-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}
.home-bullet-card,
.trust-notes {
  padding: 26px;
}
.problem-panel-grid,
.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.problem-panel-card,
.trust-card {
  padding: 24px;
}
.problem-panel-card h3,
.trust-card h3 {
  margin-bottom: 10px;
  color: var(--lv-text);
}
.problem-panel-card p,
.trust-card p {
  color: var(--lv-muted);
  line-height: 1.7;
}
.home-bullet-card ul,
.reset-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.home-bullet-card li,
.reset-steps li {
  color: var(--lv-muted);
  line-height: 1.65;
}
.home-bullet-card li::before,
.reset-steps li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--lv-cyan);
  box-shadow: 0 1px 2px rgba(40, 33, 28, 0.06);
}
.fit-check-card {
  max-width: 800px;
  padding: 26px;
}
.home-fit-check {
  border-top: 1px solid var(--lv-card-border);
  border-bottom: 1px solid var(--lv-card-border);
  background: var(--lv-bg-1);
}
.fit-check__shell { max-width: 800px; }
.home-fit-check .fit-check__form {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 36px);
  border-color: var(--lv-card-border);
  box-shadow: 0 18px 44px rgba(40, 33, 28, 0.11);
}
.fit-check__intro {
  max-width: 680px;
  margin: 0 0 24px;
}
.fit-check__intro h2 {
  max-width: 590px;
  margin-bottom: 12px;
  font-size: clamp(30px, 4.2vw, 42px);
  line-height: 1.1;
}
.fit-check__intro .lead { max-width: 640px; }
.fit-check__support {
  margin-top: 8px;
  color: var(--lv-muted);
  font-size: 13px;
  font-weight: 600;
}
.fit-question {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fit-question legend {
  margin-bottom: 10px;
  color: var(--lv-text);
  font-weight: 800;
  line-height: 1.45;
}
.fit-question label {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.04);
  color: var(--lv-muted);
  cursor: pointer;
  font-weight: 700;
}
.fit-question label:has(input:checked) {
  border-color: rgba(30, 110, 96, .48);
  color: var(--lv-text);
  background: rgba(30, 110, 96, .1);
}
.home-fit-check .fit-check__question {
  display: block;
  margin: 0 0 12px;
  padding: 18px 20px;
  min-width: 0;
  border: 1px solid var(--lv-card-border);
  border-radius: 18px;
  background: #fdfaf5;
}
.home-fit-check .fit-check__question:last-of-type { margin-bottom: 18px; }
.fit-check__number {
  display: inline-grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  margin-top: -1px;
  border: 0;
  border-radius: 50%;
  background: rgba(30, 110, 96, .1);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}
.home-fit-check .fit-check__question legend {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  color: var(--lv-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}
.home-fit-check .fit-check__question legend > span:last-child {
  padding-top: 1px;
}
.fit-check__help {
  margin: 8px 0 0 38px;
  color: var(--lv-muted);
  font-size: 14px;
  line-height: 1.5;
}
.fit-check__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin: 14px 0 0 38px;
}
.home-fit-check .fit-check__option {
  width: auto;
  min-height: 40px;
  padding: 9px 14px;
  border-color: var(--lv-card-border);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--lv-text);
  font-size: 13px;
  font-weight: 700;
}
.home-fit-check .fit-check__option:hover {
  border-color: rgba(30, 110, 96, .38);
  background: rgba(30, 110, 96, .055);
}
.home-fit-check .fit-check__option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.home-fit-check .fit-check__option:focus-within {
  outline: 3px solid rgba(30, 110, 96, .3);
  outline-offset: 2px;
}
.home-fit-check .fit-check__option input {
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
}
.fit-check-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.fit-fallback {
  color: var(--lv-cyan);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.fit-result {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(30, 110, 96, .34);
  border-radius: var(--r-md);
  background: rgba(30, 110, 96, .08);
  scroll-margin-top: 96px;
}
.home-fit-check .fit-check__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--lv-card-border);
}
.home-fit-check .fit-check__actions .btn { min-height: 48px; }
.fit-check__result-note {
  margin: 0;
  color: var(--lv-muted);
  font-size: 12px;
}
.home-fit-check .fit-fallback { margin-left: auto; }
.home-fit-check .fit-fallback {
  padding: 10px 0;
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-color: rgba(30, 110, 96, .32);
  text-underline-offset: 3px;
}
.home-fit-check .fit-check__result {
  border-left: 4px solid var(--accent);
  background: rgba(30, 110, 96, .09);
  box-shadow: none;
}

/* Guided fit check: the fieldset is semantic only; the inner card owns the visual layout. */
.home-fit-check .fit-check__card {
  max-width: 800px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 44px);
}
.fit-check__fieldset {
  min-inline-size: 0;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}
.fit-check__fieldset:last-child { margin-bottom: 0; }
.fit-check__fieldset legend.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.fit-check__title {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1.08;
}
.fit-check__lede {
  max-width: 680px;
  margin: 12px 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
}
.fit-check__note {
  margin-top: 8px;
  color: var(--lv-muted);
  font-size: .86rem;
  font-weight: 600;
}
.fit-check__questions { margin-top: 26px; }
.fit-check__question-card {
  padding: 18px 20px;
  border: 1px solid rgba(92, 73, 48, .16);
  border-radius: 18px;
  background: #fffaf2;
}
.fit-check__question-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fit-check__question-card .fit-check__number {
  width: 26px;
  height: 26px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border-radius: 999px;
  background: rgba(35, 112, 96, .10);
  color: #1f6f60;
  font-size: .78rem;
  font-weight: 700;
}
.fit-check__question-title {
  margin: 0;
  color: var(--lv-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}
.fit-check__helper,
.fit-check__options {
  margin-left: 38px;
}
.fit-check__helper {
  margin-top: 8px;
  margin-bottom: 0;
  color: var(--lv-muted);
  font-size: .92rem;
  line-height: 1.5;
}
.fit-check__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.home-fit-check .fit-check__option {
  min-height: 40px;
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(90, 76, 56, .22);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--lv-text);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 650;
}
.home-fit-check .fit-check__option:hover {
  border-color: rgba(35, 112, 96, .45);
  background: rgba(35, 112, 96, .04);
}
.home-fit-check .fit-check__option:has(input:checked) {
  border-color: #237060;
  background: rgba(35, 112, 96, .09);
  color: #174f45;
}
.home-fit-check .fit-check__option input {
  width: 15px;
  height: 15px;
  accent-color: #237060;
}
.home-fit-check .fit-check__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(92, 73, 48, .14);
}
.fit-check__action-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.fit-check__result-note {
  color: var(--lv-muted);
  font-size: .92rem;
}
.home-fit-check .fit-check__result {
  margin-top: 18px;
  border: 1px solid rgba(35, 112, 96, .24);
  border-left: 4px solid #237060;
  border-radius: 14px;
  background: rgba(35, 112, 96, .09);
}
.fit-result h3 {
  margin-bottom: 8px;
  color: var(--lv-text);
}
.fit-result p {
  margin-bottom: 16px;
  color: var(--lv-muted);
  line-height: 1.7;
}
.fit-result a {
  color: var(--lv-cyan);
  font-weight: 900;
  text-decoration: none;
}
.method-grid,
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.method-card,
.path-card,
.system-card,
.system-cost-card {
  padding: 24px;
}
.method-card span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--lv-gradient-cta);
  color: #fff;
  font-weight: 900;
}
.method-card h3,
.path-card h3,
.system-card h3,
.article-stage h3,
.flow-card h4 {
  margin-bottom: 10px;
  color: var(--lv-text);
}
.method-card p,
.path-card p,
.system-card p,
.system-cost-card p,
.flow-card p,
.trust-notes p {
  color: var(--lv-muted);
  line-height: 1.7;
}
.watch-concept {
  color: var(--lv-hero-text);
  background: linear-gradient(155deg, var(--lv-hero-ink), var(--lv-hero-ink-2));
}
.watch-concept__inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.watch-concept .eyebrow { color: var(--lv-hero-tint); }
.watch-concept .eyebrow::before { background: var(--lv-hero-tint); }
.watch-concept h2 {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--lv-hero-text);
}
.watch-concept .lead {
  max-width: 540px;
  color: var(--lv-hero-dim);
}
.watch-concept__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-top: 28px;
}
#watch-concept .watch-concept__button--primary {
  border: 1px solid rgba(255, 250, 240, .9);
  background: #fffaf0;
  color: #103f36;
}
#watch-concept .watch-concept__button--primary:hover {
  background: #fff;
  color: #0d352e;
}
#watch-concept .watch-concept__button--secondary {
  border: 1px solid rgba(255, 250, 240, .7);
  background: transparent;
  color: #fffaf0;
  opacity: 1;
}
#watch-concept .watch-concept__button--secondary:hover {
  border-color: #fffaf0;
  background: rgba(255, 250, 240, .1);
  color: #fff;
}
.watch-concept__video {
  scroll-margin-top: 96px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(246, 243, 236, .22);
  border-radius: var(--r-lg);
  background: #0a2822;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .26);
}
.watch-concept__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

#watch-concept { scroll-margin-top: 96px; }
.starter-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.system-card,
.path-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
}
.system-card a,
.path-card a,
.flow-card a {
  margin-top: auto;
  color: var(--lv-cyan);
  font-weight: 900;
  text-decoration: none;
}
.system-cost-card {
  border-color: rgba(180, 83, 46, .3);
}
.system-cost-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--lv-text);
  font-family: var(--lv-serif-display);
  font-size: 20px;
}
.home-safety-note {
  max-width: 840px;
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(180, 83, 46, .32);
  border-radius: var(--r-md);
  background: rgba(180, 83, 46, .08);
  color: var(--lv-muted);
  line-height: 1.7;
}
.reset-panel {
  padding: 30px;
}
.reset-panel .lead {
  margin: 16px 0 24px;
}
.reset-steps {
  counter-reset: reset-step;
}
.reset-steps li {
  counter-increment: reset-step;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.04);
}
.reset-steps li::before {
  content: counter(reset-step);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #fff;
  font-weight: 900;
  vertical-align: middle;
}
.article-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.article-stage {
  padding: 20px;
}
.flow-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  margin-top: 14px;
  padding: 18px;
}
.flow-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--lv-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.home-final-cta {
  padding: 96px 6%;
  text-align: center;
  border-top: 1px solid var(--lv-card-border);
}
.home-final-cta h2 {
  max-width: 780px;
  margin: 0 auto 18px;
}
.home-final-copy {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--lv-muted);
  line-height: 1.7;
}
.home-final-cta .home-actions {
  justify-content: center;
}
.home-tertiary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--lv-cyan);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}
.home-tertiary-link:hover {
  color: var(--lv-pink);
}

.ss-hero,
.about-hero,
.guides-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--lv-card-border);
  background:
    radial-gradient(110% 90% at 88% -10%, rgba(30, 110, 96, 0.06), transparent 55%),
    var(--lv-bg-0);
}
.ss-hero { padding: 90px 6% 80px; }
.ss-hero-inner { max-width: 680px; }
.ss-pill {
  gap: 6px;
  color: var(--lv-text);
  background: rgba(255,255,255,.06);
}
.ss-hero h1 { margin-bottom: 22px; }
.ss-hero .lead { max-width: 520px; }

.ss-prob-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 44px;
}
.ss-prob-card {
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.ssp-icon {
  margin-bottom: 14px;
}
.ssp-title { margin-bottom: 8px; font-size: 15px; }
.ssp-text { font-size: 14px; line-height: 1.65; }

.fw-blocks {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: center;
  margin-top: 48px;
}
.fw-arrow { font-size: 15px; }
.fw-block {
  padding: 28px 22px;
  text-align: center;
}
.fw-block.input,
.fw-block.output {
  border-color: rgba(30, 110, 96, .26);
  background: linear-gradient(180deg, rgba(30, 110, 96, .1), rgba(255,255,255,.035));
}
.fw-tag { margin-bottom: 10px; }
.fw-icon { margin-bottom: 12px; font-size: 26px; }
.fw-title { margin-bottom: 8px; font-size: 16px; }
.fw-text { font-size: 13px; line-height: 1.62; }

.products-head { margin-bottom: 44px; }
.products-head h2 { margin-bottom: 12px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.pc-top {
  flex: 1;
  padding: 28px 24px 22px;
  border-bottom: 1px solid var(--lv-card-border);
}
.pc-icon { margin-bottom: 18px; border-radius: 50%; }
.pc-cat { margin-bottom: 6px; font-size: 11px; letter-spacing: .12em; }
.pc-name { margin-bottom: 10px; font-size: 18px; }
.pc-example {
  margin-bottom: 10px;
  color: var(--lv-soft);
  font-size: 13px;
  font-style: italic;
}
.pc-desc { font-size: 14px; line-height: 1.65; }
.pc-bottom { padding: 18px 24px 22px; background: rgba(30, 110, 96, .035); }
.pc-use { margin-bottom: 14px; font-size: 13px; line-height: 1.5; }
.pc-use span {
  display: block;
  margin-bottom: 4px;
  color: var(--lv-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pc-options { display: grid; gap: 8px; }
.product-card .pc-btn {
  width: 100%;
  min-height: 48px;
  justify-content: flex-start;
  padding: 12px 16px;
  border-color: rgba(30, 110, 96, .28);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: none;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}
.product-card .pc-btn::after {
  margin-left: auto;
  content: "->";
  font-weight: 800;
}
.product-card .pc-btn:hover,
.product-card .pc-btn:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: none;
  color: var(--accent-dark);
  transform: none;
}
.product-card .pc-btn:focus-visible {
  outline: 3px solid rgba(30, 110, 96, .34);
  outline-offset: 2px;
}

.steps-head { max-width: 500px; }
.steps-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding-bottom: 36px;
}
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background: var(--lv-card-border);
}
.step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lv-gradient-cta);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 1px 2px rgba(40, 33, 28, 0.06);
}
.step-body { padding-top: 8px; }
.step-title { margin-bottom: 6px; color: var(--lv-text); font-size: 16px; font-weight: 800; }
.step-text { color: var(--lv-muted); font-size: 14px; line-height: 1.68; }

.ss-cta {
  padding: 88px 6%;
  border-top: 1px solid var(--lv-card-border);
  background: linear-gradient(90deg, rgba(30, 110, 96, .16), rgba(30, 110, 96, .12), rgba(180, 83, 46, .1));
  text-align: center;
}
.ss-cta h2 { margin-bottom: 14px; }
.ss-cta p { max-width: 400px; margin: 0 auto 36px; }

.about-hero { padding: 96px 6% 80px; }
.about-hero-inner { max-width: 640px; }
.about-hero h1 { margin-bottom: 24px; }
.about-hero .lead { max-width: 560px; }
.about-body-sec { padding: 80px 6%; }
.about-grid {
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}
.about-text p { margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }
.about-box {
  padding: 36px;
}
.ab-label { margin-bottom: 20px; }
.ab-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ab-item:last-child { border-bottom: none; padding-bottom: 0; }
.ab-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--lv-gradient-brand);
  box-shadow: 0 1px 2px rgba(40, 33, 28, 0.06);
}
.ab-item p { font-size: 15px; line-height: 1.65; }
.about-mission blockquote {
  max-width: 700px;
  margin: 0 auto 18px;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}
.about-mission blockquote span { color: var(--lv-cyan); }
.about-mission cite {
  position: relative;
  color: var(--lv-soft);
  font-size: 13px;
  font-style: normal;
  letter-spacing: .08em;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 36px 6%;
  border-top: 1px solid var(--lv-card-border);
  background: rgba(250, 248, 243, 0.72);
  backdrop-filter: blur(18px);
}
.footer-logo { font-size: 16px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--lv-muted);
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--lv-cyan); }
.footer-copy { color: var(--lv-soft); font-size: 13px; }

.error-page {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 80px 6%;
}
.error-card {
  width: min(100%, 680px);
  padding: clamp(32px, 6vw, 64px);
}
.error-card h1 { margin-bottom: 18px; }
.error-card .lead { max-width: 560px; }
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.guides-hero {
  padding: 112px 6% 88px;
}
.guides-hero h1 { max-width: 820px; }
.guides-hero .lead { max-width: 660px; margin-top: 20px; }
.guides-list {
  padding: 88px 6%;
  background: var(--lv-bg-1);
}
.guides-intro { max-width: 680px; margin-bottom: 36px; }
.guides-intro .lead { margin-top: 14px; }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.guide-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}
.guide-card-featured { border-color: rgba(30, 110, 96, .34); }
.guide-status { margin-bottom: 20px; color: var(--lv-text); }
.guide-card p {
  margin: 12px 0 20px;
  color: var(--lv-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
.guide-card a {
  margin-top: auto;
  color: var(--lv-cyan);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.guide-card a:hover { color: var(--lv-pink); }

.article-page {
  overflow-x: clip;
}
.article-hero {
  border-bottom: 1px solid var(--lv-card-border);
}
.article-inner {
  width: min(100%, 820px);
  margin: 0 auto;
}
.article-hero .article-inner,
.article-next .article-inner {
  max-width: 1040px;
}
.article-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--lv-cyan);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.article-back:hover { color: var(--lv-pink); }
.article-back::before { content: "<"; margin-right: 8px; }
.article-hero .lead { margin-top: 18px; }
.article-body {
  max-width: 760px;
  padding: 64px 0 88px;
}
.article-body > :first-child { margin-top: 0; }
.article-page [id] { scroll-margin-top: 88px; }
.article-page .article-body > section,
.article-page .content-section {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}
.article-page .article-body > section:first-of-type {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.article-page .article-body > section > h2,
.article-page .content-section > h2 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  color: var(--lv-text);
  font-family: var(--lv-serif-display);
  font-weight: 500;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.article-page .article-body > section > h3,
.article-page .content-section > h3 {
  margin-top: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 0.6rem;
  color: var(--lv-text);
  font-weight: 600;
  line-height: 1.25;
}
.article-page .article-table-wrap + h2,
.article-page table + h2,
.article-page .note-box + h2,
.article-page .info-box + h2,
.article-page .article-note + h2,
.article-page .article-callout + h2,
.article-page .cta-row + h2,
.article-page .cta-stack + h2,
.article-page .article-actions + h2 {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.article-body h2,
.article-body h3 {
  color: var(--lv-text);
}
/* Long-form reading: serif body for editorial comfort */
.article-body p,
.article-body li {
  color: #322d29;
  font-family: var(--lv-serif-read);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.74;
}
.article-body p + p { margin-top: 18px; }
.article-body ul,
.article-body ol { margin: 18px 0 0 22px; }
.article-body li { margin-top: 6px; }
.article-body li::marker { color: var(--accent); }
.article-body a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-color: rgba(30, 110, 96, 0.35);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color .15s, color .15s;
}
.article-body a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
/* Standfirst: opening paragraph of the intro reads a touch larger */
.article-body > section:first-of-type > p:first-of-type {
  font-size: 20px;
  line-height: 1.6;
  color: #2a2622;
}
.article-body h4 {
  margin: 22px 0 8px;
  color: var(--lv-text);
  font-family: var(--lv-serif-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
}

/* =====================================================================
   In-article navigation — "On this page" mini table of contents
   Baseline: a clean bordered card. Becomes a sticky rail on wide
   screens (see media query in the editorial layer below) and gains a
   scroll-spy active state driven by main.js.
   ===================================================================== */
.article-toc {
  position: static;
  height: auto;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 26px 0 44px;
  padding: 20px 22px;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-md);
  background: #ffffff;
  box-shadow: var(--lv-shadow-card);
}
.article-toc::before {
  content: "On this page";
  margin-bottom: 12px;
  color: var(--lv-soft);
  font-family: var(--lv-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.article-toc a {
  display: block;
  min-height: 0;
  padding: 7px 0 7px 16px;
  border: 0;
  border-left: 2px solid transparent;
  border-radius: 0;
  background: none;
  color: var(--lv-muted);
  font-family: var(--lv-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  white-space: normal;
  transition: color .15s, border-color .15s;
}
.article-toc a:hover {
  border-left-color: var(--lv-card-border-strong);
  color: var(--accent);
}
.article-toc a.is-active {
  border-left-color: var(--accent);
  color: var(--accent-dark);
  font-weight: 600;
}
.article-table-wrap {
  width: 100%;
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-md);
  background: #ffffff;
  box-shadow: var(--lv-shadow-card);
  -webkit-overflow-scrolling: touch;
}
.article-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
}
.article-table caption {
  padding: 14px 16px;
  color: var(--lv-soft);
  font-family: var(--lv-sans);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.article-table th,
.article-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--lv-card-border);
  color: var(--lv-muted);
  font-family: var(--lv-sans);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}
.article-table thead th,
.article-table tbody th {
  color: var(--lv-text);
  font-weight: 600;
}
.article-table thead th {
  background: var(--accent-soft);
  border-top: none;
}
.comparison-table th:first-child {
  width: 24%;
}
.article-note,
.article-callout {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-md);
  background: var(--lv-bg-1);
}
.article-note--medical {
  border-color: rgba(30, 110, 96, 0.28);
  background: var(--accent-soft);
}
.article-callout {
  box-shadow: var(--lv-shadow-card);
}
.safety-note {
  border-color: rgba(180, 83, 46, 0.28);
  background: linear-gradient(180deg, rgba(180, 83, 46, 0.08), rgba(255, 255, 255, 0.04));
}
.article-callout h2,
.article-callout h3 {
  margin-top: 0;
}
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 8px;
}
.article-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.article-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.article-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#what-you-need .article-grid.three-col {
  align-items: stretch;
}
#what-you-need .cta-card {
  height: 100%;
  min-height: 360px;
  align-self: stretch;
}
#what-you-need .cta-card > *:last-child {
  margin-top: auto;
}
.article-faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.article-faq details {
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}
.article-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  color: var(--lv-text);
  font-weight: 800;
}
.article-faq summary::-webkit-details-marker {
  display: none;
}
.article-faq summary::after {
  content: "+";
  float: right;
  color: var(--lv-cyan);
  font-weight: 900;
}
.article-faq details[open] summary::after {
  content: "-";
}
.article-faq details p {
  padding: 0 18px 18px;
}
.article-references ol {
  overflow-wrap: anywhere;
}
.page-subtitle {
  max-width: 720px;
}
.checklist-stage {
  margin-top: clamp(64px, 7vw, 88px);
  padding-top: 4px;
}
.checklist-stage:first-of-type {
  margin-top: 0;
}
.checklist {
  display: grid;
  gap: 10px;
  margin-left: 0 !important;
  list-style: none;
}
.checklist li {
  position: relative;
  padding-left: 34px;
}
.checklist li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(30, 110, 96, 0.58);
  border-radius: 4px;
  background: rgba(30, 110, 96, 0.08);
  box-shadow: inset 0 0 0 2px rgba(250, 248, 243, 0.82);
}
.warning-box {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid rgba(180, 83, 46, 0.34);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(180, 83, 46, 0.1), rgba(255, 255, 255, 0.04));
}
.warning-box h3 {
  margin-top: 0;
}
.cta-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.cta-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--lv-card-strong), rgba(255,255,255,0.035));
  box-shadow: var(--lv-shadow-card);
}
.cta-card h3 {
  margin-top: 0;
}
.cta-card p {
  margin: 10px 0 18px;
}
.cta-card a {
  margin-top: auto;
  color: var(--lv-cyan);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.cta-card a:hover {
  color: var(--lv-pink);
}
.article-cta {
  margin-top: 56px;
  padding: 28px;
  border: 1px solid rgba(30, 110, 96, 0.32);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(30, 110, 96, 0.1), rgba(255,255,255,0.04));
  box-shadow: var(--lv-shadow-card);
}
.article-cta h2 {
  margin-bottom: 12px;
}
.article-cta .btn {
  margin-top: 20px;
}
.product-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.product-cta-card {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(30, 110, 96, 0.32);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(30, 110, 96, 0.09), rgba(255,255,255,0.04));
  color: var(--lv-text) !important;
  text-decoration: none;
  box-shadow: var(--lv-shadow-card);
}
.product-cta-card strong {
  font-size: 20px;
}
.product-cta-card span {
  color: var(--lv-muted);
  line-height: 1.55;
}
.product-cta-label {
  color: var(--lv-cyan) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-cta-card:hover {
  border-color: rgba(180, 83, 46, 0.36);
  transform: translateY(-1px);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  margin-top: 22px;
  margin-bottom: 22px;
}
.safety-card {
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--lv-card-strong), rgba(255,255,255,0.035));
}
.article-page .safety-card h3,
.article-page .schedule-card h3,
.article-page .info-card h3,
.article-page .note-box h3,
.article-page .callout h3,
.article-page .table-card h3,
.article-page .comparison-card h3,
.article-page .product-card h3,
.article-page .cta-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.safety-card > *:first-child,
.schedule-card > *:first-child,
.info-card > *:first-child,
.comparison-card > *:first-child {
  margin-top: 0;
}
.safety-card > *:last-child,
.schedule-card > *:last-child,
.info-card > *:last-child,
.comparison-card > *:last-child {
  margin-bottom: 0;
}
.schedule-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
  margin-top: 18px;
}
.schedule-option-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
}
.schedule-option-card > h3 {
  display: flex;
  min-height: 2.6em;
  align-items: flex-start;
  margin: 0 0 0.9rem;
  line-height: 1.15;
}
.schedule-option-card .article-table-wrap,
.schedule-option-card .table-scroll {
  margin-top: 0;
}
.safety-card--safe {
  border-color: rgba(30, 110, 96, 0.3);
}
.safety-card--caution {
  border-color: rgba(255, 203, 107, 0.34);
}
.safety-card--danger {
  border-color: rgba(180, 83, 46, 0.34);
}
.article-shell {
  max-width: 920px;
}
.lumivox-fit-page .article-shell {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.lumivox-fit-page .article-body section {
  margin-block: 4rem;
}
.lumivox-fit-page .article-body section:first-child {
  margin-top: 0;
}
.lumivox-fit-page h2 + p,
.lumivox-fit-page .section-intro {
  margin-bottom: 1.5rem;
}
.lumivox-fit-page .profile-grid {
  display: grid;
  gap: 1.5rem;
}
.lumivox-fit-page .profile-card {
  padding: 1.5rem;
  border-radius: 16px;
}
.lumivox-fit-page .profile-card + .profile-card {
  margin-top: 0;
}
.fit-check-grid,
.system-boundaries,
.device-grid,
.next-step-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.fit-check-grid,
.system-boundaries {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.profile-grid,
.device-grid,
.next-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fit-card,
.profile-card,
.system-does-card,
.system-does-not-card,
.device-card,
.next-step-card {
  padding: 22px;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--lv-card-strong), rgba(255,255,255,0.035));
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.16);
}
.fit-card h3,
.profile-card h3,
.system-does-card h3,
.system-does-not-card h3,
.device-card h3,
.next-step-card h3 {
  margin-top: 0;
}
.fit-card ul,
.system-does-card ul,
.system-does-not-card ul,
.medical-first-box ul,
.key-takeaways ul {
  margin-top: 12px;
}
.not-first-step,
.system-does-not-card {
  border-color: rgba(180, 83, 46, 0.26);
}
.good-fit,
.system-does-card {
  border-color: rgba(30, 110, 96, 0.28);
}
.editorial-note {
  margin-top: 22px;
}
.next-step-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
}
.next-step-card p {
  margin-bottom: 18px;
}
.next-step-card a {
  margin-top: auto;
  color: var(--lv-cyan);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.next-step-card a:hover {
  color: var(--lv-pink);
}
.article-disclosure {
  margin: 0 0 32px;
  padding: 20px;
  border-color: rgba(30, 110, 96, 0.32);
  background: linear-gradient(180deg, rgba(30, 110, 96, 0.08), rgba(255,255,255,0.04));
  color: var(--lv-muted);
  font-size: 14px;
  line-height: 1.7;
}
.article-next {
  border-top: 1px solid var(--lv-card-border);
  background: rgba(255,255,255,0.035);
}
.article-next .lead { margin: 14px 0 24px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .hbg { display: flex; }
  .sec, .sec-bg { padding: 72px 5%; }
  .ss-cta, .cta-dark { padding: 72px 5%; }
  .hero-wrap,
  .home-hero-inner,
  .watch-concept__inner,
  .problem-grid,
  .hook-grid,
  .about-grid,
  .video-grid,
  .home-split,
  .trust-grid,
  .reset-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home-hero {
    min-height: auto;
    padding: 70px 5%;
  }
  .room-panel {
    min-height: 340px;
  }
  .home-section {
    padding: 72px 5%;
  }
  .method-grid,
  .path-grid,
  .problem-panel-grid,
  .trust-card-grid {
    grid-template-columns: 1fr;
  }
  .starter-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .watch-concept__copy { max-width: 640px; }
  .article-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero {
    min-height: auto;
    padding: 60px 5%;
    padding-top: 72px;
  }
  .hero-visual {
    height: 240px;
    min-height: 240px;
    border-radius: var(--r-lg);
  }
  .hero .lead { max-width: 100%; }
  .loop-blocks,
  .fw-blocks {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
  }
  .loop-arrow,
  .fw-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
    font-size: 14px;
  }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ss-prob-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
  }
  .hook-visual {
    height: 260px;
    min-height: 260px;
    order: -1;
  }
  .video-grid { gap: 36px; }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 36px 5%;
  }
  .lumivox-loop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lumivox-loop li:nth-child(2)::after {
    content: "";
  }
}

@media (max-width: 640px) {
  #watch-concept .watch-concept__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 88px; }
  #watch-concept,
  .watch-concept__video { scroll-margin-top: 88px; }
}
@media (max-width: 560px) {
  .lumivox-loop {
    grid-template-columns: 1fr;
  }
  .lumivox-loop li {
    min-height: 0;
  }
  .lumivox-loop li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

@media (max-width: 580px) {
  nav { padding: 0 4.5%; }
  .sec, .sec-bg { padding: 56px 4.5%; }
  .ss-cta { padding: 60px 4.5%; }
  .cta-dark { padding: 64px 4.5%; }
  .ss-hero { padding: 64px 4.5% 56px; }
  .about-hero { padding: 64px 4.5% 56px; }
  .about-body-sec { padding: 56px 4.5%; }
  .about-mission { padding: 64px 4.5%; }
  h1, h2 { letter-spacing: 0; }
  .eyebrow { margin-bottom: 10px; }
  .hero {
    padding: 52px 4.5%;
    padding-top: 60px;
  }
  .home-hero {
    padding: 58px 4.5%;
  }
  .home-hero-copy h1 {
    font-size: clamp(36px, 11vw, 52px);
  }
  .home-actions,
  .fit-check-actions {
    display: grid;
    width: 100%;
  }
  .home-actions .btn,
  .fit-check-actions .btn {
    width: 100%;
  }
  .home-section {
    padding: 58px 4.5%;
  }
  .fit-check-card,
  .home-bullet-card,
  .trust-notes,
  .reset-panel {
    padding: 20px;
  }
  .fit-question label {
    width: 100%;
  }
  .home-fit-check .fit-check__form { padding: 24px 20px; }
  .home-fit-check .fit-check__question {
    padding: 16px;
  }
  .fit-check__intro h2 { font-size: clamp(30px, 9vw, 34px); }
  .fit-check__help,
  .fit-check__options { margin-left: 0; }
  .home-fit-check .fit-check__actions { display: grid; grid-template-columns: 1fr; gap: 6px; }
  .fit-check__result-note { text-align: center; }
  .home-fit-check .fit-fallback { margin-left: 0; text-align: center; }
  .starter-system-grid,
  .article-flow-grid {
    grid-template-columns: 1fr;
  }
  .system-card,
  .path-card,
  .flow-card,
  .problem-panel-card,
  .trust-card {
    min-height: 0;
  }
  .home-final-cta {
    padding: 64px 4.5%;
  }
  .hero-visual {
    height: auto;
    min-height: 220px;
    padding: 22px 14px;
  }
  .hv-fw {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .hv-step {
    padding: 8px 12px;
    font-size: 12px;
  }
  .problem-close { font-size: 15px; }
  .loop-blocks { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .products-grid { max-width: 100%; }
  .ssp-icon { width: 40px; height: 40px; font-size: 20px; }
  .step { gap: 16px; }
  .about-grid { gap: 40px; }
  .about-box { padding: 24px; }
  .video-card { border-radius: var(--r-md); }
  footer { padding: 32px 4.5%; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .error-page { padding: 48px 4.5%; }
  .error-actions { display: grid; }
  .guides-hero,
  .guides-list {
    padding-left: 4.5%;
    padding-right: 4.5%;
  }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 0; }
  .article-hero,
  .article-next {
    padding-left: 4.5%;
    padding-right: 4.5%;
  }
  .article-body {
    width: auto;
    margin-left: 4.5%;
    margin-right: 4.5%;
  }
  .article-toc {
    margin: 22px 0 36px;
    padding: 18px 18px;
  }
  .article-toc a {
    padding: 9px 0 9px 16px;
    font-size: 14px;
  }
  .article-grid.two-col,
  .article-grid.three-col {
    grid-template-columns: 1fr;
  }
  .schedule-options-grid {
    grid-template-columns: 1fr;
  }
  .schedule-option-card > h3 {
    min-height: 0;
  }
  #what-you-need .cta-card {
    min-height: 0;
  }
  .article-actions {
    display: grid;
  }
  .fit-check-grid,
  .system-boundaries,
  .profile-grid,
  .device-grid,
  .next-step-grid,
  .product-cta-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }
  .lumivox-fit-page .article-shell {
    padding-inline: 0;
  }
  .lumivox-fit-page .article-body section {
    margin-block: 3rem;
  }
  .lumivox-fit-page .profile-grid {
    gap: 1.25rem;
  }
  .lumivox-fit-page .profile-card {
    padding: 1.25rem;
  }
  .checklist-stage {
    margin-top: clamp(44px, 12vw, 56px);
  }
  .cta-card-grid {
    grid-template-columns: 1fr;
  }
  .btn,
  .pc-btn {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 380px) {
  nav { padding: 0 4%; }
  .sec, .sec-bg { padding: 48px 4%; }
  .btn { padding: 12px 20px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* =====================================================================
   EDITORIAL LAYER — reading-progress bar, sticky TOC rail, key boxes
   Appended last so these intentional refinements win the cascade.
   ===================================================================== */

/* Reading progress — a thin accent line under the fixed nav, set by JS */
.reading-progress {
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.reading-progress__bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  transform-origin: left center;
  transition: width .12s linear;
}

/* Warm "highlighter" treatment for summary / takeaway boxes so skimmers
   land on the gist without reading everything. */
.key-takeaways,
.article-callout.key-points,
.article-summary {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--lv-highlight-border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-md);
  background: var(--lv-highlight-bg);
  box-shadow: none;
}
.key-takeaways h2 {
  font-size: clamp(20px, 2.4vw, 26px) !important;
  margin-bottom: 0.5rem !important;
}
.key-takeaways ul { margin-top: 10px; }
.key-takeaways li { color: #4a4036; }

/* Make the disclosure block read as a quiet editorial note, not a card */
.article-disclosure {
  background: var(--lv-bg-1) !important;
  box-shadow: none !important;
  border-color: var(--lv-card-border) !important;
}
.article-disclosure h2 {
  font-family: var(--lv-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lv-soft);
  margin-bottom: 8px;
}
.article-disclosure p { font-size: 14px; line-height: 1.6; }

/* "Back to guides" chevron link, refined */
.article-back {
  font-family: var(--lv-sans);
  font-weight: 500;
  text-decoration: none;
}
.article-back:hover { color: var(--accent-dark); }

/* ---- Desktop: turn the inline TOC into a sticky rail beside the text.
   Scoped with :has() so pages WITHOUT a TOC keep the centered column.
   Browsers without :has() fall back to the inline card — still good.   */
@media (min-width: 1080px) {
  .article-page .inner.article-body:has(.article-toc),
  .article-page .article-body.article-inner:has(.article-toc) {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
    column-gap: 60px;
    align-items: start;
  }
  /* Content fills the column; reading measure is capped per-element below */
  .article-body:has(.article-toc) > * {
    grid-column: 2;
    min-width: 0;
    max-width: none;
  }
  /* Comfortable prose measure (~72ch). Wide blocks (tables, grids, media,
     callouts) are deliberately excluded so they use the full column. */
  .article-body:has(.article-toc) > section > p,
  .article-body:has(.article-toc) > section > ul,
  .article-body:has(.article-toc) > section > ol,
  .article-body:has(.article-toc) > section > h2,
  .article-body:has(.article-toc) > section > h3,
  .article-body:has(.article-toc) > section > h4,
  .article-body:has(.article-toc) > section > blockquote,
  .article-body:has(.article-toc) > p,
  .article-body:has(.article-toc) > ul,
  .article-body:has(.article-toc) > ol {
    max-width: 720px;
  }
  .article-body:has(.article-toc) > .article-toc {
    grid-column: 1;
    grid-row: 1 / 9999;
    align-self: start;
    position: sticky;
    top: 92px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    margin: 0;
    max-width: none;
  }
}

@media (min-width: 1440px) {
  .article-page .inner.article-body:has(.article-toc),
  .article-page .article-body.article-inner:has(.article-toc) {
    max-width: 1280px;
    column-gap: 72px;
  }
}

/* Honor reduced-motion: no progress-bar easing surprises */
@media (prefers-reduced-motion: reduce) {
  .reading-progress__bar { transition: none; }
}

/* =====================================================================
   ACCENT HERO COVER — branded deep-teal masthead at the top of every
   page. Runs full-bleed up under the fixed nav; the nav rides
   transparent over it (light text) and solidifies to the paper bar
   once you scroll past (body.nav-solid, toggled by main.js).
   ===================================================================== */
:root {
  --lv-hero-ink: #154b41;
  --lv-hero-ink-2: #0f352e;
  --lv-hero-text: #f6f3ec;
  --lv-hero-dim: rgba(246, 243, 236, 0.74);
  --lv-hero-tint: #8ed6c6;     /* light teal — eyebrow, emphasis, hover */
}

.home-hero,
.hero,
.ss-hero,
.about-hero,
.guides-hero,
.article-hero {
  margin-top: -64px;                                   /* up under the nav */
  padding-top: calc(64px + clamp(40px, 7vw, 80px));
  padding-bottom: clamp(48px, 7vw, 84px);
  border-bottom: none;
  color: var(--lv-hero-text);
  background:
    radial-gradient(120% 95% at 85% -15%, rgba(142, 214, 198, 0.16), transparent 55%),
    linear-gradient(168deg, var(--lv-hero-ink) 0%, var(--lv-hero-ink-2) 100%);
}

/* Invert the editorial type for legibility on the deep field */
.home-hero h1, .hero h1, .ss-hero h1, .about-hero h1, .guides-hero h1, .article-hero h1,
.home-hero h2, .hero h2, .ss-hero h2, .about-hero h2, .guides-hero h2, .article-hero h2 {
  color: var(--lv-hero-text);
}
.home-hero .lead, .hero .lead, .ss-hero .lead, .about-hero .lead, .guides-hero .lead, .article-hero .lead,
.home-hero p, .hero p, .ss-hero p, .about-hero p, .guides-hero p, .article-hero p {
  color: var(--lv-hero-dim);
}
.home-hero .home-hero-anchor { color: var(--lv-hero-text); }
.home-hero h1 em, .hero h1 em,
.ss-hero h1 em, .about-hero h1 em, .guides-hero h1 em, .article-hero h1 em {
  color: var(--lv-hero-tint);
}
/* Eyebrow + dash → light teal tint */
.home-hero .eyebrow, .hero .eyebrow, .ss-hero .eyebrow, .about-hero .eyebrow, .guides-hero .eyebrow, .article-hero .eyebrow,
.home-hero .ss-pill, .ss-hero .ss-pill, .about-hero .ss-pill, .guides-hero .ss-pill, .article-hero .ss-pill,
.home-hero .guide-status, .guides-hero .guide-status, .article-hero .guide-status {
  color: var(--lv-hero-tint);
}
.home-hero .eyebrow::before, .hero .eyebrow::before, .ss-hero .eyebrow::before, .about-hero .eyebrow::before, .guides-hero .eyebrow::before, .article-hero .eyebrow::before,
.home-hero .ss-pill::before, .ss-hero .ss-pill::before, .about-hero .ss-pill::before, .guides-hero .ss-pill::before, .article-hero .ss-pill::before,
.home-hero .guide-status::before, .guides-hero .guide-status::before, .article-hero .guide-status::before {
  background: var(--lv-hero-tint);
}
/* Breadcrumb "back" link */
.article-hero .article-back,
.guides-hero .article-back {
  color: var(--lv-hero-dim);
}
.article-hero .article-back:hover,
.guides-hero .article-back:hover { color: var(--lv-hero-text); }

/* Hero buttons: cream-fill primary + light outline secondary */
.home-hero .btn-dark, .hero .btn-dark, .ss-hero .btn-dark, .about-hero .btn-dark, .guides-hero .btn-dark, .article-hero .btn-dark,
.home-hero .btn-accent, .hero .btn-accent,
.home-hero .pc-btn, .hero .pc-btn {
  background: var(--lv-hero-text);
  color: var(--lv-hero-ink);
}
.home-hero .btn-dark:hover, .hero .btn-dark:hover, .ss-hero .btn-dark:hover, .about-hero .btn-dark:hover, .guides-hero .btn-dark:hover, .article-hero .btn-dark:hover,
.home-hero .pc-btn:hover, .hero .pc-btn:hover {
  background: #ffffff;
  color: var(--lv-hero-ink);
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, 0.4);
}
.home-hero .btn-outline, .hero .btn-outline, .ss-hero .btn-outline, .about-hero .btn-outline, .guides-hero .btn-outline, .article-hero .btn-outline {
  background: transparent;
  border-color: rgba(246, 243, 236, 0.42) !important;
  color: var(--lv-hero-text);
}
.home-hero .btn-outline:hover, .hero .btn-outline:hover, .ss-hero .btn-outline:hover, .about-hero .btn-outline:hover, .guides-hero .btn-outline:hover, .article-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(246, 243, 236, 0.7) !important;
  color: #ffffff;
}

/* ---- Adaptive nav -------------------------------------------------- */
nav { transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease; }

body.has-hero nav {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.has-hero nav .logo { color: var(--lv-hero-text); }
body.has-hero nav .logo::after { background: var(--lv-hero-tint); }
body.has-hero nav .nav-links a { color: rgba(246, 243, 236, 0.82); }
body.has-hero nav .nav-links a:hover,
body.has-hero nav .nav-links a.active { color: #ffffff; }
body.has-hero nav .nav-links a::after { background: var(--lv-hero-tint); }
body.has-hero nav .nav-cta {
  background: var(--lv-hero-text) !important;
  color: var(--lv-hero-ink) !important;
  box-shadow: none;
}
body.has-hero nav .nav-cta:hover { background: #ffffff !important; color: var(--lv-hero-ink) !important; }
body.has-hero nav .hbg { background: transparent; border-color: rgba(246, 243, 236, 0.4); }
body.has-hero nav .hbg span { background: var(--lv-hero-text); }

/* Solidify to the paper bar after the hero scrolls past */
body.has-hero.nav-solid nav {
  background: rgba(250, 248, 243, 0.96);
  border-bottom-color: rgba(216, 208, 195, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 28px -24px rgba(40, 33, 28, 0.36);
  backdrop-filter: blur(16px) saturate(1.02);
  -webkit-backdrop-filter: blur(16px) saturate(1.02);
}
body.has-hero.nav-solid nav .logo { color: var(--lv-text); }
body.has-hero.nav-solid nav .logo::after { background: var(--accent); }
body.has-hero.nav-solid nav .nav-links a { color: var(--lv-muted); }
body.has-hero.nav-solid nav .nav-links a:hover,
body.has-hero.nav-solid nav .nav-links a.active { color: var(--lv-text); }
body.has-hero.nav-solid nav .nav-links a::after { background: var(--accent); }
body.has-hero.nav-solid nav .nav-cta {
  background: var(--lv-gradient-cta) !important;
  color: #fff !important;
}
body.has-hero.nav-solid nav .hbg { background: var(--lv-card); border-color: var(--lv-card-border); }
body.has-hero.nav-solid nav .hbg span { background: var(--lv-text); }

/* Reading-progress bar reads on either nav state */
body.has-hero .reading-progress { mix-blend-mode: normal; }

/* Utility pages should reach the useful content faster than the homepage hero. */
.ss-hero,
.article-hero {
  padding-top: calc(64px + clamp(28px, 5vw, 56px));
  padding-bottom: clamp(34px, 5vw, 58px);
}
.article-hero .article-back {
  margin-bottom: 18px;
}
.article-hero .lead {
  margin-top: 14px;
}

@media (max-width: 880px) {
  /* On stacked hero layouts keep comfortable top spacing */
  .home-hero, .hero, .ss-hero, .about-hero, .guides-hero, .article-hero {
    padding-top: calc(64px + clamp(32px, 9vw, 56px));
  }
  .ss-hero,
  .article-hero {
    padding-top: calc(64px + 28px);
    padding-bottom: 38px;
  }
}

/* Hero inversion must NOT bleed into the light cards sitting on the hero
   (room panel, hero visual). Reset their text back to ink. */
.home-hero .room-panel,
.home-hero .home-hero-panel,
.home-hero .hero-visual,
.hero .hero-visual,
.hero .hook-visual {
  color: var(--lv-text);
}
.home-hero .room-panel p,
.home-hero .room-panel strong,
.home-hero .room-timeline p,
.home-hero .home-hero-panel p,
.home-hero .hero-visual p,
.hero .hero-visual p,
.hero .hook-visual p {
  color: var(--lv-muted);
}
.home-hero .room-panel h2,
.home-hero .room-panel h3,
.home-hero .room-panel-header strong,
.home-hero .home-hero-panel h2,
.home-hero .home-hero-panel h3 {
  color: var(--lv-text);
}
.home-hero .room-panel-header span { color: var(--accent); }

/* =====================================================================
   TABLES — never scroll sideways. On phones each row becomes a small
   card with its column labels inline (data-label is added by main.js).
   ===================================================================== */
@media (max-width: 640px) {
  .article-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .article-table { display: block; width: 100%; }
  .article-table caption {
    padding: 0 0 12px;
    font-size: 14px;
  }
  .article-table thead { display: none; }
  .article-table tbody,
  .article-table tr { display: block; }
  .article-table tr {
    margin-bottom: 14px;
    padding: 4px 18px 14px;
    border: 1px solid var(--lv-card-border);
    border-radius: var(--r-md);
    background: #fff;
    box-shadow: var(--lv-shadow-card);
  }
  .article-table tbody th {
    display: block;
    padding: 14px 0 4px;
    border: 0;
    color: var(--lv-text);
    font-family: var(--lv-serif-display);
    font-size: 17px;
    font-weight: 600;
  }
  .article-table td {
    display: flex;
    gap: 14px;
    align-items: baseline;
    padding: 10px 0;
    border: 0;
    border-top: 1px solid var(--lv-card-border);
  }
  .article-table td::before {
    content: attr(data-label);
    flex: 0 0 40%;
    color: var(--lv-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.4;
  }
  .article-table td:empty { display: none; }
}

/* =====================================================================
   GUIDED ARTICLE FLOW — a vertical "go deeper" journey instead of a
   5-column table. A numbered spine descends the left edge (01 → 05)
   with a down-chevron at the foot; each stage's preview cards sit in a
   readable row beside its label.
   ===================================================================== */
.article-flow-grid {
  display: block;
  position: relative;
  counter-reset: lv-stage;
  max-width: 1040px;
  margin: 44px auto 0;
}
.article-stage {
  counter-increment: lv-stage;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 0;
  padding: 30px 0 34px 76px;     /* room for spine + node */
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
/* cards laid out in an aligned grid so any count lines up in columns */
.stage-cards {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(244px, 1fr));
  gap: 20px;
}
/* descending spine */
.article-stage::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--lv-card-border);
}
.article-stage:first-child::before { top: 38px; }
.article-stage:last-child::before { bottom: auto; height: 38px; }
/* numbered node on the spine */
.article-stage::after {
  content: counter(lv-stage, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 28px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--lv-sans);
  font-weight: 600;
  font-size: 13px;
}
/* stage label rail */
.article-stage > h3 {
  flex: 0 0 168px;
  align-self: flex-start;
  margin: 0;
  padding-top: 30px;
  color: var(--lv-text);
  font-family: var(--lv-serif-display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.2;
}
/* "keep going deeper" chevron at the foot of the spine */
.article-flow-grid::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: -4px;
  width: 15px;
  height: 15px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}

/* preview cards — readable content blocks, not table cells */
.article-stage .flow-card {
  min-height: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--lv-shadow-card);
  transition: transform .15s, box-shadow .18s, border-color .18s;
}
.article-stage .flow-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 110, 96, 0.3);
}
.article-stage .flow-card span {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.article-stage .flow-card h4 {
  margin: 0 0 10px;
  color: var(--lv-text);
  font-family: var(--lv-serif-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.28;
}
.article-stage .flow-card p {
  margin: 0;
  color: var(--lv-muted);
  font-size: 14px;
  line-height: 1.55;
}
.article-stage .flow-card p strong { color: var(--lv-text); font-weight: 600; }
.article-stage .flow-card a {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.article-stage .flow-card a::after { content: "\2192"; transition: transform .15s; }
.article-stage .flow-card a:hover { color: var(--accent-dark); }
.article-stage .flow-card a:hover::after { transform: translateX(3px); }

@media (max-width: 860px) {
  .article-flow-grid { max-width: none; margin-top: 28px; }
  .article-stage {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 22px 0 26px 58px;
  }
  .article-stage::before { left: 16px; }
  .article-stage::after { width: 34px; height: 34px; top: 20px; }
  .article-stage:first-child::before { top: 30px; }
  .article-stage:last-child::before { height: 30px; }
  .article-flow-grid::after { left: 9px; }
  .article-stage > h3 { flex: 0 0 auto; padding-top: 22px; font-size: 19px; }
  .stage-cards { grid-template-columns: 1fr; }
}

/* =====================================================================
   COMPLIANCE PAGES — contact form, policy back-links, legal meta,
   related-policies row. Themed to match the editorial system.
   ===================================================================== */

/* Inline disclaimer → links back to the full documents */
.article-disclosure .disclosure-links {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--lv-card-border);
  font-size: 13px !important;
  color: var(--lv-soft);
}
.article-disclosure .disclosure-links a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.article-disclosure .disclosure-links a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* "Last updated" meta on legal pages */
.article-page .legal-meta {
  margin: 0 0 6px;
  color: var(--lv-soft);
  font-family: var(--lv-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Related-policies block at the foot of each compliance page */
.legal-crosslinks {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--lv-card-border);
}
.legal-crosslinks .eyebrow { margin-bottom: 14px; }
.legal-crosslinks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.legal-crosslinks-row a {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--lv-text);
  font-family: var(--lv-sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, background .15s, color .15s;
}
.legal-crosslinks-row a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

/* Contact form */
.contact-form {
  max-width: 720px;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field-label {
  font-family: var(--lv-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--lv-text);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lv-card-border);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--lv-text);
  font-family: var(--lv-sans);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--lv-soft); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.article-page .field-hint {
  margin: -2px 0 2px;
  color: var(--lv-soft);
  font-family: var(--lv-sans);
  font-size: 13px;
  line-height: 1.5;
}
.contact-form .btn { align-self: flex-start; }
@media (max-width: 560px) {
  .contact-form-row { grid-template-columns: 1fr; }
}

/* =====================================================================
   FOOTER — two tiers: primary nav (logo + section links) over a quiet
   legal row (compliance links + copyright). Overrides the single-row
   base above.
   ===================================================================== */
footer {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 22px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 22px;
  border-top: 1px solid var(--lv-card-border);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.footer-legal a {
  color: var(--lv-soft);
  font-family: var(--lv-sans);
  font-size: 13px;
  text-decoration: none;
  transition: color .15s;
}
.footer-legal a:hover { color: var(--accent); }
.footer-copy { color: var(--lv-soft); font-size: 13px; }
.footer-copy a { color: var(--lv-muted); text-decoration: underline; }
.footer-copy a:hover { color: var(--accent); }

@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* The bottom "Next step" CTA reuses .guides-hero for its teal cover, but it
   sits at the FOOT of the article — it must NOT pull up under the nav or add
   nav-clearance padding. Reset the full-bleed bits; keep the teal styling. */
.article-next.guides-hero,
.article-next {
  margin-top: 0;
  padding-top: clamp(56px, 8vw, 84px);
  padding-bottom: clamp(56px, 8vw, 84px);
  border-top: none;
}

@media (max-width: 640px) {
  .home-fit-check .fit-check__card { padding: 24px 18px; }
  .fit-check__question-card { padding: 16px; }
  .fit-check__helper,
  .fit-check__options { margin-left: 0; }
  .fit-check__helper { margin-top: 10px; }
  .fit-check__options { margin-top: 12px; }
  .home-fit-check .fit-check__option {
    flex: 1 1 auto;
    justify-content: center;
  }
  .home-fit-check .fit-check__actions,
  .fit-check__action-left {
    display: grid;
    width: 100%;
  }
  .home-fit-check .fit-check__button { width: 100%; }
  .home-fit-check .fit-fallback {
    margin-left: 0;
    text-align: center;
  }
}
