/* ================================================================
   Tchekz — "The Audit" Design System
   Editorial financial newspaper aesthetic.
   Fraunces serif + IBM Plex Mono + Libre Franklin.
   Warm newsprint, ink black, single amber accent.
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* ── Tchekz corporate palette ── */
  --navy:       #2D3561;   /* primary brand — nav, hero, footer */
  --navy-deep:  #1a1f3a;   /* deep variant */
  --turquoise:  #4ECDC4;   /* primary accent — CTAs, highlights */
  --turq-dark:  #3ab5ac;   /* hover state for turquoise */

  /* ── Supporting / editorial ── */
  --amber:      #C47C08;   /* secondary accent — minor decorative only */
  --amber-pale: #FDF2DC;

  /* ── Content surfaces ── */
  --paper:      #F7F4EE;
  --paper-2:    #EFEBE2;
  --paper-3:    #E5E0D5;

  /* ── Text ── */
  --ink:        #141410;
  --ink-2:      #38352E;
  --ink-3:      #6A6660;

  /* ── UI ── */
  --rule:       #D2CEC5;
  --white:      #FFFFFF;
  --red:        #AE2E1E;
  --green:      #186644;
  --max-w:      1160px;

  /* ── Legacy aliases (backwards-compat with sub-pages) ── */
  --teal:       #4ECDC4;
  --teal-dim:   rgba(78,205,196,.12);
  --border:     #D2CEC5;
  --mist:       #EFEBE2;
  --mist-dark:  #E5E0D5;
  --radius:     12px;
  --radius-sm:  8px;
  --ink-soft:   #38352E;
  --ink-muted:  #6A6660;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Libre Franklin', 'DM Sans', 'Helvetica Neue', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.06; font-weight: 700; letter-spacing: -.025em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ──────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 50; background: var(--navy); border-bottom: 3px solid var(--turquoise); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { position: relative; z-index: 9999; display: block; flex-shrink: 0; }
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-links { display: none; gap: 2px; list-style: none; }
@media(min-width:820px){ .nav-links { display: flex; } }
.nav-links a { font-family: 'Libre Franklin',sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.62); padding: 7px 13px; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-links a.active { color: var(--turquoise); }
.nav-dropdown { position: relative; }
.nav-dropdown-btn { display: flex; align-items: center; gap: 4px; font-family: 'Libre Franklin',sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.62); padding: 7px 13px; background: none; border: none; cursor: pointer; transition: color .15s; }
.nav-dropdown-btn svg { width: 11px; height: 11px; transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-btn { color: var(--white); }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--navy); border: 1px solid rgba(255,255,255,.1); border-top: 2px solid var(--turquoise); padding: 3px 6px 6px; z-index: 100; box-shadow: 0 8px 24px rgba(0,0,0,.35); }
/* dropdown visibility managed by JS hover-intent in _nav.php */
.nav-dropdown-menu a { display: block; padding: 9px 14px; font-family: 'Libre Franklin',sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.6); transition: color .15s, background .15s; }
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.btn-nav { display: inline-flex; align-items: center; background: var(--turquoise); color: var(--navy); padding: 9px 18px; font-family: 'Libre Franklin',sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border: none; cursor: pointer; flex-shrink: 0; transition: background .15s; }
.btn-nav:hover { background: var(--turq-dark); }
.nav-mobile-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.18); background: none; cursor: pointer; color: var(--white); }
@media(min-width:820px){ .nav-mobile-btn { display: none; } }
.nav-mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; background: var(--navy); padding: 24px; flex-direction: column; gap: 4px; overflow-y: auto; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { display: block; padding: 14px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-mobile-menu a:hover { color: var(--white); }
.nav-mobile-close { align-self: flex-end; background: none; border: 1px solid rgba(255,255,255,.2); width: 34px; height: 34px; cursor: pointer; font-size: 18px; display: grid; place-items: center; color: var(--white); margin-bottom: 16px; }
.badge-coming { font-size: 9px; font-weight: 700; background: rgba(196,124,8,.18); color: var(--amber); padding: 1px 5px; margin-left: 5px; vertical-align: middle; letter-spacing: .05em; }
.badge-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--turquoise); margin-right: 2px; animation: pulse 2.2s ease-in-out infinite; }

