/* ============================================================
 * TOKENS
 * ============================================================ */
:root {
  --ink:        #0A0A0B;
  --ink-2:      #1A1A1D;
  --ink-3:      #2A2A2E;
  --paper:      #FFFFFF;
  --paper-2:    #F4F4F2;
  --bone:       #FAFAF8;
  --line:       rgba(10,10,11,0.14);
  --line-soft:  rgba(10,10,11,0.08);
  --line-dark:  rgba(244,239,230,0.14);
  --muted:      rgba(10,10,11,0.58);
  --muted-dark: rgba(244,239,230,0.62);

  --blue:       #0655FF;
  --blue-2:     #0444CC;
  --blue-tint:  #DCE5FF;
  --blue-deep:  #03257A;
  --signal:     #B5FF3C;

  /* Tier accent registers — encode meaning, not decoration */
  --tier-red:    #B91C1C;       /* Not Ready — sober rust-red */
  --tier-red-bg: #FDF3EF;
  --tier-amb:    #B45309;       /* Partially Ready — amber */
  --tier-amb-bg: #FDF7EC;
  --tier-grn:    #15803D;       /* Ready to Build — deep green */
  --tier-grn-bg: #ECF6EF;

  --r-sm: 4px;
  --r:    8px;
  --r-lg: 14px;
  --r-xl: 22px;

  --container: 1240px;
  --gutter: 32px;

  --font-sans:  "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-serif: "IBM Plex Serif", "Times New Roman", serif;

  --t1: cubic-bezier(.2,.7,.2,1);
  --t2: cubic-bezier(.7,0,.3,1);
}

/* ============================================================
 * RESET / BASE
 * ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font: 400 17px/1.5 var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

::selection { background: var(--blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px;
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none;
}
.skip:focus { left: 16px; top: 16px; z-index: 9999; }

/* ============================================================
 * LAYOUT
 * ============================================================ */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ============================================================
 * TYPE PRIMITIVES
 * ============================================================ */
