/* ==========================================================================
   Granite State Health Insurance Solutions — site.css
   An Apex Benefits Partners employer resource platform
   --------------------------------------------------------------------------
   SPACING DISCIPLINE (Apex marketing layout standards)
   All vertical rhythm comes from the --sp-* token scale below (8px base).
   Never introduce a one-off margin or padding value. Cards in a grid stretch
   to equal height so no row ever shows an uneven bottom edge.
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
:root {
  /* Brand palette — Deep Blue / Granite Gray / White / Pine Green
     Deep blue #0E1F3B is the Apex Benefits Partners navy pulled from
     apexbenefitsonline.com so this platform reads as part of the Apex family. */
  --navy:          #0E1F3B;
  --navy-deep:     #081527;
  --navy-mid:      #1B3557;
  --navy-soft:     #2A4771;

  --granite:       #56606E;
  --granite-mid:   #7C8694;
  --granite-light: #C7CDD5;
  --granite-pale:  #EDEFF2;

  --pine:          #2E5D43;
  --pine-dark:     #234A35;
  --pine-mid:      #4A8062;
  --pine-pale:     #E8F0EB;

  --white:         #FFFFFF;
  --offwhite:      #F7F8FA;
  --ink:           #23272E;

  --border:        #DDE1E7;
  --border-soft:   rgba(14, 31, 59, 0.10);
  --shadow-sm:     0 2px 8px rgba(14, 31, 59, 0.06);
  --shadow-md:     0 6px 20px rgba(14, 31, 59, 0.09);
  --shadow-lg:     0 14px 40px rgba(14, 31, 59, 0.14);

  /* Type */
  --font-head: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Inter, Arial, sans-serif;

  /* Spacing scale — 8px base. Use these only. */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;

  /* Structural */
  --section-y:  var(--sp-10);   /* top & bottom padding of every section */
  --grid-gap:   var(--sp-3);    /* gap between every card in every grid */
  --card-pad:   var(--sp-4);    /* inner padding on all four sides of a card */
  --maxw:       1180px;
  --maxw-prose: 760px;
  --radius:     10px;
  --radius-sm:  6px;
  --header-h:   84px;
}

/* --- 2. Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.22;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.3125rem; }
h4 { font-size: 1.0625rem; }

p  { margin: 0; }
ul, ol { margin: 0; padding-left: 1.15em; }
li { margin: 0; }
li + li { margin-top: var(--sp-1); }

a { color: var(--pine); text-decoration: none; }
a:hover { color: var(--pine-dark); text-decoration: underline; }

strong { font-weight: 700; color: var(--navy); }

/* Navy <strong> is invisible on a navy surface. Every dark background is listed
   here, including ones with no bold text today, so new copy stays legible. */
.hero strong,
.hero-panel strong,
.page-banner strong,
.section--navy strong,
.section--pine strong,
.spotlight strong,
.card--navy strong,
.metric strong,
.cta-band strong,
.site-footer strong { color: var(--white); }

/* Consistent stack spacing — the only vertical margin mechanism used. */
.stack > * + *      { margin-top: var(--sp-3); }
.stack-sm > * + *   { margin-top: var(--sp-2); }
.stack-lg > * + *   { margin-top: var(--sp-6); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: var(--sp-1) var(--sp-2); z-index: 200;
}
.skip-link:focus { left: var(--sp-2); top: var(--sp-2); }

:focus-visible { outline: 3px solid var(--pine-mid); outline-offset: 2px; }

/* --- 3. Layout primitives ---------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--sp-4); }

.section        { padding: var(--section-y) 0; }
.section--pale  { background: var(--offwhite); }
.section--granite { background: var(--granite-pale); }
.section--navy  { background: var(--navy); color: rgba(255,255,255,0.90); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--pine  { background: var(--pine); color: rgba(255,255,255,0.92); }
.section--pine h2, .section--pine h3 { color: var(--white); }
.section--tight { padding: var(--sp-8) 0; }

.section-head { max-width: var(--maxw-prose); }
.section-head + * { margin-top: var(--sp-6); }

.prose { max-width: var(--maxw-prose); }
.prose p + p { margin-top: var(--sp-2); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine);
  margin: 0 0 var(--sp-2);
}
.section--navy .eyebrow, .section--pine .eyebrow { color: var(--pine-mid); }
.section--navy .eyebrow { color: #8FBFA4; }
.section--pine .eyebrow { color: rgba(255,255,255,0.72); }

.lede { font-size: 1.1875rem; color: var(--granite); }
.section--navy .lede, .section--pine .lede { color: rgba(255,255,255,0.86); }
.muted { color: var(--granite); }
.small { font-size: 0.9375rem; }
.xsmall { font-size: 0.8125rem; }

hr.rule {
  border: 0; height: 3px; width: 56px; background: var(--pine);
  margin: 0; border-radius: 2px;
}

/* --- 4. Grids (equal-height cards, even gaps) -------------------------- */
.grid { display: grid; gap: var(--grid-gap); align-items: stretch; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid > * { min-width: 0; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--sp-6);
  align-items: start;
}