/* ── BUTTONS ──────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; background: var(--ink); color: var(--white); padding: 14px 28px; font-family: 'Libre Franklin',sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border: 2px solid var(--ink); cursor: pointer; transition: background .15s, color .15s, transform .12s; }
.btn-primary:hover { background: var(--turquoise); color: var(--navy); border-color: var(--turquoise); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 2px solid rgba(255,255,255,.3); color: var(--white); padding: 12px 24px; font-family: 'Libre Franklin',sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; transition: border-color .2s, background .2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.07); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 2px solid var(--ink); color: var(--ink); padding: 11px 22px; font-family: 'Libre Franklin',sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; transition: background .15s, color .15s; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-amber { display: inline-flex; align-items: center; justify-content: center; background: var(--turquoise); color: var(--navy); padding: 14px 28px; font-family: 'Libre Franklin',sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border: 2px solid var(--turquoise); cursor: pointer; transition: background .15s, transform .12s; }
.btn-amber:hover { background: var(--turq-dark); border-color: var(--turq-dark); transform: translateY(-1px); }
.btn-full { display: block; width: 100%; text-align: center; background: var(--navy); color: var(--white); padding: 14px; font-family: 'Libre Franklin',sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; border: 2px solid var(--navy); cursor: pointer; transition: background .15s, color .15s; }
.btn-full:hover { background: var(--turquoise); color: var(--navy); border-color: var(--turquoise); }


/* ── THE QUOTE HEADLINE ─────────────── */
.hero-quote-section {
  padding: 56px 0 0;
  animation: fadeUp .6s .1s both;
}
.hero-quote-block { margin: 0; padding: 0; border: none; }
/* Both quote marks share this class — identical font-size guaranteed.
   display:block keeps them out of the paragraph's inline flow entirely. */
.hero-q-mark {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 8.5vw, 104px);
  font-weight: 900; font-style: italic;
  color: var(--turquoise);
  line-height: 0.7;
  display: block;
  user-select: none;
}
.hero-q-open  { margin-bottom: 6px; }
.hero-q-close { margin-top: 10px; }
.hero-quote-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 4.6vw, 56px);
  font-weight: 900; font-style: italic;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 880px;
  margin: 0;
}
.hero-quote-text .must-have {
  color: var(--amber);
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.hero-attribution {
  margin-top: 20px;
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp .6s .2s both;
}
.hero-attr-line { width: 32px; height: 2px; background: var(--turquoise); flex-shrink: 0; }
.hero-attr-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .12em;
}

