/* ============================================================
   BEST GROUP BENEFITS — home.css (v7 "The Filing")
   Landing page only, scoped to body.home-light.
   An editorial print-ledger: paper ground, hairline rules,
   Newsreader serif with true italics and oldstyle figures,
   letterspaced small-caps labels, one evergreen accent.
   Motion: one orchestrated hero sequence; quiet scroll rises.
   Refs: Ramp (bordered logo ledger), Browserbase (label-on-rule),
   Superhuman (ruled logo cells), Frontify (type-only hero),
   Kinfolk (editorial restraint), Wise (single filled row).
   ============================================================ */

body.home-light {
  /* Paper & ink */
  --bg:          #f6f4ed;
  --bg-soft:     #f1eee4;
  --surface:     #fdfcf8;
  --surface2:    #f3f1e8;
  --surface3:    #eae7da;

  --azure:       #0f5132;   /* evergreen ink accent */
  --azure-deep:  #0b3d26;
  --cyan:        #3f6212;
  --indigo:      #0f5132;
  --indigo-deep: #0b3d26;
  --accent:      #0f5132;
  --accent2:     #9a6b1f;   /* amber, small-caps labels only */

  --text:        #1c211c;
  --text2:       #37402f;
  --muted:       #5b6353;
  --muted2:      #6b7263;

  --rule:        #d9d4c5;
  --border:      #e4e0d2;
  --border2:     #d9d4c5;

  --shadow-sm:   0 1px 3px rgba(28,33,28,0.06);
  --shadow:      0 14px 40px rgba(28,33,28,0.09);
  --shadow-lg:   0 24px 60px rgba(28,33,28,0.12);
  --glow-blue:   0 0 0 rgba(0,0,0,0);
  --glow-cyan:   0 0 0 rgba(0,0,0,0);

  --font-head:   "Newsreader", "Iowan Old Style", Georgia, serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-swift:  cubic-bezier(0.25, 0.1, 0.25, 1);
  --t-hover:     140ms;
  --t-reveal:    500ms;

  background: var(--bg);
  color: var(--text);
}

/* ── Type system: sans-led, serif as jewelry (v14→v17) ─────── */
.home-light h1, .home-light h2, .home-light h3 {
  font-family: "Schibsted Grotesk", "Instrument Sans", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--text);
}
.home-light h1 em, .home-light h2 em {
  font-family: var(--font-head);
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 500;
  font-size: 1.04em;
  letter-spacing: 0;
  color: var(--azure);
}
.home-light .smallcaps,
.home-light .marquee-label,
.home-light .stat-label,
.home-light .mono-tag {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent2);
}
.home-light .mono-tag::before, .home-light .mono-tag::after { content: none; }

/* ── Announcement banner: ink band ─────────────────────────── */
.home-light .announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #16211a;
  color: #e8e4d6;
  font-size: 0.82rem;
  padding: 9px 20px;
  text-align: center;
}
.home-light .announce strong { font-weight: 600; color: #e2c98a; }
.home-light .announce a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-light .announce a:hover { color: #e2c98a; }

/* ── Nav: paper masthead ───────────────────────────────────── */
.home-light .nav {
  background: rgba(246,244,237,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
body.home-light .nav .nav-brand-name {
  font-family: var(--font-head) !important; /* outranks the runtime overlay's Fraunces !important */
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  font-size: 1.15rem;
  color: var(--text);
}
body.home-light .site-footer .footer-brand-name,
body.home-light .site-footer .footer-logo span {
  font-family: var(--font-head) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}
.home-light .nav-links a { color: var(--muted); font-weight: 500; }
.home-light .nav-links a:hover,
.home-light .nav-links a.active { color: var(--text); background: rgba(28,33,28,0.05); }
.home-light .nav-toggle span { background: var(--text2); }
.home-light .nav-links.nav-open { background: var(--bg); border-bottom: 1px solid var(--rule); }

/* ── Buttons ───────────────────────────────────────────────── */
.home-light .btn-cyan {
  background: var(--azure);
  color: #f6f4ed;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: none;
  transition: background var(--t-hover) var(--ease-swift), transform var(--t-hover) var(--ease-swift);
}
.home-light .btn-cyan:hover { background: var(--azure-deep); transform: translateY(-1px); filter: none; box-shadow: var(--shadow-sm); }
.home-light .btn-cyan:active { transform: translateY(0); }
.home-light .btn-cyan::after { content: none; }
.home-light .btn-outline {
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--text2);
  background: transparent;
  font-weight: 500;
  transition: border-color var(--t-hover) var(--ease-swift), color var(--t-hover) var(--ease-swift);
}
.home-light .btn-outline:hover { border-color: var(--azure); color: var(--azure); background: transparent; transform: none; }

/* Text links: sliding underline */
.home-light .proof-arrow {
  color: var(--azure);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 220ms var(--ease-out);
  padding-bottom: 2px;
  width: fit-content;
}
.home-light .proof-arrow:hover { background-size: 100% 1px; }

/* ── HERO: one centered thought over a painted sky (Corgi discipline) ── */
.home-light .hero {
  min-height: 88svh;
  padding: 48px 24px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 62% 52% at 50% 44%, rgba(246,244,237,0.80) 0%, rgba(246,244,237,0.28) 58%, rgba(246,244,237,0) 100%),
    linear-gradient(180deg, rgba(246,244,237,0.50) 0%, rgba(246,244,237,0.06) 34%, rgba(246,244,237,0) 70%),
    url('/assets/hero-sky.jpg?v=1');
  background-size: auto, auto, cover;
  background-position: center, center, center bottom;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--rule);
}
.home-light .hero::before, .home-light .hero::after { content: none; }
.home-light .hero-center {
  max-width: 840px;
  margin: 0 auto;
}
.home-light .hero-center h1,
.home-light #hero-heading {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.home-light .hero-center .hero-deck {
  max-width: 50ch;
  margin: 0 auto 30px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}
.home-light .hero-center .hero-ctas { justify-content: center; }
@media (max-width: 720px) {
  .home-light .hero {
    min-height: 74svh;
    padding: 40px 20px 90px;
    background-image:
      radial-gradient(ellipse 90% 60% at 50% 44%, rgba(246,244,237,0.85) 0%, rgba(246,244,237,0.35) 62%, rgba(246,244,237,0) 100%),
      url('/assets/hero-sky.jpg?v=1');
    background-size: auto, cover;
    background-position: center, center bottom;
  }
}

/* Terms card, standalone below the fold */
.home-light .terms-standalone { padding: 72px 32px; background: var(--bg); }
.home-light .terms-standalone .terms-card { max-width: 520px; margin: 0 auto; }

