:root {
  --navy-950: #041235;
  --navy-900: #071a4c;
  --navy-800: #0d2a68;
  --blue-600: #0b63f6;
  --blue-500: #2580ff;
  --blue-100: #eaf2ff;
  --gold-500: #ffbf2f;
  --gold-200: #ffe39a;
  --mint-500: #1ec79a;
  --ink: #101a2d;
  --muted: #627087;
  --line: #dfe5ee;
  --cloud: #f4f7fb;
  --cream: #fffdf8;
  --white: #ffffff;
  --danger: #b42318;
  --danger-soft: #fff0ee;
  --success: #067647;
  --success-soft: #ecfdf3;
  --shadow-sm: 0 8px 22px rgba(4, 18, 53, .07);
  --shadow-md: 0 24px 60px rgba(4, 18, 53, .12);
  --shadow-lg: 0 38px 100px rgba(4, 18, 53, .18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --container: 1180px;
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
::selection { color: #fff; background: var(--blue-600); }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: -200px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--blue-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before,
.kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-500);
  box-shadow: 0 0 0 6px rgba(255, 191, 47, .16);
  content: "";
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--navy-950); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 7.2vw, 6.45rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4.45rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
.lede { color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.72; }
.serif-accent { color: var(--blue-600); font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.gold-underline { position: relative; display: inline-block; z-index: 0; }
.gold-underline::after {
  position: absolute;
  z-index: -1;
  right: -2%;
  bottom: .04em;
  left: -2%;
  height: .22em;
  border-radius: 999px;
  background: rgba(255, 191, 47, .72);
  transform: rotate(-1deg);
  content: "";
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--blue-600); box-shadow: 0 14px 34px rgba(11, 99, 246, .25); }
.btn-primary:hover { background: var(--navy-900); box-shadow: 0 18px 42px rgba(4, 18, 53, .24); }
.btn-secondary { color: var(--navy-950); background: rgba(255,255,255,.72); border-color: var(--line); }
.btn-secondary:hover { background: #fff; border-color: #b8c4d7; }
.btn-gold { color: var(--navy-950); background: var(--gold-500); box-shadow: 0 14px 34px rgba(255,191,47,.24); }
.btn-gold:hover { background: #ffd267; }
.btn-ghost { min-height: auto; padding: 8px 0; color: var(--blue-600); border-radius: 0; }
.btn-ghost:hover { transform: none; color: var(--navy-950); }
.btn svg { width: 18px; height: 18px; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(223,229,238,.76);
  background: rgba(255,253,248,.9);
  backdrop-filter: blur(18px) saturate(130%);
}
.nav-shell { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 218px; max-height: 68px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.btn) { position: relative; color: #45546d; font-size: .9rem; font-weight: 700; }
.site-nav > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  content: "";
}
.site-nav > a:not(.btn):hover { color: var(--navy-950); }
.site-nav > a:not(.btn):hover::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy-950);
  background: #fff;
}
.nav-toggle svg { width: 22px; height: 22px; }

.hero {
  position: relative;
  overflow: clip;
  padding: 86px 0 78px;
  background:
    radial-gradient(circle at 78% 17%, rgba(11,99,246,.15), transparent 32%),
    radial-gradient(circle at 12% 88%, rgba(255,191,47,.14), transparent 26%),
    linear-gradient(180deg, #fffefb 0%, #f7faff 100%);
}
.hero::before {
  position: absolute;
  top: -140px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(11,99,246,.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 50px rgba(255,255,255,.22), inset 0 0 0 130px rgba(255,255,255,.12);
  content: "";
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, .85fr); align-items: center; gap: clamp(46px, 7vw, 94px); }
.hero-copy { max-width: 680px; }
.hero h1 { max-width: 760px; margin-bottom: 25px; }
.hero .lede { max-width: 650px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 26px; }
.hero-note { display: flex; max-width: 600px; align-items: flex-start; gap: 11px; color: #56667e; font-size: .88rem; line-height: 1.55; }
.hero-note svg { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 2px; color: var(--blue-600); }
.hero-media { position: relative; min-height: 650px; }
.hero-photo-frame {
  position: absolute;
  inset: 0 0 0 32px;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 44% 44% 31% 31% / 28% 28% 18% 18%;
  background: #d8e0e9;
  box-shadow: var(--shadow-lg);
}
.hero-photo-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(4,18,53,.48));
  content: "";
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-owner-label {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}
.hero-owner-label strong { display: block; font-size: 1.08rem; }
.hero-owner-label span { color: rgba(255,255,255,.76); font-size: .78rem; }
.hero-seal {
  position: absolute;
  z-index: 4;
  top: 36px;
  left: -7px;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  padding: 18px;
  border: 8px solid #fff;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: var(--shadow-md);
  text-align: center;
  transform: rotate(-7deg);
}
.hero-seal span { font-size: .72rem; font-weight: 900; letter-spacing: .08em; line-height: 1.25; text-transform: uppercase; }
.hero-float {
  position: absolute;
  z-index: 4;
  right: -22px;
  display: flex;
  max-width: 245px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.hero-float-one { top: 112px; }
.hero-float-two { bottom: 112px; }
.hero-float-icon { display: grid; flex: 0 0 auto; width: 38px; height: 38px; place-items: center; border-radius: 12px; color: var(--blue-600); background: var(--blue-100); }
.hero-float-icon.gold { color: var(--navy-950); background: #fff4d1; }
.hero-float strong { display: block; color: var(--navy-950); font-size: .82rem; line-height: 1.25; }
.hero-float span { display: block; margin-top: 3px; color: var(--muted); font-size: .7rem; line-height: 1.3; }

.trust-ribbon { overflow: hidden; border-block: 1px solid var(--line); color: #fff; background: var(--navy-950); }
.trust-track { display: flex; min-width: max-content; align-items: center; gap: 35px; padding: 16px 0; animation: ribbon 32s linear infinite; }
.trust-item { display: inline-flex; align-items: center; gap: 12px; font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.trust-item::before { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); content: ""; }
@keyframes ribbon { to { transform: translateX(-50%); } }

.section { padding: 108px 0; }
.section-soft { background: var(--cloud); }
.section-dark { color: #fff; background: var(--navy-950); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { display: grid; grid-template-columns: minmax(0, .88fr) minmax(320px, .52fr); align-items: end; gap: 50px; margin-bottom: 52px; }
.section-head h2 { margin-bottom: 0; }
.section-head .lede { margin-bottom: 0; }
.section-head-centered { max-width: 810px; margin: 0 auto 52px; text-align: center; }
.section-head-centered .kicker { justify-content: center; }

.statement {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  color: #fff;
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
}
.statement::after {
  position: absolute;
  top: -190px;
  right: -120px;
  width: 500px;
  height: 500px;
  border: 90px solid rgba(255,191,47,.12);
  border-radius: 50%;
  content: "";
}
.statement-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 70px; }
.statement h2 { max-width: 790px; margin: 0; color: #fff; font-size: clamp(2.7rem, 6vw, 5.7rem); }
.statement h2 em { color: var(--gold-500); font-family: var(--font-serif); font-weight: 500; }
.statement-copy { color: rgba(255,255,255,.76); font-size: 1.08rem; }
.statement-copy strong { display: block; margin-bottom: 12px; color: #fff; font-size: 1.25rem; }

.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.audience-card:hover { border-color: #b7c9e5; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.audience-card.featured { color: #fff; border-color: transparent; background: linear-gradient(145deg, var(--navy-950), #0d3481); }
.audience-card.featured h3 { color: #fff; }
.audience-card.featured p, .audience-card.featured li { color: rgba(255,255,255,.76); }
.audience-number { display: inline-flex; margin-bottom: 46px; color: var(--gold-500); font-size: .75rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.audience-card h3 { max-width: 480px; margin-bottom: 15px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.audience-card p { max-width: 500px; color: var(--muted); }
.clean-list { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.clean-list li { display: flex; align-items: flex-start; gap: 10px; color: #3d4b62; font-size: .92rem; }
.clean-list li::before { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--gold-500); box-shadow: inset 0 0 0 5px rgba(255,255,255,.65); content: ""; }
.audience-watermark { position: absolute; right: -22px; bottom: -38px; color: rgba(11,99,246,.06); font-size: 11rem; font-weight: 900; line-height: 1; }
.featured .audience-watermark { color: rgba(255,255,255,.05); }

.process-wrap { position: relative; }
.process-line { position: absolute; top: 46px; right: 10%; left: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.process-card { position: relative; padding: 0 16px; text-align: center; }
.process-step { display: grid; width: 92px; height: 92px; place-items: center; margin: 0 auto 24px; border: 9px solid var(--cloud); border-radius: 50%; color: var(--navy-950); background: var(--gold-500); box-shadow: 0 0 0 1px rgba(255,191,47,.4), var(--shadow-sm); font-size: 1.15rem; font-weight: 900; }
.process-card h3 { margin-bottom: 10px; font-size: 1.18rem; }
.process-card p { color: var(--muted); font-size: .9rem; }
.process-note { max-width: 800px; margin: 42px auto 0; padding: 21px 25px; border: 1px solid #d8e3f2; border-radius: 18px; color: #44536a; background: #fff; text-align: center; box-shadow: var(--shadow-sm); }
.process-note strong { color: var(--navy-950); }

.scope-layout { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr); align-items: start; gap: 52px; }
.scope-intro { position: sticky; top: 120px; }
.scope-intro h2 { margin-bottom: 22px; }
.scope-intro .lede { margin-bottom: 26px; }
.scope-accordions { display: grid; gap: 14px; }
.scope-accordions details { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 7px 20px rgba(4,18,53,.04); }
.scope-accordions summary { display: grid; grid-template-columns: 48px 1fr 24px; align-items: center; gap: 16px; padding: 20px 22px; color: var(--navy-950); font-weight: 800; list-style: none; cursor: pointer; }
.scope-accordions summary::-webkit-details-marker { display: none; }
.scope-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 14px; color: var(--blue-600); background: var(--blue-100); }
.scope-icon svg { width: 23px; height: 23px; }
.scope-plus { position: relative; width: 20px; height: 20px; }
.scope-plus::before, .scope-plus::after { position: absolute; top: 9px; left: 3px; width: 14px; height: 2px; background: var(--blue-600); content: ""; transition: transform .2s ease; }
.scope-plus::after { transform: rotate(90deg); }
details[open] .scope-plus::after { transform: rotate(0); }
.scope-content { padding: 0 22px 23px 86px; color: var(--muted); }
.scope-content ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 22px; margin: 0; padding: 0; list-style: none; }
.scope-content li { position: relative; padding-left: 17px; font-size: .88rem; }
.scope-content li::before { position: absolute; top: .72em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); content: ""; }
.project-callout { margin-top: 20px; padding: 25px; border: 1px solid rgba(255,191,47,.62); border-radius: 22px; background: #fff9e9; }
.project-callout strong { display: block; margin-bottom: 7px; color: var(--navy-950); font-size: 1.05rem; }
.project-callout p { margin-bottom: 0; color: #5f5848; font-size: .9rem; }

.owners-section { position: relative; overflow: hidden; background: #fff; }
.owners-section::before { position: absolute; top: 160px; left: -170px; width: 450px; height: 450px; border-radius: 50%; background: rgba(255,191,47,.1); filter: blur(8px); content: ""; }
.owners-main { position: relative; display: grid; grid-template-columns: minmax(380px, .95fr) minmax(0, 1.05fr); align-items: center; gap: 70px; }
.owners-photo { position: relative; }
.owners-photo::before { position: absolute; top: -18px; left: -18px; width: 160px; height: 160px; border: 2px solid var(--gold-500); border-radius: 34px; content: ""; }
.owners-photo img { position: relative; display: block; width: 100%; height: auto; aspect-ratio: auto; border-radius: 42px; box-shadow: var(--shadow-lg); }
.owner-badge { position: absolute; right: -16px; bottom: 30px; max-width: 230px; padding: 18px 20px; border: 1px solid #fff; border-radius: 18px; color: #fff; background: rgba(4,18,53,.92); box-shadow: var(--shadow-md); backdrop-filter: blur(10px); }
.owner-badge strong { display: block; color: var(--gold-500); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.owner-badge span { display: block; margin-top: 5px; font-size: .82rem; line-height: 1.35; }
.owners-copy h2 { margin-bottom: 23px; }
.owners-quote { position: relative; margin: 28px 0; padding-left: 27px; color: var(--navy-950); font-family: var(--font-serif); font-size: clamp(1.35rem, 2.5vw, 2.05rem); font-style: italic; line-height: 1.34; }
.owners-quote::before { position: absolute; top: 3px; bottom: 3px; left: 0; width: 5px; border-radius: 999px; background: var(--gold-500); content: ""; }
.owner-mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 40px; }
.owner-mini { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 17px; padding: 17px; border: 1px solid var(--line); border-radius: 22px; background: var(--cloud); }
.owner-mini img { width: 92px; height: 92px; border-radius: 18px; object-fit: cover; }
.owner-mini h3 { margin: 0 0 5px; font-size: 1.05rem; }
.owner-mini p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }

.standards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.standard-card { min-height: 260px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 25px; background: rgba(255,255,255,.055); }
.standard-number { display: inline-flex; margin-bottom: 42px; color: var(--gold-500); font-size: .75rem; font-weight: 900; letter-spacing: .16em; }
.standard-card h3 { margin-bottom: 12px; color: #fff; font-size: 1.3rem; }
.standard-card p { margin-bottom: 0; color: rgba(255,255,255,.65); font-size: .9rem; }

.fit-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-md); }
.fit-top { padding: 54px 54px 42px; text-align: center; background: linear-gradient(180deg, #fff, #f7faff); }
.fit-top h2 { margin-bottom: 17px; }
.fit-top p { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.fit-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.fit-column { padding: 42px 46px 48px; }
.fit-column + .fit-column { border-left: 1px solid var(--line); background: #f8fafc; }
.fit-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; padding: 7px 11px; border-radius: 999px; font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.fit-label.yes { color: var(--success); background: var(--success-soft); }
.fit-label.no { color: #5a667a; background: #e9edf3; }
.fit-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.fit-list li { display: flex; align-items: flex-start; gap: 11px; color: #3f4c61; }
.fit-list svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 3px; }
.fit-column:first-child .fit-list svg { color: var(--success); }
.fit-column:last-child .fit-list svg { color: #7c8798; }
.fit-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 27px 46px; color: #fff; background: var(--navy-950); }
.fit-cta p { margin: 0; color: rgba(255,255,255,.72); }
.fit-cta strong { color: #fff; }

.intake-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #eef4ff 0%, #f8faff 100%); }
.intake-section::before { position: absolute; top: -180px; right: -200px; width: 560px; height: 560px; border: 120px solid rgba(11,99,246,.07); border-radius: 50%; content: ""; }
.intake-layout { position: relative; display: grid; grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr); align-items: start; gap: 30px; }
.intake-side { position: sticky; top: 118px; padding: 31px; border-radius: 28px; color: #fff; background: var(--navy-950); box-shadow: var(--shadow-md); }
.intake-side h2 { margin-bottom: 16px; color: #fff; font-size: 2.2rem; }
.intake-side > p { color: rgba(255,255,255,.66); font-size: .9rem; }
.scope-snapshot { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); }
.snapshot-label { margin-bottom: 13px; color: var(--gold-500); font-size: .68rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.snapshot-list { display: grid; gap: 12px; margin: 0; }
.snapshot-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: start; font-size: .78rem; }
.snapshot-row dt { color: rgba(255,255,255,.52); }
.snapshot-row dd { margin: 0; color: #fff; text-align: right; }
.intake-side-note { margin-top: 24px; padding: 16px; border: 1px solid rgba(255,191,47,.28); border-radius: 16px; color: rgba(255,255,255,.74); background: rgba(255,191,47,.08); font-size: .78rem; }

.form-card { overflow: hidden; border: 1px solid #d8e3f2; border-radius: 30px; background: #fff; box-shadow: var(--shadow-md); }
.form-progress { padding: 23px 28px; border-bottom: 1px solid var(--line); background: #fff; }
.form-progress-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 11px; }
.form-progress-top strong { color: var(--navy-950); font-size: .9rem; }
.form-progress-top span { color: var(--muted); font-size: .78rem; }
progress { width: 100%; height: 8px; border: 0; border-radius: 999px; overflow: hidden; background: #e8edf5; }
progress::-webkit-progress-bar { background: #e8edf5; }
progress::-webkit-progress-value { border-radius: 999px; background: linear-gradient(90deg, var(--blue-600), var(--gold-500)); }
progress::-moz-progress-bar { border-radius: 999px; background: linear-gradient(90deg, var(--blue-600), var(--gold-500)); }
.form-body { padding: 34px 34px 26px; }
.form-step { display: none; }
.form-step.is-active { display: block; animation: stepIn .32s ease both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.form-step-head { margin-bottom: 30px; }
.form-step-head span { display: block; margin-bottom: 7px; color: var(--blue-600); font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.form-step-head h3 { margin-bottom: 10px; font-size: clamp(1.75rem, 3vw, 2.45rem); }
.form-step-head p { margin: 0; color: var(--muted); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.compact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.measurement-panel {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid #d8e3f2;
  border-radius: 20px;
  background: linear-gradient(135deg, #f6f9ff 0%, #fffdf8 100%);
}
.measurement-head { max-width: 650px; margin-bottom: 20px; }
.measurement-head > span { display: block; margin-bottom: 5px; color: var(--blue-600); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.measurement-head h4 { margin-bottom: 7px; font-size: 1.18rem; }
.measurement-head p { margin: 0; color: var(--muted); font-size: .8rem; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label, .field-label { color: var(--navy-950); font-size: .78rem; font-weight: 800; }
.field label small, .field-label small { color: var(--muted); font-weight: 500; }
.required-mark { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cfd8e6;
  border-radius: 13px;
  color: var(--ink);
  background: #fbfcfe;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 115px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue-600); background: #fff; box-shadow: 0 0 0 4px rgba(11,99,246,.12); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); background: var(--danger-soft); }
.field-help { margin: -1px 0 0; color: var(--muted); font-size: .72rem; }
.field-error { min-height: 1em; margin: 0; color: var(--danger); font-size: .72rem; font-weight: 700; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
legend { margin-bottom: 12px; color: var(--navy-950); font-size: .82rem; font-weight: 800; }
.option-section + .option-section { margin-top: 28px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.choice-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-card { position: relative; display: flex; min-height: 66px; align-items: flex-start; gap: 11px; padding: 14px; border: 1px solid #d5deea; border-radius: 14px; background: #fff; cursor: pointer; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.choice-card:hover { border-color: #93b7f0; transform: translateY(-1px); }
.choice-card:has(input:checked) { border-color: var(--blue-600); background: var(--blue-100); box-shadow: inset 0 0 0 1px var(--blue-600); }
.choice-card input { flex: 0 0 auto; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--blue-600); }
.choice-card strong { display: block; color: var(--navy-950); font-size: .82rem; line-height: 1.3; }
.choice-card span { display: block; margin-top: 3px; color: var(--muted); font-size: .68rem; line-height: 1.35; }
.form-callout { display: flex; gap: 13px; margin-top: 24px; padding: 17px; border: 1px solid #cfe0fa; border-radius: 16px; color: #40516b; background: #f2f7ff; font-size: .82rem; }
.form-callout svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--blue-600); }
.form-error-summary { display: none; margin-bottom: 23px; padding: 17px; border: 1px solid #f1b7b2; border-radius: 15px; color: #7a271a; background: var(--danger-soft); }
.form-error-summary.is-visible { display: block; }
.form-error-summary strong { display: block; margin-bottom: 5px; }
.form-review { display: grid; gap: 10px; margin-bottom: 25px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--cloud); }
.review-row { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 8px 0; border-bottom: 1px dashed #d5dce7; }
.review-row:last-child { border-bottom: 0; }
.review-row dt { color: var(--muted); font-size: .76rem; font-weight: 700; }
.review-row dd { margin: 0; color: var(--navy-950); font-size: .82rem; font-weight: 700; }
.confirmation-box { display: grid; gap: 12px; margin-top: 23px; }
.confirmation-box label { display: flex; align-items: flex-start; gap: 11px; color: #425069; font-size: .82rem; }
.confirmation-box input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue-600); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 22px 34px; border-top: 1px solid var(--line); background: #fbfcfe; }
.form-footer-left, .form-footer-right { display: flex; align-items: center; gap: 11px; }
.form-footer .btn { min-height: 48px; }
.form-status { min-height: 24px; margin: 0; color: var(--muted); font-size: .8rem; }
.form-success { display: none; padding: 62px 35px; text-align: center; }
.form-success.is-visible { display: block; }
.success-icon { display: grid; width: 80px; height: 80px; place-items: center; margin: 0 auto 24px; border-radius: 50%; color: var(--success); background: var(--success-soft); }
.success-icon svg { width: 40px; height: 40px; }
.form-success h3 { margin-bottom: 12px; font-size: 2.3rem; }
.form-success p { max-width: 570px; margin: 0 auto 14px; color: var(--muted); }
.form-success code { color: var(--navy-950); font-weight: 800; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.journal-preview { background: #fff; }
.journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.article-cover { position: relative; display: flex; min-height: 235px; align-items: flex-end; padding: 25px; overflow: hidden; color: #fff; background: var(--navy-950); }
.article-cover::before { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,191,47,.34), transparent 30%), linear-gradient(135deg, rgba(11,99,246,.66), transparent 70%); content: ""; }
.article-cover.cover-two { background: #ffca4e; }
.article-cover.cover-two::before { background: linear-gradient(135deg, rgba(255,255,255,.46), transparent 55%), repeating-linear-gradient(45deg, rgba(4,18,53,.08) 0 1px, transparent 1px 18px); }
.article-cover.cover-three::before { background: radial-gradient(circle at 18% 82%, rgba(11,99,246,.5), transparent 34%), linear-gradient(45deg, transparent, rgba(255,255,255,.08)); }
.article-cover-label { position: relative; z-index: 1; font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.cover-two .article-cover-label { color: var(--navy-950); }
.article-body { padding: 25px; }
.article-meta { margin-bottom: 12px; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.article-card h3 { margin-bottom: 12px; font-size: 1.45rem; }
.article-card p { color: var(--muted); font-size: .9rem; }
.article-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--line); }
.helpful-btn { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 0; border-radius: 999px; color: var(--muted); background: var(--cloud); font-size: .72rem; font-weight: 800; }
.helpful-btn[aria-pressed="true"] { color: #b42346; background: #fff0f4; }
.helpful-btn svg { width: 16px; height: 16px; }

.page-hero { padding: 88px 0 68px; background: linear-gradient(180deg, #fffefb, #f2f7ff); }
.page-hero-inner { max-width: 870px; }
.page-hero h1 { margin-bottom: 20px; font-size: clamp(3rem, 7vw, 5.7rem); }
.article-page { background: #fff; }
.article-shell { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: center; gap: 55px; padding: 80px 0 110px; }
.article-aside { position: sticky; top: 120px; align-self: start; }
.article-aside p { color: var(--muted); font-size: .78rem; }
.article-content { color: #314057; font-size: 1.05rem; line-height: 1.83; }
.article-content h2 { margin: 50px 0 18px; font-size: 2.15rem; }
.article-content h3 { margin: 34px 0 12px; font-size: 1.45rem; }
.article-content blockquote { margin: 38px 0; padding: 22px 26px; border-left: 5px solid var(--gold-500); border-radius: 0 18px 18px 0; color: var(--navy-950); background: #fff9e8; font-family: var(--font-serif); font-size: 1.35rem; font-style: italic; }
.article-content ul { padding-left: 23px; }
.article-content li { margin-bottom: 9px; }
.article-back { color: var(--blue-600); font-weight: 800; }

.privacy-shell { max-width: 820px; padding: 80px 0 110px; }
.privacy-shell h2 { margin-top: 44px; font-size: 2rem; }
.privacy-shell p, .privacy-shell li { color: #46536a; }

.site-footer { padding: 72px 0 28px; color: #fff; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .75fr 1fr; gap: 45px; }
.footer-brand img { width: 235px; height: auto; filter: drop-shadow(0 5px 13px rgba(0,0,0,.2)); }
.footer-brand p { max-width: 430px; margin-top: 20px; color: rgba(255,255,255,.62); font-size: .86rem; }
.footer-title { margin-bottom: 17px; color: var(--gold-500); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links a, .footer-links li { color: rgba(255,255,255,.68); font-size: .82rem; }
.footer-address { margin: 0 0 16px; color: rgba(255,255,255,.86); font-size: .86rem; line-height: 1.65; }
.footer-links.compact { gap: 7px; }
.footer-links a:hover { color: #fff; }
.footer-cta p { color: rgba(255,255,255,.65); font-size: .83rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.48); font-size: .73rem; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
  .site-nav > a:not(.btn) { display: none; }
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 35px; }
  .hero-media { min-height: 570px; }
  .hero-float { right: -8px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .process-line { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .scope-layout { grid-template-columns: 1fr; }
  .scope-intro { position: static; }
  .owners-main { grid-template-columns: .88fr 1.12fr; gap: 42px; }
  .owner-mini-grid { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .intake-layout { grid-template-columns: 1fr; }
  .intake-side { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .scope-snapshot { margin-top: 0; padding-top: 0; padding-left: 22px; border-top: 0; border-left: 1px solid rgba(255,255,255,.13); }
  .footer-grid { grid-template-columns: 1.35fr .7fr .85fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 78px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-shell { min-height: 76px; }
  .brand img { width: 176px; max-height: 58px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    z-index: 999;
    top: 76px;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: grid; gap: 4px; }
  .site-nav > a:not(.btn) { display: block; padding: 12px 9px; }
  .site-nav .btn { margin-top: 8px; }
  .hero { padding: 60px 0 55px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 620px; margin-top: 10px; }
  .hero-photo-frame { inset: 0 22px 0 22px; }
  .hero-seal { top: 34px; left: 0; width: 116px; height: 116px; border-width: 6px; }
  .hero-float { right: 2px; max-width: 215px; }
  .hero-float-one { top: 116px; }
  .hero-float-two { bottom: 74px; }
  .statement-grid { grid-template-columns: 1fr; gap: 25px; }
  .section { padding: 82px 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .scope-content ul { grid-template-columns: 1fr; }
  .owners-main { grid-template-columns: 1fr; }
  .owners-photo { max-width: 620px; margin: 0 auto; }
  .owner-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .standards-grid { grid-template-columns: 1fr; }
  .fit-columns { grid-template-columns: 1fr; }
  .fit-column + .fit-column { border-top: 1px solid var(--line); border-left: 0; }
  .fit-cta { align-items: flex-start; flex-direction: column; }
  .intake-side { grid-template-columns: 1fr; }
  .scope-snapshot { padding-top: 20px; padding-left: 0; border-top: 1px solid rgba(255,255,255,.13); border-left: 0; }
  .choice-grid, .choice-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid, .field-grid.three, .compact-grid { grid-template-columns: 1fr 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .article-shell { grid-template-columns: 1fr; gap: 30px; padding-top: 55px; }
  .article-aside { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-media { min-height: 530px; }
  .hero-photo-frame { inset: 0 8px; border-width: 7px; border-radius: 42% 42% 24% 24% / 25% 25% 16% 16%; }
  .hero-seal { top: 18px; width: 98px; height: 98px; padding: 12px; }
  .hero-seal span { font-size: .61rem; }
  .hero-float { display: none; }
  .hero-owner-label { right: 28px; bottom: 24px; left: 28px; }
  .trust-track { animation-duration: 23s; }
  .section { padding: 70px 0; }
  .section-head, .section-head-centered { margin-bottom: 36px; }
  .statement { padding: 64px 0; }
  .audience-card { min-height: 0; padding: 28px; }
  .audience-number { margin-bottom: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .scope-accordions summary { grid-template-columns: 42px 1fr 22px; padding: 17px; }
  .scope-icon { width: 40px; height: 40px; }
  .scope-content { padding: 0 17px 19px; }
  .owners-photo::before { display: none; }
  .owners-photo img { border-radius: 30px; }
  .owner-badge { right: 10px; bottom: 18px; left: 10px; max-width: none; }
  .owner-mini-grid { grid-template-columns: 1fr; }
  .fit-top, .fit-column { padding: 32px 24px; }
  .fit-cta { padding: 26px 24px; }
  .intake-side { padding: 26px; }
  .form-progress { padding: 20px; }
  .form-body { padding: 27px 20px 20px; }
  .field-grid, .field-grid.three, .compact-grid { grid-template-columns: 1fr; }
  .measurement-panel { padding: 20px; }
  .choice-grid, .choice-grid.two { grid-template-columns: 1fr; }
  .form-footer { align-items: stretch; flex-direction: column; padding: 18px 20px; }
  .form-footer-left, .form-footer-right { width: 100%; }
  .form-footer .btn { flex: 1; }
  .review-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-cta { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .article-cover { min-height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .hero-actions, .trust-ribbon, .site-footer, .nav-toggle, .helpful-btn { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 30px 0; }
  .article-shell { display: block; padding: 20px 0; }
}
