@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Manrope:wght@400;600;800;900&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  /* ── Unified Blueprint palette ──────────────────────
     Single source of truth, mirrored from the served Blueprint
     (netlify/functions/blueprint-template.js). The whole site sits
     on these values so marketing and the product read as one system. */
  --navy:     #061528;   /* deep navy — page + dark surfaces           */
  --navy-2:   #0B2748;   /* raised navy panel                          */
  --navy2:    #0B2748;   /* Blueprint-name alias                       */
  --blue:     #1A6FEF;   /* bright ACTION blue — CTAs, links, accents  */
  --cyan:     #6DB1FF;   /* light blue — accents/glow on dark surfaces */
  --cream:    #EEF2F7;   /* light section background                   */
  --paper:    #FFFFFF;   /* card surface                               */
  --ink:      #172033;   /* body text on light                         */
  --mid:      #5E7184;   /* secondary text on light                    */
  --line-light: #DCE4F0; /* hairline on light surfaces                 */

  /* ── Status / annotation accents (STOP · WATCH · TIP) ── */
  --stop:     #E5484D;
  --watch:    #E8910C;
  --tip:      #1A6FEF;

  /* ── Typography ── */
  --disp: 'Manrope', Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --body: 'Inter', Arial, Helvetica, sans-serif;

  /* ── Back-compat aliases (kept so existing rules don't drift) ── */
  --blue-2:   #6DB1FF;   /* legacy name for --cyan                     */
  --blue-deep:#1A6FEF;   /* legacy name for --blue                     */
  --white:    #FFFFFF;
  --soft-sky: #DCEBFF;
  --pale:     #F4F7FB;
  --slate:    #8FA3BF;
  --line:     rgba(255,255,255,0.12);  /* dark-surface hairline        */
  --shadow:   0 8px 32px rgba(6,21,40,0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 17px;
  background: var(--navy);
  color: var(--cream);
  line-height: 1.65;
}

a { color: inherit; }

/* ─── Header ─────────────────────────────────────── */

/* Matches the Blueprint top bar — solid navy, Manrope wordmark with a
   cyan accent, IBM Plex Mono nav, so marketing + product read as one system.
   Text colours are explicit (not inherited) so the bar stays legible no
   matter what the page body colour is. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(16px, 5vw, 80px);
  min-height: 64px;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(109, 177, 255, 0.2);
}

.site-header.light {
  background: rgba(244, 247, 251, 0.95);
  color: var(--navy);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-light);
}

.brand {
  font-family: var(--disp);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: #fff;
}

.site-header.light .brand { color: var(--navy); }

.brand-blue,
footer span {
  color: var(--cyan);
}

nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.66);
  padding: 8px 13px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }

.site-header.light nav a { color: var(--mid); }
.site-header.light nav a:hover { color: var(--navy); background: rgba(6, 21, 40, 0.05); }

.nav-cta {
  margin-left: 6px;
  padding: 9px 16px !important;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
  opacity: 1 !important;
  font-weight: 600;
}

.nav-cta:hover { background: #1560D6 !important; color: #fff !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: inherit;
  font-size: 26px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* ─── Hero ───────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: start;
  gap: 56px;
  padding: 100px clamp(20px, 5vw, 80px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(26, 111, 239, 0.20), transparent 40%),
    radial-gradient(circle at 10% 75%, rgba(109, 177, 255, 0.10), transparent 30%),
    linear-gradient(160deg, #06182D 0%, #071A2F 60%, #040E1C 100%);
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109,177,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,177,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
  z-index: -1;
}

.hero-content {
  z-index: 1;
}

.eyebrow,
p.eyebrow,
.form-intro p.eyebrow,
.pricing-hero p.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--blue-2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  line-height: 1.4;
  margin: 0 0 20px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}

.eyebrow.centre {
  display: inline-flex;
}
.centre > .eyebrow,
h2.centre + .eyebrow,
.eyebrow.centre { /* keep centred-section eyebrows centred even with flex */ }

h1, h2, h3 {
  margin-top: 0;
  font-family: 'Manrope', Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  margin-bottom: 28px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 18px;
}

h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* ─── Architectural metadata system ──────────────── */

.sheet-code,
.title-block,
.dim-note {
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.sheet-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--blue-2);
  margin: 0 0 28px;
  padding: 0;
}

.sheet-code::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--blue-2);
  opacity: 0.6;
}

.sheet-code .sc-num {
  color: var(--blue-2);
  font-weight: 600;
}

.sheet-code .sc-label {
  color: var(--cream);
  opacity: 0.7;
}

.title-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--blue-2);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 10px 16px;
  background: rgba(7,26,47,0.55);
}

.title-block span { opacity: 0.7; color: var(--cream); }
.title-block strong { color: var(--blue-2); font-weight: 600; }

/* Door Swing mark */
.door-swing {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  flex-shrink: 0;
}
.door-swing .panel { stroke: currentColor; stroke-width: 2; fill: none; }
.door-swing .arc   { stroke: currentColor; stroke-width: 1.4; stroke-dasharray: 3 3; fill: none; }
.door-swing .pivot { fill: var(--blue-deep); }

.hero-corner-mark {
  position: absolute;
  top: 28px;
  left: clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--blue-2);
  text-transform: uppercase;
  z-index: 2;
}
.hero-corner-mark .door-swing { color: var(--blue-2); width: 18px; height: 18px; }
.hero-corner-mark .rule { width: 28px; height: 1px; background: var(--blue-2); opacity: 0.6; }

/* ── Blueprint grid background (drafting paper) ──────
   .bp-grid for light surfaces, .bp-grid-dark for navy.
   34px module matches the served Blueprint. */
.bp-grid {
  background-image:
    linear-gradient(rgba(26,111,239,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,111,239,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}
.bp-grid-dark {
  background-image:
    linear-gradient(rgba(109,177,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,177,255,0.07) 1px, transparent 1px);
  background-size: 34px 34px;
}

/* ── Dimension-line divider ──────────────────────────
   Architectural measurement rule with end ticks and a
   centred mono label. Use between sections.
   <div class="dim-divider"><span class="dim-line"></span>
     <span>B · SEE IT</span><span class="dim-line"></span></div> */
.dim-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--blue-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dim-divider .dim-line {
  flex: 1;
  height: 7px;
  position: relative;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: 0.45;
}
.dim-divider .dim-line::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: currentColor;
}

/* ── Annotation balloon ──────────────────────────────
   A drafting-style callout that points at the thing it
   annotates. <aside class="annotation"><span class="anno-tag">
   Note</span>…copy…</aside> */
.annotation {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
  box-shadow: 0 8px 26px rgba(6,21,40,0.12);
}
.annotation .anno-tag {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 5px;
}
.annotation::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: var(--paper);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transform: rotate(45deg);
}
.annotation.anno-up::after {
  bottom: auto;
  top: -8px;
  border: none;
  border-left: 1px solid var(--line-light);
  border-top: 1px solid var(--line-light);
}