/* Partner cells inside Part III */
.home-light #platform .ll-cells { margin: 0 0 40px; max-width: none; }
.home-light .hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 72px;
  align-items: start;
}
.home-light .hero-kicker {
  position: relative;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  padding-top: 14px;
  margin-bottom: 30px;
  animation: h-fade 400ms var(--ease-out) 100ms both;
}
.home-light .hero-kicker::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--text);
  transform-origin: left;
  animation: h-rule 600ms var(--ease-out) both;
}
.home-light .hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  animation: none;
}
.home-light .hero h1 .hl {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.home-light .hero h1 .hl-inner {
  display: block;
  transform: translateY(115%);
  animation: h-line 700ms var(--ease-out) both;
}
.home-light .hero h1 .hl:nth-child(1) .hl-inner { animation-delay: 150ms; }
.home-light .hero h1 .hl:nth-child(2) .hl-inner { animation-delay: 240ms; }
.home-light .hero h1 .hl:nth-child(3) .hl-inner { animation-delay: 330ms; }
.home-light .hero-deck {
  font-family: var(--font-head);
  font-size: 1.16rem;
  line-height: 1.66;
  color: var(--text2);
  max-width: 52ch;
  margin: 0 0 34px;
  animation: h-fade 500ms var(--ease-out) 550ms both;
}
.home-light .hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
  animation: h-fade 500ms var(--ease-out) 650ms both;
}
@keyframes h-rule { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes h-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes h-line { to { transform: translateY(0); } }

/* Terms-in-force card (the signature) */
.home-light .terms-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 26px 28px 20px;
  box-shadow: var(--shadow-sm);
  animation: h-fade 500ms var(--ease-out) 650ms both;
}
.home-light .tc-label {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-light .tc-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--azure);
  flex: none;
}
.home-light .tc-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: h-fade 400ms var(--ease-out) both;
}
.home-light .tc-row:nth-of-type(1) { animation-delay: 760ms; }
.home-light .tc-row:nth-of-type(2) { animation-delay: 830ms; }
.home-light .tc-row:nth-of-type(3) { animation-delay: 900ms; }
.home-light .tc-row:nth-of-type(4) { animation-delay: 970ms; }
.home-light .tc-row:nth-of-type(5) { animation-delay: 1040ms; }
.home-light .tc-k {
  font-size: 0.86rem;
  color: var(--muted);
}
.home-light .tc-v {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--text);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.home-light .tc-meta {
  font-size: 0.76rem;
  color: var(--muted2);
  line-height: 1.6;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  margin-top: 2px;
  animation: h-fade 400ms var(--ease-out) 1200ms both;
}
.home-light .tc-meta a { color: var(--azure); text-decoration: underline; text-underline-offset: 2px; }

/* ── Carrier logo marquee + partner ledger cells ───────────── */
.home-light .marquee-section {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 30px 0 34px;
  -webkit-mask-image: none;
  mask-image: none;
}
.home-light .marquee-label { text-align: center; margin-bottom: 20px; }
.home-light .ll-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.home-light .marquee-track { animation-duration: 46s; }
.home-light .marquee-track:hover { animation-play-state: paused; }
.home-light .ll-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 34px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  border-right: 1px solid var(--rule);
  transition: color 180ms var(--ease-swift);
}
.home-light .ll-item img {
  height: 22px;
  width: auto;
  border-radius: 4px;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 180ms var(--ease-swift);
}
.home-light .ll-item:hover { color: var(--text); }
.home-light .ll-item:hover img { opacity: 0.92; }
.home-light .ll-item .ll-small { height: 16px; }

/* Partner cells: Superhuman-style ruled compartments */
.home-light .ll-cells {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  max-width: 1040px;
  margin: 18px auto 0;
}
.home-light .ll-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--surface);
  padding: 20px 14px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  transition: background var(--t-hover) var(--ease-swift), color var(--t-hover) var(--ease-swift);
}
.home-light .ll-cell img {
  height: 20px; width: 20px;
  border-radius: 4px;
  filter: grayscale(1);
  opacity: 0.6;
  transition: opacity 180ms var(--ease-swift);
}
.home-light .ll-cell:hover { background: #fbfaf4; color: var(--text); }
.home-light .ll-cell:hover img { opacity: 0.95; }
.home-light .ll-cell--more { color: var(--azure); }

/* ── Stats bar → ruled ticker ──────────────────────────────── */
.home-light .stats-bar {
  background: transparent;
  border: none;
  border-top: 1px solid var(--text);
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  box-shadow: none;
  gap: 0;
  max-width: var(--max-w);
}
.home-light .stat-item {
  background: transparent;
  text-align: left;
  padding: 22px 28px 24px;
  border-left: 1px solid var(--rule);
}
.home-light .stat-item:first-child { border-left: none; padding-left: 0; }
.home-light .stat-item:hover { background: transparent; }
.home-light .stat-value {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 2rem;
  color: var(--text);
}
.home-light .stat-value .accent { color: var(--azure); }
.home-light .stat-label { letter-spacing: 0.14em; margin-top: 4px; }

/* ── Section headers: kicker-on-rule, left aligned ─────────── */
.home-light .section-header {
  text-align: left;
  margin-bottom: 52px;
  position: relative;
  padding-top: 18px;
  border-top: 1px solid var(--text);
}
.home-light .section-header h2 {
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  font-weight: 650;
  max-width: 640px;
  margin-bottom: 10px;
}
.home-light .section-header p {
  margin: 0;
  max-width: 52ch;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.62;
}
.home-light .wizard-band .section-header { text-align: center; border-top: none; padding-top: 0; }
.home-light .wizard-band .section-header p { margin: 0 auto; }

/* ── Access showcase (Thatch cards on paper) ───────────────── */
.home-light .access-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.home-light .access-budget {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  max-width: 430px;
  margin-bottom: 28px;
}
.home-light .ab-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--azure);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.home-light .ab-title { font-weight: 600; font-size: 0.93rem; color: var(--text); }
.home-light .ab-sub { font-size: 0.78rem; color: var(--muted2); }
.home-light .ab-amount {
  margin-left: auto;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--azure);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.home-light .ab-amount span { font-size: 0.7rem; color: var(--muted2); font-family: "Instrument Sans", sans-serif; }
.home-light .access-stacks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.home-light .access-stack { position: relative; padding-top: 18px; }
.home-light .access-card { background: var(--surface); border: 1px solid var(--rule); border-radius: 10px; }
.home-light .access-card--under,
.home-light .access-card--under2 {
  position: absolute;
  left: 12px; right: 12px; top: 9px;
  height: 22px;
}
.home-light .access-card--under2 { left: 24px; right: 24px; top: 0; }
.home-light .access-card--top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 230ms var(--ease-out), box-shadow var(--t-hover) var(--ease-swift), opacity 230ms var(--ease-out);
}
.home-light .access-card--top.is-swapping {
  opacity: 0;
  transform: translateY(-9px);
}
.home-light .access-budget {
  transition: opacity 230ms var(--ease-out), transform 230ms var(--ease-out);
}
.home-light .access-budget.is-swapping {
  opacity: 0;
  transform: translateY(-9px);
}
.home-light .access-stack:hover .access-card--top { transform: translateY(-3px); box-shadow: var(--shadow); }
.home-light .ac-logo {
  width: 32px; height: 32px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rule);
}
.home-light .ac-logo img { width: 22px; height: 22px; object-fit: contain; }
.home-light .ac-name { font-size: 0.8rem; font-weight: 600; color: var(--text); line-height: 1.25; }
.home-light .ac-plan { font-size: 0.72rem; color: var(--muted2); }
.home-light .ac-price {
  margin-left: auto;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--text);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.home-light .access-stack-label {
  text-align: center;
  margin-top: 12px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
}
.home-light .access-stack[data-kind] .access-stack-label::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--azure);
  margin-right: 7px;
  vertical-align: 1px;
  animation: blink 2.2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .home-light .access-stack[data-kind] .access-stack-label::before { animation: none; }
}
.home-light .access-note { margin-top: 22px; font-size: 0.76rem; color: var(--muted2); line-height: 1.6; }
.home-light .access-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin: 0 0 14px; font-weight: 500; }
.home-light .access-copy h2 em { font-style: italic; color: var(--azure); }
.home-light .access-copy > p { font-family: var(--font-head); color: var(--muted); line-height: 1.7; margin-bottom: 20px; max-width: 480px; font-size: 1.05rem; }
.home-light .access-copy .stack-list { margin-bottom: 26px; }