/* --- 5. Cards ----------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  box-shadow: var(--shadow-sm);
}
.card > *:last-child { margin-bottom: 0; }
.card--flush { box-shadow: none; }
.card--pale { background: var(--offwhite); }
.card--pine { background: var(--pine-pale); border-color: #CFE0D6; }
.card--navy { background: var(--navy-mid); border-color: var(--navy-soft); color: rgba(255,255,255,0.88); }
.card--navy h3, .card--navy h4 { color: var(--white); }

.card-link {
  margin-top: auto;
  padding-top: var(--sp-1);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--pine);
}
.card-link::after { content: " \2192"; }

a.card { color: inherit; text-decoration: none; transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease; }
a.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--pine-mid); text-decoration: none; }
a.card:hover h3 { color: var(--pine-dark); }

.tag {
  align-self: flex-start;
  display: inline-block;
  background: var(--granite-pale);
  color: var(--navy);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.4;
}
.tag--pine { background: var(--pine-pale); color: var(--pine-dark); }
.tag--navy { background: rgba(255,255,255,0.14); color: var(--white); }

/* Numbered step cards */
.step-num {
  width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 50%;
  background: var(--pine); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.125rem; font-weight: 600;
}

/* --- 6. Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--pine); color: var(--white); border-color: var(--pine); }
.btn-primary:hover { background: var(--pine-dark); border-color: var(--pine-dark); color: var(--white); text-decoration: none; }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); color: var(--white); text-decoration: none; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--granite-light); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.10); color: var(--white); border-color: var(--white); text-decoration: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* --- 7. Header / nav ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  width: 100%; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: var(--sp-2); text-decoration: none; flex: 0 0 auto; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 44px; height: 44px; flex: 0 0 44px; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-name {
  font-family: var(--font-head); font-size: 1.0625rem; font-weight: 600;
  color: var(--navy); line-height: 1.15; letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--granite-mid); line-height: 1.2;
}

.nav { display: flex; align-items: center; gap: var(--sp-1); flex-wrap: wrap; justify-content: flex-end; }
.nav a {
  color: var(--navy); font-size: 0.875rem; font-weight: 600;
  padding: 8px 10px; border-radius: var(--radius-sm); white-space: nowrap;
}
.nav a:hover { background: var(--offwhite); color: var(--navy); text-decoration: none; }
.nav a.is-active { color: var(--pine-dark); background: var(--pine-pale); }
.nav .btn { padding: 10px 18px; font-size: 0.875rem; margin-left: var(--sp-1); }

.nav-toggle {
  display: none;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 700;
  color: var(--navy); cursor: pointer;
}

/* --- 8. Hero ------------------------------------------------------------ */
.hero {
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(74, 128, 98, 0.30), transparent 62%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255,255,255,0.90);
  padding: var(--sp-10) 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--pine) 0%, var(--pine-mid) 50%, var(--navy-soft) 100%);
}
.hero h1 { color: var(--white); }
.hero .eyebrow { color: #8FBFA4; }
/* stretch, not center: the two columns render as equal-height boxes and each
   one centres its own content vertically. */
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: var(--sp-6); align-items: stretch; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; }
.hero-copy > * + * { margin-top: var(--sp-3); }
.hero p { color: rgba(255,255,255,0.86); }

.hero-panel {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: var(--card-pad);
  display: flex; flex-direction: column; justify-content: center; gap: var(--sp-3);
}
.hero-panel h2 { font-size: 1.125rem; color: var(--white); }
.hero-panel ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-1); }
.hero-panel li { display: flex; gap: var(--sp-1); font-size: 1rem; color: rgba(255,255,255,0.88); margin: 0; }
.hero-panel li::before { content: "\25B8"; color: var(--pine-mid); flex: 0 0 auto; }

/* Hero map panel — New Hampshire silhouette + numbered market key.
   The SVG geometry is a real NH state boundary (see _build/pages_core.py). */
