/* ============================================================
   No C No Fee — landing page styles
   Brand: deep forest/olive green + Wise-style lime accent
   See brand-spec.md. Sections snap full-screen; white header.
   ============================================================ */

/* Self-hosted display and body faces live in the critical stylesheet so
   first paint does not wait on a second render-blocking CSS request. */
@font-face {
  font-family: "Zodiak";
  src: url("../assets/fonts/zodiak-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zodiak";
  src: url("../assets/fonts/zodiak-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zodiak";
  src: url("../assets/fonts/zodiak-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/general-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/general-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/general-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* -- brand tokens (see brand-spec.md) -- */
  --bg: #fbfbf8;
  --surface: #ffffff;
  --forest: #123322;
  --forest-deep: #0b2417;
  --forest-soft: #1b4530;
  --fg: #1a2628;          /* logo ink — sampled from assets/logo.png */
  --fg-2: #2c4a3a;
  --olive: #60882e;       /* logo tick/C green — sampled from assets/logo.png */
  --muted: #54685c;
  --muted-on-dark: #a8c2b2;
  --border: #dde4da;
  --border-on-dark: rgba(255, 255, 255, 0.12);
  --accent: #9fe870;
  --accent-hover: #8edb5e;
  --accent-ink: #0b241f;

  /* EPC band colours (official register palette — domain data colours) */
  --epc-a: #008054;
  --epc-b: #19b459;
  --epc-c: #8dce46;
  --epc-d: #ffd500;
  --epc-e: #fcaa65;
  --epc-f: #ef8023;
  --epc-g: #e9153b;

  --font-display: "Zodiak", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "General Sans", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --shadow-card: 0 18px 44px rgba(14, 46, 30, 0.10);
  --shadow-pop: 0 24px 60px rgba(11, 36, 23, 0.35);

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 36px);
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--header-h);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.06; }
h1 { font-size: clamp(46px, 6.4vw, 84px); letter-spacing: -0.02em; font-weight: 800; line-height: 1.02; }
h2 { font-size: clamp(34px, 4.2vw, 56px); letter-spacing: -0.015em; font-weight: 800; }
h3 { font-size: clamp(20px, 1.8vw, 24px); letter-spacing: -0.005em; font-weight: 700; }

/* Lime marker underline stays static so the headline reaches LCP once. */
.hl {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 94%;
  background-size: 100% 7px;
  padding-bottom: 8px;
}

.lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--muted); max-width: 58ch; text-wrap: pretty; }
.on-dark .lead, .on-dark p { color: var(--muted-on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #f4f9f0; }

/* Numbered editorial section labels (mono, auto-counted) */
main { counter-reset: sec; }
.panel { counter-increment: sec; }
.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.eyebrow::before {
  content: counter(sec, decimal-leading-zero);
  font-weight: 700;
  color: color-mix(in oklab, var(--olive), black 20%);
  margin-right: 12px;
  padding-right: 12px;
  border-right: 2px solid var(--accent);
}
.on-dark .eyebrow { color: var(--muted-on-dark); }
.on-dark .eyebrow::before { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  padding: 15px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1), background 150ms, box-shadow 150ms;
}
.btn { white-space: nowrap; }
.btn:active { transform: translateY(2px); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(159, 232, 112, 0.45); }

.btn-lime { background: var(--accent); color: var(--accent-ink); }
.btn-lime:hover { background: var(--accent-hover); }

.btn-ghost { background: transparent; color: var(--fg); border-color: var(--border); }
.btn-ghost:hover { background: rgba(14, 46, 30, 0.05); }
.on-dark .btn-ghost { color: #f4f9f0; border-color: var(--border-on-dark); }
.on-dark .btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  z-index: 900;
  transition: border-color 200ms, box-shadow 200ms;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: 0 8px 30px rgba(14, 46, 30, 0.07); }
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Header logo (assets/logo.png — transparent background) */
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 46px;
  width: auto;
  max-width: min(48vw, 240px);
  object-fit: contain;
}