/* ── Light-background section overrides ─────────────
   On cream/white surfaces, ink-cyan loses contrast; switch to
   navy + deep-blue, matching real architectural drawing convention. */
.intro .eyebrow,
.steps .eyebrow,
.split .eyebrow,
.founder .eyebrow,
.faq .eyebrow,
.testimonials .eyebrow,
.pricing-section .eyebrow {
  color: var(--blue-deep);
}

.intro .sheet-code .sc-num,
.steps .sheet-code .sc-num,
.split .sheet-code .sc-num,
.founder .sheet-code .sc-num,
.faq .sheet-code .sc-num,
.testimonials .sheet-code .sc-num,
.pricing-section .sheet-code .sc-num { color: var(--blue-deep); }

.intro .sheet-code,
.steps .sheet-code,
.split .sheet-code,
.founder .sheet-code,
.faq .sheet-code,
.testimonials .sheet-code,
.pricing-section .sheet-code { color: var(--blue-deep); }

.intro .sheet-code .sc-label,
.steps .sheet-code .sc-label,
.split .sheet-code .sc-label,
.founder .sheet-code .sc-label,
.faq .sheet-code .sc-label,
.testimonials .sheet-code .sc-label,
.pricing-section .sheet-code .sc-label {
  color: var(--ink);
  opacity: 0.75;
}

.intro .sheet-code::before,
.steps .sheet-code::before,
.split .sheet-code::before,
.founder .sheet-code::before,
.faq .sheet-code::before,
.testimonials .sheet-code::before,
.pricing-section .sheet-code::before {
  background: var(--blue-deep);
  opacity: 0.6;
}

.hero-copy {
  color: var(--cream);
  font-size: clamp(18px, 1.8vw, 22px);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

/* ─── Meter (shared) ─────────────────────────────── */

.meter {
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-2);
}

/* ─── Report Preview (hero right column) ─────────── */

.report-preview {
  z-index: 1;
  background: rgba(11, 39, 72, 0.85);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(20px);
  font-size: 13px;
}

.rp-header {
  background: rgba(26,111,239,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 16px 20px;
}

.rp-badge {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-2);
  margin-bottom: 6px;
}

.rp-profile {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.rp-body {
  padding: 20px;
  display: grid;
  gap: 18px;
}

.rp-score-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.rp-score-row span { font-size: 12px; opacity: 0.65; }

.rp-score-row strong {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
}

.rp-band {
  display: block;
  font-size: 11px;
  color: var(--blue-2);
  margin-top: 7px;
}

.rp-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}

.rp-budget-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 13px;
}

.rp-budget-row span { opacity: 0.65; }

.rp-budget-row strong {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.rp-budget-note {
  margin: 0;
  font-size: 12px;
  color: var(--cream);
  opacity: 0.65;
  line-height: 1.5;
}

.rp-section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--slate);
  margin: 0 0 12px;
}

.rp-area {
  margin-bottom: 12px;
}

.rp-area:last-child { margin-bottom: 0; }

.rp-area-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.rp-area strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.rp-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}

.rp-tag.good {
  background: rgba(16,185,129,0.18);
  color: #34D399;
}

.rp-tag.ok {
  background: rgba(245,158,11,0.18);
  color: #FCD34D;
}

.rp-area p {
  margin: 0;
  opacity: 0.6;
  line-height: 1.45;
  font-size: 12px;
}

.rp-risks {
  display: grid;
  gap: 8px;
}

.rp-risk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--cream);
  opacity: 0.8;
  line-height: 1.45;
}

.rp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.rp-dot.amber { background: #F59E0B; }
.rp-dot.green { background: #10B981; }
.rp-dot.blue  { background: var(--blue-2); }

.rp-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 20px;
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  font-weight: 600;
}

/* ─── Buttons ────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.button:hover { opacity: 0.88; transform: translateY(-1px); }

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 20px rgba(26, 111, 239, 0.30);
}

.button.ghost {
  border-color: rgba(255,255,255,0.22);
  color: var(--cream);
  background: rgba(255,255,255,0.05);
}

/* ─── Sections ───────────────────────────────────── */

.section {
  padding: 96px clamp(20px, 7vw, 100px);
}

.intro {
  background: white;
  color: var(--ink);
}

.section-copy {
  max-width: 760px;
}

.section-copy p {
  font-size: 1.15rem;
  opacity: 0.8;
}

.centre { text-align: center; }

/* ─── Steps (How it works) ───────────────────────── */

.steps {
  background: var(--pale);
  color: var(--ink);
}

.steps-list {
  margin-top: 56px;
}

.step-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  padding: 44px 0;
  border-top: 1px solid var(--line-light);
}

.step-row:last-child {
  border-bottom: 1px solid var(--line-light);
}

.step-num {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--line-light);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}

.step-body h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.step-body p {
  margin: 0;
  color: #4A6077;
  font-size: 1rem;
  max-width: 560px;
}

/* ─── Trust Section ──────────────────────────────── */

.trust {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust h2 { color: var(--white); }

.trust-intro {
  max-width: 680px;
  margin-bottom: 56px;
}

.trust-intro p {
  color: var(--cream);
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.7;
}

.process-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
}

.process-step .p-num {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--blue-2);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.process-step h4 {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.process-step p {
  font-size: 14px;
  color: var(--cream);
  opacity: 0.7;
  margin: 0;
  line-height: 1.55;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-size: 20px;
  color: var(--slate);
  margin-top: 40px;
}

/* ─── Scorecard Check Grid ───────────────────────── */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: white;
  color: var(--ink);
}

.split p { font-size: 1.1rem; opacity: 0.8; }

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-grid span {
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--pale);
  border: 1px solid var(--line-light);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

/* ─── Full Report CTA ────────────────────────────── */

.report { background: var(--navy); }

.report-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: rgba(26,111,239,0.10);
  border: 1px solid rgba(26,111,239,0.25);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 56px);
}

.report-card h2 { color: var(--white); }
.report-card p { color: var(--cream); opacity: 0.85; }

.included {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.included li {
  padding: 13px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 14px;
  color: var(--cream);
}

.included.dark li {
  background: var(--pale);
  border-color: var(--line-light);
  color: var(--ink);
}

/* ─── Founder Section ────────────────────────────── */

.founder {
  background: var(--pale);
  color: var(--ink);
  padding-top: 64px;
  padding-bottom: 64px;
}

.founder-summary {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 1.1rem;
  color: #4A6077;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
}

.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.founder-card-photo {
  flex: 0 0 150px;
  width: 150px;
}

.founder-card-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.founder-card-copy { flex: 1 1 auto; min-width: 0; }

.founder-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--blue);
  margin: 0 0 8px;
}

.founder-card h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}