/* ── Old/new ledger ────────────────────────────────────────── */
.home-light .oldnew h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 14px; font-weight: 500; }
.home-light .oldnew h2 em { color: var(--azure); }
.home-light .oldnew-intro {
  font-family: var(--font-head);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 44px;
}
.home-light .oldnew-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent2);
  padding-bottom: 12px;
}
.home-light .oldnew-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  transition: background var(--t-hover) var(--ease-swift);
}
.home-light .oldnew-row:hover { background: rgba(15,81,50,0.025); }
.home-light .oldnew-row div:first-child {
  font-family: var(--font-head);
  font-optical-sizing: auto;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text);
}
.home-light .oldnew-row div:last-child {
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--muted);
  position: relative;
  padding-left: 24px;
}
.home-light .oldnew-row div:last-child::before {
  content: '+';
  position: absolute;
  left: 0; top: -1px;
  color: var(--azure);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ── Platform stack cards ──────────────────────────────────── */
.home-light .section--alt { background: var(--bg-soft); }
.home-light .stack-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 10px;
  transition: transform var(--t-hover) var(--ease-swift), box-shadow var(--t-hover) var(--ease-swift), border-color var(--t-hover) var(--ease-swift);
}
.home-light .stack-card::before { content: none; }
.home-light .stack-card:hover {
  border-color: #c9c3ae;
  background: var(--surface);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.home-light .stack-icon { background: rgba(15,81,50,0.07); color: var(--azure); border-radius: 10px; }
.home-light .stack-card h3 { font-weight: 500; font-size: 1.25rem; }
.home-light .stack-card .stack-sub {
  font-family: "Instrument Sans", sans-serif;
  letter-spacing: 0.14em;
  color: var(--accent2);
}
.home-light .stack-card p { color: var(--muted); }
.home-light .stack-list li { color: var(--text2); }
.home-light .stack-list li::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.4 2.4 4.6-5' fill='none' stroke='%230f5132' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/9px no-repeat,
    rgba(15,81,50,0.08);
  border-radius: 3px;
}
.home-light .chip-live { background: var(--azure); color: #f6f4ed; border: none; }
.home-light .chip-free { color: var(--azure); background: transparent; border: 1px solid rgba(15,81,50,0.35); }
.home-light .chip-soon { color: var(--accent2); background: transparent; border: 1px solid rgba(154,107,31,0.35); }

/* ── Wizard band ───────────────────────────────────────────── */
.home-light .wizard-band { background: var(--bg-soft); }
.home-light .wizard-wrap { box-shadow: var(--shadow-lg); border: 1px solid var(--rule); border-radius: 14px; }
.home-light .assure-strip { max-width: 900px; }
.home-light .assure-item {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--muted);
}
.home-light .assure-item svg { color: var(--azure); }
.home-light .assure-item strong { color: var(--text); }
.home-light .assure-item a { color: var(--azure); }