/* Typographic wordmark — used in the footer on dark canvas */
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--fg);
  white-space: nowrap;
}
.wordmark .no-fee { color: var(--fg); }
.wordmark .c-mark {
  display: inline-grid;
  place-items: center;
  width: 1.55em;
  height: 1.55em;
  margin-inline: 0.14em;
  background: var(--forest);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.88em;
  transform: translateY(0.18em);
}

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a:not(.btn) {
  font-size: 14.5px;
  font-weight: 550;
  letter-spacing: 0.01em;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 150ms;
}
.main-nav a:not(.btn):hover { color: var(--fg); }
.main-nav .btn { padding: 11px 22px; font-size: 14.5px; }
/* Mobile CTA: hardened at base level so it can never wrap or balloon */
.nav-toggle {
  display: none;
  flex: none;
  white-space: nowrap;
  padding: 10px 16px;
  font-size: 13.5px;
}

/* ---------- section scaffolding ---------- */
.panel {
  min-height: 100vh;
  min-height: 100svh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 64px;
  position: relative;
  overflow: clip;
}
.panel-auto { min-height: 0; scroll-snap-align: none; padding: 96px 0; }

.on-dark { background: var(--forest); color: #f4f9f0; }

/* Brand pattern layers — subtle roof-chevron grid on dark, dot grid on light */
.pattern-dark::before,
.pattern-light::before {
  content: "";
  position: absolute;
  inset: -12% 0;
  pointer-events: none;
  z-index: 0;
}
.pattern-dark::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M8 24 20 14l12 10M32 46l12-10 12 10' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pattern-light::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M8 24 20 14l12 10M32 46l12-10 12 10' fill='none' stroke='%230e2e1e' stroke-opacity='0.045' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.panel > .container { position: relative; z-index: 1; }

/* Skip layout and paint work for sections that are well outside the viewport. */
@supports (content-visibility: auto) {
  .panel:not(.s-hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 100vh;
  }
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 480ms cubic-bezier(0.2, 0, 0, 1), transform 480ms cubic-bezier(0.2, 0, 0, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

/* hover lift — cards respond without shouting */
.fact-card, .route-card, .review-card, .case-card, .stat-tile {
  transition: transform 240ms cubic-bezier(0.2, 0, 0, 1), border-color 240ms;
}
.fact-card:hover, .route-card:hover, .review-card:hover, .case-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--border), var(--fg) 18%);
}

/* ============================================================
   HERO
   ============================================================ */
