@font-face { font-family: "Barlow Condensed"; src: url("/assets/fonts/barlow-condensed-500.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("/assets/fonts/barlow-condensed-600.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("/assets/fonts/barlow-condensed-700.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("/assets/fonts/barlow-condensed-800.woff2") format("woff2"); font-style: normal; font-weight: 800; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("/assets/fonts/ibm-plex-mono-500.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("/assets/fonts/ibm-plex-mono-600.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("/assets/fonts/source-sans-3.woff2") format("woff2"); font-style: normal; font-weight: 400 700; font-display: swap; }

:root {
  --navy: #062f50;
  --navy-deep: #03223a;
  --blue: #1971ac;
  --blue-bright: #2c8bc4;
  --red: #d84a3a;
  --red-dark: #b9362a;
  --paper: #f4f7fa;
  --white: #ffffff;
  --ink: #122536;
  --muted: #607181;
  --line: #cfdae3;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Source Sans 3", system-ui, sans-serif;
  --utility: "IBM Plex Mono", ui-monospace, monospace;
  --shadow: 0 24px 70px rgba(3, 34, 58, .16);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--body); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; transform: translateY(-150%); padding: 10px 16px; background: var(--white); color: var(--navy); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.announcement { background: var(--navy-deep); color: rgba(255,255,255,.82); font-family: var(--utility); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.announcement__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement a { color: var(--white); text-decoration: none; }
.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(6,47,80,.12); backdrop-filter: blur(14px); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(3,34,58,.1); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--navy); }
.brand img { width: 54px; height: 62px; object-fit: contain; }
.brand__wordmark { display: grid; line-height: 1; }
.brand__wordmark strong { font: 800 24px/.9 var(--display); text-transform: uppercase; letter-spacing: .03em; }
.brand__wordmark small { margin-top: 5px; font: 600 10px/1 var(--utility); text-transform: uppercase; letter-spacing: .18em; }
.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav > a:not(.button) { position: relative; padding-block: 8px; color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 650; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 100%; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.site-nav > a:not(.button):hover::after, .site-nav > a:not(.button):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--navy); }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 18px; padding: 13px 22px; border: 2px solid var(--red); background: var(--red); color: var(--white); text-decoration: none; font-weight: 750; line-height: 1.1; cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.button:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(184,54,42,.2); }
.button--small { min-height: 42px; padding: 9px 16px; font-size: 14px; }
.button--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.button--outline:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.text-link { display: inline-flex; gap: 8px; align-items: baseline; color: var(--white); text-decoration-thickness: 1px; text-underline-offset: 5px; font-weight: 700; }
.text-link span { color: rgba(255,255,255,.72); font-weight: 500; }
.text-link--dark { color: var(--navy); }
.text-link--dark span { color: var(--red); }

.hero { position: relative; overflow: hidden; padding: 92px 0 0; background: var(--navy); color: var(--white); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.038) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.038) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, #000, transparent 82%); }
.hero__wash { position: absolute; width: 640px; height: 640px; right: -150px; top: -270px; border: 90px solid rgba(44,139,196,.12); border-radius: 50%; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; min-height: 590px; padding-bottom: 86px; }
.eyebrow { margin: 0 0 18px; color: var(--blue); font: 600 12px/1.3 var(--utility); letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { display: inline-block; margin-right: 9px; padding: 6px 9px; background: var(--red); color: var(--white); }
.eyebrow--light { color: #91c5e5; }
.hero h1, .section h2, .contact h2 { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.025em; text-transform: uppercase; line-height: .92; }
.hero h1 { max-width: 700px; font-size: clamp(64px, 7.3vw, 104px); }
.hero h1 em { display: block; color: #9ed1eb; font-style: normal; font-weight: 500; }
.hero__lede { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: 20px; line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 34px; }
.hero__copy > .fine-print { max-width: 620px; margin-top: 20px; color: rgba(255,255,255,.58); }
.fine-print { font-size: 13px; line-height: 1.55; }

.report-stage { position: relative; min-height: 500px; }
.report-stage__texas { position: absolute; z-index: 0; width: 440px; max-height: 510px; object-fit: contain; right: -110px; top: -65px; opacity: .13; filter: grayscale(1) brightness(3); transform: rotate(5deg); }
.report-card { position: absolute; z-index: 2; width: min(420px, 92%); left: 2%; top: 16px; padding: 24px; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); transform: rotate(-2.3deg); }
.report-card::before { content: ""; position: absolute; width: 7px; inset: 0 auto 0 0; background: var(--red); }
.report-card__topline { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); color: var(--muted); font: 600 10px/1 var(--utility); text-transform: uppercase; letter-spacing: .1em; }
.report-card__heading { padding: 24px 0 20px; }
.report-card__heading p { margin: 0 0 7px; color: var(--blue); font: 600 11px/1 var(--utility); text-transform: uppercase; letter-spacing: .12em; }
.report-card__heading strong { font: 700 34px/.98 var(--display); text-transform: uppercase; }
.report-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
.report-row__label { font-weight: 650; }
.status { min-width: 67px; padding: 4px 7px; text-align: center; font: 600 10px/1.2 var(--utility); text-transform: uppercase; }
.status--review { color: var(--navy); background: #dbeaf3; }
.status--check { color: #276444; background: #dcece4; }
.status--flag { color: #8f2e24; background: #f3d9d5; }
.report-card__next { position: relative; display: grid; margin: 18px -24px -24px; padding: 20px 54px 20px 24px; background: var(--navy); color: var(--white); }
.report-card__next > span:first-child { color: #91c5e5; font: 600 10px/1 var(--utility); text-transform: uppercase; letter-spacing: .12em; }
.report-card__next strong { margin-top: 4px; font-size: 17px; }
.report-card__next .arrow { position: absolute; right: 22px; top: 50%; color: #9ed1eb; font-size: 24px; transform: translateY(-50%); }
.report-note { position: absolute; z-index: 3; padding: 10px 14px; background: var(--white); color: var(--navy); box-shadow: 0 10px 25px rgba(3,34,58,.24); font: 600 11px/1 var(--utility); text-transform: uppercase; letter-spacing: .08em; }
.report-note--one { top: 56px; right: -5px; transform: rotate(4deg); }
.report-note--two { bottom: 62px; right: 16px; color: var(--white); background: var(--red); transform: rotate(-3deg); }
.trust-ribbon { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--white); color: var(--ink); box-shadow: 0 20px 60px rgba(3,34,58,.18); transform: translateY(35px); }
.trust-ribbon p { margin: 0; padding: 25px 30px; font-size: 14px; border-right: 1px solid var(--line); }
.trust-ribbon p:last-child { border-right: 0; }
.trust-ribbon strong { display: block; color: var(--navy); font: 700 17px/1.1 var(--display); text-transform: uppercase; letter-spacing: .02em; }

.section { padding: 116px 0; }
.section h2, .contact h2 { font-size: clamp(47px, 5.3vw, 76px); }
.section-heading--split { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 100px; margin-bottom: 60px; }
.section-heading--split > p { max-width: 440px; margin: 0; color: rgba(255,255,255,.7); }
.section--services { padding-top: 150px; background: var(--navy-deep); color: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.service-card { position: relative; min-height: 280px; padding: 30px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); transition: background .25s ease, transform .25s ease; }
.service-card:hover { z-index: 2; background: rgba(255,255,255,.055); transform: translateY(-4px); }
.service-card__mark { color: #77afd1; font: 600 11px/1 var(--utility); }
.service-card h3 { margin: 64px 0 14px; font: 700 29px/1 var(--display); text-transform: uppercase; }
.service-card p { margin: 0; color: rgba(255,255,255,.66); font-size: 15px; }
.service-card--cta { background: var(--red); }
.service-card--cta:hover { background: var(--red-dark); }
.service-card--cta .service-card__mark, .service-card--cta p { color: rgba(255,255,255,.82); }
.service-card--cta h3 { margin-top: 36px; }
.service-card--cta a { display: inline-block; margin-top: 20px; color: var(--white); font-weight: 750; text-underline-offset: 5px; }

.process { overflow: hidden; background: var(--paper); }
.process__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: start; }
.process__intro { position: sticky; top: 150px; }
.process__intro > p:not(.eyebrow) { max-width: 470px; color: var(--muted); }
.process__intro .text-link { margin-top: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { padding-top: 5px; color: var(--red); font: 600 12px/1 var(--utility); }
.process-list h3 { margin: 0 0 8px; color: var(--navy); font: 700 33px/1 var(--display); text-transform: uppercase; }
.process-list p { max-width: 560px; margin: 0; color: var(--muted); }

.story { background: var(--white); }
.story__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: center; }
.story__visual { position: relative; min-height: 560px; display: grid; place-items: center; background: var(--paper); overflow: hidden; }
.story__visual::before { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid #b8cedd; border-radius: 50%; }
.story__visual::after { content: "TPC / EST. 2018"; position: absolute; right: -58px; top: 72px; color: var(--navy); font: 600 11px/1 var(--utility); letter-spacing: .18em; transform: rotate(90deg); }
.story__seal { position: relative; z-index: 1; width: 320px; height: 390px; display: grid; place-items: center; }
.story__seal img { width: 260px; filter: drop-shadow(0 24px 20px rgba(3,34,58,.12)); }
.story__caption { position: absolute; z-index: 2; left: 26px; bottom: 22px; margin: 0; padding: 11px 14px; background: var(--navy); color: var(--white); font: 600 11px/1.45 var(--utility); text-transform: uppercase; letter-spacing: .07em; }
.story__copy { max-width: 650px; }
.story__copy h2 { margin-bottom: 28px; }
.story__lead { color: var(--navy); font-size: 23px; line-height: 1.35; }
.story__copy > p:not(.eyebrow):not(.story__lead) { color: var(--muted); }
.story__details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0; padding: 24px 0; border-block: 1px solid var(--line); }
.story__details div { display: grid; }
.story__details span { color: var(--muted); font: 600 10px/1 var(--utility); text-transform: uppercase; letter-spacing: .1em; }
.story__details strong { margin-top: 6px; font: 700 19px/1.15 var(--display); text-transform: uppercase; }

.reviews { background: var(--navy); color: var(--white); }
.reviews__heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.reviews__heading > p { margin: 0; color: rgba(255,255,255,.66); font-size: 14px; }
.review-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; max-width: 920px; margin-inline: auto; }
.review-card { min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; margin: 0; padding: 32px; border: 1px solid rgba(255,255,255,.18); }
.review-card + .review-card { border-left: 0; }
.review-card--feature { background: var(--white); color: var(--ink); transform: translateY(-12px); box-shadow: var(--shadow); }
.stars { color: #efb636; font-size: 17px; letter-spacing: .12em; }
.review-card > p { margin: 30px 0; font: 600 34px/1.1 var(--display); text-transform: uppercase; }
.review-card footer { display: grid; }
.review-card footer strong { font-size: 15px; }
.review-card footer span { color: rgba(255,255,255,.56); font: 500 10px/1.2 var(--utility); text-transform: uppercase; letter-spacing: .08em; }
.review-card--feature footer span { color: var(--muted); }
.results-note { max-width: 780px; margin: 34px auto 0; color: rgba(255,255,255,.76); text-align: center; font-size: 14px; }

.resources { background: var(--paper); }
.resources__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: center; }
.video-frame { position: relative; aspect-ratio: 16/9; background: var(--navy-deep); box-shadow: var(--shadow); }
.video-frame::before { content: ""; position: absolute; inset: -13px 13px 13px -13px; z-index: -1; border: 2px solid var(--red); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-block > p { margin: 17px 0 0; color: var(--muted); font: 600 11px/1 var(--utility); text-transform: uppercase; letter-spacing: .1em; }
.resource-copy { max-width: 520px; }
.resource-copy > p:not(.eyebrow):not(.fine-print) { color: var(--muted); font-size: 18px; }
.resource-copy .button { margin: 20px 0 12px; }
.resource-copy .fine-print { color: var(--muted); }

.faq { background: var(--white); }
.faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq__intro > p:last-child { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; color: var(--navy); font: 700 23px/1.2 var(--display); text-transform: uppercase; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--red); transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 680px; margin: -3px 50px 27px 0; color: var(--muted); }

.contact { position: relative; overflow: hidden; padding: 110px 0; background: var(--navy-deep); color: var(--white); }
.contact::after { content: ""; position: absolute; right: -140px; bottom: -250px; width: 600px; height: 600px; border: 80px solid rgba(44,139,196,.1); border-radius: 50%; }
.contact__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: start; }
.contact__intro > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.7); }
.contact-cards { display: grid; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.2); }
.contact-cards > * { display: grid; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.2); text-decoration: none; }
.contact-cards span { color: #91c5e5; font: 600 10px/1 var(--utility); text-transform: uppercase; letter-spacing: .1em; }
.contact-cards strong { margin-top: 6px; font-size: 17px; }
.contact-cards a:hover strong { text-decoration: underline; text-underline-offset: 4px; }
.discount-badge { display: flex; gap: 15px; align-items: center; margin-top: 28px; padding: 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.17); }
.discount-badge > span { display: grid; flex: 0 0 39px; width: 39px; height: 39px; place-items: center; background: var(--red); }
.discount-badge p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; }
.discount-badge strong { display: block; color: var(--white); font-size: 15px; }
.contact-form { padding: 36px; background: var(--white); color: var(--ink); box-shadow: 0 28px 80px rgba(0,0,0,.22); }
.form-heading { display: grid; margin-bottom: 25px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--blue); font: 600 10px/1 var(--utility); text-transform: uppercase; letter-spacing: .12em; }
.form-heading strong { margin-top: 6px; color: var(--navy); font: 700 32px/1 var(--display); text-transform: uppercase; }
.contact-form > label, .field-row label { display: grid; gap: 7px; margin-bottom: 17px; font-size: 14px; font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input:not([type="radio"]):not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; padding: 12px 13px; border: 1px solid #b9c9d5; border-radius: 0; background: #fbfdff; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(25,113,172,.14); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form fieldset { margin: 0 0 18px; padding: 0; border: 0; }
.contact-form legend { margin-bottom: 9px; font-size: 14px; font-weight: 700; }
.choice-row { display: flex; flex-wrap: wrap; gap: 17px; }
.choice-row label { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; }
.contact-form input[type="radio"], .contact-form input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--red); }
.optional { color: var(--muted); font-weight: 400; }
.consent { grid-template-columns: 19px 1fr !important; align-items: start; gap: 9px !important; color: var(--muted); font-weight: 500 !important; }
.button--submit { width: 100%; border: 0; }
.form-note { margin: 13px 0 0; color: var(--muted); text-align: center; font-size: 13px; }
.honeypot { position: absolute !important; left: -9999px !important; }