/* ── Security band: the sealed section (stays dark) ────────── */
.home-light .security-band,
.home-light .cta-band,
.home-light .site-footer {
  --text:   #ece9dc;
  --text2:  #cfcaba;
  --muted:  #9a9c8c;
  --muted2: #939a85;
  --border: rgba(236,233,220,0.10);
  --border2: rgba(236,233,220,0.16);
  --surface: #16211a;
  --surface2: #1c2a20;
}
.home-light .security-band {
  background: #16211a;
  border: none;
  border-radius: 14px;
}
.home-light .security-band::after { content: none; }
.home-light .security-band .mono-tag { color: #e2c98a; letter-spacing: 0.18em; }
.home-light .security-band h2 { font-weight: 500; color: #f3f1e6; }
.home-light .sec-points svg { color: #e2c98a; }
.home-light .sec-stats { background: rgba(236,233,220,0.12); border: 1px solid rgba(236,233,220,0.14); border-radius: 10px; }
.home-light .sec-stat { background: #131c16; }
.home-light .sec-stat-val { color: #e2c98a; font-family: var(--font-head); font-weight: 500; letter-spacing: 0; }
.home-light .security-band .btn-cyan { background: #e2c98a; color: #16211a; }
.home-light .security-band .btn-cyan:hover { background: #ecd9a8; }

/* ── How we get paid ───────────────────────────────────────── */
.home-light .paid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0;
}
.home-light .paid-card {
  background: var(--surface);
  border: none;
  border-radius: 0;
  padding: 34px 30px;
  text-align: left;
  transition: background var(--t-hover) var(--ease-swift);
}
.home-light .paid-card:hover { transform: none; box-shadow: none; background: #fbfaf4; }
.home-light .paid-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--azure);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: oldstyle-nums;
}
.home-light .paid-card h3 { font-size: 1.05rem; font-weight: 600; font-family: "Instrument Sans", sans-serif; margin-bottom: 8px; }
.home-light .paid-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.66; }
.home-light .paid-note { text-align: left; margin: 26px 0 0; font-size: 0.82rem; color: var(--muted2); }
.home-light .paid-note a { color: var(--azure); }

/* ── Case-study proof cards ────────────────────────────────── */
.home-light .proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.home-light .proof-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 28px;
  color: inherit;
  transition: transform var(--t-hover) var(--ease-swift), box-shadow var(--t-hover) var(--ease-swift), border-color var(--t-hover) var(--ease-swift);
  position: relative;
  overflow: hidden;
}
.home-light .proof-card::before { content: none; }
.home-light .proof-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c9c3ae; }
.home-light .proof-tag {
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}
.home-light .proof-card h3 { font-size: 1.02rem; font-weight: 650; line-height: 1.35; margin-bottom: 8px; }
.home-light .proof-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.66; flex: 1; }
.home-light .proof-card .proof-arrow { margin-top: 16px; font-size: 0.86rem; font-weight: 600; }

/* ── Inherited component retune ────────────────────────────── */
.home-light .feature-card,
.home-light .guide-card,
.home-light .region-card,
.home-light .industry-card,
.home-light .carrier-chip,
.home-light .index-card,
.home-light .faq-item, .home-light details.faq-item {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 10px;
}
.home-light .feature-card::before, .home-light .guide-card::before { content: none; }
.home-light .feature-card:hover, .home-light .guide-card:hover,
.home-light .region-card:hover, .home-light .industry-card:hover,
.home-light .carrier-chip:hover {
  background: var(--surface);
  border-color: #c9c3ae;
  box-shadow: var(--shadow-sm);
}
.home-light .feature-card h3, .home-light .step-card h3 { font-weight: 500; font-size: 1.2rem; }
.home-light .feature-icon { background: rgba(15,81,50,0.07); color: var(--azure); }
.home-light .step-card { background: var(--surface); border: 1px solid var(--rule); border-radius: 10px; }
.home-light .step-num { color: var(--accent2); font-family: "Instrument Sans", sans-serif; letter-spacing: 0.14em; }
.home-light .step-num::before { background: rgba(154,107,31,0.14); }
.home-light .guide-tag { color: var(--accent2); font-family: "Instrument Sans", sans-serif; letter-spacing: 0.12em; }
.home-light .faq-item[open] { background: var(--surface); border-color: var(--azure); }
.home-light .faq-q::after, .home-light .faq-question::after { color: var(--muted2); }
.home-light details[open] > .faq-question::after,
.home-light details[open] > .faq-question { color: var(--azure); }
.home-light .region-cta a, .home-light .index-card-arrow { color: var(--azure); }

/* CTA band: ink */
.home-light .cta-band {
  background: #16211a;
  border: none;
}
.home-light .cta-band::before { content: none; }
.home-light .cta-band h2 { font-weight: 500; color: #f3f1e6; }
.home-light .cta-band .btn-cyan { background: #e2c98a; color: #16211a; }
.home-light .cta-band .btn-cyan:hover { background: #ecd9a8; }

/* Live pip */
.home-light .live-pip { background: var(--azure); }

/* ── Scroll rises (IO adds .is-visible via app.js) ─────────── */
@media (scripting: enabled) {
  .home-light .reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--t-reveal) var(--ease-out), transform var(--t-reveal) var(--ease-out);
  }
  .home-light .reveal.is-visible { opacity: 1; transform: none; }
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .home-light .hero-kicker, .home-light .hero-kicker::before,
  .home-light .hero h1 .hl-inner, .home-light .hero-deck,
  .home-light .hero-ctas, .home-light .terms-card,
  .home-light .tc-row, .home-light .tc-meta { animation: none !important; opacity: 1 !important; transform: none !important; }
  .home-light .marquee-track { animation: none !important; }
  .home-light .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   v8 layer — the printed filing form + hard logo constraints
   Refs: Seed (underlined inputs on cream, forest submit),
   Büro (numbered ledger form), Vercel (tracked caps labels),
   Adaline (ink radios). dataviz skill: values wear ink,
   tabular numerals, no decoration on data.
   ============================================================ */

/* Logo sizing: bulletproof against any cascade/cache state */
.home-light .marquee-track .ll-item img {
  height: 22px !important;
  width: auto !important;
  max-width: 64px !important;
  object-fit: contain;
}
.home-light .marquee-track .ll-item .ll-small { height: 16px !important; }
.home-light .marquee-track { align-items: center; }
.home-light .ll-item { height: 52px; }
.home-light .ll-cells .ll-cell img {
  height: 20px !important;
  width: 20px !important;
  object-fit: contain;
}
.home-light .ac-logo img { width: 22px !important; height: 22px !important; object-fit: contain; }

/* Hero: vertical rule between copy and terms card (Browserbase grid) */
.home-light .hero-grid { position: relative; }
@media (min-width: 1025px) {
  .home-light .hero-grid::before {
    content: '';
    position: absolute;
    top: 8px; bottom: 8px;
    right: calc(0.65 * (100% - 72px) / 2 + 72px + 36px);
    right: auto;
    left: calc((100% - 72px) * 0.675 + 36px);
    width: 1px;
    background: var(--rule);
  }
}

/* Buttons: letterpress rectangles */
.home-light .btn { border-radius: 6px; letter-spacing: 0.01em; }
.home-light .btn-lg { border-radius: 6px; }

/* Stat labels: amber square glyph (Browserbase) */
.home-light .stat-label { display: flex; align-items: center; gap: 7px; }
.home-light .stat-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent2);
  flex: none;
}

/* ── The wizard as a printed form ──────────────────────────── */
body.home-light #gh-wizard .wizard-wrap,
body.home-light .wizard-wrap {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
body.home-light #gh-wizard .wizard-head {
  background: var(--surface);
  color: var(--text);
  padding: 30px 40px 22px;
  border-bottom: 1px solid var(--text);
}
body.home-light #gh-wizard .wizard-head::after { content: none; }
body.home-light .wiz-kicker {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 10px;
}
body.home-light #gh-wizard .wizard-head h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--text);
}
body.home-light #gh-wizard .wizard-head p { color: var(--muted); opacity: 1; font-size: 0.88rem; }
body.home-light #gh-wizard .wizard-progress-bar { background: var(--rule); height: 2px; margin-top: 18px; }
body.home-light #gh-wizard .wizard-progress-fill { background: var(--azure); }
body.home-light #gh-wizard .wizard-body { background: var(--surface); padding: 34px 40px 38px; }

/* Stepper: numbered ledger entries (Büro) */
body.home-light #gh-wizard .wiz-stepper li {
  color: var(--muted2);
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.home-light #gh-wizard .wiz-snum {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--muted2);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
}
body.home-light #gh-wizard .wiz-sbar { background: var(--rule); height: 2px; border-radius: 0; }
body.home-light #gh-wizard .wiz-stepper li.active { color: var(--text); }
body.home-light #gh-wizard .wiz-stepper li.active .wiz-snum {
  background: var(--azure);
  border-color: var(--azure);
  color: #f6f4ed;
}
body.home-light #gh-wizard .wiz-stepper li.active .wiz-sbar,
body.home-light #gh-wizard .wiz-stepper li.done .wiz-sbar { background: var(--azure); }
body.home-light #gh-wizard .wiz-stepper li.done .wiz-snum {
  background: transparent;
  border-color: var(--azure);
  color: var(--azure);
}

/* Estimate: ink panel, amber figure (announce register) */
body.home-light #gh-wizard .wizard-estimate {
  background: #16211a;
  border: none;
  border-radius: 8px;
  padding: 20px 26px;
}
body.home-light #gh-wizard .wizard-estimate::before { content: none; }
body.home-light #gh-wizard .wizard-estimate-label { color: #9a9c8c; letter-spacing: 0.16em; font-size: 0.66rem; }
body.home-light #gh-wizard .wizard-estimate-val {
  color: #e2c98a;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
}
body.home-light #gh-wizard .wizard-estimate-note { color: #73755f; }