.founder-card-copy > p {
  font-size: 15px;
  color: #4A6077;
  line-height: 1.7;
  margin-bottom: 0;
}

.founder-more-link {
  margin: 32px 0 0;
  font-size: 15px;
}

.founder-more-link a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.founder-more-link a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .founder-card {
    flex-direction: column;
  }
  .founder-card-photo {
    width: 100%;
    max-width: 160px;
  }
}

.founder-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.founder-card ul li {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}

.founder-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* ─── FAQ ────────────────────────────────────────── */

.faq {
  background: white;
  color: var(--ink);
}

details {
  max-width: 860px;
  margin: 12px auto;
  background: var(--pale);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 20px 24px;
}

summary {
  font-weight: 800;
  cursor: pointer;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.02em;
}

details p {
  margin: 14px 0 0;
  font-size: 15px;
  color: #4A6077;
  line-height: 1.65;
}

/* ─── Final CTA ──────────────────────────────────── */

.final-cta {
  text-align: center;
  padding: 100px 20px;
  background:
    radial-gradient(circle at center, rgba(26,111,239,0.18), transparent 40%),
    var(--navy);
}

.final-cta h2 { color: var(--white); }
.final-cta p { color: var(--cream); opacity: 0.8; margin-bottom: 32px; }

/* ─── Footer ─────────────────────────────────────── */

footer {
  padding: 40px 20px;
  text-align: center;
  background: #040E1C;
  color: var(--cream);
  border-top: 1px solid var(--line);
}

footer strong {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
}

.small {
  font-size: 13px;
  color: var(--slate);
  margin-top: 8px;
}

/* ─── Form Pages ─────────────────────────────────── */

.page-light {
  background: var(--pale);
  color: var(--ink);
}

.form-page,
.report-page,
.simple-page {
  padding: 70px clamp(20px, 5vw, 80px);
}

.form-intro,
.pricing-hero {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.form-intro h1,
.pricing-hero h1,
.simple-page h1 {
  color: var(--navy);
}

.form-intro p,
.pricing-hero p {
  font-size: 1.05rem;
  color: #4A6077;
}

.scorecard-form,
.thank-you-card,
.pricing-card {
  max-width: 960px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

input, select, textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid #C9D6E6;
  padding: 12px 14px;
  font: inherit;
  background: white;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #4A6077;
}

.checkbox input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.thank-you-card {
  text-align: center;
  max-width: 680px;
}

.thank-you-card h1 { color: var(--navy); }
.thank-you-card p { color: #4A6077; }

.thank-you-card .hero-actions {
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 0;
}

.thank-you-card .button.ghost {
  border-color: rgba(7,26,47,0.22);
  color: var(--navy);
  background: var(--pale);
}

.pricing-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 48px;
  align-items: center;
}

.price {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--navy);
  margin: 6px 0 18px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.comparison {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin: 32px auto 0;
}

.comparison div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: var(--pale);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
}

.comparison span {
  color: var(--blue);
  font-weight: 800;
}

/* ─── Hero Sub (democratisation line) ───────────── */

.hero-sub {
  color: var(--blue-2);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 580px;
  margin: -20px 0 36px;
  line-height: 1.55;
  opacity: 0.9;
  font-style: italic;
}

/* ─── Why Section ────────────────────────────────── */

.why-section {
  background:
    linear-gradient(rgba(109,177,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,177,255,0.06) 1px, transparent 1px),
    var(--navy-2);
  background-size: 34px 34px, 34px 34px, auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-inner {
  max-width: 780px;
}

.why-inner h2 { color: var(--white); }

.why-inner p {
  color: var(--cream);
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ─── Pricing Grid ───────────────────────────────── */

.pricing-section {
  background: var(--pale);
  color: var(--ink);
}

.pricing-section h2 { color: var(--ink); }

.pricing-intro {
  text-align: center;
  font-size: 1.05rem;
  color: #4A6077;
  max-width: 560px;
  margin: 0 auto 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card-tier {
  position: relative;
  background: white;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-card-tier.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 40px rgba(26,111,239,0.18);
}

.pricing-badge {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.tier-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--blue);
  margin: 0 0 10px;
}

.tier-price {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 14px;
}

.tier-desc {
  font-size: 14px;
  color: #4A6077;
  line-height: 1.6;
  margin: 0 0 24px;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line-light);
  padding-top: 24px;
  display: grid;
  gap: 10px;
}

.tier-features li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 28px;
  position: relative;
  line-height: 1.45;
}

.tier-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A6FEF' stroke-width='2'><line x1='4' y1='20' x2='4' y2='4' stroke-linecap='round'/><line x1='4' y1='4' x2='14' y2='4' stroke-linecap='round'/><path d='M20 20 A16 16 0 0 0 4 4' stroke='%236DB1FF' stroke-width='1.2' stroke-dasharray='2.5 2.5'/><circle cx='4' cy='20' r='1.6' fill='%231A6FEF'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

.pricing-footnote {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #4A6077;
}

.pricing-footnote a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

/* ─── Blog ───────────────────────────────────────── */

.blog-page {
  padding: 70px clamp(20px, 5vw, 80px);
}

.blog-hero {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.blog-hero h1 { color: var(--navy); }

.blog-hero p {
  font-size: 1.1rem;
  color: #4A6077;
}

.blog-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  background: white;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(7,26,47,0.12);
}

.blog-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--blue);
  margin: 0 0 14px;
}

.blog-card h2 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.blog-card p {
  font-size: 14px;
  color: #4A6077;
  line-height: 1.6;
  margin: 0 0 20px;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

.blog-coming-soon {
  max-width: 960px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
  color: #4A6077;
  padding: 28px;
  background: var(--pale);
  border: 1px dashed var(--line-light);
  border-radius: 14px;
}

/* ─── Responsive ─────────────────────────────────── */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .report-preview {
    max-height: 520px;
    overflow-y: auto;
  }

  .rp-area:nth-child(3) {
    display: none;
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .report-card,
  .pricing-card,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .step-row {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .step-num {
    font-size: 52px;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--navy);
    padding: 16px clamp(20px, 5vw, 80px);
    gap: 6px;
    border-bottom: 1px solid rgba(109, 177, 255, 0.2);
  }

  .site-header.light nav {
    background: rgba(244, 247, 251, 0.97);
    border-bottom-color: var(--line-light);
  }

  nav.nav-open { display: flex; }

  .hamburger { display: block; }
}

/* ─── Price Anchor Strip ──────────────────────────── */

.price-anchor-strip {
  background: var(--navy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px clamp(20px, 7vw, 100px);
  text-align: center;
}

.price-anchor-strip p {
  margin: 0;
  color: var(--cream);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
}

.price-anchor-strip strong {
  color: var(--white);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
  opacity: 1;
}

.price-anchor-accent {
  color: var(--blue-2);
  font-weight: 700;
}

/* ─── Testimonials ────────────────────────────────── */

.testimonials {
  background: white;
  color: var(--ink);
  padding: 96px clamp(20px, 7vw, 100px);
}

.testimonials h2 { color: var(--ink); text-align: center; }

.testimonials > .eyebrow { text-align: center; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: var(--pale);
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 16px 16px 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
  margin: 0;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}

/* ─── Report Preview Container + Social Proof Badge ─ */

.report-preview-container {
  position: relative;
  z-index: 1;
}

.social-proof-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: white;
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(7,26,47,0.22);
  max-width: 230px;
  border: 1px solid var(--line-light);
  animation: fadeSlideUp 0.7s ease 0.5s both;
}

.spb-stars {
  color: #F59E0B;
  font-size: 12px;
  margin: 0 0 6px;
}

.spb-quote {
  color: var(--navy);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 6px;
}

.spb-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--slate);
}