/* Full-bleed cinematic hero — photo under a forest legibility grade */
.s-hero { background: var(--forest-deep); }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img {
  width: 100%;
  height: 116%;
  margin-top: -8%;
  object-fit: cover;
  object-position: center 62%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* legibility grade: solid over the copy column easing right, plus a
     bottom seat under the guarantee strip */
  background:
    linear-gradient(180deg, transparent 52%, color-mix(in srgb, var(--forest-deep) 88%, transparent) 100%),
    linear-gradient(97deg,
      color-mix(in srgb, var(--forest-deep) 96%, transparent) 10%,
      color-mix(in srgb, var(--forest-deep) 76%, transparent) 48%,
      color-mix(in srgb, var(--forest-deep) 30%, transparent) 100%);
}
.hero-copy { max-width: 680px; }
.hero-copy .sub { margin-top: 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  background: var(--surface);
  color: var(--fg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-pop);
  padding: 13px 20px;
}
.hero-chip .chip-bands { display: inline-flex; align-items: center; gap: 8px; }
.hero-chip .band {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
}
.band-d { background: var(--epc-d); color: #5c4d00; }
.band-c { background: var(--epc-c); color: #23430a; }
.hero-chip .arrow { color: var(--olive); }
.hero-chip .chip-rule { width: 1px; align-self: stretch; background: var(--border); }
.hero-chip .chip-text small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2px;
}
.hero-chip .chip-text strong { font-size: 14.5px; letter-spacing: 0; }

/* guarantee strip */
.guarantee {
  margin-top: clamp(40px, 6vh, 72px);
  border-top: 1px solid var(--border-on-dark);
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guarantee .g-item { border-top: 2px solid var(--border-on-dark); padding-top: 16px; }
.guarantee .g-item svg { display: none; }
.guarantee .g-item strong { display: block; color: #f4f9f0; font-size: 15.5px; letter-spacing: 0.01em; }
.guarantee .g-item span { font-size: 14px; color: var(--muted-on-dark); }

/* ============================================================
   WHY NOW
   ============================================================ */
.section-head { max-width: 720px; margin-bottom: clamp(30px, 5vh, 54px); }
.section-head .lead { margin-top: 16px; }
/* alternate rhythm: headline left, lead right, baseline-aligned */
.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 20px clamp(32px, 5vw, 72px);
  align-items: end;
}
.section-head.split .eyebrow { grid-column: 1 / -1; }
.section-head.split .lead { margin-top: 0; padding-bottom: 6px; }

.deadline-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.stat-tile {
  border-top: 3px solid var(--fg);
  padding: 20px 8px 0 0;
}
.stat-tile .num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-tile .num.warn { color: #b03500; }
.stat-tile .cap { margin-top: 10px; font-size: 14px; color: var(--muted); max-width: 30ch; }

.fact-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
}
.fact-card .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
  color: var(--fg-2);
  margin-bottom: 16px;
}
.fact-card h3 { margin-bottom: 12px; }
.fact-card p { color: var(--muted); font-size: 15.5px; }
.fact-card .src {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fact-card .src:hover { color: var(--fg); }

/* ============================================================
   WHY YOUR EPC IS WRONG
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.figure-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  border: 1px solid var(--border-on-dark);
  position: relative;
}
.figure-frame img { width: 100%; height: clamp(280px, 40vh, 420px); object-fit: cover; }
.figure-frame figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(11, 36, 23, 0.82);
  color: #eaf6e2;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}

/* mock EPC excerpt */
.epc-doc {
  background: var(--surface);
  color: var(--fg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  font-size: 14px;
  margin-top: 26px;
}
.epc-doc .doc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: #f2f5f0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.epc-doc .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}
.epc-doc .row:last-child { border-bottom: 0; }
.epc-doc .row .lbl { font-weight: 550; }
.epc-doc .row .lbl small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; }
.flag {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.flag-assumed { background: #fdeee2; color: #a04a00; border: 1px solid #f3cfae; }
.flag-notrated { background: #fbe5e8; color: #a3132f; border: 1px solid #f0bcc5; }
.flag-measured { background: #e6f4dc; color: #2d5c12; border: 1px solid #c8e5ae; }

.checklist { margin-top: 26px; display: grid; gap: 14px; list-style: none; }
.checklist li { position: relative; padding-left: 28px; font-size: 15.5px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 14px; height: 2px; background: var(--accent); }

/* ============================================================
   WHAT WE DO — the two routes
   ============================================================ */
.routes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.route-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.route-card .rc-img { height: 200px; overflow: hidden; }
.route-card .rc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.2, 0, 0, 1); }
.route-card:hover .rc-img img { transform: scale(1.04); }
.route-card .rc-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.route-card .price {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.route-card .price small { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; font-family: var(--font-body); }
.route-card ul { list-style: none; display: grid; gap: 10px; }
.route-card ul li { display: flex; gap: 10px; font-size: 14.5px; color: var(--fg-2); }
.route-card ul svg { flex: none; color: var(--olive); margin-top: 3px; }
.route-note {
  margin-top: 22px;
  background: color-mix(in oklab, var(--accent) 16%, white);
  border: 1px solid color-mix(in oklab, var(--accent) 45%, white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 15px;
  color: var(--fg-2);
  max-width: 860px;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.step { position: relative; padding-left: 58px; }
.step .n {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: #f4f9f0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.step strong { display: block; margin-bottom: 4px; font-size: 15.5px; }
.step span { font-size: 14px; color: var(--muted); }

/* ============================================================
   THE GAMBLE (repeal argument)
   ============================================================ */
/* Ledger rows, not card grid — numbered arguments read like a case file */
.gamble-cols { counter-reset: gamble; }
.gamble-card {
  counter-increment: gamble;
  border-top: 1px solid var(--border-on-dark);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: baseline;
}
.gamble-card::before {
  content: counter(gamble, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
}
.gamble-card h3 { margin-bottom: 0; font-size: 21px; }
.gamble-card p { font-size: 15px; }
.gamble-math {
  margin-top: 32px;
  background: rgba(159, 232, 112, 0.08);
  border: 1px solid rgba(159, 232, 112, 0.3);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.gamble-math .gm-side { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.01em; color: #f4f9f0; }
.gamble-math .gm-side small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 6px; }
.gamble-math .vs { font-family: var(--font-mono); color: var(--accent); font-size: 14px; letter-spacing: 0.1em; }

/* ============================================================
   LANDLORD SCENARIOS
   ============================================================ */
.g-badge { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--fg-2); margin-top: 20px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card .rv-head { display: flex; align-items: center; gap: 12px; }
.review-card .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 15px;
  background: var(--forest);
  color: #f4f9f0;
}
.review-card .rv-meta strong { display: block; font-size: 15px; }
.review-card .rv-meta span { font-size: 12.5px; color: var(--muted); }
.review-card .scenario-tag { color: var(--olive); font: 600 12px/1 var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.review-card p { font-size: 14.5px; color: var(--fg-2); }
.review-card .rv-src { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); margin-top: auto; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-card .cc-img { height: 168px; flex: none; }
.case-card .cc-img img { width: 100%; height: 100%; object-fit: cover; }
.case-card .cc-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.case-card .cc-type {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.case-card .bands { display: flex; align-items: center; gap: 12px; }
.case-card .bands .band {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 19px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9px;
}
.case-card .bands svg { color: var(--muted); }
.case-card p { font-size: 14.5px; color: var(--fg-2); flex: 1; }
.case-card .cc-cost {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.case-card .cc-cost span { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.case-card .cc-cost strong { font-family: var(--font-display); font-size: 24px; letter-spacing: -0.01em; }

/* ============================================================
   ASSESSMENT FORM
   ============================================================ */
.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.assess-form {
  background: var(--surface);
  color: var(--fg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  padding: clamp(26px, 3vw, 40px);
}
.assess-form .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 15px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--fg);
  width: 100%;
  transition: border-color 150ms, box-shadow 150ms;
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(159, 232, 112, 0.35);
}
.field .err { font-size: 12.5px; color: #b3122f; display: none; }
.field.invalid input, .field.invalid select { border-color: #d34a5e; }
.field.invalid .err { display: block; }
.assess-form .btn { width: 100%; margin-top: 6px; }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm); font-size: 13.5px; line-height: 1.45; text-align: left; }
.form-status.show { display: block; }
.form-status.error { background: color-mix(in srgb, var(--danger) 10%, var(--surface)); color: var(--danger); border: 1px solid color-mix(in srgb, var(--danger) 28%, var(--surface)); }
.form-tel { margin-top: 8px; font-size: 13.5px; }
.form-tel a { color: var(--fg); font-weight: 600; text-underline-offset: 3px; }
.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success.show { display: block; }
.form-success svg { color: var(--forest); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15px; }

.form-side .point-list { list-style: none; display: grid; gap: 18px; margin-top: 28px; }
.form-side .point-list li { position: relative; padding-left: 28px; }
.form-side .point-list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 14px; height: 2px; background: var(--accent); }
.form-side .point-list strong { display: block; color: #f4f9f0; font-size: 15.5px; }
.form-side .point-list span { font-size: 14px; color: var(--muted-on-dark); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-body);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; transition: transform 240ms cubic-bezier(0.2, 0, 0, 1); color: var(--muted); }
.faq-item[open] summary .chev { transform: rotate(45deg); color: var(--fg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 15px; max-width: 72ch; }
.faq-item .faq-body a { color: var(--fg-2); font-weight: 600; text-underline-offset: 3px; }

/* ============================================================
   IMPORTANT READING
   ============================================================ */
.reading-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.reading-list a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: transparent;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-decoration: none;
  transition: background 150ms, transform 150ms;
}
.reading-list a:hover { background: #215539; transform: translateY(-2px); }
.reading-list svg { flex: none; color: var(--accent); margin-top: 3px; }
.reading-list strong { display: block; color: #f4f9f0; font-size: 15px; line-height: 1.35; }
.reading-list span { font-size: 13px; color: var(--muted-on-dark); }

/* ---------- footer ---------- */
.site-footer { background: var(--forest-deep); color: var(--muted-on-dark); padding: 44px 0; font-size: 13.5px; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; }
.foot-logo { display: inline-flex; align-items: center; }
.foot-logo img { height: 42px; width: auto; }
.foot-tel { font-weight: 600; font-size: 15px; color: #f4f9f0; text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.foot-tel:hover { color: var(--accent); }
.site-footer nav { display: flex; gap: 20px; }
.site-footer nav a { text-decoration: none; color: var(--muted-on-dark); }
.site-footer nav a:hover { color: #f4f9f0; }
.site-footer .disclaimer { width: 100%; font-size: 12px; color: rgba(168, 194, 178, 0.7); max-width: 90ch; }

/* ---------- sticky CTA widget ---------- */
.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  padding: 15px 24px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(11, 36, 23, 0.35);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 250ms cubic-bezier(0.2, 0, 0, 1), transform 250ms cubic-bezier(0.2, 0, 0, 1), background 150ms;
}
.sticky-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.sticky-cta:hover { background: var(--accent-hover); }
.sticky-cta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--forest); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.55; } }

/* ---------- EPC scale diagram ---------- */
.epc-scale { display: grid; gap: 7px; }
.epc-scale .erow { display: flex; align-items: center; gap: 12px; }
.epc-scale .ebar {
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-inline: 12px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.68);
  min-width: 0;
  transform-origin: left center;
}
.epc-scale .marker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.marker-you { background: #fff3bf; color: #7a6400; border: 1px solid #ecd97a; }
.marker-target { background: var(--forest); color: var(--accent); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .split, .form-wrap { grid-template-columns: 1fr; }
  .panel { min-height: 0; padding: calc(var(--header-h) + 34px) 0 56px; }
  html { scroll-snap-type: none; }
  .routes, .review-grid, .case-grid { grid-template-columns: 1fr 1fr; }
  .deadline-band, .steps { grid-template-columns: 1fr 1fr; }
  .section-head.split { grid-template-columns: 1fr; align-items: start; }
  .section-head.split .lead { padding-bottom: 0; }
  .gamble-card { grid-template-columns: 48px minmax(0, 1fr); }
  .gamble-card p { grid-column: 2; }
}

@media (max-width: 680px) {
  :root { --header-h: 60px; }
  .site-header .container { gap: 12px; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .logo-img { height: 34px; max-width: 48vw; }

  /* mobile spacing rhythm: one consistent scale */
  .panel { padding: calc(var(--header-h) + 28px) 0 48px; }
  .panel-auto { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head .lead { margin-top: 12px; }
  .eyebrow { margin-bottom: 18px; }
  .hero-copy .sub { margin-top: 16px; }
  .hero-ctas { margin-top: 26px; gap: 10px; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .guarantee { margin-top: 36px; padding-top: 20px; gap: 18px; }
  .deadline-band { gap: 18px; margin-bottom: 30px; }
  .fact-cols, .routes, .review-grid, .case-grid { gap: 16px; }
  .fact-card, .gamble-math { padding: 22px; }
  .route-card .rc-body, .case-card .cc-body { padding: 20px 22px 22px; }
  .review-card { padding: 20px; }
  .gamble-card { padding: 22px 0; gap: 10px; }
  .steps { gap: 16px; margin-top: 30px; }
  .route-note { padding: 16px 18px; margin-top: 18px; }
  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-item .faq-body { padding: 0 18px 18px; font-size: 14.5px; }
  .reading-list a { padding: 15px 16px; }
  .assess-form { padding: 22px 18px; }
  .site-footer { padding: 36px 0; }
  .site-footer .container { gap: 16px; }
  .foot-logo img { height: 34px; }
  .gamble-math .btn { width: 100%; justify-content: center; }
  .routes, .review-grid, .case-grid, .deadline-band, .steps,
  .fact-cols, .reading-list, .guarantee, .assess-form .grid2 { grid-template-columns: 1fr; }
  .hero-chip { padding: 12px 14px; margin-top: 30px; }
  .hero-bg::after {
    background: linear-gradient(180deg,
      color-mix(in srgb, var(--forest-deep) 94%, transparent),
      color-mix(in srgb, var(--forest-deep) 84%, transparent));
  }
  .sticky-cta { right: 14px; bottom: 14px; padding: 13px 20px; font-size: 14px; }
  .reveal { transform: translateY(14px); transition-duration: 360ms; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .sticky-cta .dot { animation: none; }
  * { transition-duration: 1ms !important; }
}