.eyebrow {
  font: 500 11px/1.3 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .sq {
  display: inline-block; width: 6px; height: 6px;
  background: var(--blue);
}
.eyebrow.on-dark { color: var(--muted-dark); }

.h-display {
  font: 500 clamp(40px, 6vw, 84px)/0.98 var(--font-sans);
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.h-section {
  font: 500 clamp(30px, 3.6vw, 52px)/1.04 var(--font-sans);
  letter-spacing: -0.030em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.h-card {
  font: 500 22px/1.25 var(--font-sans);
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
em, .italic-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.lede {
  font: 400 clamp(18px, 1.35vw, 21px)/1.45 var(--font-sans);
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
}
.mono { font-family: var(--font-mono); font-feature-settings: "tnum"; }

/* ============================================================
 * HEADER (minimal — page is noindex)
 * ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.brand-mark {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  border-radius: 4px;
  font: 600 11px/1 var(--font-mono);
}
.brand-name { font-weight: 600; letter-spacing: -0.01em; font-size: 16px; }
.path-crumb {
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  display: none;
}
@media (min-width: 720px) { .path-crumb { display: inline-flex; } }

/* ============================================================
 * TIER SWITCHER — prototype-only control.
 * Production: REMOVE this control. Tier is rendered server-side.
 * ============================================================ */
.tier-switcher {
  position: fixed;
  bottom: 18px; left: 18px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink-3);
  border-radius: 999px;
  padding: 6px;
  display: inline-flex; align-items: center; gap: 4px;
  box-shadow: 0 30px 60px -30px rgba(10,10,11,0.45),
              0 2px 6px rgba(10,10,11,0.10);
  font: 500 11px/1 var(--font-mono);
}
.tier-switcher .ts-label {
  padding: 0 10px 0 12px;
  color: var(--muted-dark);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.tier-switcher button {
  background: transparent;
  color: rgba(255,255,255,0.78);
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 200ms var(--t1), color 200ms var(--t1);
  min-height: 32px;
}
.tier-switcher button:hover { color: #fff; background: rgba(255,255,255,0.06); }
.tier-switcher button[aria-pressed="true"] {
  background: #fff; color: var(--ink);
}

/* ============================================================
 * TIER-AWARE STYLING — driven by body[data-tier]
 * ============================================================ */
body[data-tier="not"]      { --tier: var(--tier-red); --tier-bg: var(--tier-red-bg); --tier-name: "Not Ready Yet"; }
body[data-tier="partially"]{ --tier: var(--tier-amb); --tier-bg: var(--tier-amb-bg); --tier-name: "Partially Ready"; }
body[data-tier="ready"]    { --tier: var(--tier-grn); --tier-bg: var(--tier-grn-bg); --tier-name: "Ready to Build"; }

/* Show only the active tier's variant block */
.tv { display: none; }
body[data-tier="not"]       .tv-not        { display: block; }
body[data-tier="partially"] .tv-partially  { display: block; }
body[data-tier="ready"]     .tv-ready      { display: block; }

/* ============================================================
 * SECTION 1 — HERO
 * ============================================================ */
.hero {
  padding: 96px 0 84px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* faint diagnostic grid moment, in the negative space */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px) 0 0 / 80px 100%,
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px) 0 0 / 100% 80px;
  mask-image: radial-gradient(ellipse at 85% 30%, #000 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 85% 30%, #000 0%, transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
  position: relative;
}
@media (max-width: 960px) {
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.diag-meta {
  display: inline-flex; align-items: center; gap: 14px;
  font: 500 11px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin: 0 0 28px;
  flex-wrap: wrap;
}
.diag-meta .dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--signal);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(181,255,60,0.18);
}
.diag-meta .sep { color: rgba(10,10,11,0.32); }

.tier-line {
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.tier-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--tier-bg);
  color: var(--tier);
  border: 1px solid color-mix(in srgb, var(--tier) 22%, transparent);
  font: 500 11px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin: 0 0 26px;
}
.tier-badge .glyph {
  width: 10px; height: 10px;
  display: inline-block;
}
/* Non-color affordances for tier register — glyph shape encodes meaning, not color */
body[data-tier="not"]       .tier-badge .glyph { background: currentColor; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><rect x="0" y="4" width="10" height="2"/></svg>') center/contain no-repeat; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><rect x="0" y="4" width="10" height="2"/></svg>') center/contain no-repeat; }
body[data-tier="partially"] .tier-badge .glyph { background: currentColor; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><rect x="0" y="2" width="10" height="2"/><rect x="0" y="6" width="6" height="2"/></svg>') center/contain no-repeat; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><rect x="0" y="2" width="10" height="2"/><rect x="0" y="6" width="6" height="2"/></svg>') center/contain no-repeat; }
body[data-tier="ready"]     .tier-badge .glyph { background: currentColor; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="1,5 4,8 9,2" fill="none" stroke="black" stroke-width="2"/></svg>') center/contain no-repeat; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="1,5 4,8 9,2" fill="none" stroke="black" stroke-width="2"/></svg>') center/contain no-repeat; }

.hero h1 {
  font: 500 clamp(44px, 6.4vw, 92px)/0.96 var(--font-sans);
  letter-spacing: -0.038em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero h1 .tier-name {
  color: var(--tier);
}
.hero h1 .tier-name em {
  /* tier name remains in sans — italic moments are reserved for phrase accents below */
  font-family: var(--font-sans); font-style: normal;
}
.hero .sub {
  font: 400 clamp(18px, 1.35vw, 21px)/1.5 var(--font-sans);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 36px;
}
.hero .sub .score {
  color: var(--ink);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15em;
}

.hero-anchor-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 12px;
}

/* ============================================================
 * 5-DIMENSION DIAGNOSTIC
 * Compact diagnostic — labelled bars with per-dimension scores.
 * Lower scores are visually emphasised as gap areas.
 * ============================================================ */