/* ─── Hero Secondary Link ─────────────────────────── */

.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s;
  align-self: center;
}

.hero-secondary-link:hover { opacity: 1; text-decoration: underline; }

/* ─── Delivery Badge on pricing cards ────────────── */

.delivery-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #0FA66A;
  background: rgba(15, 166, 106, 0.08);
  border: 1px solid rgba(15, 166, 106, 0.20);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 4px;
}

/* ─── Report Preview Entrance Animation ──────────── */

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.report-preview {
  animation: fadeSlideUp 0.65s ease 0.1s both;
}

@media (prefers-reduced-motion: reduce) {
  .report-preview,
  .social-proof-badge { animation: none; }
}

/* ─── Scorecard Wizard ────────────────────────────── */

.wizard-header {
  max-width: 960px;
  margin: 0 auto 28px;
}

.wizard-progress {
  background: white;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
}

.wizard-step-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wizard-progress-track {
  height: 6px;
  background: var(--line-light);
  border-radius: 999px;
  overflow: hidden;
}

.wizard-progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: inherit;
  transition: width 0.35s ease;
}

.wizard-step { display: none; }
.wizard-step.active { display: block; }

.wizard-step-title {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}

.wizard-nav .button.ghost {
  border-color: var(--line-light);
  color: var(--slate);
  background: transparent;
}

.field-error {
  display: block;
  color: #DC2626;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

input.input-error,
select.input-error,
textarea.input-error {
  border-color: #DC2626;
}

/* ─── Adrian Profile (schools.html) ──────────────── */

.adrian-profile {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px clamp(24px, 5vw, 56px);
  max-width: 1000px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.adrian-profile-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--blue-2);
  margin: 0 0 12px;
}

.adrian-profile h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}

.adrian-profile-bio {
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 16px;
}

.adrian-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.adrian-credentials li {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.9;
  padding-left: 18px;
  position: relative;
}

.adrian-credentials li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue-2);
}

.adrian-quote {
  background: rgba(26, 111, 239, 0.10);
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
  padding: 28px 32px;
}

.adrian-quote blockquote {
  font-style: italic;
  color: var(--cream);
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
}

.adrian-quote cite {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-2);
  font-style: normal;
}

/* ─── Sample School Table ─────────────────────────── */

.school-table-wrap {
  max-width: 1000px;
  margin: 0 auto 42px;
  background: white;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.school-table-header {
  background: var(--navy);
  padding: 24px 32px;
}

.school-table-header .eyebrow { margin-bottom: 6px; }

.school-table-header h3 {
  color: var(--white);
  margin: 0;
  font-size: 18px;
}

.school-table {
  width: 100%;
  border-collapse: collapse;
}

.school-table th {
  background: var(--pale);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-light);
}

.school-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-light);
  vertical-align: top;
  line-height: 1.5;
}

.school-table tr:last-child td { border-bottom: none; }
.school-table tbody tr:hover { background: var(--pale); }

.ofsted-outstanding {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(15,166,106,0.12);
  color: #0FA66A;
  font-weight: 700;
  font-size: 12px;
}

.ofsted-good {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(26,111,239,0.10);
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}

.catchment-yes { color: #0FA66A; font-weight: 700; }
.catchment-no  { color: #DC2626; font-weight: 700; }

.school-table-note {
  padding: 14px 24px;
  font-size: 13px;
  color: var(--slate);
  background: var(--pale);
  border-top: 1px solid var(--line-light);
  font-style: italic;
}

/* ─── Founder avatar placeholder ─────────────────── */

.founder-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.trust-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ─── Corporate strip (below pricing) ────────────── */

.corporate-strip {
  max-width: 1100px;
  margin: 32px auto 0;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 32px;
}

.corporate-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ─── Responsive additions ────────────────────────── */

@media (max-width: 960px) {
  .social-proof-badge { display: none; }

  .adrian-profile {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }

  .checklist-form { flex-direction: column; }

  .school-table th,
  .school-table td { padding: 12px 14px; font-size: 13px; }
}

/* ─── Cookie consent banner ──────────────────────── */

#mv-cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  padding: 16px;
  background: rgba(7, 26, 47, 0.96);
  color: var(--cream);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}
#mv-cookie-banner .mv-cc-box {
  max-width: 1080px;
  margin: 0 auto;
}
#mv-cookie-banner h2 {
  font-size: 18px;
  font-family: 'Manrope', Arial, sans-serif;
  margin: 0 0 6px;
  color: var(--white);
}
#mv-cookie-banner p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
  color: var(--cream);
  opacity: 0.92;
}
#mv-cookie-banner .mv-cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
#mv-cookie-banner .mv-cc-link {
  background: none;
  border: none;
  color: var(--blue-2);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px 4px;
}
#mv-cookie-banner .mv-cc-panel {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
#mv-cookie-banner .mv-cc-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#mv-cookie-banner .mv-cc-row:last-of-type { border-bottom: none; }
#mv-cookie-banner .mv-cc-row strong {
  display: block;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 2px;
}
#mv-cookie-banner .mv-cc-row p {
  margin: 0;
  font-size: 13px;
  opacity: 0.75;
}
.mv-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.mv-switch input { opacity: 0; width: 0; height: 0; }
.mv-switch span {
  position: absolute;
  inset: 0;
  background: #2A3D55;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.mv-switch span::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
}
.mv-switch input:checked + span { background: var(--blue); }
.mv-switch input:checked + span::before { transform: translateX(20px); }
.mv-switch input:disabled + span { opacity: 0.55; cursor: not-allowed; }

@media (max-width: 480px) {
  #mv-cookie-banner .mv-cc-actions .button { width: 100%; justify-content: center; }
}

/* ─── Footer legal section ───────────────────────── */