/* ── PAGE HERO (interior pages) ──────── */
.page-hero { background: var(--navy); border-bottom: 3px solid var(--turquoise); padding: 64px 24px 72px; position: relative; overflow: hidden; }
.page-hero-grid { display:none; } .page-hero-blob { display:none; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; }
.page-hero h1 { font-size: clamp(32px,5vw,54px); font-weight: 900; color: var(--white); letter-spacing: -.025em; max-width: 800px; }
.page-hero h1 em { font-style: italic; color: var(--turquoise); }
.page-hero-sub { margin-top: 16px; font-size: 17px; font-weight: 300; color: rgba(255,255,255,.65); max-width: 600px; line-height: 1.75; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono',monospace; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; color: var(--turquoise); margin-bottom: 16px; }
.page-hero-eyebrow::before { content: '//'; opacity: .5; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono',monospace; font-size: 10px; color: rgba(255,255,255,.35); margin-bottom: 20px; text-transform: uppercase; letter-spacing: .09em; }
.breadcrumb a { color: rgba(255,255,255,.35); transition: color .15s; }
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.breadcrumb-sep { opacity: .3; }

/* ── SECTION LABELS ───────────────────── */
.section-label { display: flex; align-items: center; gap: 12px; font-family: 'IBM Plex Mono',monospace; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-3); margin-bottom: 20px; }
.section-label::before { content: '§'; color: var(--navy); font-size: 13px; }
.section-label::after  { content: ''; flex: 1; height: 1px; background: var(--rule); }
.section-heading { font-size: clamp(26px,4.5vw,42px); font-weight: 900; color: var(--ink); letter-spacing: -.025em; max-width: 640px; }
.section-heading em { font-style: italic; color: var(--navy); }
.section-sub { margin-top: 12px; font-size: 16px; color: var(--ink-2); max-width: 560px; line-height: 1.7; }

/* ── LAYOUT ───────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-white { background: var(--white); color: var(--ink); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.rule-divider { border: none; border-top: 1px solid var(--rule); }

/* ── CARDS ────────────────────────────── */
.card { background: var(--white); border: 1px solid var(--rule); border-top: 3px solid var(--navy); padding: 28px; transition: box-shadow .18s, transform .18s; }
.card:hover { box-shadow: 4px 4px 0 var(--navy); transform: translate(-2px,-2px); }
.card-label { font-family: 'IBM Plex Mono',monospace; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-3); margin-bottom: 14px; }
.card-title { font-family: 'Fraunces',serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.card-body  { font-size: 14px; color: var(--ink-2); line-height: 1.7; }
.grid-3 { display: grid; gap: 16px; }
@media(min-width:600px){ .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .grid-3 { grid-template-columns: repeat(3,1fr); } }
.grid-2 { display: grid; gap: 16px; }
@media(min-width:700px){ .grid-2 { grid-template-columns: repeat(2,1fr); } }
.grid-4 { display: grid; gap: 16px; }
@media(min-width:600px){ .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1000px){ .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ── CTA BAND ─────────────────────────── */
.cta-band { background: var(--navy); border-left: 6px solid var(--turquoise); padding: 40px 48px; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
@media(min-width:640px){ .cta-band { flex-direction: row; align-items: center; justify-content: space-between; } }
.cta-band-title { font-family: 'Fraunces',serif; font-size: 24px; font-weight: 900; color: var(--white); }
.cta-band-sub   { margin-top: 6px; font-size: 14px; color: rgba(255,255,255,.58); }

/* ── RECEIPT UI ───────────────────────── */
.receipt { background: var(--white); border: 1px solid var(--rule); font-family: 'IBM Plex Mono',monospace; overflow: hidden; }
.receipt-head { background: var(--navy); color: var(--white); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; }
.receipt-head-title { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; }
.receipt-head-meta  { font-size: 10px; opacity: .45; }
.receipt-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 5px; }
.receipt-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 7px 8px; font-size: 11px; }
.receipt-row-label { color: var(--ink-2); }
.receipt-row-val   { font-weight: 500; color: var(--ink); }
.receipt-row.ok    { background: #EDFAF3; }
.receipt-row.warn  { background: #FEF8EA; }
.receipt-row.error { background: #FEF0EE; }
.receipt-badge { font-size: 9px; font-weight: 700; padding: 2px 6px; text-transform: uppercase; letter-spacing: .06em; }
.receipt-badge.ok    { color: var(--green); }
.receipt-badge.warn  { color: #8A5208; }
.receipt-badge.error { color: var(--red); }
.receipt-total { border-top: 1px dashed var(--rule); margin: 6px 0 0; padding: 10px 8px 4px; display: flex; justify-content: space-between; align-items: baseline; }
.receipt-total-label { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.receipt-total-val   { font-family: 'Fraunces',serif; font-size: 24px; font-weight: 900; color: var(--navy); }

/* Stat ticker */
.stat-ticker { border-top: 3px solid var(--ink); border-bottom: 1px solid var(--rule); padding: 20px 0; }
.stat-ticker-num   { font-family: 'Fraunces',serif; font-size: clamp(28px,4vw,44px); font-weight: 900; color: var(--ink); }
.stat-ticker-label { margin-top: 4px; font-family: 'IBM Plex Mono',monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); }

/* ── FORMS ────────────────────────────── */
.form-label { font-family: 'IBM Plex Mono',monospace; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-2); margin-bottom: 6px; display: block; }
.form-input,.form-select,.form-textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--rule); background: var(--white); color: var(--ink); font-size: 15px; font-family: 'Libre Franklin',sans-serif; outline: none; transition: border-color .15s, box-shadow .15s; border-radius: 0; }
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color: var(--navy); box-shadow: 3px 3px 0 var(--navy); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-row   { display: grid; gap: 16px; }
@media(min-width:640px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form-feedback { padding: 12px 16px; font-family: 'IBM Plex Mono',monospace; font-size: 11px; border: 1.5px solid transparent; display: none; }
.form-feedback.success { background: #EDFAF3; color: var(--green); border-color: #A8E6C0; display: block; }
.form-feedback.error   { background: #FEF0EE; color: var(--red);   border-color: #FABAB0; display: block; }

/* ── NEWSLETTER ───────────────────────── */
.nsl-band { background: var(--paper-2); border: 1px solid var(--rule); border-left: 5px solid var(--turquoise); padding: 36px 40px; display: grid; gap: 24px; margin-top: 40px; }
@media(min-width:640px){ .nsl-band { grid-template-columns: 1fr 1fr; align-items: center; } }
.nsl-title { font-family: 'Fraunces',serif; font-size: 22px; font-weight: 700; color: var(--ink); }
.nsl-sub   { margin-top: 4px; font-size: 14px; color: var(--ink-3); }
.nsl-row   { display: flex; }
.nsl-input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--navy); border-right: none; background: var(--white); color: var(--ink); font-size: 14px; font-family: 'Libre Franklin',sans-serif; outline: none; }
.nsl-input::placeholder { color: var(--ink-3); }
.nsl-input:focus { box-shadow: inset 0 0 0 1px var(--navy); }
.nsl-btn { padding: 12px 18px; background: var(--navy); color: var(--white); border: 1.5px solid var(--navy); font-family: 'Libre Franklin',sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; white-space: nowrap; transition: background .15s, color .15s; }
.nsl-btn:disabled { opacity: .55; cursor: not-allowed; }
.nsl-btn:not(:disabled):hover { background: var(--turquoise); color: var(--navy); border-color: var(--turquoise); }
.nsl-msg { margin-top: 8px; padding: 8px 12px; font-family: 'IBM Plex Mono',monospace; font-size: 11px; border: 1px solid transparent; display: none; }
.nsl-msg.success { background: #EDFAF3; color: var(--green); border-color: #A8E6C0; display: block; }
.nsl-msg.error   { background: #FEF0EE; color: var(--red);   border-color: #FABAB0; display: block; }

/* ── FOOTER ───────────────────────────── */
.site-footer { background: var(--navy); color: var(--white); border-top: 3px solid var(--turquoise); }
.footer-main { max-width: var(--max-w); margin: 0 auto; padding: 64px 24px 40px; display: grid; gap: 40px; }
@media(min-width:768px)  { .footer-main { grid-template-columns: 240px 1fr; } }
@media(min-width:1000px) { .footer-main { grid-template-columns: 260px 1fr 1fr 1fr; } }
.footer-brand-tagline { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.65; max-width: 210px; }
.footer-col-title { font-family: 'IBM Plex Mono',monospace; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.3); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 14px; color: rgba(255,255,255,.58); transition: color .15s; }
.footer-col-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); max-width: var(--max-w); margin: 0 auto; padding: 24px; display: flex; flex-direction: column; gap: 8px; }
@media(min-width:640px){ .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-legal-text { font-size: 12px; color: rgba(255,255,255,.28); line-height: 1.65; }
.footer-copy { font-family: 'IBM Plex Mono',monospace; font-size: 11px; color: rgba(255,255,255,.28); }

/* ── LEGAL ────────────────────────────── */
.legal-body { max-width: 720px; }
.legal-body h2 { font-size: 22px; font-weight: 700; margin-top: 48px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--rule); }
.legal-body h3 { font-size: 16px; font-weight: 600; margin-top: 24px; margin-bottom: 8px; }
.legal-body p  { font-size: 15px; color: var(--ink-2); line-height: 1.8; margin-bottom: 16px; }
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body li { font-size: 15px; color: var(--ink-2); line-height: 1.8; margin-bottom: 6px; }
.legal-body a  { color: var(--navy); text-decoration: underline; text-decoration-color: rgba(45,53,97,.35); }
.legal-updated { display: inline-block; font-family: 'IBM Plex Mono',monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; background: var(--paper-2); border: 1px solid var(--rule); padding: 5px 12px; color: var(--ink-3); margin-bottom: 32px; }

/* ── ANIMATIONS ───────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:.5; transform:scale(1.3); }
}
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ── INTERIOR PAGE OVERRIDES ──────────────────────────────────
   Neutralises teal-era classes still used in sub-pages.
   Keeps those pages visually consistent with The Audit system.
─────────────────────────────────────────────────────────────── */

/* Old card-icon → plain bordered box */
.card-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--rule);
  background: var(--paper-2);
  display: grid; place-items: center;
}
.card-icon svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Old step items on How It Works */
.step-detail-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.step-detail-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); }
.step-detail-check { width: 16px; height: 16px; flex-shrink: 0; border: 1.5px solid var(--rule); background: var(--paper-2); display: grid; place-items: center; font-size: 9px; margin-top: 2px; }