/* Sized so the panel's total height lands close to the hero copy column.
   The state is tall and narrow, so width is what controls height here. */
.hero-map { width: 100%; max-width: 330px; height: auto; display: block; margin: 0 auto; }

/* Interior page banner */
.page-banner {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255,255,255,0.88);
  padding: var(--sp-8) 0;
  border-bottom: 4px solid var(--pine);
}
.page-banner h1 { color: var(--white); font-size: 2.75rem; }
.page-banner > .wrap > * + * { margin-top: var(--sp-3); }
.page-banner .lede { color: rgba(255,255,255,0.86); max-width: var(--maxw-prose); }
.crumb { font-size: 0.8125rem; color: rgba(255,255,255,0.62); margin: 0 0 var(--sp-2); }
.crumb a { color: rgba(255,255,255,0.80); }
.crumb a:hover { color: var(--white); }

/* --- 9. Stat strip ------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--grid-gap); }
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--pine);
  border-radius: var(--radius);
  padding: var(--card-pad);
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.stat-num { font-family: var(--font-head); font-size: 2.25rem; font-weight: 600; color: var(--navy); line-height: 1.05; }
.stat-label { font-size: 0.9375rem; color: var(--granite); }
.source-note { font-size: 0.8125rem; color: var(--granite-mid); max-width: var(--maxw); }

/* --- 10. Definition / accordion / table -------------------------------- */
.def-list { display: grid; gap: var(--grid-gap); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.def {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--card-pad);
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.def h3 { font-size: 1.1875rem; }
.def p { font-size: 1rem; color: var(--granite); }
.def .plain {
  margin-top: var(--sp-1); padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
  font-size: 0.9375rem; color: var(--navy);
}
.def .plain strong { color: var(--pine-dark); }

.acc { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.acc + .acc { margin-top: var(--sp-2); }
.acc summary {
  cursor: pointer; list-style: none;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-head); font-size: 1.125rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-family: var(--font-body); font-size: 1.5rem; color: var(--pine); line-height: 1; flex: 0 0 auto; }
.acc[open] summary::after { content: "\2013"; }
.acc summary:hover { background: var(--offwhite); }
.acc-body { padding: 0 var(--sp-4) var(--sp-3); }
.acc-body > * + * { margin-top: var(--sp-2); }
.acc-body p, .acc-body li { font-size: 1rem; color: var(--granite); }

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
table.data { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
table.data th, table.data td { padding: var(--sp-2) var(--sp-3); text-align: left; vertical-align: top; }
table.data thead th {
  background: var(--navy); color: var(--white);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
}
table.data tbody tr + tr td { border-top: 1px solid var(--border); }
table.data tbody tr:nth-child(even) { background: var(--offwhite); }
table.data td strong { color: var(--navy); }

/* --- 11. Callouts, price tiles, CTA band -------------------------------- */
.callout {
  border-left: 4px solid var(--pine);
  background: var(--pine-pale);
  border-radius: var(--radius);
  padding: var(--card-pad);
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.callout h3 { font-size: 1.1875rem; }
.callout p { font-size: 1rem; color: var(--pine-dark); }

.notice {
  border-left: 4px solid var(--granite-mid);
  background: var(--granite-pale);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--card-pad);
  font-size: 0.9375rem;
  color: var(--granite);
}
.notice strong { color: var(--navy); }

.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--grid-gap); }
.price {
  background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--pine);
  border-radius: var(--radius); padding: var(--card-pad);
  display: flex; flex-direction: column; gap: var(--sp-1); text-align: center; align-items: center;
}
.price-amt { font-family: var(--font-head); font-size: 2.5rem; font-weight: 600; color: var(--pine-dark); line-height: 1.05; }
.price-name { font-family: var(--font-head); font-size: 1.1875rem; color: var(--navy); }
.price-note { font-size: 0.875rem; color: var(--granite); }

.cta-band {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius);
  padding: var(--sp-6);
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--sp-4); align-items: center;
}
.cta-band h2 { color: var(--white); font-size: 1.75rem; }
.cta-band p { color: rgba(255,255,255,0.84); margin-top: var(--sp-1); }

/* --- 11b. Triad spotlight, proof metrics, case studies ------------------ */