/* Fields: underlined blanks on paper (Seed) */
body.home-light #gh-wizard .wizard-field label {
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
body.home-light #gh-wizard .wizard-field input,
body.home-light #gh-wizard .wizard-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #bcb6a2;
  border-radius: 0;
  min-height: 44px;
  padding: 8px 2px;
  font-size: 1rem;
  color: var(--text);
  box-shadow: none;
  transition: border-color var(--t-hover) var(--ease-swift), box-shadow var(--t-hover) var(--ease-swift);
}
body.home-light #gh-wizard .wizard-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' fill='none' stroke='%235b6353' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
  padding-right: 24px;
}
body.home-light #gh-wizard .wizard-field textarea {
  background: transparent;
  border: 1px solid #bcb6a2;
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  box-shadow: none;
}
body.home-light #gh-wizard .wizard-field input:focus,
body.home-light #gh-wizard .wizard-field select:focus {
  background: transparent;
  border-bottom-color: var(--azure);
  box-shadow: 0 1px 0 0 var(--azure);
}
body.home-light #gh-wizard .wizard-field textarea:focus {
  background: transparent;
  border-color: var(--azure);
  box-shadow: 0 0 0 1px var(--azure);
}
body.home-light #gh-wizard .wizard-field input::placeholder,
body.home-light #gh-wizard .wizard-field textarea::placeholder { color: var(--muted2); }

/* Option tiles: ruled boxes; selected = evergreen fill (beats injected styles) */
body.home-light #gh-wizard .wizard-option {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--text2);
  padding: 14px 16px;
  min-height: 52px;
  transition: border-color var(--t-hover) var(--ease-swift), background var(--t-hover) var(--ease-swift);
}
body.home-light #gh-wizard .wizard-option:hover {
  border-color: var(--azure);
  background: var(--surface);
  color: var(--text);
}
body.home-light #gh-wizard .wizard-option.selected,
body.home-light #gh-wizard .wiz-option.selected {
  background: var(--azure) !important;
  border-color: var(--azure) !important;
  color: #f6f4ed !important;
  box-shadow: none !important;
}
body.home-light #gh-wizard .wizard-option-sub { color: var(--muted2); }
body.home-light #gh-wizard .wizard-option.selected .wizard-option-sub { color: rgba(246,244,237,0.75) !important; }

/* Wizard buttons: rectangles, not pills */
body.home-light #gh-wizard .btn-cyan {
  background: var(--azure);
  color: #f6f4ed;
  border-radius: 6px;
  box-shadow: none;
  padding: 13px 28px;
  font-size: 0.9rem;
}
body.home-light #gh-wizard .btn-cyan:hover { background: var(--azure-deep); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
body.home-light #gh-wizard .btn-ghost {
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  padding: 12px 22px;
}
body.home-light #gh-wizard .btn-ghost:hover { border-color: var(--text2); color: var(--text); background: transparent; }

/* Review / signature / success blocks on paper */
body.home-light #gh-wizard .gm-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
}
body.home-light #gh-wizard .gm-card h4 {
  color: var(--accent2);
  letter-spacing: 0.14em;
  font-size: 0.64rem;
}
body.home-light #gh-wizard .gm-card p { color: var(--text2); }
body.home-light #gh-wizard .gm-next {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--azure);
  border-radius: 6px;
}
body.home-light #gh-wizard .gm-next h4 { color: var(--text); }
body.home-light #gh-wizard .gm-next p { color: var(--muted); }
body.home-light #gh-wizard .gm-sign {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
}
body.home-light #gh-wizard .gm-sign label { color: var(--text); font-weight: 600; }
body.home-light #gh-wizard .gm-sign input[type=text] {
  border: none;
  border-bottom: 1px solid #bcb6a2;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
}
body.home-light #gh-wizard .gm-sign input[type=text]:focus { border-bottom-color: var(--azure); outline: none; }
body.home-light #gh-wizard .gm-check { color: var(--muted) !important; }
body.home-light #gh-wizard #wiz-summary { background: transparent; border: none; padding: 0; }
body.home-light #gh-wizard .wizard-success {
  background: var(--bg-soft) !important;
  border: 1px solid var(--azure) !important;
  border-radius: 8px !important;
}
body.home-light #gh-wizard .wizard-success h3 { color: var(--text) !important; font-family: var(--font-head); }
body.home-light #gh-wizard .wizard-success p { color: var(--muted) !important; }
body.home-light #gh-wizard .wiz-error { border-radius: 6px; }

@media (max-width: 720px) {
  body.home-light #gh-wizard .wizard-head { padding: 24px 22px 18px; }
  body.home-light #gh-wizard .wizard-body { padding: 24px 20px 28px; }
}

/* ============================================================
   v9 layer — document anatomy: Parts, ledgers, ruled lists,
   the directory, the colophon. Cards demoted to editorial
   structures; rhythm varies section to section.
   ============================================================ */

/* Part kickers: the filing's own numbering */
.home-light .part-kicker {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-light .part-kicker::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--azure);
  flex: none;
}
.home-light .part-kicker--dark { color: #e2c98a; }
.home-light .part-kicker--dark::before { background: #e2c98a; }

/* Tool ledger: the stack as ruled entries, not cards */
.home-light .tool-ledger { border-top: 1px solid var(--text); }
.home-light .tool-row {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr 0.5fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
  transition: background var(--t-hover) var(--ease-swift);
}
.home-light .tool-row:hover { background: rgba(15,81,50,0.02); }
.home-light .tool-name h3 {
  font-size: 1.12rem;
  font-weight: 650;
  margin-bottom: 8px;
  line-height: 1.2;
}
.home-light .tool-name .stack-chip { font-family: "Instrument Sans", sans-serif; }
.home-light .tool-body p { font-size: 0.98rem; color: var(--text2); line-height: 1.68; margin-bottom: 12px; }
.home-light .tool-meta {
  font-size: 0.8rem;
  color: var(--muted2);
  line-height: 1.7;
}
.home-light .tool-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Ruled list: features without boxes */
.home-light .ruled-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  border-top: 1px solid var(--text);
}
.home-light .ruled-item {
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--rule);
}
.home-light .ruled-item h3 { font-size: 1.02rem; font-weight: 650; margin-bottom: 8px; }
.home-light .ruled-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.66; }

/* Flow: three numbered beats on bare paper */
.home-light .flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--text);
  padding-top: 34px;
}
.home-light .flow-num {
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--azure);
  font-variant-numeric: oldstyle-nums;
  margin-bottom: 16px;
}
.home-light .flow-step h3 { font-size: 1.02rem; font-weight: 650; margin-bottom: 8px; }
.home-light .flow-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.66; }

/* Directory: newspaper index columns */
.home-light .dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  border-top: 1px solid var(--text);
  padding-top: 30px;
}
.home-light .dir-head {
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}
.home-light .dir-col ul { display: flex; flex-direction: column; }
.home-light .dir-col li { border-bottom: 1px solid var(--rule); }
.home-light .dir-col a {
  display: block;
  padding: 9px 0;
  font-size: 0.94rem;
  color: var(--text2);
  transition: color var(--t-hover) var(--ease-swift), padding-left 180ms var(--ease-out);
}
.home-light .dir-col a:hover { color: var(--azure); padding-left: 6px; }
.home-light .dir-col .dir-more { color: var(--azure); font-weight: 600; }