.diag {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  position: relative;
}
.diag-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.diag-head .title {
  font: 500 11px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.diag-head .count {
  font: 500 11px/1 var(--font-mono);
  color: var(--ink);
  letter-spacing: 0.04em;
}
.dim-list { list-style: none; padding: 0; margin: 0; }
.dim {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 6px 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.dim:last-child { border-bottom: 0; padding-bottom: 4px; }
.dim .name {
  font: 500 15px/1.2 var(--font-sans);
  letter-spacing: -0.01em;
}
.dim .val {
  font: 500 14px/1 var(--font-mono);
  font-feature-settings: "tnum";
  color: var(--ink);
  white-space: nowrap;
}
.dim .val .of { color: var(--muted); font-weight: 400; }
.dim .bar {
  grid-column: 1 / -1;
  position: relative;
  height: 6px;
  background: var(--paper-2);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}
.dim .bar .fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  background: var(--ink);
  border-radius: 999px;
  transition: width 1.1s var(--t2);
}
.dim.gap .val { color: var(--tier); }
.dim.gap .bar .fill { background: var(--tier); }
.dim.gap .name::after {
  content: "GAP";
  display: inline-block;
  margin-left: 10px;
  padding: 2px 6px;
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.10em;
  color: var(--tier);
  background: var(--tier-bg);
  border-radius: 3px;
  vertical-align: 2px;
}

.diag-foot {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
 * BUTTONS
 * ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font: 500 15px/1 var(--font-sans);
  letter-spacing: -0.005em;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  transition: background 200ms var(--t1), transform 200ms var(--t1), color 200ms var(--t1);
  min-height: 44px;
  cursor: pointer;
}
.btn .arr { transition: transform 200ms var(--t1); display: inline-block; }
.btn:hover { background: var(--ink-2); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--blue); }
.btn-primary:hover { background: var(--blue-2); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--bone); border-color: var(--ink); }
.btn-on-dark {
  background: #fff; color: var(--ink);
}
.btn-on-dark:hover { background: var(--paper-2); }
.btn-tier {
  background: var(--tier); color: #fff;
}
.btn-tier:hover { filter: brightness(0.92); }

/* ============================================================
 * GENERIC SECTION
 * ============================================================ */
.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 720px) { .section { padding: 80px 0; } }

.section.tight { padding: 88px 0; }
.section.on-ink {
  background: var(--ink);
  color: rgba(255,255,255,0.92);
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}
.section.on-ink::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--line-dark) 1px, transparent 1px) 0 0 / 64px 100%,
    linear-gradient(to bottom, var(--line-dark) 1px, transparent 1px) 0 0 / 100% 64px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 75%, transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}
.section.on-ink > .wrap { position: relative; z-index: 1; }
.section.on-bone { background: var(--bone); }

/* ============================================================
 * SECTION 2 — What Your Tier Means
 * Editorial 2-col with side-rail eyebrow.
 * ============================================================ */
.tier-meaning .wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
}
@media (max-width: 960px) {
  .tier-meaning .wrap { grid-template-columns: 1fr; gap: 24px; }
}
.rail {
  position: sticky; top: 96px;
  align-self: start;
  border-left: 1px solid var(--ink);
  padding-left: 16px;
  font: 500 11px/1.4 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.rail .marker {
  color: var(--tier);
  display: block;
  margin-bottom: 6px;
}
.rail .label { color: var(--muted); }

.tier-meaning h2 {
  font: 500 clamp(34px, 4.4vw, 60px)/1.04 var(--font-sans);
  letter-spacing: -0.030em;
  margin: 0 0 36px;
  text-wrap: balance;
  max-width: 18ch;
}
.tier-meaning h2 .em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--tier);
}
.prose p {
  font: 400 18px/1.6 var(--font-sans);
  color: rgba(10,10,11,0.78);
  max-width: 62ch;
  margin: 0 0 22px;
  text-wrap: pretty;
}
.prose p:last-child { margin-bottom: 0; }
.prose p strong {
  font-weight: 500;
  color: var(--ink);
}

