:root {
  --navy: #061a36;
  --navy-2: #0b2a59;
  --blue: #175ed9;
  --blue-bright: #2674ff;
  --ice: #edf4ff;
  --text: #0d1830;
  --muted: #5c6880;
  --line: #dce4ef;
  --white: #ffffff;
  --green: #159a63;
  --red: #d84646;
  --shadow: 0 24px 70px rgba(4, 24, 57, .12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 1000; padding: 10px 16px; background: white; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 24, 52, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: white; font-weight: 800; letter-spacing: .16em; font-size: 15px; }
.brand-mark { width: 28px; height: 28px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav > a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 14px; font-weight: 600; transition: color .2s; }
.nav > a:hover { color: white; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 99px; background: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: white !important;
  text-decoration: none;
  font-weight: 760;
  box-shadow: 0 12px 28px rgba(26, 101, 230, .24);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(26, 101, 230, .30); filter: brightness(1.04); }
.button-small { min-height: 42px; padding: 0 16px; font-size: 13px !important; }
.button-ghost { background: transparent; border: 1px solid rgba(255,255,255,.24); box-shadow: none; }
.button-dark { background: var(--navy); box-shadow: 0 12px 28px rgba(5, 24, 52, .18); }
.button-white { background: white; color: var(--navy) !important; box-shadow: none; }
.button-full { width: 100%; }

.section { padding: 112px 0; }
.section-dark { position: relative; overflow: hidden; color: white; background: radial-gradient(circle at 85% 10%, #173f7b 0%, transparent 35%), linear-gradient(145deg, #061a36 0%, #071f43 55%, #092957 100%); }
.section-soft { background: #f5f8fc; }
.hero { min-height: 760px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; padding-top: 90px; padding-bottom: 80px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -220px; top: 80px; background: radial-gradient(circle, rgba(27,110,255,.22), transparent 65%); }
.hero-glow-two { width: 420px; height: 420px; left: -260px; bottom: -220px; background: radial-gradient(circle, rgba(18,88,202,.18), transparent 65%); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; color: #8db8ff; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow-light { color: var(--blue); }
h1, h2, h3, h4, p { margin-top: 0; }
h1 { margin-bottom: 28px; font-size: clamp(54px, 7vw, 92px); line-height: .97; letter-spacing: -.055em; font-weight: 840; }
h2 { margin-bottom: 20px; font-size: clamp(36px, 4.8vw, 58px); line-height: 1.05; letter-spacing: -.045em; font-weight: 820; }
h3 { margin-bottom: 12px; font-size: 22px; line-height: 1.2; letter-spacing: -.02em; }
.hero-lede { max-width: 620px; margin-bottom: 34px; color: rgba(255,255,255,.74); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 28px; color: rgba(255,255,255,.68); font-size: 13px; }
.trust-row span::before { content: "✓"; margin-right: 8px; color: #7fd6ab; font-weight: 800; }

.product-window { border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: rgba(255,255,255,.97); color: var(--text); box-shadow: 0 42px 100px rgba(0,0,0,.32); overflow: hidden; transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.window-topbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 15px 18px; border-bottom: 1px solid #e6ebf2; background: #fafcff; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #ccd5e3; }
.window-title { font-size: 12px; color: var(--muted); font-weight: 700; }
.status-pill { justify-self: end; padding: 6px 9px; border-radius: 99px; background: #e7f7ef; color: #108052; font-size: 10px; font-weight: 800; }
.product-body { padding: 26px; }
.result-heading { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.mini-label { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.result-amount { color: var(--green); font-size: 38px; line-height: 1.15; font-weight: 850; letter-spacing: -.04em; }
.mini-copy { color: var(--muted); font-size: 11px; }
.decision-card { min-width: 145px; padding: 12px 14px; border-radius: 14px; background: #fff5ed; border: 1px solid #f6dcc7; }
.decision-card span { display: block; color: #95623c; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.decision-card strong { display: block; margin-top: 3px; color: #b65b1b; font-size: 13px; }
.issue-list { padding: 8px 0; }
.issue-row { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid #edf0f5; }
.issue-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: #edf3ff; color: var(--blue); font-size: 10px; font-weight: 850; }
.issue-row strong { display: block; font-size: 12px; }
.issue-row small { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; }
.issue-row b { color: var(--red); font-size: 12px; }
.evidence-box { margin-top: 16px; padding: 16px; border: 1px solid #dbe6f6; border-radius: 14px; background: #f8fbff; }
.evidence-top { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--muted); font-size: 10px; font-weight: 700; }
.evidence-top span:last-child { color: var(--green); }
.evidence-line { display: flex; justify-content: space-between; padding: 4px 0; font-size: 11px; }
.evidence-line.highlight { margin-top: 5px; padding-top: 9px; border-top: 1px solid #dbe6f6; color: var(--red); }

.proof-strip { border-bottom: 1px solid var(--line); background: white; }
.proof-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; min-height: 110px; gap: 30px; }
.proof-grid > div:not(.proof-arrow) { display: flex; flex-direction: column; text-align: center; }
.proof-grid strong { font-size: 16px; }
.proof-grid span { color: var(--muted); font-size: 12px; }
.proof-arrow { color: #b8c3d2; font-size: 24px; }

.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading p, .section-copy { color: var(--muted); font-size: 18px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 16px 45px rgba(10,31,67,.05); }
.step-number { margin-bottom: 62px; color: var(--blue); font-size: 14px; font-weight: 850; letter-spacing: .08em; }
.step-card p { margin-bottom: 0; color: var(--muted); }

.split-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: center; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.check-item { display: flex; gap: 13px; padding: 20px; border-radius: 16px; background: white; border: 1px solid #e2e8f1; }
.check-item > span { flex: 0 0 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #e8f7ef; color: var(--green); font-weight: 900; }
.check-item strong { display: block; font-size: 14px; }
.check-item small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 10px; color: var(--blue); font-weight: 750; text-decoration: none; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.report-section { background: linear-gradient(180deg, white, #f8fbff); }
.report-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.report-preview { padding: 18px; border-radius: 30px; background: linear-gradient(145deg, #e9f1fe, #f9fbff); box-shadow: var(--shadow); }
.report-paper { padding: 32px; border-radius: 20px; background: white; box-shadow: 0 18px 55px rgba(11, 36, 77, .12); }
.report-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.report-brand { display: flex; align-items: center; gap: 8px; color: var(--navy); letter-spacing: .13em; }
.report-brand img { width: 24px; height: 24px; object-fit: contain; }
.report-title { margin-top: 28px; font-size: 25px; font-weight: 850; letter-spacing: -.03em; }
.report-meta { display: flex; gap: 20px; margin: 8px 0 24px; color: var(--muted); font-size: 11px; }
.report-finding { padding: 20px; border: 1px solid #e5eaf2; border-radius: 16px; }
.finding-label { color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.report-finding h4 { margin: 7px 0 8px; font-size: 17px; }
.report-finding p { color: var(--muted); font-size: 11px; line-height: 1.55; }
.finding-evidence { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
.finding-evidence div { padding: 12px; border-radius: 10px; background: #f6f9fd; }
.finding-evidence span { display: block; color: var(--muted); font-size: 9px; }
.finding-evidence strong { display: block; margin-top: 3px; font-size: 13px; }
.feature-list { display: grid; gap: 10px; padding: 0; margin: 26px 0 32px; list-style: none; }
.feature-list li { color: #344159; }
.feature-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 10px; border-radius: 50%; background: #e8f7ef; color: var(--green); font-size: 12px; font-weight: 900; }

.pilot-section { padding-top: 30px; }
.pilot-card { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; padding: 64px; border-radius: 30px; color: white; background: linear-gradient(135deg, #071b38 0%, #0a2f69 65%, #1358bc 100%); box-shadow: 0 32px 80px rgba(7,30,67,.22); }
.pilot-card h2 { max-width: 650px; font-size: clamp(34px, 4vw, 52px); }
.pilot-card p { color: rgba(255,255,255,.72); }
.pilot-details { display: grid; align-content: center; gap: 13px; }
.pilot-details > div { display: flex; align-items: center; gap: 13px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.pilot-details span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: rgba(255,255,255,.10); color: #9fc5ff; font-size: 11px; font-weight: 850; }
.pilot-details p { margin: 0; color: white; font-size: 14px; }
.pilot-details .button { margin-top: 12px; }

.about-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; align-items: center; }
.founder-card { display: flex; align-items: center; gap: 18px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fafcff; box-shadow: 0 14px 44px rgba(9,30,66,.06); }
.founder-monogram { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 18px; color: white; background: linear-gradient(135deg, var(--blue), var(--navy)); font-weight: 850; }
.founder-card strong, .founder-card span { display: block; }
.founder-card span { margin-top: 4px; color: var(--muted); font-size: 13px; }

.faq-section { background: #f6f9fd; }
.faq-list { max-width: 850px; }
details { border-top: 1px solid #dbe3ee; }
details:last-child { border-bottom: 1px solid #dbe3ee; }
summary { position: relative; padding: 24px 44px 24px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 760; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; top: 20px; color: var(--blue); font-size: 24px; font-weight: 400; }
details[open] summary::after { content: "–"; }
details p { max-width: 730px; padding: 0 40px 24px 0; margin: 0; color: var(--muted); }

.contact-section { color: white; background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-grid h2 { max-width: 580px; }
.contact-grid > div > p { max-width: 560px; color: rgba(255,255,255,.68); font-size: 17px; }
.contact-details { display: grid; gap: 9px; margin-top: 30px; }
.contact-details a { width: fit-content; color: #b7d2ff; text-decoration: none; }
.contact-form { padding: 30px; border-radius: 24px; color: var(--text); background: white; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 7px; margin-bottom: 14px; color: #26344c; font-size: 12px; font-weight: 750; }
input, textarea, select { width: 100%; border: 1px solid #d7e0eb; border-radius: 11px; background: #fbfcfe; color: var(--text); outline: none; padding: 13px 14px; transition: border-color .2s, box-shadow .2s; }
input:focus, textarea:focus, select:focus { border-color: #6c9df2; box-shadow: 0 0 0 4px rgba(39,113,236,.12); }
textarea { resize: vertical; min-height: 105px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-status { min-height: 20px; margin-top: 8px; color: var(--green); font-size: 12px; font-weight: 700; text-align: center; }

.site-footer { padding: 42px 0; background: #031127; color: white; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px 40px; }
.footer-brand { color: white; }
.footer-grid p { margin: 0; color: rgba(255,255,255,.55); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: rgba(255,255,255,.68); text-decoration: none; font-size: 13px; }
.footer-grid small { grid-column: 1 / -1; color: rgba(255,255,255,.35); }

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }

@media (max-width: 980px) {
  .nav { position: fixed; inset: 76px 0 auto 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 24px; background: #071a37; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav.open { display: flex; }
  .nav > a { padding: 13px 10px; }
  .menu-toggle { display: block; }
  .hero-grid, .split-grid, .report-grid, .pilot-card, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 56px; }
  .hero { min-height: auto; }
  .hero-product { max-width: 700px; }
  .product-window { transform: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 0; }
  .step-number { margin-bottom: 32px; }
  .split-grid, .report-grid, .contact-grid { gap: 50px; }
  .pilot-card { gap: 35px; padding: 48px; }
  .about-grid { gap: 42px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .hero-grid { padding-top: 70px; padding-bottom: 60px; }
  h1 { font-size: 52px; }
  h2 { font-size: 38px; }
  .hero-lede, .section-heading p, .section-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; gap: 8px; }
  .product-body { padding: 18px; }
  .result-heading { flex-direction: column; }
  .decision-card { width: 100%; }
  .issue-row { grid-template-columns: 30px 1fr; }
  .issue-row b { grid-column: 2; }
  .proof-grid { grid-template-columns: 1fr; padding: 24px 0; gap: 10px; }
  .proof-arrow { transform: rotate(90deg); text-align: center; }
  .check-grid { grid-template-columns: 1fr; }
  .report-paper { padding: 20px; }
  .report-meta { flex-direction: column; gap: 2px; }
  .finding-evidence { grid-template-columns: 1fr; }
  .pilot-card { padding: 34px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

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