.footer-legal {
  max-width: 980px;
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 13px;
}
.footer-legal-links a,
.footer-legal-links button {
  color: var(--cream);
  opacity: 0.78;
  text-decoration: none;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.footer-legal-links a:hover,
.footer-legal-links button:hover { opacity: 1; text-decoration: underline; }
.footer-legal-company {
  font-size: 12px;
  color: var(--slate);
  margin: 0;
}

/* ─── Newsletter section / inline form ───────────── */

.newsletter-section {
  padding: 72px clamp(20px, 5vw, 80px);
  background: linear-gradient(160deg, #06182D 0%, #071A2F 100%);
  text-align: center;
}
.newsletter-section .eyebrow { justify-content: center; }
.newsletter-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 14px;
  color: var(--white);
}
.newsletter-section > p {
  max-width: 540px;
  margin: 0 auto 28px;
  color: var(--cream);
  opacity: 0.85;
  font-size: 16px;
}
.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter-form .nl-row {
  display: flex;
  gap: 10px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font: inherit;
  font-size: 15px;
  outline: none;
}
.newsletter-form input[type="email"]:focus { border-color: var(--blue-2); }
.newsletter-form .nl-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  text-align: left;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.5;
}
.newsletter-form .nl-consent input { margin-top: 3px; flex-shrink: 0; width: auto; min-height: auto; padding: 0; }
.newsletter-form .nl-success {
  display: none;
  padding: 14px 16px;
  background: rgba(26,111,239,0.15);
  border: 1px solid rgba(109,177,255,0.4);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
}
.newsletter-form .nl-error {
  display: none;
  color: #FFB4A8;
  font-size: 13px;
  text-align: left;
}
@media (max-width: 480px) {
  .newsletter-form .nl-row { flex-direction: column; }
  .newsletter-form .nl-row .button { width: 100%; }
}

/* ─── Legal pages ────────────────────────────────── */

.legal-page {
  background: var(--pale);
  color: var(--ink);
  padding: 60px clamp(20px, 5vw, 80px) 80px;
}
.legal-page .legal-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: clamp(34px, 5vw, 52px);
  color: var(--navy);
  margin: 0 0 8px;
}
.legal-page .legal-meta {
  font-size: 13px;
  color: #6A7B92;
  margin: 0 0 32px;
}
.legal-page h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 36px 0 10px;
  line-height: 1.25;
}
.legal-page h3 {
  font-size: 17px;
  color: var(--navy);
  margin: 22px 0 6px;
  font-family: 'Manrope', Arial, sans-serif;
}
.legal-page p,
.legal-page li {
  font-size: 16px;
  line-height: 1.7;
  color: #2B3A52;
}
.legal-page ul {
  padding-left: 22px;
  margin: 8px 0 16px;
}
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--blue); }
.legal-page strong { color: var(--navy); }
.legal-page .legal-callout {
  background: white;
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 18px 0;
}
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
}
.legal-page th, .legal-page td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-light);
}
.legal-page th { background: white; color: var(--navy); font-weight: 700; }

/* ─── About page ──────────────────────────────────── */

.about-wrap { max-width: 960px; }

.about-hero { margin-bottom: 56px; }
.about-hero h1 { margin-bottom: 36px; }

.about-hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line-light);
}
.about-stat-figure {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 0 0 4px;
}
.about-stat-caption {
  font-size: 14px;
  color: #4A6077;
  margin: 0;
}

.about-story {
  max-width: 720px;
  margin: 0 auto 64px;
}
.about-story p {
  font-size: 1.1rem;
  line-height: 1.75;
}

.about-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}
.about-profile.reverse { grid-template-columns: 1fr 280px; }
.about-profile-photo { min-width: 0; }
.about-profile-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.about-profile-copy { min-width: 0; }
.about-profile h3 {
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 4px;
}
.about-profile .founder-role { margin: 0 0 14px; }

.about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .about-stats { flex-direction: column; gap: 24px; }
  .about-profile,
  .about-profile.reverse {
    grid-template-columns: 1fr;
  }
}

/* ─── Generic form layout (for enquiry / contact) ── */

.mv-form { display: grid; gap: 18px; max-width: 560px; margin: 0 auto; text-align: left; }
.mv-form label.field-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}
.mv-form input[type="text"],
.mv-form input[type="email"],
.mv-form input[type="tel"],
.mv-form input[type="date"],
.mv-form select,
.mv-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1.5px solid var(--line-light);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: var(--navy);
  background: #fff;
  outline: none;
}
.mv-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.mv-form input:focus, .mv-form select:focus, .mv-form textarea:focus {
  border-color: var(--blue);
}
.mv-form .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #4A6077;
  line-height: 1.55;
}
.mv-form .consent input { margin-top: 3px; flex-shrink: 0; width: auto; min-height: auto; padding: 0; }
.mv-form .form-error {
  display: none;
  color: #C0392B;
  font-size: 14px;
}
.honeypot { position: absolute !important; left: -9999px !important; top: -9999px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; overflow: hidden; pointer-events: none; }

/* ═══ Homepage redesign v1 (copy deck) ═══════════════ */

/* Hero trust line under the CTAs */
.hero-actions { margin-bottom: 18px; }
.hero-trustline {
  margin: 0 0 48px;
  font-size: 13px;
  color: var(--blue-2);
  opacity: 0.85;
  font-weight: 600;
}

/* Secondary (outline) button — for light sections */
.button.secondary {
  background: white;
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}
.button.secondary:hover { background: var(--soft-sky); opacity: 1; }