/* ============================================================
 * SECTION 3 — Founder Note (dark band)
 * ============================================================ */
.founder .wrap {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.6fr);
  gap: 72px;
  align-items: start;
}
@media (max-width: 960px) {
  .founder .wrap { grid-template-columns: 1fr; gap: 40px; }
}
.founder-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #1A1A1D;
  aspect-ratio: 4/5;
  max-width: 380px;
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.founder-photo .cap {
  position: absolute;
  bottom: 14px; left: 14px;
  padding: 6px 10px;
  background: rgba(10,10,11,0.78);
  backdrop-filter: blur(6px);
  font: 500 10px/1 var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #fff;
  border-radius: 4px;
}
.founder-photo .corner {
  position: absolute;
  right: 10px; bottom: 10px;
  width: 14px; height: 14px;
  border-right: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.founder-body { padding-top: 8px; }
.founder-quote {
  position: relative;
  padding: 0;
  margin: 0 0 28px;
}
.founder-quote::before {
  content: "\201C";
  position: absolute;
  left: -8px; top: -36px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 96px;
  line-height: 1;
  color: var(--blue);
}
.founder-quote p {
  font: 400 clamp(20px, 1.7vw, 26px)/1.5 var(--font-sans);
  color: #fff;
  max-width: 62ch;
  margin: 0 0 22px;
  text-wrap: pretty;
}
.founder-quote p:last-child { margin-bottom: 0; }
.founder-attrib {
  margin-top: 36px;
  display: flex; align-items: center; gap: 14px;
  font: 500 12px/1.4 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted-dark);
}
.founder-attrib .hairline {
  width: 36px; height: 1px;
  background: rgba(244,239,230,0.4);
}
.founder-attrib strong {
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
}

/* ============================================================
 * SECTION 4 — Tier CTA + Report Download
 * ============================================================ */
.cta-split .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 880px) {
  .cta-split .wrap { grid-template-columns: 1fr; }
}
.cta-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 36px 36px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.cta-card .topmark {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tier);
}
.cta-card.cta-report .topmark { background: var(--ink); }
.cta-card .mono-label {
  font: 500 11px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-bottom: 22px;
}
.cta-card h3 {
  font: 500 clamp(24px, 2vw, 30px)/1.15 var(--font-sans);
  letter-spacing: -0.020em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.cta-card p.sub {
  font: 400 16px/1.5 var(--font-sans);
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 52ch;
}
.cta-card .actions {
  margin-top: auto;
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}

/* PDF preview thumbnail — inline SVG schematic */
.pdf-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.pdf-thumb svg { width: 100%; height: 100%; display: block; }
.pdf-thumb .pages {
  position: absolute;
  bottom: 12px; right: 12px;
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(4px);
  padding: 6px 8px;
  border-radius: 4px;
}

/* Email-the-report form */
.email-form {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 12px;
  width: 100%;
}
.email-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.input {
  flex: 1; min-width: 200px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  font: 400 15px/1.3 var(--font-sans);
  color: var(--ink);
  min-height: 44px;
}
.input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(6,85,255,0.18);
}
.email-form .feedback {
  font: 500 12px/1.4 var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
  min-height: 18px;
}
.email-form .feedback.error { color: var(--tier-red); }
.email-form .feedback.ok    { color: var(--tier-grn); }

/* ============================================================
 * SECTION 5 — Quick Question
 * ============================================================ */
.quick-q {
  background: var(--paper);
}
.quick-q .wrap {
  max-width: 760px;
  text-align: left;
}
.quick-q h2 {
  font: 500 clamp(28px, 3vw, 42px)/1.1 var(--font-sans);
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-wrap: balance;
  max-width: 22ch;
}
.q-label {
  font: 500 15px/1.4 var(--font-sans);
  margin: 0 0 12px;
  color: var(--ink);
}
.select-wrap {
  position: relative;
  max-width: 540px;
}
.select-wrap select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding: 14px 44px 14px 16px;
  font: 400 15px/1.3 var(--font-sans);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  min-height: 48px;
  cursor: pointer;
}
.select-wrap select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(6,85,255,0.18);
}
.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%; right: 18px;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.q-feedback {
  margin-top: 14px;
  font: 500 12px/1.4 var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--tier-grn);
  min-height: 18px;
}

