/* ===========================================================
   Component styles
   =========================================================== */

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 242, 236, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header-inner { display: flex; align-items: center; gap: 28px; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 34px; height: 34px; border: 2px solid var(--navy); border-radius: 6px; display: grid; place-items: center; flex: none; }
.brand-mark-inner { width: 12px; height: 12px; background: var(--navy); border-radius: 2px; transform: rotate(45deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-family: var(--font-display); font-weight: 760; font-size: 18px; letter-spacing: -0.02em; }
.brand-sub { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.site-nav { display: flex; gap: 30px; margin-left: auto; }
.site-nav a { font-size: 15px; font-weight: 500; color: var(--ink-2); position: relative; padding: 6px 0; }
.site-nav a:hover { color: var(--navy); }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--brass); transition: width .2s ease; }
.site-nav a:hover::after { width: 100%; }

.site-header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--ink); letter-spacing: 0.02em; white-space: nowrap; }
.header-phone:hover { color: var(--navy); }
.header-cta { padding: 11px 18px; font-size: 14px; }

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .header-phone { display: none; }
}

/* ---------- Hero shared ---------- */
.hero-h1 { font-size: clamp(34px, 5.2vw, 62px); font-weight: 720; line-height: 1.0; letter-spacing: -0.025em; }
.hero-h1 em { font-style: normal; color: var(--brass-soft); }
.hero-statement .hero-h1 em, .hero-editorial .hero-h1 em { color: var(--brass-soft); }
.hero-diagnostic .hero-h1 em { color: var(--brass); }
.hero-sub { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--ink-2); max-width: 56ch; margin-top: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ---------- Hero: statement (navy) ---------- */
.hero-statement { position: relative; background: var(--navy-700); overflow: hidden; }
.hero-statement-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(199,168,103,0.16), transparent 60%),
    radial-gradient(700px 600px at 10% 110%, rgba(60,92,126,0.5), transparent 60%),
    linear-gradient(180deg, var(--navy-700), var(--navy-900));
}
.hero-statement-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(1100px 700px at 70% 0%, #000, transparent 75%);
}
.hero-statement-inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-block: clamp(60px, 9vw, 120px) clamp(70px, 10vw, 130px); }

/* ---------- Hero: diagnostic (paper) ---------- */
.hero-diagnostic { background: linear-gradient(180deg, var(--surface), var(--paper)); border-bottom: 1px solid var(--line); }
.hero-diag-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: clamp(56px, 8vw, 104px) 0; }
.hero-trust { margin-top: 44px; display: flex; flex-direction: column; gap: 12px; }
.hero-trust > span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-4); }
.hero-trust-logos { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Hero: editorial (split) ---------- */
.hero-editorial { padding: 0; }
.hero-ed-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.hero-ed-left { background: var(--navy-700); position: relative; display: flex; align-items: center; padding: clamp(48px,6vw,80px) clamp(32px,4vw,64px); }
.hero-ed-left::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 400px at 20% 10%, rgba(199,168,103,0.14), transparent 60%); }
.hero-ed-left-inner { position: relative; max-width: 520px; margin-left: auto; }
.hero-ed-left-inner .hero-cta, .hero-ed-left-inner .btn { margin-top: 32px; }
.hero-ed-right { background: var(--surface); display: flex; flex-direction: column; justify-content: center; padding: clamp(40px,5vw,72px) clamp(32px,4vw,64px); }
.hero-ed-kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 22px; }
.hero-ed-tiles { display: flex; flex-direction: column; gap: 0; max-width: 540px; }
.hero-ed-tile { display: grid; grid-template-columns: auto 1fr auto; column-gap: 18px; align-items: baseline; padding: 22px 4px; border-top: 1px solid var(--line); position: relative; }
.hero-ed-tile:last-child { border-bottom: 1px solid var(--line); }
.hero-ed-tile-num { font-family: var(--font-mono); font-size: 12px; color: var(--brass); font-weight: 600; }
.hero-ed-tile-t { font-family: var(--font-display); font-weight: 640; font-size: 19px; color: var(--ink); letter-spacing: -0.01em; }
.hero-ed-tile-c { grid-column: 2; font-size: 14.5px; color: var(--ink-3); margin-top: 3px; }
.hero-ed-tile-arrow { color: var(--ink-4); transition: transform .2s, color .2s; }
.hero-ed-tile:hover .hero-ed-tile-arrow { transform: translateX(4px); color: var(--navy); }
.hero-ed-tile:hover .hero-ed-tile-t { color: var(--navy); }