/* ─── See it — the live Blueprint (NEW) ─────────────── */
.seeit {
  background:
    linear-gradient(rgba(109,177,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,177,255,0.06) 1px, transparent 1px),
    linear-gradient(180deg, #06182D 0%, #081E36 100%);
  background-size: 34px 34px, 34px 34px, auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px clamp(20px, 7vw, 100px);
}
.seeit-head { max-width: 640px; margin-bottom: 48px; }
.seeit-head h2 { color: var(--white); }
.seeit-lead {
  color: var(--cream);
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.7;
  margin: 0;
}
.seeit-stage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Interface mock */
.bp-mock {
  background: var(--cream);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.40);
}
.bp-mock-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  padding: 0 18px;
  height: 56px;
  border-bottom: 1px solid rgba(109,177,255,0.2);
}
.bp-wordmark {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.bp-wordmark b { color: var(--blue-2); font-weight: 900; }
.bp-tabs {
  display: flex;
  gap: 3px;
  background: rgba(255,255,255,0.06);
  padding: 4px;
  border-radius: 10px;
  margin: 0 auto;
}
.bp-tabs button {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  padding: 7px 13px;
  border-radius: 7px;
  cursor: default;
}
.bp-tabs button.active { background: var(--blue-2); color: var(--navy); font-weight: 700; }
.bp-readout { display: flex; align-items: center; gap: 8px; color: #fff; flex-shrink: 0; }
.bp-readout span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-2);
}
.bp-readout b { font-family: 'Manrope', Arial, sans-serif; font-weight: 900; font-size: 20px; line-height: 1; }
.bp-mock-body { padding: 22px; }
.bp-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 0 0 16px;
}
.bp-home-grid { display: grid; grid-template-columns: 150px 1fr; gap: 18px; }
.bp-ring-card, .bp-next-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 16px;
}
.bp-ring-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.bp-ph {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 12px;
  align-self: flex-start;
}
.bp-ring { position: relative; width: 110px; height: 110px; }
.bp-ring svg { width: 100%; height: 100%; }
.bp-ring-score {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.bp-ring-score b { font-family: 'Manrope', Arial, sans-serif; font-weight: 900; font-size: 32px; line-height: 1; color: var(--navy); }
.bp-ring-score span { font-family: 'IBM Plex Mono', monospace; font-size: 9px; color: var(--slate); }
.bp-ring-band { font-size: 11px; color: #4A6077; margin: 12px 0 0; line-height: 1.4; }
.bp-next-title { font-family: 'Manrope', Arial, sans-serif; font-weight: 800; font-size: 16px; color: var(--ink); margin: 0 0 6px; letter-spacing: -0.02em; }
.bp-next-body { font-size: 12px; color: #4A6077; line-height: 1.5; margin: 0 0 14px; }
.bp-map {
  position: relative;
  height: 92px;
  border-radius: 10px;
  background: #E8EFF8;
  border: 1px solid var(--line-light);
  overflow: hidden;
}
.bp-map-line, .bp-map-vline { position: absolute; background: rgba(26,111,239,0.12); }
.bp-map-line { left: 0; right: 0; height: 1px; }
.bp-map-line:nth-of-type(1) { top: 26px; }
.bp-map-line:nth-of-type(2) { top: 52px; }
.bp-map-line:nth-of-type(3) { top: 78px; }
.bp-map-vline { top: 0; bottom: 0; width: 1px; }
.bp-map-vline:nth-of-type(4) { left: 33%; }
.bp-map-vline:nth-of-type(5) { left: 66%; }
.bp-pin { position: absolute; top: 22px; left: 52%; width: 26px; height: 26px; }
.bp-pin svg { width: 100%; height: 100%; filter: drop-shadow(0 3px 5px rgba(7,26,47,0.3)); }
.bp-map-label {
  position: absolute; bottom: 8px; left: 8px;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue-deep);
}

/* Caption / fallback list */
.seeit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.seeit-list li {
  color: var(--cream);
  font-size: 14px;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
  opacity: 0.9;
}
.seeit-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-2);
}
.seeit-list strong { color: var(--white); font-weight: 800; }