/* Old compat card */
.compat-card { background: var(--white); border: 1px solid var(--rule); border-top: 2px solid var(--navy); padding: 14px 12px; text-align: center; transition: box-shadow .15s, transform .15s; }
.compat-card:hover { box-shadow: 3px 3px 0 var(--navy); transform: translate(-1px,-1px); }
.compat-icon { font-size: 22px; }
.compat-name { margin-top: 6px; font-size: 12px; font-weight: 600; }
.compat-status { margin-top: 3px; font-family: 'IBM Plex Mono', monospace; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }

/* Old guarantee card */
.guarantee-card { display: flex; align-items: flex-start; gap: 16px; background: var(--white); border: 1px solid var(--rule); border-top: 2px solid var(--navy); padding: 22px; transition: box-shadow .15s, transform .15s; }
.guarantee-card:hover { box-shadow: 3px 3px 0 var(--navy); transform: translate(-1px,-1px); }
.guarantee-icon { width: 40px; height: 40px; border: 1.5px solid var(--rule); background: var(--paper-2); display: grid; place-items: center; flex-shrink: 0; font-size: 18px; }
.guarantee-title { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; }
.guarantee-body { margin-top: 4px; font-size: 13px; color: var(--ink-2); line-height: 1.65; }

/* Old value card (about page) */
.value-card { background: var(--paper-2); border: 1px solid var(--rule); border-top: 2px solid var(--navy); padding: 24px; }
.value-num   { font-family: 'Fraunces', serif; font-size: 13px; font-weight: 900; color: var(--amber); letter-spacing: .04em; }
.value-title { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; margin-top: 4px; }
.value-body  { margin-top: 6px; font-size: 13px; color: var(--ink-2); line-height: 1.65; }