@media (max-width: 880px) {
  .hero-statement-inner, .hero-diag-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-ed-grid { grid-template-columns: 1fr; }
}

/* ---------- Readiness console ---------- */
.console { background: var(--navy-900); border: 1px solid var(--line-on-navy); border-radius: 10px; box-shadow: var(--shadow-lg); overflow: hidden; }
.hero-diagnostic .console { box-shadow: var(--shadow-md); }
.console-head { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--line-on-navy); }
.console-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.console-title { font-family: var(--font-mono); font-size: 11.5px; color: rgba(255,255,255,0.5); margin-left: 8px; letter-spacing: 0.04em; }
.console-body { padding: 22px; }
.console-score { display: flex; align-items: center; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid var(--line-on-navy); margin-bottom: 18px; }
.console-score-num { font-family: var(--font-display); font-size: 54px; font-weight: 760; color: #fff; line-height: 1; }
.console-score-num span { font-size: 24px; color: rgba(255,255,255,0.5); }
.console-score-meta { display: flex; flex-direction: column; gap: 4px; }
.console-tier { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); font-weight: 600; }
.console-tier-sub { font-size: 13px; color: rgba(255,255,255,0.55); }
.console-rows { display: flex; flex-direction: column; gap: 2px; }
.console-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.console-row:last-child { border-bottom: none; }
.console-sig { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.console-label { font-size: 14.5px; color: rgba(255,255,255,0.82); }
.console-state { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; font-weight: 600; }
@media (prefers-reduced-motion: no-preference) {
  .console-row { animation: consoleIn .5s ease; }
  @keyframes consoleIn { from { transform: translateX(10px); } to { transform: none; } }
}

/* ---------- Section heads ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; letter-spacing: -0.022em; margin-top: 18px; line-height: 1.05; }
.section-intro { font-size: clamp(16px, 1.4vw, 18.5px); color: var(--ink-2); margin-top: 18px; line-height: 1.6; }

/* ---------- Buyer problems ---------- */
.problems { background: var(--paper); }
.problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.problem-card { background: var(--surface); padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; transition: background .25s ease; }
.problem-card:hover { background: var(--white); }
.problem-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.problem-num { font-family: var(--font-display); font-size: 30px; font-weight: 760; color: var(--navy); letter-spacing: -0.03em; }
.problem-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); border: 1px solid var(--brass); border-radius: 100px; padding: 4px 11px; }
.problem-t { font-size: 23px; font-weight: 680; letter-spacing: -0.015em; line-height: 1.12; }
.problem-c { font-size: 15.5px; color: var(--ink-2); margin-top: 14px; line-height: 1.6; flex: 1; }
.problem-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-weight: 600; font-size: 14.5px; color: var(--navy); }
.problem-cta:hover { color: var(--navy-700); }
@media (max-width: 720px) { .problems-grid { grid-template-columns: 1fr; } }

