:root {
  --ink: #10202e;
  --ink-soft: #41515f;
  --navy: #08141f;
  --navy-2: #0d2231;
  --blue: #1172a5;
  --blue-bright: #1b8fc8;
  --teal: #49c4be;
  --red: #e35d52;
  --sand: #ece7dd;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: rgba(16, 32, 46, .14);
  --shadow: 0 22px 70px rgba(4, 20, 31, .13);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-accent { background: var(--blue); color: var(--white); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 86px;
  display: flex;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(8,20,31,.96);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: max-content; }
.brand-mark { width: 42px; height: 42px; fill: currentColor; }
.brand-mark-accent { fill: var(--teal); opacity: .9; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 1rem; letter-spacing: .02em; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.64); font-size: .69rem; text-transform: uppercase; letter-spacing: .13em; }
.primary-nav { display: flex; align-items: center; gap: 27px; }
.primary-nav a { text-decoration: none; color: rgba(255,255,255,.78); font-size: .83rem; font-weight: 700; letter-spacing: .02em; transition: color .2s; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--white); }
.primary-nav .nav-cta { padding: 11px 16px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; color: var(--white); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: var(--white); }

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(27,143,200,.34), transparent 32%),
    linear-gradient(125deg, #06111a 0%, #0a2030 52%, #0d3145 100%);
  padding: 150px 0 90px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(73,196,190,.2);
  border-radius: 50%;
  right: -90px;
  bottom: -180px;
  box-shadow: 0 0 0 65px rgba(73,196,190,.035), 0 0 0 130px rgba(73,196,190,.025);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}
.hero-layout { position: relative; display: grid; grid-template-columns: 1.17fr .83fr; gap: 85px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--blue-bright); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .19em; }
.section-dark .eyebrow, .section-accent .eyebrow, .hero .eyebrow { color: var(--teal); }
.hero h1 { margin: 0; max-width: 760px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.2rem, 6.4vw, 6.1rem); line-height: .98; letter-spacing: -.045em; font-weight: 500; }
.hero h1 span { color: #b8dbe8; }
.hero-lead { max-width: 720px; margin: 30px 0 0; color: rgba(255,255,255,.73); font-size: 1.15rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 13px 21px; border: 1px solid transparent; border-radius: 7px; text-decoration: none; font-weight: 800; font-size: .86rem; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, border .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: #06151f; }
.button-primary:hover { background: #65d6d0; }
.button-ghost { border-color: rgba(255,255,255,.26); color: var(--white); background: rgba(255,255,255,.04); }
.button-light { background: var(--white); color: var(--blue); }
.button-full { width: 100%; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 25px; margin: 30px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.66); font-size: .81rem; font-weight: 700; }
.hero-proof li { position: relative; padding-left: 17px; }
.hero-proof li::before { content: ""; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero-panel { position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(7,23,34,.76); box-shadow: 0 35px 90px rgba(0,0,0,.29); backdrop-filter: blur(10px); }
.hero-panel::before { content: "FORENSIC REVIEW"; position: absolute; top: -31px; right: 17px; color: rgba(255,255,255,.24); font-size: .65rem; font-weight: 800; letter-spacing: .2em; }
.signal { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.signal span, .panel-score span { color: rgba(255,255,255,.5); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.signal strong { position: relative; color: #ffb3ac; font-size: .87rem; text-transform: uppercase; letter-spacing: .09em; }
.signal strong::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(227,93,82,.11); }
.diagnostic-list { padding: 10px 0; }
.diagnostic-list div { display: grid; grid-template-columns: 42px 1fr; align-items: center; min-height: 64px; border-bottom: 1px solid rgba(255,255,255,.08); }
.diagnostic-list span { color: var(--teal); font-size: .73rem; font-weight: 800; }
.diagnostic-list p { margin: 0; font-weight: 700; }
.panel-score { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; }
.panel-score div { display: grid; gap: 5px; }
.panel-score strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.panel-score svg { width: 76px; height: 76px; transform: rotate(-90deg); }
.panel-score circle { fill: none; stroke-width: 5; }
.score-track { stroke: rgba(255,255,255,.12); }
.score-progress { stroke: var(--teal); stroke-dasharray: 195; stroke-dashoffset: 32; stroke-linecap: round; }
.panel-score path { fill: none; stroke: var(--white); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; transform: rotate(90deg); transform-origin: center; }

.split-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.section-heading { max-width: 770px; margin-bottom: 55px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .assessment-copy h2, .contact-copy h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 4.5vw, 4.35rem); line-height: 1.08; letter-spacing: -.035em; font-weight: 500; }
.section-heading > p:last-child { margin: 22px 0 0; color: var(--ink-soft); font-size: 1.05rem; }
.section-dark .section-heading > p:last-child { color: rgba(255,255,255,.63); }
.prose { padding-top: 7px; }
.prose p { margin: 0 0 22px; color: var(--ink-soft); font-size: 1.08rem; }
.prose strong { color: var(--ink); }

.indicator-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
.indicator-card { min-height: 255px; padding: 30px; background: var(--navy); }
.indicator-card:nth-child(1) { grid-column: span 2; background: var(--navy-2); }
.indicator-card span { display: inline-flex; color: var(--red); font-size: .74rem; font-weight: 900; letter-spacing: .1em; }
.indicator-card h3 { margin: 55px 0 12px; font-family: Georgia, serif; font-size: 1.5rem; line-height: 1.18; font-weight: 500; }
.indicator-card p { margin: 0; color: rgba(255,255,255,.55); font-size: .92rem; }

.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.capability { min-height: 275px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.48); transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.capability:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow); }
.capability-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--blue); background: rgba(17,114,165,.1); font-weight: 900; font-size: .72rem; }
.capability h3 { margin: 54px 0 12px; font-size: 1.1rem; }
.capability p { margin: 0; color: var(--ink-soft); font-size: .93rem; }