/* Old timeline */
.timeline { display: flex; flex-direction: column; }
.timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding-bottom: 28px; position: relative; }
.timeline-item:not(:last-child)::before { content: ''; position: absolute; left: 39px; top: 28px; bottom: 0; width: 1px; background: var(--rule); }
.timeline-dot { width: 16px; height: 16px; background: var(--amber); border: 2px solid var(--paper); box-shadow: 0 0 0 1.5px var(--amber); margin-top: 4px; justify-self: center; }
.timeline-year { font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-3); margin-top: 5px; text-align: center; }
.timeline-content { padding-bottom: 4px; }
.timeline-title { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; color: var(--ink); }
.timeline-body  { margin-top: 4px; font-size: 13px; color: var(--ink-2); line-height: 1.65; }

/* Old testimonial / proof cards */
.recovery-card { background: var(--white); border: 1px solid var(--rule); border-top: 3px solid var(--navy); padding: 24px 26px; transition: box-shadow .15s, transform .15s; }
.recovery-card:hover { box-shadow: 3px 3px 0 var(--navy); transform: translate(-1px,-1px); }
.rec-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.rec-val { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 900; color: var(--ink); margin-top: 5px; }
.rec-desc { margin-top: 5px; font-size: 13px; color: var(--ink-2); }

/* Old testimonial card */
.testimonial-card { background: var(--paper-2); border-left: 3px solid var(--turquoise); padding: 22px 24px; }
.t-quote { font-family: 'Fraunces', serif; font-size: 16px; font-style: italic; font-weight: 700; color: var(--ink); }
.t-quote::before { content: '"'; color: var(--amber); }
.t-quote::after  { content: '"'; color: var(--amber); }
.t-body { margin-top: 8px; font-size: 13px; color: var(--ink-2); }
.t-name { margin-top: 12px; font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }

/* Old pricing cards (pricing.php) */
.plan-card { border: 1px solid var(--rule); border-top: 3px solid var(--navy); padding: 32px; background: var(--paper-2); position: relative; }
.plan-card.highlighted { background: var(--navy); border-color: var(--turquoise); border-top-width: 4px; border-top-color: var(--turquoise); }
.plan-card.muted { opacity: .72; }
.plan-recommended { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--turquoise); color: var(--navy); font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 700; padding: 3px 12px; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.plan-name  { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); }
.plan-sub   { margin-top: 2px; font-size: 12px; color: var(--ink-3); }
.plan-price { font-family: 'Fraunces', serif; font-size: 44px; font-weight: 900; margin-top: 14px; color: var(--ink); }
.plan-unit  { font-size: 12px; color: var(--ink-3); }
.plan-divider { border: none; border-top: 1px solid var(--rule); margin: 18px 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.plan-feat  { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--ink-2); }
.plan-feat::before { content: '→'; color: var(--turquoise); font-weight: 700; flex-shrink: 0; }
.plan-card.highlighted .plan-name,
.plan-card.highlighted .plan-price,
.plan-card.highlighted .plan-sub,
.plan-card.highlighted .plan-unit,
.plan-card.highlighted .plan-feat { color: var(--white); }
.plan-card.highlighted .plan-feat::before { color: var(--amber); }
.plan-card.highlighted .plan-divider { border-color: rgba(255,255,255,.1); }