/* ---------- Scorecard ---------- */
.scorecard-section { background: var(--navy-700); position: relative; overflow: hidden; }
.scorecard-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 500px at 85% 0%, rgba(199,168,103,0.12), transparent 60%); }
.scorecard-section .section-head { position: relative; }
.scorecard-section .section-h2, .scorecard-section .section-intro { color: #fff; }
.scorecard-section .section-intro { color: rgba(255,255,255,0.72); }

.sc-card { position: relative; background: var(--surface); border-radius: 14px; box-shadow: var(--shadow-lg); padding: clamp(30px, 4vw, 56px); max-width: 920px; margin: 0 auto; border: 1px solid var(--line); min-height: 440px; display: flex; flex-direction: column; justify-content: center; }

.sc-h { font-size: clamp(26px, 3.4vw, 40px); font-weight: 720; letter-spacing: -0.022em; margin-top: 18px; line-height: 1.05; }
.sc-lede { font-size: 17px; color: var(--ink-2); margin-top: 16px; line-height: 1.6; max-width: 62ch; }
.sc-intro .btn { margin-top: 34px; align-self: flex-start; }
.sc-tiers { display: flex; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
.sc-tier { display: flex; flex-direction: column; gap: 2px; padding-left: 18px; position: relative; }
.sc-tier .dot { position: absolute; left: 0; top: 6px; width: 10px; height: 10px; border-radius: 50%; }
.sc-tier b { font-size: 15px; }
.sc-tier span:last-child { font-size: 13px; color: var(--ink-3); }

/* quiz */
.sc-progress-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.sc-count { font-family: var(--font-display); font-size: 19px; font-weight: 680; color: var(--ink); }
.sc-count span { color: var(--ink-4); font-weight: 500; }
.sc-area { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); border: 1px solid var(--brass); border-radius: 100px; padding: 4px 12px; }
.sc-bar { height: 4px; background: var(--line-2); border-radius: 100px; overflow: hidden; margin-bottom: 34px; }
.sc-bar-fill { height: 100%; background: var(--navy); border-radius: 100px; transition: width .4s cubic-bezier(.22,1,.36,1); }
.sc-q { font-size: clamp(22px, 2.6vw, 30px); font-weight: 680; letter-spacing: -0.018em; line-height: 1.15; min-height: 2.3em; }
@media (prefers-reduced-motion: no-preference) { .sc-q { animation: scqIn .35s ease; } @keyframes scqIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; } } }
.sc-options { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.sc-opt { display: flex; align-items: center; gap: 16px; text-align: left; background: var(--white); border: 1.5px solid var(--line-2); border-radius: var(--radius); padding: 18px 22px; font-size: 16.5px; font-weight: 500; color: var(--ink); transition: border-color .18s, background .18s, transform .12s; }
.sc-opt:hover { border-color: var(--navy-300); background: var(--navy-tint); }
.sc-opt.sel { border-color: var(--navy); background: var(--navy-tint); }
.sc-opt-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--ink-4); flex: none; transition: border-color .18s, box-shadow .18s; }
.sc-opt:hover .sc-opt-radio { border-color: var(--navy); }
.sc-opt.sel .sc-opt-radio { border-color: var(--navy); background: var(--navy); box-shadow: inset 0 0 0 3px var(--surface); }
.sc-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; }
.sc-back { background: none; border: none; font-size: 14.5px; color: var(--ink-3); font-weight: 600; padding: 6px 0; }
.sc-back:disabled { opacity: 0.4; cursor: default; }
.sc-back:not(:disabled):hover { color: var(--navy); }
.sc-answered { font-family: var(--font-mono); font-size: 12px; color: var(--ink-4); letter-spacing: 0.04em; }

/* result */
.sc-result-top { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center; }
.sc-weak { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line); }
.sc-weak-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.sc-weak-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sc-weak-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.sc-weak-head span { font-weight: 600; font-size: 15px; }
.sc-weak-head b { font-family: var(--font-display); font-size: 17px; }
.sc-weak-bar { height: 6px; background: var(--line-2); border-radius: 100px; overflow: hidden; }
.sc-weak-bar div { height: 100%; border-radius: 100px; transition: width .9s cubic-bezier(.22,1,.36,1); }
.sc-cta-box { margin-top: 36px; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--navy); border-radius: var(--radius); padding: 28px 30px; display: flex; gap: 32px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.sc-cta-actions { display: flex; gap: 12px; flex: none; }
.sc-disclaimer { margin-top: 18px; font-size: 12.5px; color: var(--ink-4); text-align: center; }
@media (max-width: 720px) {
  .sc-result-top { grid-template-columns: 1fr; gap: 20px; justify-items: center; text-align: center; }
  .sc-weak-list { grid-template-columns: 1fr; }
  .sc-cta-box { flex-direction: column; align-items: flex-start; }
}