.assessment-layout { display: grid; grid-template-columns: .83fr 1.17fr; gap: 90px; align-items: start; }
.assessment-copy { position: sticky; top: 115px; }
.assessment-copy p:not(.eyebrow) { margin: 24px 0 30px; color: rgba(255,255,255,.78); font-size: 1.05rem; }
.assessment-list { margin: 0; padding: 0; list-style: none; counter-reset: assessment; border-top: 1px solid rgba(255,255,255,.3); }
.assessment-list li { position: relative; display: grid; grid-template-columns: 190px 1fr; gap: 25px; padding: 24px 0 24px 50px; border-bottom: 1px solid rgba(255,255,255,.22); }
.assessment-list li::before { counter-increment: assessment; content: "0" counter(assessment); position: absolute; left: 0; top: 26px; color: var(--teal); font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.assessment-list span { font-weight: 900; }
.assessment-list p { margin: 0; color: rgba(255,255,255,.71); }

.engagement-list { border-top: 1px solid var(--line); }
.engagement { display: grid; grid-template-columns: 130px 1fr; gap: 40px; padding: 45px 0; border-bottom: 1px solid var(--line); }
.engagement-number { font-family: Georgia, serif; font-size: 3.7rem; line-height: 1; color: rgba(16,32,46,.17); }
.engagement-type { margin: 0 0 7px; color: var(--blue); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.engagement h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 500; letter-spacing: -.02em; }
.engagement div:last-child > p:last-child { max-width: 760px; margin: 16px 0 0; color: var(--ink-soft); }

.roadmap-section { background: var(--sand); }
.roadmap { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.roadmap::before { content: ""; position: absolute; left: 5%; right: 5%; top: 37px; height: 1px; background: rgba(16,32,46,.18); }
.roadmap-step { position: relative; min-height: 280px; padding: 86px 27px 28px; border-radius: var(--radius); background: rgba(255,255,255,.52); }
.roadmap-step span { position: absolute; top: 17px; left: 25px; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); box-shadow: 0 0 0 8px var(--sand); font-size: .7rem; font-weight: 900; z-index: 1; }
.roadmap-step h3 { margin: 0 0 12px; font-family: Georgia, serif; font-size: 1.6rem; font-weight: 500; }
.roadmap-step p { margin: 0; color: var(--ink-soft); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 20px 55px rgba(8,20,31,.08); }
table { width: 100%; border-collapse: collapse; min-width: 890px; }
th, td { padding: 22px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { color: var(--white); background: var(--navy); font-size: .73rem; text-transform: uppercase; letter-spacing: .1em; }
td { color: var(--ink-soft); font-size: .91rem; }
td:first-child { color: var(--ink); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(17,114,165,.035); }

.credentials { padding-top: 0; }
.credentials-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: end; padding: 70px; color: var(--white); background: var(--navy-2); border-radius: 28px; }
.credentials-layout .section-heading { margin: 0; }
.credentials-layout .section-heading > p:last-child { color: rgba(255,255,255,.62); }
.credential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.14); }
.credential-grid div { min-height: 138px; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: var(--navy-2); }
.credential-grid strong { font-family: Georgia, serif; font-size: 1.8rem; font-weight: 500; }
.credential-grid span { color: rgba(255,255,255,.52); font-size: .78rem; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 110px; }
.contact-copy > p:not(.eyebrow) { max-width: 600px; margin: 24px 0 35px; color: rgba(255,255,255,.62); }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.14); }
.contact-details > * { display: grid; gap: 5px; padding: 20px 16px 20px 0; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-details > *:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.14); }
.contact-details > *:nth-child(even) { padding-left: 20px; }
.contact-details span { color: var(--teal); font-size: .67rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.contact-details strong { font-size: .9rem; font-weight: 700; }
.contact-form { padding: 35px; color: var(--ink); background: var(--white); border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.form-heading { margin-bottom: 24px; }
.form-heading span { color: var(--blue); font-size: .69rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.form-heading h3 { margin: 5px 0 0; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 7px; margin-bottom: 16px; font-size: .77rem; font-weight: 850; }
input, select, textarea { width: 100%; border: 1px solid #ccd3d8; border-radius: 7px; background: #fbfbfa; color: var(--ink); padding: 12px 13px; outline: none; transition: border .2s, box-shadow .2s; }
textarea { resize: vertical; min-height: 125px; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(17,114,165,.11); }
.form-note { margin: 12px 0 0; color: #6d7a84; font-size: .72rem; text-align: center; }

.site-footer { padding: 55px 0; color: var(--white); background: #050d13; }
.footer-layout { display: grid; grid-template-columns: 1.25fr .75fr .7fr; gap: 60px; align-items: start; }
.footer-brand { margin-bottom: 17px; }
.site-footer p { margin: 0; max-width: 430px; color: rgba(255,255,255,.47); font-size: .84rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.66); text-decoration: none; font-size: .82rem; }
.footer-links a:hover { color: var(--white); }
.footer-meta { text-align: right; }

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

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

@media (max-width: 1050px) {
  .primary-nav { gap: 17px; }
  .primary-nav a { font-size: .76rem; }
  .hero-layout, .assessment-layout, .contact-layout { gap: 55px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .indicator-grid { grid-template-columns: repeat(2, 1fr); }
  .indicator-card:nth-child(1) { grid-column: span 1; }
  .credentials-layout { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .section { padding: 82px 0; }
  .nav-toggle { display: block; position: relative; z-index: 2; }
  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    background: rgba(8,20,31,.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .24s ease;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav a { font-family: Georgia, serif; font-size: 1.65rem; font-weight: 500; }
  .primary-nav .nav-cta { margin-top: 8px; font-family: inherit; font-size: .88rem; }
  .hero { min-height: auto; }
  .hero-layout, .split-intro, .assessment-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-layout { gap: 70px; }
  .hero-panel { max-width: 590px; }
  .split-intro, .assessment-layout, .contact-layout { gap: 42px; }
  .assessment-copy, .contact-copy { position: static; }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
  .credentials-layout { padding: 48px; }
  .footer-layout { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: span 2; text-align: left; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { height: 72px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy small { font-size: .58rem; }
  .hero { padding-top: 125px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.25rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; text-align: center; }
  .hero-proof { display: grid; gap: 9px; }
  .hero-panel { padding: 21px; }
  .section-heading { margin-bottom: 38px; }
  .indicator-grid, .capability-grid, .roadmap, .credential-grid { grid-template-columns: 1fr; }
  .indicator-card { min-height: 225px; }
  .indicator-card h3 { margin-top: 40px; }
  .assessment-list li { grid-template-columns: 1fr; gap: 5px; padding-left: 42px; }
  .engagement { grid-template-columns: 1fr; gap: 14px; }
  .engagement-number { font-size: 2.5rem; }
  .roadmap::before { display: none; }
  .credentials-layout { padding: 34px 24px; border-radius: 20px; }
  .contact-details, .form-row { grid-template-columns: 1fr; }
  .contact-details > *:nth-child(odd) { border-right: 0; }
  .contact-details > *:nth-child(even) { padding-left: 0; }
  .contact-form { padding: 25px 20px; }
  .footer-layout { grid-template-columns: 1fr; }
  .footer-meta { grid-column: auto; }
  table, thead, tbody, th, td, tr { display: block; min-width: 0; }
  thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  tbody tr { padding: 12px 18px; border-bottom: 1px solid var(--line); }
  tbody tr:last-child { border-bottom: 0; }
  td { display: grid; grid-template-columns: 115px 1fr; gap: 12px; padding: 9px 0; border: 0; }
  td::before { content: attr(data-label); color: var(--blue); font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
}