/* Guides: editorial index rows */
.home-light .guide-list { border-top: 1px solid var(--text); }
.home-light .guide-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  color: inherit;
  transition: background var(--t-hover) var(--ease-swift);
}
.home-light .guide-row:hover { background: rgba(15,81,50,0.02); }
.home-light .guide-row .guide-tag {
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin: 0;
}
.home-light .guide-row h3 { font-size: 1.02rem; font-weight: 650; margin-bottom: 4px; display: inline; }
.home-light .guide-row h3::after { content: ''; display: block; height: 2px; }
.home-light .guide-row p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 4px 0 0; }
.home-light .guide-row:hover h3 { color: var(--azure); }

/* Proof: columns with top rules, boxes removed */
.home-light .proof-grid { gap: 44px; }
.home-light .proof-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--text);
  border-radius: 0;
  padding: 22px 0 0;
  box-shadow: none;
}
.home-light .proof-card:hover { transform: none; box-shadow: none; border-color: var(--text); }
.home-light .proof-card:hover h3 { color: var(--azure); }
.home-light .proof-card h3 { transition: color var(--t-hover) var(--ease-swift); }

/* Paid cells: keep ruled group, drop outer roundness slightly */
.home-light .paid-grid { border-radius: 8px; }

/* FAQ: ruled entries, not boxes */
.home-light .faq-item, .home-light details.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
}
.home-light .faq-list { border-top: 1px solid var(--text); gap: 0; }
.home-light .faq-item[open] { background: transparent; border-color: var(--rule); }
.home-light .faq-question { padding: 18px 4px; font-family: "Instrument Sans", system-ui, sans-serif; font-weight: 600; font-size: 0.95rem; }
.home-light details[open] > .faq-question { color: var(--azure); }
.home-light .faq-answer { padding: 0 4px 24px; }

/* Colophon */
.home-light .colophon {
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  padding: 34px 20px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}

/* Rhythm: vary section breathing */
.home-light .section-full { padding: 64px 32px; }
.home-light .marquee-section { padding: 26px 0 28px; }
.home-light .section-header { margin-bottom: 38px; padding-top: 14px; }
.home-light .oldnew h2, .home-light .access-copy h2 { font-size: clamp(1.45rem, 2.3vw, 1.95rem); font-weight: 650; }
.home-light .oldnew-intro, .home-light .access-copy > p {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.92rem;
}
.home-light .security-band h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 650; }
.home-light .sd-step strong { font-family: "Instrument Sans", sans-serif; font-weight: 600; font-size: 0.92rem; }
.home-light .btn-lg { font-size: 0.95rem; padding: 14px 28px; }
.home-light .tool-row { padding: 24px 0; gap: 32px; }
.home-light .tool-body p { font-size: 0.9rem; }
.home-light .ll-item { font-size: 0.85rem; height: 48px; }
.home-light .terms-standalone { padding: 56px 32px; }
.home-light .paid-num { font-size: 2.2rem; }
.home-light .colophon { font-size: 0.64rem; }

/* ============================================================
   v10 layer — family mark, the timed switch walkthrough,
   sticky lead-gen bar, family strip
   ============================================================ */

/* Family knot mark (from the Best/CovWell brand library) */
.home-light .brand-knot {
  width: 30px; height: 30px;
  color: var(--azure);
  flex: none;
}
.home-light .brand-knot--footer { width: 26px; height: 26px; color: #e2c98a; }

/* The Best "B" mark (family favicon), recolored via alpha mask */
.home-light .b-mark {
  width: 28px; height: 28px;
  display: inline-block;
  flex: none;
  background: var(--azure);
  -webkit-mask: url('/assets/b-mark.png') center / contain no-repeat;
  mask: url('/assets/b-mark.png') center / contain no-repeat;
}
.home-light .b-mark--footer { background: #e2c98a; width: 24px; height: 24px; }

/* Hero pitch line */
.home-light .hero-pitchline {
  margin-top: 18px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted2);
  animation: h-fade 500ms var(--ease-out) 750ms both;
}

/* The timed switch walkthrough (dark band) */
.home-light .switch-demo {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(236,233,220,0.16);
  padding-top: 26px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.home-light .sd-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.home-light .sd-title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e2c98a;
}
.home-light .sd-clock {
  font-family: "Spline Sans Mono", monospace;
  font-size: 1.3rem;
  font-weight: 500;
  color: #e2c98a;
  font-variant-numeric: tabular-nums;
}
.home-light .sd-rail {
  height: 2px;
  background: rgba(236,233,220,0.16);
  margin-bottom: 22px;
  overflow: hidden;
}
.home-light .sd-fill {
  height: 100%;
  width: 100%; /* completed state by default; live JS drives it */
  background: #e2c98a;
}
.home-light .sd-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  list-style: none;
  margin: 0; padding: 0;
}
.home-light .sd-step { transition: opacity 420ms var(--ease-out); }
.home-light .switch-demo.sd-live .sd-step { opacity: 0.34; }
.home-light .switch-demo.sd-live .sd-step.on { opacity: 1; }
.home-light .sd-step .sd-t {
  display: block;
  font-family: "Spline Sans Mono", monospace;
  font-size: 0.72rem;
  color: #e2c98a;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.home-light .sd-step strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.05rem;
  color: #f3f1e6;
  margin-bottom: 4px;
  line-height: 1.3;
}
.home-light .sd-step span:last-child {
  font-size: 0.8rem;
  color: #9a9c8c;
  line-height: 1.55;
}
.home-light .sd-note {
  margin-top: 20px;
  font-size: 0.72rem;
  color: #73755f;
  line-height: 1.6;
}

/* Sticky lead-gen bar */
.home-light .sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 48px 12px 24px;
  background: rgba(246,244,237,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--text);
  transform: translateY(110%);
  transition: transform 380ms var(--ease-out);
}
.home-light .sticky-cta.show { transform: translateY(0); }
.home-light .sc-text { font-size: 0.86rem; color: var(--muted); }
.home-light .sc-text strong { color: var(--text); font-weight: 600; }
.home-light .sticky-cta .btn-cyan { padding: 10px 20px; font-size: 0.85rem; }
.home-light .sc-close {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--muted2);
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}
.home-light .sc-close:hover { color: var(--text); }

/* Family strip */
.home-light .family-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px 20px 6px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
  text-align: center;
}
.home-light .fs-label {
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
}
.home-light .fs-brands {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--muted);
}
.home-light .colophon { border-top: none; padding-top: 22px; }

@media (max-width: 980px) {
  .home-light .sd-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 720px) {
  .home-light .sd-steps { grid-template-columns: 1fr; gap: 16px; }
  .home-light .sticky-cta { flex-wrap: wrap; gap: 10px; padding: 10px 44px 12px 16px; }
  .home-light .sc-text { font-size: 0.78rem; }
}
@media (prefers-reduced-motion: reduce) {
  .home-light .sticky-cta { transition: none; }
}