/* ---------- Resources ---------- */
.resources { background: var(--surface); border-top: 1px solid var(--line); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.resource-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 26px 24px; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.resource-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.resource-type { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); font-weight: 600; }
.resource-lock, .resource-free { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
.resource-lock { background: var(--amber-soft); color: var(--amber); }
.resource-free { background: var(--green-soft); color: var(--green); }
.resource-t { font-size: 18.5px; font-weight: 680; letter-spacing: -0.012em; line-height: 1.15; }
.resource-c { font-size: 14.5px; color: var(--ink-2); margin-top: 10px; line-height: 1.55; flex: 1; }
.resource-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-weight: 600; font-size: 14px; color: var(--navy); }
@media (max-width: 880px) { .resources-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .resources-grid { grid-template-columns: 1fr; } }

/* ---------- Contact band ---------- */
.contact-band { background: var(--navy-900); position: relative; overflow: hidden; padding: clamp(64px, 8vw, 110px) 0; }
.contact-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 500px at 80% 120%, rgba(199,168,103,0.14), transparent 60%); }
.contact-inner { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
.contact-h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 720; color: #fff; margin-top: 18px; letter-spacing: -0.022em; line-height: 1.04; }
.contact-sub { color: rgba(255,255,255,0.72); font-size: 17px; margin-top: 18px; line-height: 1.6; max-width: 56ch; }
.contact-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.contact-detail { background: rgba(255,255,255,0.05); border: 1px solid var(--line-on-navy); border-radius: 10px; padding: 30px; }
.contact-detail-row { display: flex; flex-direction: column; gap: 3px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-detail-row:first-child { padding-top: 0; }
.cd-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-soft); }
.contact-detail-row a, .contact-detail-row span:last-child { color: #fff; font-size: 15.5px; font-weight: 500; }
.contact-detail-row a:hover { color: var(--brass-soft); }
.contact-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.5); font-style: italic; }
@media (max-width: 860px) { .contact-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: clamp(56px,6vw,80px) 0 36px; border-top: 1px solid var(--line-on-navy); }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid var(--line-on-navy); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-blurb { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 38ch; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 4px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: #fff; }
.footer-disclaimer { padding: 32px 0; border-bottom: 1px solid var(--line-on-navy); display: flex; flex-direction: column; gap: 14px; }
.footer-disclaimer p { font-size: 12.5px; line-height: 1.65; color: rgba(255,255,255,0.45); max-width: 90ch; }
.footer-disclaimer strong { color: rgba(255,255,255,0.7); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 14px; }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a:hover { color: #fff; }
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ---------- Anatomy ---------- */
.anatomy { background: var(--paper); border-top: 1px solid var(--line); }
.anatomy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; }
.anatomy-item { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.anatomy-n { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--brass); padding-top: 3px; }
.anatomy-t { font-size: 19px; font-weight: 660; letter-spacing: -0.012em; }
.anatomy-c { font-size: 14.5px; color: var(--ink-2); margin-top: 6px; line-height: 1.55; }
@media (max-width: 760px) { .anatomy-grid { grid-template-columns: 1fr; gap: 0; } }

/* ---------- Engagement ladder ---------- */
.ladder-section { background: var(--surface); border-top: 1px solid var(--line); }
.ladder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ladder-card { text-align: left; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 0; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
.ladder-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--navy-300); background: var(--white); }
.ladder-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.ladder-step { font-family: var(--font-display); font-size: 15px; font-weight: 760; color: var(--navy); background: var(--navy-tint); width: 34px; height: 34px; border-radius: 7px; display: grid; place-items: center; }
.ladder-tier { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-3); }
.ladder-name { font-size: 20px; font-weight: 680; letter-spacing: -0.015em; line-height: 1.12; }
.ladder-pos { font-size: 14.5px; color: var(--ink-2); margin-top: 10px; line-height: 1.55; flex: 1; }
.ladder-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.ladder-price { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.ladder-arrow { color: var(--ink-4); transition: transform .2s, color .2s; }
.ladder-card:hover .ladder-arrow { transform: translateX(4px); color: var(--navy); }
@media (max-width: 880px) { .ladder-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ladder-grid { grid-template-columns: 1fr; } }

/* ---------- Lead modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(10, 26, 41, 0.55); backdrop-filter: blur(4px); display: flex; align-items: flex-start; justify-content: center; padding: clamp(16px, 5vh, 64px) 20px; overflow-y: auto; }
.modal { position: relative; background: var(--surface); width: 100%; max-width: 560px; border-radius: 14px; box-shadow: var(--shadow-lg); padding: clamp(28px, 4vw, 44px); }
@media (prefers-reduced-motion: no-preference) { .modal { animation: modIn .28s cubic-bezier(.22,1,.36,1); } }
@keyframes modIn { from { transform: translateY(16px) scale(.985); } to { transform: none; } }
.modal-close { position: absolute; top: 16px; right: 18px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); font-size: 22px; line-height: 1; color: var(--ink-3); display: grid; place-items: center; }
.modal-close:hover { border-color: var(--line-2); color: var(--ink); }
.modal-head { margin-bottom: 24px; padding-right: 30px; }
.modal-title { font-size: clamp(22px, 3vw, 28px); font-weight: 720; letter-spacing: -0.02em; margin-top: 12px; line-height: 1.08; }
.modal-sub { font-size: 15px; color: var(--ink-2); margin-top: 10px; line-height: 1.55; }

.modal-form { display: flex; flex-direction: column; gap: 18px; }
.mf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mf-field { display: flex; flex-direction: column; gap: 7px; position: relative; }
.mf-field > span { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.mf-field > span i { font-weight: 400; color: var(--ink-4); font-style: normal; }
.mf-field input, .mf-field select, .mf-field textarea { font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--white); border: 1.5px solid var(--line-2); border-radius: var(--radius); padding: 12px 14px; transition: border-color .15s, box-shadow .15s; width: 100%; }
.mf-field textarea { resize: vertical; }
.mf-field input:focus, .mf-field select:focus, .mf-field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-tint); }
.mf-field.err input, .mf-field.err select { border-color: var(--red); }
.mf-field em { position: absolute; right: 2px; top: 0; font-style: normal; font-size: 12px; color: var(--red); font-weight: 600; }
.mf-matter { display: flex; flex-direction: column; gap: 10px; }
.mf-matter-label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.mf-matter-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.mf-chip { font-size: 13.5px; font-weight: 500; color: var(--ink-2); background: var(--white); border: 1.5px solid var(--line-2); border-radius: 100px; padding: 8px 15px; transition: all .15s; }
.mf-chip:hover { border-color: var(--navy-300); }
.mf-chip.sel { background: var(--navy); border-color: var(--navy); color: #fff; }
.mf-submit { margin-top: 4px; align-self: flex-start; }
.modal-fineprint { font-size: 12px; color: var(--ink-4); line-height: 1.5; }
.modal-success { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.modal-check { width: 56px; height: 56px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; font-size: 28px; font-weight: 700; }
@media (max-width: 520px) { .mf-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile nav ---------- */
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--white); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; position: fixed; inset: 76px 0 auto 0; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); padding: 20px var(--gutter) 26px; z-index: 49; transform: translateY(-120%); transition: transform .28s cubic-bezier(.22,1,.36,1); }
  .mobile-menu.open { transform: none; }
  .mobile-menu a { display: block; padding: 14px 0; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { width: 100%; margin-top: 18px; }
  .mobile-menu .mm-phone { color: var(--navy); font-family: var(--font-mono); border: none; }
}