/* ============================================================
 * SECTION 6 — Share
 * ============================================================ */
.share .wrap {
  max-width: 920px;
}
.share h2 {
  font: 500 clamp(30px, 3.4vw, 48px)/1.05 var(--font-sans);
  letter-spacing: -0.028em;
  margin: 0 0 28px;
  text-wrap: balance;
  max-width: 18ch;
}
.share-body {
  font: 400 18px/1.6 var(--font-sans);
  color: rgba(10,10,11,0.78);
  margin: 0 0 36px;
  max-width: 64ch;
  text-wrap: pretty;
}
.share-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.share-feedback {
  margin-left: 4px;
  align-self: center;
  font: 500 12px/1 var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--tier-grn);
  opacity: 0; transform: translateY(4px);
  transition: opacity 220ms var(--t1), transform 220ms var(--t1);
}
.share-feedback.shown { opacity: 1; transform: translateY(0); }

/* ============================================================
 * MINIMAL FOOTER
 * Treatment lifted from the brand's site footer (ink band,
 * mono micro labels, hairline divider, 3-col bottom row).
 * Multi-column body intentionally omitted per archetype spec.
 * ============================================================ */
.foot {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 32px;
  border-top: 0;
}
.foot .wrap { position: relative; }

/* Top row: brand + tagline (no service columns by design) */
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
  align-items: end;
}
@media (max-width: 720px) {
  .foot-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
}
.foot-brand-logo {
  display: inline-block;
  margin-bottom: 22px;
}
.foot-brand-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.foot-tag {
  font: 400 14px/1.6 var(--font-sans);
  color: var(--muted-dark);
  max-width: 42ch;
  margin: 0;
}
/* Right column on the top row — quiet status readout */
.foot-status {
  justify-self: end;
  text-align: right;
  font: 500 11px/1.5 var(--font-mono);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
@media (max-width: 720px) {
  .foot-status { justify-self: start; text-align: left; }
}
.foot-status .row {
  display: flex; gap: 8px; align-items: center;
  justify-content: flex-end;
}
@media (max-width: 720px) {
  .foot-status .row { justify-content: flex-start; }
}
.foot-status .row + .row { margin-top: 6px; }
.foot-status .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(181,255,60,0.15);
}
.foot-status .val { color: var(--bone); }

/* Bottom row: copyright LEFT · brand-mark CENTER · legal RIGHT */
.foot-bot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 28px;
  gap: 16px;
  font: 500 11px/1.4 var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--muted-dark);
}
.foot-bot > :first-child  { justify-self: start; }
.foot-bot > :nth-child(2) { justify-self: center; }
.foot-bot > :last-child   { justify-self: end; }
.foot-bot .legal {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.foot-bot a {
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 200ms var(--t1), border-color 200ms var(--t1);
}
.foot-bot a:hover { color: #7AA0FF; border-bottom-color: currentColor; }
.foot-bot .mark {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.foot-bot .mark .sq {
  display: inline-block; width: 6px; height: 6px;
  background: var(--blue);
}
@media (max-width: 720px) {
  .foot-bot {
    grid-template-columns: 1fr;
    justify-items: start; gap: 14px;
  }
  .foot-bot > :first-child,
  .foot-bot > :nth-child(2),
  .foot-bot > :last-child { justify-self: start; }
}

/* ============================================================
 * MOTION — fade-up on entry, single-shot, reduced-motion safe
 * ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--t1), transform 700ms var(--t1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .dim .bar .fill { transition: none !important; }
}

/* ============================================================
 * ACCESS-GATE FALLBACK (prototype hidden; WordPress dev hooks)
 * ============================================================ */
.access-fallback { display: none; }