/* ─── Reviewed by a real consultant (band) ──────────── */
.consultant-band {
  background:
    linear-gradient(rgba(109,177,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,177,255,0.06) 1px, transparent 1px),
    var(--navy-2);
  background-size: 34px 34px, 34px 34px, auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.consultant-inner { max-width: 720px; }
.consultant-inner h2 { color: var(--white); }
.consultant-inner p {
  color: var(--cream);
  font-size: 1.15rem;
  opacity: 0.88;
  line-height: 1.7;
  margin: 0;
}
.consultant-inner em { color: var(--blue-2); font-style: italic; }

.consultant-trustline {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 560px) {
  .consultant-trustline { align-items: center; }
}

@media (max-width: 900px) {
  .seeit-stage { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .bp-mock-bar { gap: 8px; padding: 0 12px; }
  .bp-wordmark, .bp-readout { display: none; }
  .bp-tabs { margin: 0; overflow-x: auto; }
  .bp-home-grid { grid-template-columns: 1fr; }
  .bp-ring-card { flex-direction: row; align-items: center; gap: 14px; text-align: left; }
  .bp-ring-card .bp-ph { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   Homepage re-skin v2 — Blueprint paper
   Scoped to <body class="bp-paper"> so only the homepage flips to the
   Blueprint's light cream/grid look. Other pages (free-scorecard,
   schools) that share .hero/.faq/.steps/.final-cta are untouched.
   Navy is used ONLY as accent/feature cards + header/footer.
   ═══════════════════════════════════════════════════════════════ */

.bp-paper {
  background: var(--cream);
  color: var(--ink);
  background-image:
    linear-gradient(rgba(109,177,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,177,255,0.10) 1px, transparent 1px);
  background-size: 34px 34px;
}

/* Sheet-code eyebrows: dimension dash + mono, blue on the light page,
   with a "·" between code and label (E.01 · PRICING). */
.bp-paper .sheet-code { color: var(--blue); }
.bp-paper .sheet-code::before { background: var(--blue); opacity: 0.7; }
.bp-paper .sheet-code .sc-num { color: var(--blue); }
.bp-paper .sheet-code .sc-num::after { content: " ·"; color: var(--mid); }
.bp-paper .sheet-code .sc-label { color: var(--mid); opacity: 1; }

/* ── Hero (light) ── */
.bp-paper .hero { background: transparent; }
.bp-paper .hero-bg { display: none; }
.bp-paper .hero h1 { color: var(--navy); }
.bp-paper .hero-copy { color: var(--mid); opacity: 1; }
.bp-paper .hero-trustline { color: var(--blue); opacity: 1; }
.bp-paper .hero-secondary-link { color: var(--blue); opacity: 1; }

/* Hero navy Readiness accent card (mirrors the Blueprint Home panel) */
.hero-visual { align-self: start; }
.hero-readycard {
  background:
    linear-gradient(rgba(109,177,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,177,255,0.06) 1px, transparent 1px),
    var(--navy);
  background-size: 26px 26px, 26px 26px, auto;
  border: 1px solid var(--navy-2);
  border-radius: 18px;
  padding: 24px 26px 26px;
  color: #fff;
  box-shadow: 0 24px 60px rgba(6,21,40,0.30);
}
.hrc-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 18px;
}
.hrc-top { display: flex; gap: 22px; align-items: center; }
.hrc-ring { position: relative; width: 120px; height: 120px; flex: none; }
.hrc-ring svg { width: 100%; height: 100%; }
.hrc-score { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hrc-score b { font-family: var(--disp); font-weight: 800; font-size: 36px; line-height: 1; color: #fff; }
.hrc-score span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; }
.hrc-cats { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.hrc-cat { display: grid; grid-template-columns: 80px 1fr; gap: 10px; align-items: center; }
.hcl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.hct { height: 7px; background: rgba(255,255,255,0.12); border-radius: 4px; overflow: hidden; }
.hct > i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.hrc-verdict { margin: 18px 0 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em; color: var(--cyan); }
.hero-sample-note {
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-sample-note::before { content: "\25C7"; color: var(--blue); }

/* ── See it (light) ── */
.bp-paper .seeit {
  background: transparent;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.bp-paper .seeit-head h2 { color: var(--navy); }
.bp-paper .seeit-lead { color: var(--mid); opacity: 1; }
.bp-paper .seeit-list li { color: var(--ink); opacity: 1; }
.bp-paper .seeit-list li::before { background: var(--blue); }
.bp-paper .seeit-list strong { color: var(--navy); }

/* ── Price-anchor + Consultant: navy FEATURE CARDS on the light page ── */
.bp-paper .why-section,
.bp-paper .consultant-band {
  background: transparent;
  border: none;
  padding: 44px clamp(20px, 7vw, 100px);
}
.bp-paper .why-inner,
.bp-paper .consultant-inner {
  max-width: 940px;
  margin: 0 auto;
  background:
    linear-gradient(rgba(109,177,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,177,255,0.06) 1px, transparent 1px),
    var(--navy);
  background-size: 26px 26px, 26px 26px, auto;
  border: 1px solid var(--navy-2);
  border-radius: 20px;
  padding: 44px clamp(28px, 5vw, 56px);
  box-shadow: 0 20px 56px rgba(6,21,40,0.18);
}
.bp-paper .why-inner .sheet-code,
.bp-paper .consultant-inner .sheet-code { color: var(--cyan); }
.bp-paper .why-inner .sheet-code::before,
.bp-paper .consultant-inner .sheet-code::before { background: var(--cyan); }
.bp-paper .why-inner .sheet-code .sc-num,
.bp-paper .consultant-inner .sheet-code .sc-num { color: var(--cyan); }
.bp-paper .why-inner .sheet-code .sc-num::after,
.bp-paper .consultant-inner .sheet-code .sc-num::after { color: rgba(255,255,255,0.5); }
.bp-paper .why-inner .sheet-code .sc-label,
.bp-paper .consultant-inner .sheet-code .sc-label { color: rgba(255,255,255,0.7); }

/* ── Light sections: drop opaque fills so the drafting grid shows ── */
.bp-paper .steps,
.bp-paper .intro,
.bp-paper .pricing-section,
.bp-paper .founder,
.bp-paper .faq { background: transparent; }

/* White spec cards keep their own surface; just sharpen the borders */
.bp-paper details { background: var(--paper); }
.bp-paper .pricing-card-tier { background: var(--paper); }
.bp-paper .founder-card { background: var(--paper); }

/* Mono spec-label treatment on the tier eyebrows */
.bp-paper .tier-eyebrow { font-family: var(--mono); letter-spacing: 0.12em; }
.bp-paper .delivery-badge { font-family: var(--mono); letter-spacing: 0.02em; }

/* ── Final CTA (light) ── */
.bp-paper .final-cta { background: transparent; }
.bp-paper .final-cta h2 { color: var(--navy); }
.bp-paper .final-cta p { color: var(--mid); opacity: 1; }
.bp-paper .final-cta .dim-divider { color: var(--blue); }

/* ── Newsletter (light) ── */
.bp-paper .newsletter-section {
  background: transparent;
  border-top: 1px solid var(--line-light);
}
.bp-paper .newsletter-section h2 { color: var(--navy); }
.bp-paper .newsletter-section > p { color: var(--mid); }
.bp-paper .newsletter-section .sheet-code { justify-content: center; }

/* Footer stays navy (an intentional dark anchor) — no override needed. */

/* ── Responsive ── */
@media (max-width: 960px) {
  .bp-paper .hero-readycard { max-width: 460px; }
}
@media (max-width: 560px) {
  .hrc-top { flex-direction: column; align-items: stretch; gap: 16px; }
  .hrc-ring { align-self: center; }
}

/* ── bp-paper: flip components whose borders/fills/text were built for
   dark surfaces so they stay legible on the light homepage ── */
.bp-paper .bp-mock { border-color: var(--line-light); }
.bp-paper .newsletter-form input[type="email"] {
  background: var(--paper);
  border: 1px solid var(--line-light);
  color: var(--ink);
}
.bp-paper .newsletter-form input[type="email"]:focus { border-color: var(--blue); }
.bp-paper .newsletter-form .nl-consent { color: var(--mid); opacity: 1; }
.bp-paper .newsletter-form .nl-success { color: var(--navy); }
.bp-paper .step-num { color: rgba(26,111,239,0.30); }

/* ═══════════════════════════════════════════════════════════════
   Homepage density pass — wider container + Blueprint spec cards
   Scoped to .bp-paper. Kills the thin centred ribbon: trims the
   oversized side-gutters and adds multi-column spec-card grids.
   ═══════════════════════════════════════════════════════════════ */

/* Trim section side-gutters so content uses more of the desktop width */
.bp-paper .hero,
.bp-paper .seeit,
.bp-paper .section,
.bp-paper .final-cta,
.bp-paper .newsletter-section {
  padding-left: clamp(20px, 5vw, 56px);
  padding-right: clamp(20px, 5vw, 56px);
}

/* Widen the existing grids toward a ~1240px container */
.bp-paper .pricing-grid { max-width: 1240px; }
.bp-paper .founder-grid { max-width: 1080px; margin-left: auto; margin-right: auto; }
.bp-paper .seeit-stage { max-width: 1240px; margin-left: auto; margin-right: auto; }

/* ── Spec cards (the Blueprint detail-block motif) ── */
.bp-paper .spec-grid { display: grid; gap: 16px; margin: 0 auto; }
.bp-paper .spec-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 1240px; }
.bp-paper .spec-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1100px; }
.bp-paper .spec-card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 5px 22px rgba(6, 21, 40, 0.05);
}
.bp-paper .spec-card .spec-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}
.bp-paper .spec-card .spec-k::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--blue);
  opacity: 0.55;
  flex-shrink: 0;
}
.bp-paper .spec-card .spec-v {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.bp-paper .spec-card .spec-d {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.5;
  margin: 0;
}

/* Proof strip — spec-card row bridging hero → See it */
.bp-paper .proof-strip { padding: 4px clamp(20px, 5vw, 56px) 40px; }

/* Built-around grid sits under the intro copy */
.bp-paper .intro .spec-grid { margin-top: 40px; }

/* ── FAQ — two-column grid, full width ── */
.bp-paper .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  max-width: 1180px;
  margin: 28px auto 0;
  align-items: start;
}
.bp-paper .faq-grid details { max-width: none; margin: 0; }

/* ── Final CTA — contained wide panel instead of a thin strip ── */
.bp-paper .final-cta { padding-top: 80px; padding-bottom: 80px; }
.bp-paper .cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 20px;
  padding: 56px clamp(24px, 5vw, 48px);
  box-shadow: 0 12px 40px rgba(6, 21, 40, 0.06);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bp-paper .spec-grid.cols-4,
  .bp-paper .spec-grid.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bp-paper .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .bp-paper .spec-grid.cols-4,
  .bp-paper .spec-grid.cols-3 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   Homepage v3 — design-reference alignment
   Source of truth: design-reference.html.
   Two layers:
   1. Reusable architectural PRIMITIVES (global, collision-checked —
      .grid-bg / .mono-tag / .sec-label / .dimrow+.dimline / .corner /
      .bp-card+.grid3 / .bp-titleblock). Other pages may adopt these.
   2. A .home-bp scope that flips the homepage to the reference's
      light/dark rhythm: navy + blueprint grid on FRAMING bands
      (hero, CTA, footer), plain cream for reading content, grid on
      navy bands ONLY. Scoped so no other page is affected.
   ═══════════════════════════════════════════════════════════════ */