/* Subject pills on contact page */
.subject-option { padding: 6px 14px; border: 1.5px solid var(--rule); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .15s; background: var(--white); font-family: 'Libre Franklin', sans-serif; }
.subject-option:hover   { border-color: var(--navy); }
.subject-option.selected { background: var(--navy); border-color: var(--navy); color: var(--white); font-weight: 600; }

/* Blog post cards */
.post-card { background: var(--white); border: 1px solid var(--rule); border-top: 3px solid var(--navy); overflow: hidden; transition: box-shadow .18s, transform .18s; }
.post-card:hover { box-shadow: 4px 4px 0 var(--navy); transform: translate(-2px,-2px); }
.post-thumb { background: var(--paper-2); height: 150px; display: flex; align-items: center; justify-content: center; font-size: 40px; border-bottom: 1px solid var(--rule); }
.post-body { padding: 20px; }
.post-category { font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--navy); }
.post-title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; margin-top: 6px; line-height: 1.3; }
.post-excerpt { margin-top: 8px; font-size: 13px; color: var(--ink-2); line-height: 1.65; }
.post-meta { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.post-date { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--ink-3); }
.post-read { font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .1em; }
.coming-overlay { position: relative; }
.coming-overlay::after { content: 'Coming soon'; position: absolute; inset: 0; background: rgba(248,245,239,.88); display: flex; align-items: center; justify-content: center; font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-3); }

/* Contact info cards */
.contact-info-card { background: var(--white); border: 1px solid var(--rule); border-top: 3px solid var(--navy); padding: 0; overflow: hidden; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 22px; border-bottom: 1px solid var(--rule); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 36px; height: 36px; border: 1.5px solid var(--rule); background: var(--paper-2); display: grid; place-items: center; flex-shrink: 0; font-size: 16px; }
.contact-info-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; color: var(--ink-3); }
.contact-info-val { margin-top: 3px; font-size: 14px; font-weight: 600; color: var(--ink); }
.contact-info-sub { margin-top: 2px; font-size: 13px; color: var(--ink-2); }

/* Stat highlight (about page sidebar) */
.stat-highlight { background: var(--white); border: 1px solid var(--rule); border-top: 3px solid var(--ink); padding: 20px 24px; }
.sh-val   { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 900; color: var(--ink); }
.sh-label { margin-top: 4px; font-size: 13px; color: var(--ink-2); }

/* Compare table (pricing page) */
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th { text-align: left; padding: 10px 14px; font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); border-bottom: 2px solid var(--navy); }
.compare-table td { padding: 13px 14px; border-bottom: 1px solid var(--rule); color: var(--ink-2); }
.compare-table td:first-child { font-weight: 600; color: var(--ink); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--paper-2); }
.ct-yes   { color: var(--green); font-weight: 700; font-family: 'IBM Plex Mono', monospace; font-size: 13px; }
.ct-no    { color: var(--red);   font-family: 'IBM Plex Mono', monospace; font-size: 13px; }

/* Pricing calc band (pricing page) */
.calc-band { background: var(--navy); border: none; padding: 36px 40px; display: grid; gap: 24px; }
@media(min-width:640px){ .calc-band-inner { grid-template-columns: 1fr 1fr; align-items: center; } }
.calc-input-dark { width: 100%; appearance: none; height: 4px; background: rgba(255,255,255,.15); outline: none; accent-color: var(--turquoise); cursor: pointer; margin-top: 8px; }
.calc-range-lbl-dark { display: flex; justify-content: space-between; font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: rgba(255,255,255,.45); margin-top: 4px; }
.calc-result-dark { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 900; color: var(--turquoise); margin-top: 6px; }
.calc-note-dark { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: rgba(255,255,255,.4); margin-top: 3px; }

/* ── Utilities added for sub-pages ── */
.form-hint { font-size:11px; color:var(--ink-3); font-family:"IBM Plex Mono",monospace; }
.section { padding:56px 0; }
.section-sm { padding:40px 0; }
.container { max-width:var(--max-w); margin:0 auto; padding:0 24px; }
.section-sub { margin-top:12px; font-size:16px; color:var(--ink-2); max-width:600px; line-height:1.7; }
