:root {
  --ink: #102032;
  --ink-soft: #405063;
  --navy: #0d1b2a;
  --paper: #f5f0e7;
  --paper-2: #ebe5da;
  --white: #fffdf8;
  --red: #df4d41;
  --red-dark: #b6362d;
  --blue: #2f6594;
  --amber: #a76b1f;
  --line: rgba(16, 32, 50, .16);
  --shadow: 0 30px 80px rgba(13, 27, 42, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 5%, rgba(223, 77, 65, .08), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 99; background: white; padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; gap: 11px; align-items: center; text-decoration: none; font-size: 13px; font-weight: 750; line-height: 1.08; letter-spacing: .015em; }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--white); background: var(--navy); font-size: 12px; letter-spacing: .06em; }
nav { display: flex; align-items: center; gap: 26px; font-size: 13px; font-weight: 650; }
nav a { text-decoration: none; }
.nav-cta { border-bottom: 2px solid var(--red); padding-bottom: 4px; }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 650px;
  padding: 90px 0 82px;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
}
.eyebrow { margin: 0 0 20px; color: var(--red-dark); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.025em; }
h1 { max-width: 700px; margin-bottom: 27px; font-size: clamp(44px, 6vw, 78px); line-height: .99; }
h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.03; }
h3 { font-size: 24px; line-height: 1.15; }
.hero-lede { max-width: 650px; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; gap: 26px; align-items: center; margin-top: 38px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 22px; text-decoration: none; font-size: 13px; font-weight: 750; letter-spacing: .02em; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--navy); }
.button-primary:hover { background: #192f44; }
.text-link { font-size: 13px; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 5px; }

.signal-board { position: relative; border: 1px solid rgba(13, 27, 42, .18); background: rgba(255, 253, 248, .8); box-shadow: var(--shadow); transform: rotate(1.4deg); }
.signal-board::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; z-index: -1; border: 1px solid rgba(13, 27, 42, .1); }
.signal-head, .signal-row, .signal-foot { display: flex; align-items: center; justify-content: space-between; }
.signal-head { padding: 17px 19px; color: var(--white); background: var(--navy); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.status { display: flex; align-items: center; gap: 7px; color: #dce8ef; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: #65c29a; box-shadow: 0 0 0 4px rgba(101, 194, 154, .15); }
.signal-row { min-height: 82px; padding: 0 20px; border-bottom: 1px solid var(--line); }
.signal-row > div { display: flex; align-items: center; gap: 16px; }
.signal-row strong { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 500; }
.signal-id { color: #8993a0; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.tag { padding: 6px 9px; border-radius: 3px; color: var(--ink); background: #e8e4da; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.tag-red { color: #8f2c26; background: #f5d8d3; }
.tag-amber { color: #7b501b; background: #f3e4c8; }
.tag-blue { color: #244f78; background: #d9e7f2; }
.signal-foot { padding: 16px 20px; color: #78828d; font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip span { padding: 18px 20px; text-align: center; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.trust-strip span + span { border-left: 1px solid var(--line); }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: end; margin-bottom: 55px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p:last-child { color: var(--ink-soft); font-size: 16px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 310px; padding: 26px 24px 34px; display: flex; flex-direction: column; }
.service-card + .service-card { border-left: 1px solid var(--line); }
.card-number { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin-top: auto; margin-bottom: 15px; }
.service-card p { min-height: 82px; margin: 0; color: var(--ink-soft); font-size: 14px; }

.deliverable { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: stretch; padding-top: 20px; }
.report-card { padding: 50px; color: var(--white); background: var(--navy); }
.report-card .eyebrow { color: #f08b81; }
.report-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.18); }
.report-top h2 { max-width: 650px; margin-bottom: 0; }
.report-label { flex: 0 0 auto; padding: 8px 10px; border: 1px solid rgba(255,255,255,.3); font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.report-grid { display: grid; grid-template-columns: 1fr 1fr; }
.report-item { display: grid; grid-template-columns: 32px 1fr; gap: 12px; padding: 30px 22px 22px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.report-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.14); }
.report-item:nth-child(even) { padding-left: 25px; }
.report-item span { color: #8ca3b5; font-size: 10px; font-weight: 800; }
.report-item p { margin: 0; color: #bbc8d2; font-size: 13px; }
.report-item strong { display: block; margin-bottom: 8px; color: white; font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 500; }
.fit-card { padding: 38px 34px; border: 1px solid var(--line); background: rgba(255, 253, 248, .55); }
.fit-card h3 { margin-bottom: 42px; font-size: 30px; }
.fit-card ul { margin: 0; padding: 0; list-style: none; }
.fit-card li { padding: 14px 0; border-top: 1px solid var(--line); font-size: 13px; font-weight: 650; }
.fit-card li::before { content: "—"; margin-right: 10px; color: var(--red); }

.method { padding-bottom: 135px; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 100px 1fr; padding: 35px 0; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--red); font-family: Georgia, "Times New Roman", serif; font-size: 28px; }
.steps h3 { margin-bottom: 8px; }
.steps p { max-width: 650px; margin: 0; color: var(--ink-soft); }

.contact { padding: 90px max(20px, calc((100vw - 1180px)/2)); display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; color: var(--white); background: var(--red); }
.contact .eyebrow { color: #ffe0dc; }
.contact h2 { margin-bottom: 20px; font-size: clamp(38px, 5vw, 64px); }
.contact-copy p:last-child { max-width: 650px; color: #ffe7e2; }
.contact-action { display: flex; flex-direction: column; align-items: flex-start; }
.button-light { color: var(--ink); background: var(--white); }
.contact-action p { margin: 16px 0 0; color: #ffe4df; font-size: 11px; }
.contact-action p a { text-underline-offset: 3px; }

footer { min-height: 175px; padding: 45px max(20px, calc((100vw - 1180px)/2)); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; color: #c7d1d9; background: var(--navy); font-size: 11px; }
.footer-brand { color: white; }
footer p:nth-child(2) { text-align: center; }
footer p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .signal-board { transform: none; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .service-card:nth-child(4) { border-top: 1px solid var(--line); }
  .deliverable { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .site-header { width: min(100% - 28px, 1180px); }
  nav a:not(.nav-cta) { display: none; }
  .hero, .section { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; padding: 62px 0 78px; }
  h1 { font-size: 46px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .signal-row strong { font-size: 15px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip span:nth-child(3) { border-left: 0; }
  .trust-strip span:nth-child(n+3) { border-top: 1px solid var(--line); }
  .section { padding: 85px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card + .service-card { min-height: 250px; border-left: 0; border-top: 1px solid var(--line); }
  .report-card { padding: 32px 24px; }
  .report-top { flex-direction: column; }
  .report-grid { grid-template-columns: 1fr; }
  .report-item:nth-child(odd) { border-right: 0; }
  .report-item:nth-child(even) { padding-left: 0; }
  .steps li { grid-template-columns: 55px 1fr; }
  footer { grid-template-columns: 1fr; gap: 25px; }
  footer p:nth-child(2), footer p:last-child { text-align: left; }
}