/* ── Reusable: blueprint grid, layered gradients + radial mask ──
   Drop .grid-bg on any navy band; the grid fades out toward the edges. */
.grid-bg { position: relative; }
.grid-bg > * { position: relative; z-index: 2; }
.grid-bg::before,
.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.grid-bg::before {
  background-image:
    linear-gradient(rgba(109,177,255,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,177,255,0.14) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 95% 90% at 50% 45%, #000 35%, transparent 92%);
          mask-image: radial-gradient(ellipse 95% 90% at 50% 45%, #000 35%, transparent 92%);
}
.grid-bg::after {
  background-image:
    linear-gradient(rgba(109,177,255,0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,177,255,0.32) 1px, transparent 1px);
  background-size: 220px 220px;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 95% 90% at 50% 45%, #000 30%, transparent 85%);
          mask-image: radial-gradient(ellipse 95% 90% at 50% 45%, #000 30%, transparent 85%);
}

/* ── Reusable: mono metadata label + numbered section label ── */
.mono-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.sec-label .mono-tag { color: var(--blue-deep); }
.sec-label .ln {
  height: 1px;
  width: 46px;
  background: var(--blue-deep);
  opacity: 0.55;
}

/* ── Reusable: dimension line (architectural measurement rule) ── */
.dimrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-d, #7E93AC);
}
.dimline {
  flex: none;
  width: 120px;
  height: 1px;
  position: relative;
  background: rgba(109,177,255,0.32);
}
.dimline::before,
.dimline::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 1px;
  height: 7px;
  background: rgba(109,177,255,0.32);
}
.dimline::before { left: 0; }
.dimline::after  { right: 0; }

/* ── Reusable: sheet-code corner mark (needs a positioned parent) ── */
.corner {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--mid);
  opacity: 0.8;
}

/* ── Reusable: card + 3-up grid (for other pages to adopt later) ── */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.bp-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 26px 24px;
  transition: transform 0.18s, box-shadow 0.2s, border-color 0.2s;
}
.bp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(6,21,40,0.10);
  border-color: rgba(109,177,255,0.5);
}
.bp-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--blue-deep);
  margin-bottom: 14px;
}
.bp-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 8px;
}
.bp-card p {
  font-size: 14.5px;
  color: #52606e;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) { .grid3 { grid-template-columns: 1fr; } }

/* ── Reusable: footer title block ── */
.bp-titleblock {
  max-width: 980px;
  margin: 26px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(109,177,255,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
.bp-titleblock span { opacity: 0.85; }
.bp-titleblock .sep { opacity: 0.4; }

/* ─────────────────────────────────────────────────────────────
   .home-bp — flip framing bands to navy + grid (homepage only)
   Sits after .bp-paper so it wins on equal-specificity ties.
   ───────────────────────────────────────────────────────────── */

/* Reading surface: plain cream, NO grid (grid lives on navy bands only) */
.home-bp { background: var(--cream); background-image: none; }

/* Hero → navy framing band with masked blueprint grid */
.home-bp .hero { background: var(--navy); }
.home-bp .hero-bg { display: none; }
.home-bp .hero h1 { color: #fff; }
.home-bp .hero-copy { color: #b9c6d6; opacity: 1; }
.home-bp .hero .sheet-code { color: var(--cyan); }
.home-bp .hero .sheet-code::before { background: var(--cyan); opacity: 0.7; }
.home-bp .hero .sheet-code .sc-num { color: var(--cyan); }
.home-bp .hero .sheet-code .sc-num::after { color: rgba(255,255,255,0.5); }
.home-bp .hero .sheet-code .sc-label { color: rgba(255,255,255,0.72); opacity: 1; }
.home-bp .hero-trustline { color: var(--cyan); opacity: 0.9; }
.home-bp .hero-secondary-link { color: var(--cyan); opacity: 0.95; }
.home-bp .hero .dimrow { margin: 22px 0 26px; }

/* Hero readiness card → raised glass panel so it reads on the navy band */
.home-bp .hero-readycard {
  background:
    linear-gradient(rgba(109,177,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,177,255,0.06) 1px, transparent 1px),
    rgba(11,39,72,0.55);
  background-size: 26px 26px, 26px 26px, auto;
  border-color: rgba(109,177,255,0.22);
  backdrop-filter: blur(6px);
}

/* Final CTA → navy framing band (strip the white card) */
.home-bp .final-cta { background: var(--navy); }
.home-bp .final-cta .cta-inner {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 8px 0;
}
.home-bp .final-cta h2 { color: #fff; }
.home-bp .final-cta p { color: #b9c6d6; opacity: 1; }
.home-bp .final-cta .dim-divider { color: var(--cyan); }

/* Founder cards carry sheet-code corner marks */
.home-bp .founder-card { position: relative; }

/* Footer → keep the dark anchor, add the title-block strip */
.home-bp footer .footer-legal { border-top: none; margin-top: 18px; }

/* ═══ Homepage v4 — sharp corners (design-reference.html alignment) ════════
   Design source: design-reference.html — .btn 3px · .panel/.card 5px · .price 6px.
   Colour, behaviour and content are UNCHANGED — this is a border-radius pass only.
   All rules scoped to .home-bp (body class on index.html only).              */

/* Buttons — 3px (reference .btn: border-radius 3px) */
.home-bp .button  { border-radius: 3px; }
.home-bp .nav-cta { border-radius: 3px; }

/* Spec cards (proof strip + "why it works" grid) — 5px */
.home-bp .spec-card { border-radius: 5px; }

/* Dark feature panels (why-section · consultant-band inner blocks) — 5px */
.home-bp .why-inner,
.home-bp .consultant-inner { border-radius: 5px; }

/* Hero readiness card — 5px */
.home-bp .hero-readycard { border-radius: 5px; }

/* Pricing cards — 5px; badge label — 3px */
.home-bp .pricing-card-tier { border-radius: 5px; }
.home-bp .pricing-badge     { border-radius: 3px; }

/* Delivery badge — 3px */
.home-bp .delivery-badge { border-radius: 3px; }

/* Corporate strip — 5px */
.home-bp .corporate-strip { border-radius: 5px; }

/* Founder cards — 5px */
.home-bp .founder-card { border-radius: 5px; }

/* FAQ panels — 5px */
.home-bp details { border-radius: 5px; }

/* Newsletter form email input + success notice — 3px */
.home-bp .newsletter-form input[type="email"],
.home-bp .newsletter-form .nl-success { border-radius: 3px; }