/* v9 responsive */
@media (max-width: 980px) {
  .home-light .tool-row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .home-light .tool-links { flex-direction: row; gap: 18px; }
  .home-light .ruled-list { grid-template-columns: 1fr; }
  .home-light .flow-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-light .dir-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .home-light .guide-row { grid-template-columns: 1fr; gap: 6px; }
  .home-light .proof-grid { gap: 28px; }
  .home-light .section-full { padding: 64px 20px; }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .home-light .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .home-light .terms-card { max-width: 460px; }
  .home-light .ll-cells { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .home-light .access-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-light .paid-grid { grid-template-columns: 1fr; }
  .home-light .proof-grid { grid-template-columns: 1fr; max-width: 560px; }
  .home-light .assure-strip { grid-template-columns: 1fr 1fr; }
  .home-light .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .home-light .stat-item { padding: 18px 20px; }
  .home-light .stat-item:nth-child(odd) { border-left: none; padding-left: 0; }
}
@media (max-width: 720px) {
  .home-light .announce { font-size: 0.74rem; padding: 8px 14px; flex-wrap: wrap; gap: 6px; }
  .home-light .hero { padding: 56px 20px 56px; }
  .home-light .hero h1 { font-size: 2.35rem; }
  .home-light .hero-ctas .btn { justify-content: center; }
  .home-light .ll-cells { grid-template-columns: 1fr 1fr; }
  .home-light .access-grid { padding: 0 20px; }
  .home-light .access-stacks { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .home-light .assure-strip { grid-template-columns: 1fr; max-width: 420px; }
  .home-light .oldnew-head { display: none; }
  .home-light .oldnew-row { grid-template-columns: 1fr; gap: 10px; padding: 16px 0; }
  .home-light .paid-grid, .home-light .proof-grid { padding: 0; margin: 0 20px; }
  .home-light .proof-grid { padding: 0 20px; margin: 0 auto; }
}

/* ============================================================
   v17 layer — authored motion & signature interaction
   Sources actually applied: impeccable/animate.md (motion
   thesis, timing table, exit-faster, content-visible default),
   kokonutui slide-text-button (ported to CSS), Kokonut site
   analysis (scale/whitespace), impeccable craft doctrine.
   ============================================================ */

/* Focal atmosphere: the painting breathes (38s morning drift) */
.home-light .hero {
  position: relative;
  overflow: hidden;
  background-image: none;
}
.home-light .hero-sky {
  position: absolute;
  inset: -5% -3%;
  z-index: 0;
  background: url('/assets/hero-sky.jpg?v=1') center bottom / cover no-repeat;
  animation: sky-drift 38s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes sky-drift {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.05) translateY(-12px); }
}
.home-light .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 62% 52% at 50% 44%, rgba(246,244,237,0.80) 0%, rgba(246,244,237,0.28) 58%, rgba(246,244,237,0) 100%),
    linear-gradient(180deg, rgba(246,244,237,0.50) 0%, rgba(246,244,237,0.06) 34%, rgba(246,244,237,0) 70%);
}
.home-light .hero-center { position: relative; z-index: 2; }
@media (max-width: 720px) {
  .home-light .hero { background-image: none; }
  .home-light .hero::after {
    background:
      radial-gradient(ellipse 90% 60% at 50% 44%, rgba(246,244,237,0.85) 0%, rgba(246,244,237,0.35) 62%, rgba(246,244,237,0) 100%);
  }
}

/* Hero headline weight on the new face */
.home-light .hero-center h1, .home-light #hero-heading { font-weight: 700; }

/* Signature CTA: sliding label (Kokonut slide-text, CSS-only) */
.home-light .btn-cyan .bt {
  position: relative;
  display: block;
  overflow: hidden;
}
.home-light .btn-cyan .bt > span {
  display: block;
  white-space: nowrap;
  transition: transform 300ms var(--ease-out), opacity 260ms var(--ease-out);
}
.home-light .btn-cyan .bt .bt-b {
  position: absolute;
  inset: 0;
  transform: translateY(115%);
  opacity: 0;
}
.home-light .btn-cyan:hover .bt .bt-a { transform: translateY(-115%); opacity: 0; }
.home-light .btn-cyan:hover .bt .bt-b { transform: translateY(0); opacity: 1; }
.home-light .btn-cyan:active { transform: translateY(1px) !important; box-shadow: none !important; transition-duration: 100ms; }

/* Section rules draw themselves as they enter (scroll-driven) */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .home-light .section-header { border-top-color: transparent; }
    .home-light .section-header::before {
      content: '';
      position: absolute;
      top: -1px; left: 0; right: 0;
      height: 1px;
      background: var(--text);
      transform-origin: left;
      animation: rule-draw linear both;
      animation-timeline: view();
      animation-range: entry 8% entry 42%;
    }
    @keyframes rule-draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
  }
}

/* Craft floor: selection, focus, quiet confidence */
.home-light ::selection { background: var(--azure); color: #f6f4ed; }
.home-light :focus-visible { outline: 2px solid var(--azure); outline-offset: 2px; }
.home-light .btn:focus-visible { outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .home-light .hero-sky { animation: none; }
  .home-light .btn-cyan .bt > span { transition: none; }
}

/* v18: terms card sits below the fold — no invisible load theater */
.home-light .terms-standalone .terms-card,
.home-light .terms-standalone .tc-row,
.home-light .terms-standalone .tc-meta { animation: none; opacity: 1; }

/* ============================================================
   v19 layer — stable plan cards, honest deck, tactile buttons
   ============================================================ */

/* Cards: fixed geometry so cycling text never reflows the stack */
.home-light .access-card--top { height: 62px; padding: 10px 14px; }
.home-light .access-card--top > div:not(.ac-logo) { min-width: 0; flex: 1; }
.home-light .ac-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.82rem;
}
.home-light .ac-plan {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.7rem;
}
.home-light .ac-price { font-size: 1rem; }

/* Deck peeks from the bottom, like stacked paper */
.home-light .access-stack { padding-top: 0; padding-bottom: 16px; }
.home-light .access-card--under,
.home-light .access-card--under2 {
  top: auto;
  bottom: 9px;
  left: 8px; right: 8px;
  height: 18px;
  background: var(--bg-soft);
}
.home-light .access-card--under2 { bottom: 2px; left: 16px; right: 16px; }
.home-light .access-card--top { z-index: 1; }

/* Category labels become column headers (read top-down) */
.home-light .access-stack { display: flex; flex-direction: column; }
.home-light .access-stack-label { order: -1; margin: 0 0 10px; text-align: left; }
.home-light .access-stack { position: relative; }
.home-light .access-stack .access-card--under,
.home-light .access-stack .access-card--under2 { z-index: 0; }

/* Budget -> stacks relationship, stated */
.home-light .access-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -8px 0 18px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
}
.home-light .access-flow::before {
  content: '';
  width: 1px; height: 22px;
  background: var(--rule);
  margin-left: 21px;
  flex: none;
}