.site-footer { padding: 54px 0 34px; background: #021827; color: rgba(255,255,255,.68); }
.footer__top { display: grid; grid-template-columns: 1fr 1.35fr .8fr; gap: 70px; align-items: start; padding-bottom: 38px; }
.brand--footer { color: var(--white); }
.footer__top > p { max-width: 420px; margin: 5px 0 0; }
.footer__top nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.footer__top nav a, .footer__legal a { color: var(--white); text-underline-offset: 4px; }
.footer__legal { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); font: 500 10px/1.4 var(--utility); text-transform: uppercase; letter-spacing: .06em; }
.footer__legal p { margin: 0; }
.footer__legal div { display: flex; gap: 22px; }
.footer__disclaimer { padding-top: 25px; color: rgba(255,255,255,.72); font-size: 13px; }
.footer__disclaimer p { max-width: 900px; margin: 0; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal].is-visible { opacity: 1; transform: none; }

.simple-page { min-height: 100vh; display: grid; grid-template-rows: auto 1fr auto; background: var(--paper); }
.simple-main { padding: 90px 0 120px; }
.simple-card { max-width: 820px; padding: 50px; background: var(--white); box-shadow: var(--shadow); }
.simple-card h1 { margin: 0 0 20px; color: var(--navy); font: 700 clamp(48px, 7vw, 76px)/.95 var(--display); text-transform: uppercase; }
.simple-card h2 { margin: 35px 0 8px; color: var(--navy); font: 700 28px/1 var(--display); text-transform: uppercase; }
.simple-card p, .simple-card li { color: var(--muted); }
.simple-card .button { margin-top: 20px; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 34px, 760px); }
  .nav-toggle { display: flex; align-items: center; gap: 11px; padding: 9px 0; cursor: pointer; }
  .nav-toggle__label { font: 600 11px/1 var(--utility); text-transform: uppercase; letter-spacing: .08em; }
  .nav-toggle__icon { width: 26px; display: grid; gap: 6px; }
  .nav-toggle__icon i { display: block; height: 2px; background: currentColor; transition: transform .2s ease; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 116px 0 auto; min-height: calc(100vh - 116px); display: grid; align-content: start; gap: 0; padding: 30px 24px; background: var(--white); visibility: hidden; pointer-events: none; transform: translateX(100%); transition: transform .25s ease, visibility 0s linear .25s; }
  .site-nav.is-open { visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
  .site-nav > a:not(.button) { padding: 17px 0; border-bottom: 1px solid var(--line); font: 700 28px/1 var(--display); text-transform: uppercase; }
  .site-nav .button { margin-top: 24px; }
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__copy { max-width: 720px; }
  .report-stage { width: min(100%, 590px); margin-inline: auto; }
  .trust-ribbon { grid-template-columns: 1fr; }
  .trust-ribbon p { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-heading--split, .process__grid, .story__grid, .reviews__heading, .resources__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; gap: 55px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process__intro { position: static; }
  .story__visual { min-height: 500px; }
  .review-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card + .review-card { border-left: 1px solid rgba(255,255,255,.18); }
  .review-card--feature { transform: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top nav { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 16px; }
  .announcement__inner { justify-content: center; }
  .announcement__inner > span { display: none; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 46px; height: 53px; }
  .brand__wordmark strong { font-size: 21px; }
  .site-nav { inset-block-start: 108px; min-height: calc(100vh - 108px); }
  .hero { padding-top: 68px; }
  .hero h1 { font-size: clamp(57px, 18vw, 78px); }
  .hero__lede { font-size: 18px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { align-self: flex-start; }
  .report-stage { min-height: 455px; }
  .report-card { width: 94%; left: 3%; padding: 19px; }
  .report-card__heading strong { font-size: 29px; }
  .report-card__next { margin: 15px -19px -19px; }
  .report-note--one { right: -5px; top: 34px; }
  .report-note--two { right: 1px; bottom: 30px; }
  .trust-ribbon { width: 100%; }
  .section { padding: 85px 0; }
  .section--services { padding-top: 125px; }
  .section-heading--split { margin-bottom: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .story__visual { min-height: 440px; }
  .story__details, .field-row { grid-template-columns: 1fr; }
  .review-card { min-height: 280px; padding: 26px; }
  .review-card > p { font-size: 29px; }
  .contact { padding: 85px 0; }
  .contact-form { padding: 25px 20px; }
  .choice-row { gap: 13px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__top nav { grid-column: auto; }
  .footer__legal { align-items: flex-start; flex-direction: column; }
  .simple-card { padding: 32px 23px; }
}

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