/* Full-width feature band used to make Triad the loudest thing on a page. */
.spotlight {
  background:
    radial-gradient(900px 460px at 88% 0%, rgba(74, 128, 98, 0.34), transparent 60%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255,255,255,0.90);
  padding: var(--section-y) 0;
  border-top: 4px solid var(--pine);
  border-bottom: 4px solid var(--pine);
}
.spotlight h2, .spotlight h3, .spotlight h4 { color: var(--white); }
.spotlight .eyebrow { color: #8FBFA4; }
.spotlight .lede { color: rgba(255,255,255,0.88); }
.spotlight p { color: rgba(255,255,255,0.84); }

/* Big-number proof tiles. Equal height, even gaps, no orphan rows. */
.metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--grid-gap); }
.metrics-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.metric {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius);
  padding: var(--card-pad);
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.metric-num {
  font-family: var(--font-head); font-weight: 700; line-height: 1.02;
  font-size: 2.75rem; color: var(--white);
  font-variant-numeric: tabular-nums;
}
.metric-label { font-size: 0.9375rem; color: rgba(255,255,255,0.82); }
.metric-foot { font-size: 0.75rem; color: rgba(255,255,255,0.60); margin-top: auto; padding-top: var(--sp-1); }

/* Light variant for use on white/pale sections */
.metric--light { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--pine); }
.metric--light .metric-num { color: var(--pine-dark); }
.metric--light .metric-label { color: var(--granite); }
.metric--light .metric-foot { color: var(--granite-mid); }
/* This variant sits on a light background, so undo the white-<strong> rule. */
.metric--light strong { color: var(--navy); }

/* Case-study card: header band + body + result strip */
.case {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.case-head {
  background: var(--navy);
  padding: var(--sp-3) var(--card-pad);
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.case-head .eyebrow { color: #8FBFA4; margin: 0; }
.case-head h3 { color: var(--white); font-size: 1.1875rem; }
.case-head p { color: rgba(255,255,255,0.74); font-size: 0.875rem; }
.case-body { padding: var(--card-pad); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1 1 auto; }
.case-body p { font-size: 0.9375rem; color: var(--granite); }
.case-result {
  margin-top: auto;
  background: var(--pine-pale);
  border-top: 1px solid #CFE0D6;
  padding: var(--sp-3) var(--card-pad);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-2);
}
.case-result div { display: flex; flex-direction: column; gap: 2px; }
.case-result .r-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--pine-dark); line-height: 1.05; }
.case-result .r-lab { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--pine-dark); }
.case-source { padding: var(--sp-2) var(--card-pad); background: var(--offwhite); border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--granite-mid); }

/* Before / after comparison bar */
.compare { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--grid-gap); align-items: stretch; }
.compare-col {
  border-radius: var(--radius); padding: var(--card-pad);
  display: flex; flex-direction: column; gap: var(--sp-1);
  border: 1px solid var(--border); background: var(--white);
}
.compare-col--was { border-top: 4px solid var(--granite-mid); }
.compare-col--now { border-top: 4px solid var(--pine); background: var(--pine-pale); border-color: #CFE0D6; }
.compare-col--delta { border-top: 4px solid var(--navy); background: var(--navy); border-color: var(--navy); }
.compare-col--delta .c-num, .compare-col--delta .c-lab, .compare-col--delta .c-note { color: var(--white); }
.compare-col--delta .c-note { color: rgba(255,255,255,0.74); }
.c-lab { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--granite); }
.c-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1.05; font-variant-numeric: tabular-nums; }
.c-note { font-size: 0.875rem; color: var(--granite); }