/* Tactile buttons: visible depth at rest, lift on hover, press on click */
.home-light .btn-cyan {
  box-shadow: 0 3px 0 var(--azure-deep), 0 6px 14px rgba(15,81,50,0.16);
  transition: transform 120ms var(--ease-swift), box-shadow 120ms var(--ease-swift), background 140ms var(--ease-swift);
}
.home-light .btn-cyan:hover {
  background: var(--azure);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--azure-deep), 0 10px 20px rgba(15,81,50,0.20);
}
.home-light .btn-cyan:active {
  transform: translateY(2px) !important;
  box-shadow: 0 1px 0 var(--azure-deep), 0 2px 6px rgba(15,81,50,0.14) !important;
}
.home-light .btn-outline {
  background: var(--surface);
  box-shadow: 0 3px 0 var(--rule);
  transition: transform 120ms var(--ease-swift), box-shadow 120ms var(--ease-swift), border-color 120ms var(--ease-swift), color 120ms var(--ease-swift);
}
.home-light .btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--rule);
  background: var(--surface);
}
.home-light .btn-outline:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--rule);
}
/* Amber CTA inside the dark security band keeps the same physics */
.home-light .security-band .btn-cyan {
  box-shadow: 0 3px 0 #a98f4e, 0 6px 14px rgba(0,0,0,0.25);
}
.home-light .security-band .btn-cyan:hover { box-shadow: 0 4px 0 #a98f4e, 0 10px 20px rgba(0,0,0,0.3); }
.home-light .security-band .btn-cyan:active { box-shadow: 0 1px 0 #a98f4e !important; }

@media (prefers-reduced-motion: reduce) {
  .home-light .btn-cyan, .home-light .btn-outline { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   v20 — Chapter bar, pinned process, mobile diet, contrast
   (keep after the v17 block)
   ════════════════════════════════════════════════════════════ */

/* Respect reduced motion for anchor scrolling (styles.css sets smooth) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ── Chapter bar: the document's table of contents, pinned ── */
.home-light .chapter-bar {
  position: sticky;
  top: var(--nav-h, 62px);
  z-index: 40;
  background: rgba(246,244,237,0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.home-light .chapter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.home-light .chapter-bar-inner::-webkit-scrollbar { display: none; }
.home-light .cb-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-right: 14px;
  flex: none;
}
.home-light .chapter-bar a {
  flex: none;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 11px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 140ms var(--ease-swift);
  white-space: nowrap;
}
.home-light .chapter-bar a span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--muted2);
  transition: color 140ms var(--ease-swift);
}
.home-light .chapter-bar a:hover { color: var(--text); }
.home-light .chapter-bar a.is-here { color: var(--azure); border-bottom-color: var(--azure); font-weight: 600; }
.home-light .chapter-bar a.is-here span { color: var(--azure); }

/* ── Part VIII: pinned process with the giant numeral ─────── */
.home-light .how-pin {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.home-light .how-pin-left {
  position: sticky;
  top: calc(var(--nav-h, 62px) + 110px);
}
.home-light .how-pin-num {
  position: relative;
  height: 200px;
}
.home-light .hp-n {
  position: absolute;
  inset: 0;
  font-family: var(--font-head);
  font-variant-numeric: oldstyle-nums;
  font-weight: 500;
  font-size: 13rem;
  line-height: 1;
  color: var(--azure);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out);
}
.home-light .hp-n.is-on { opacity: 0.9; transform: none; }
.home-light .how-pin-steps { display: flex; flex-direction: column; }
.home-light .how-pin .flow-step {
  border-top: 1px solid var(--rule);
  padding: 30px 0 34px;
  margin: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.home-light .how-pin .flow-step:last-child { border-bottom: 1px solid var(--rule); }
.home-light .how-pin .flow-step .flow-num {
  display: none;
  font-family: var(--font-head);
  font-variant-numeric: oldstyle-nums;
  font-size: 2rem;
  color: var(--azure);
  background: none;
  border: 0;
  width: auto; height: auto;
  margin-bottom: 6px;
}
.home-light .how-pin .flow-step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.home-light .how-pin .flow-step p { max-width: 58ch; color: var(--muted); font-size: 0.95rem; }
/* dimming only engages when JS marks the section live */
.home-light .how-pin.how-live .flow-step {
  opacity: 0.42;
  transition: opacity 380ms var(--ease-out);
}
.home-light .how-pin.how-live .flow-step.is-on { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .home-light .how-pin.how-live .flow-step { opacity: 1; transition: none; }
  .home-light .hp-n { transition: none; }
}
@media (max-width: 980px) {
  .home-light .how-pin { grid-template-columns: 1fr; gap: 0; }
  .home-light .how-pin-left { display: none; }
  .home-light .how-pin .flow-step .flow-num { display: block; }
  .home-light .how-pin.how-live .flow-step { opacity: 1; }
}

/* ── Mobile diet: directory + footer columns collapse ─────── */
@media (max-width: 720px) {
  .home-light .dir-col.acc .dir-head {
    cursor: pointer;
    position: relative;
    padding: 13px 0;
    margin: 0;
    border-top: 1px solid var(--rule);
  }
  .home-light .dir-col.acc .dir-head::after {
    content: '+';
    position: absolute; right: 4px; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-head);
    font-size: 1.15rem;
    color: var(--azure);
  }
  .home-light .dir-col.acc.open .dir-head::after { content: '\2013'; }
  .home-light .dir-col.acc ul { display: none; padding-bottom: 14px; }
  .home-light .dir-col.acc.open ul { display: block; }

  .home-light .site-footer .footer-grid > div.acc:not(.footer-brand) { border-top: 1px solid var(--border); }
  .home-light .site-footer div.acc .footer-col-heading {
    cursor: pointer;
    position: relative;
    padding: 14px 0;
    margin: 0;
  }
  .home-light .site-footer div.acc .footer-col-heading::after {
    content: '+';
    position: absolute; right: 2px; top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 1.1rem;
  }
  .home-light .site-footer div.acc.open .footer-col-heading::after { content: '\2013'; }
  .home-light .site-footer div.acc .footer-link-list { display: none; padding-bottom: 14px; }
  .home-light .site-footer div.acc.open .footer-link-list { display: block; }
}

/* ── Contrast floor for micro-type ─────────────────────────── */
.home-light .colophon {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7263;
  text-align: center;
  padding: 26px 24px;
  border-top: 1px solid var(--rule);
}
.home-light .access-note,
.home-light .ab-sub,
.home-light .marquee-note { color: #6b7263; }

/* ── v21: phone in the landing nav ─────────────────────────── */
.home-light .nav-phone {
  flex: none;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.94rem; font-weight: 650;
  color: var(--text); white-space: nowrap;
  font-variant-numeric: tabular-nums;
  padding: 8px 4px;
  transition: color 140ms var(--ease-swift);
}
.home-light .nav-phone:hover { color: var(--azure); }
.home-light .nav-phone-ico { color: var(--azure); font-size: 1.05em; }
@media (max-width: 860px) {
  .home-light .nav-phone { font-size: 0; gap: 0; padding: 8px; margin-left: auto; }
  .home-light .nav-phone-ico { font-size: 1.3rem; }
}

/* Carrier strip caption — for a broker these marks mean "we hold appointments",
   not endorsement. Saying so is both the accurate claim and the stronger one. */
.home-light .marquee-cap {
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7263;
  margin: 0 0 18px;
}

@media (max-width: 620px) {
  /* Phone + quote button both need to fit; the wordmark is redundant
     next to the B mark at this width. */
  .home-light .nav-inner { gap: 10px; padding-left: 16px; padding-right: 16px; }
  .home-light .nav-brand-name { display: none; }
  .home-light .nav-cta { padding: 9px 13px; font-size: 0.82rem; letter-spacing: -0.01em; }
}