/* Data-inventory checklist, used for the mid-year review section */
.datalist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-2) var(--sp-4); list-style: none; padding: 0; margin: 0; }
.datalist li {
  display: flex; gap: var(--sp-2); align-items: flex-start;
  font-size: 0.9375rem; margin: 0;
  padding-bottom: var(--sp-2); border-bottom: 1px solid var(--border);
}
.datalist li::before {
  content: "\2713"; flex: 0 0 22px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pine-pale); color: var(--pine-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.spotlight .datalist li { color: rgba(255,255,255,0.86); border-bottom-color: rgba(255,255,255,0.16); }
.spotlight .datalist li::before { background: rgba(255,255,255,0.14); color: #8FBFA4; }

/* Member-story price jump: "$3,559 -> $0" */
.pricejump {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--sp-1);
  font-family: var(--font-head); line-height: 1.05;
}
.pj-was { font-size: 1.375rem; color: var(--granite-mid); text-decoration: line-through; font-variant-numeric: tabular-nums; }
.pj-arrow { font-family: var(--font-body); font-size: 1.125rem; color: var(--pine); font-weight: 700; }
.pj-now { font-size: 2.25rem; font-weight: 700; color: var(--pine-dark); font-variant-numeric: tabular-nums; }
.pj-note { flex: 1 0 100%; font-family: var(--font-body); font-size: 0.8125rem; color: var(--granite); }

/* Numbered how-it-works row */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--grid-gap); }
.step {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--card-pad); display: flex; flex-direction: column; gap: var(--sp-2);
}
.step-idx {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: var(--pine); line-height: 1; font-variant-numeric: tabular-nums;
}
.spotlight .step { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.20); }
.spotlight .step h3 { color: var(--white); }
.spotlight .step p { color: rgba(255,255,255,0.82); }
.spotlight .step-idx { color: #8FBFA4; }

/* Featured nav item */
.nav a.is-feature { color: var(--pine-dark); border: 1px solid #CFE0D6; background: var(--pine-pale); }
.nav a.is-feature:hover { background: #DCEAE1; color: var(--pine-dark); }
.nav a.is-feature.is-active { background: var(--pine); border-color: var(--pine); color: var(--white); }

/* --- 12. Forms ---------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-3); }
.field { display: flex; flex-direction: column; gap: var(--sp-1); }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--granite-light);
  border-radius: var(--radius-sm); background: var(--white); width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pine); outline: 2px solid var(--pine-pale); }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-1) var(--sp-3); }
.check { display: flex; align-items: center; gap: var(--sp-1); font-size: 1rem; color: var(--ink); }
.check input { width: 18px; height: 18px; flex: 0 0 18px; accent-color: var(--pine); }
.form-note { font-size: 0.8125rem; color: var(--granite-mid); }

/* --- 13. Resource rows -------------------------------------------------- */
.res {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--card-pad); display: flex; flex-direction: column; gap: var(--sp-2);
}
.res-status {
  align-self: flex-start; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  background: var(--granite-pale); color: var(--granite); padding: 5px 12px; border-radius: 999px;
}
.res h3 { font-size: 1.125rem; }
.res p { font-size: 0.9375rem; color: var(--granite); }

/* --- 14. Footer --------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); padding: var(--sp-8) 0 var(--sp-6); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: var(--sp-6); }
.footer-col { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col h4 {
  color: var(--white); font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-1); }
.footer-col li { margin: 0; }
.footer-col a { color: rgba(255,255,255,0.74); font-size: 0.9375rem; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-brand-name { font-family: var(--font-head); font-size: 1.125rem; color: var(--white); }
.footer-col p { font-size: 0.9375rem; color: rgba(255,255,255,0.70); }
.footer-legal {
  margin-top: var(--sp-6); padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.8125rem; color: rgba(255,255,255,0.58);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.footer-legal p { font-size: 0.8125rem; color: rgba(255,255,255,0.58); }

/* --- 15. Responsive ----------------------------------------------------- */
@media (max-width: 1080px) {
  :root { --section-y: var(--sp-8); }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-4); }
  .nav { display: none; }
  .nav-toggle { display: block; }
  .site-header.is-open .nav {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: var(--sp-2) var(--sp-4) var(--sp-3); gap: 2px;
    box-shadow: var(--shadow-md); max-height: 70vh; overflow-y: auto;
  }
  .site-header.is-open .nav a { padding: 12px 10px; font-size: 1rem; }
  .site-header.is-open .nav .btn { margin: var(--sp-1) 0 0; }
  .site-header { position: relative; }
}

@media (max-width: 860px) {
  .hero-grid, .split { grid-template-columns: minmax(0, 1fr); gap: var(--sp-4); }
  .grid-3, .grid-4, .stats, .price-grid, .def-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metrics, .metrics-4, .compare, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric-num { font-size: 2.25rem; }
  .cta-band { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  :root { --section-y: var(--sp-6); --card-pad: var(--sp-3); }
  body { font-size: 17px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  .page-banner h1 { font-size: 2rem; }
  .wrap { padding: 0 var(--sp-3); }
  .header-inner { padding: var(--sp-2) var(--sp-3); }
  .grid-2, .grid-3, .grid-4, .stats, .price-grid, .def-list,
  .form-grid, .check-grid, .metrics, .metrics-4, .compare,
  .datalist, .steps { grid-template-columns: minmax(0, 1fr); }
  .case-result { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .cta-band { padding: var(--sp-4); }
  .btn { width: 100%; }
  .nav .btn { width: 100%; }
}

@media print {
  .site-header, .nav-toggle, .cta-band { display: none !important; }
  body { font-size: 12pt; }
}
