:root {
  --ink: #07143d;
  --ink-soft: #1a2a58;
  --muted: #61708d;
  --muted-2: #8793a8;
  --line: rgba(7, 20, 61, 0.12);
  --panel: #ffffff;
  --panel-soft: #f6f9fc;
  --panel-blue: #edf7fd;
  --accent: #168fd5;
  --accent-2: #20a8e7;
  --accent-soft: rgba(22, 143, 213, 0.12);
  --navy: #07143d;
  --bg: #f8fbfd;
  --shadow: 0 24px 80px rgba(7, 20, 61, 0.11);
  --shadow-soft: 0 12px 35px rgba(7, 20, 61, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(32, 168, 231, 0.13), transparent 34rem),
    linear-gradient(180deg, #fbfdff 0%, #f7fbfe 43%, #ffffff 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }

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

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 72px 0; }

.skip-link {
  position: absolute;
  left: 18px;
  top: -120px;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(7, 20, 61, 0.06);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(7, 20, 61, 0.06);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img { width: 190px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
}
.site-nav a {
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}
.site-nav a:hover { background: rgba(22, 143, 213, 0.09); color: var(--ink); }
.site-nav .nav-cta {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(7, 20, 61, 0.18);
}
.site-nav .nav-cta:hover { background: #10235b; color: #fff; }
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  z-index: -1;
}
.hero::before {
  width: 620px;
  height: 620px;
  right: -250px;
  top: -230px;
  background: radial-gradient(circle, rgba(32, 168, 231, 0.2), transparent 65%);
}
.hero::after {
  width: 740px;
  height: 740px;
  left: -420px;
  bottom: -420px;
  background: radial-gradient(circle, rgba(7, 20, 61, 0.11), transparent 62%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #176e9f;
  background: rgba(22, 143, 213, 0.09);
  border: 1px solid rgba(22, 143, 213, 0.15);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(22, 143, 213, 0.14);
}
h1, h2, h3 { line-height: 1.06; letter-spacing: -0.045em; margin: 0; }
h1 {
  font-size: clamp(3.25rem, 8vw, 6.9rem);
  max-width: 950px;
}
h2 { font-size: clamp(2.1rem, 4.5vw, 4.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); letter-spacing: -0.03em; }
.hero-lede {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  max-width: 730px;
  margin: 28px 0 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 36px 0 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--ink), #102a70);
  box-shadow: 0 18px 42px rgba(7, 20, 61, 0.22);
}
.button-secondary {
  background: white;
  color: var(--ink);
  border: 1px solid rgba(7, 20, 61, 0.12);
  box-shadow: var(--shadow-soft);
}
.proof-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.proof-row span {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(7, 20, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(7, 20, 61, 0.1);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(246,250,253,0.95)),
    radial-gradient(circle at top right, rgba(32, 168, 231, 0.23), transparent 30rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 18px;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,20,61,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,20,61,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}
.panel-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  z-index: 1;
  padding: 8px 8px 17px;
  color: var(--muted);
  font-size: 0.78rem;
}
.panel-topbar span {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(7, 20, 61, 0.16);
}
.panel-topbar strong { margin-left: 8px; font-weight: 700; }
.workspace-card,
.mini-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(7, 20, 61, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(7, 20, 61, 0.08);
}
.workspace-card { padding: 22px; }
.workspace-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.label {
  color: var(--accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin: 0 0 8px;
}
.workspace-header h2 { font-size: 1.45rem; letter-spacing: -0.03em; }
.badge {
  background: #eaf7ff;
  color: #176e9f;
  border: 1px solid rgba(22, 143, 213, 0.14);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.metric-grid div {
  border-radius: 16px;
  background: #f5f8fb;
  padding: 14px;
}
.metric-grid strong { display: block; font-size: 1.25rem; letter-spacing: -0.03em; }
.metric-grid span { color: var(--muted); font-size: 0.78rem; }
.signal-stack {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
}
.mini-card { padding: 18px; }
.mini-card h3 { font-size: 1.1rem; }
.mini-card p, .mini-card li { color: var(--muted); font-size: 0.92rem; }
.mini-card ul { padding-left: 18px; margin: 12px 0 0; }
.accent-card {
  background: linear-gradient(135deg, #07143d, #12306f);
  color: white;
}
.accent-card .label, .accent-card p { color: rgba(255,255,255,0.74); }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}
.rich-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 18px;
}

.section-heading {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 820px;
}
.section-heading.align-left { text-align: left; margin: 0; }
.section-heading.narrow { max-width: 760px; }
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 18px auto 0;
  max-width: 720px;
}
.align-left p:not(.eyebrow) { margin-left: 0; }

.workflow-section,
.evidence-section,
.roadmap-section { background: white; }
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.workflow-card {
  min-height: 260px;
  background: linear-gradient(180deg, #ffffff, #f6f9fc);
  border: 1px solid rgba(7, 20, 61, 0.09);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.workflow-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  right: -40px;
  top: -40px;
  background: rgba(22, 143, 213, 0.11);
}
.step {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 850;
  margin-bottom: 42px;
}
.workflow-card h3 { font-size: 1.35rem; }
.workflow-card p { color: var(--muted); margin: 12px 0 0; font-size: 0.95rem; }

.outcomes-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(32, 168, 231, 0.12), transparent 26rem),
    #f8fbfd;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.outcome-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 20, 61, 0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  min-height: 238px;
  box-shadow: 0 12px 34px rgba(7, 20, 61, 0.06);
}
.icon-pill {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eaf7ff;
  color: var(--accent);
  font-weight: 850;
  margin-bottom: 34px;
}
.outcome-card p,
.vertical-card p,
.roadmap-card li,
.check-list p,
.check-list li { color: var(--muted); }

.evidence-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.evidence-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}
.evidence-board::before {
  content: "";
  position: absolute;
  inset: 12% 12%;
  border: 1px dashed rgba(22, 143, 213, 0.35);
  border-radius: 30px;
  z-index: 0;
}
.evidence-card {
  position: relative;
  z-index: 1;
  background: white;
  border: 1px solid rgba(7, 20, 61, 0.09);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.evidence-card p { color: var(--muted); margin: 12px 0 0; }
.source-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.source-dot.blue { background: var(--accent); }
.source-dot.cyan { background: var(--accent-2); }
.source-dot.navy { background: var(--ink); }
.output-card {
  background: linear-gradient(135deg, #07143d, #102966);
  color: white;
}
.output-card p { color: rgba(255,255,255,0.72); }

.vertical-section { background: #f8fbfd; }
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.vertical-card {
  background: white;
  border: 1px solid rgba(7, 20, 61, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 230px;
  box-shadow: 0 10px 30px rgba(7,20,61,0.055);
}
.vertical-card h3 { font-size: 1.25rem; }

.differentiation-section {
  background: linear-gradient(135deg, #07143d, #102966);
  color: white;
}
.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  align-items: center;
}
.differentiation-section .eyebrow {
  background: rgba(255,255,255,0.09);
  color: #9de3ff;
  border-color: rgba(255,255,255,0.12);
}
.check-list p, .check-list li { color: rgba(255,255,255,0.76); }
.check-list p { font-size: 1.08rem; margin-top: 0; }
.check-list strong { color: white; }
.check-list ul {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(32, 168, 231, 0.14);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.roadmap-card {
  border: 1px solid rgba(7, 20, 61, 0.09);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.roadmap-card.current { background: white; }
.roadmap-card.next { background: #f3f9fd; }
.roadmap-card h3 { margin-bottom: 22px; }
.roadmap-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 20px;
}

.cta-section { background: #f8fbfd; }
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    radial-gradient(circle at top right, rgba(32, 168, 231, 0.2), transparent 26rem),
    linear-gradient(135deg, #07143d, #102966);
  border-radius: 38px;
  padding: clamp(34px, 6vw, 64px);
  color: white;
  box-shadow: var(--shadow);
}
.cta-card p:not(.eyebrow) { color: rgba(255,255,255,0.74); max-width: 660px; margin: 18px 0 0; font-size: 1.08rem; }
.cta-card .eyebrow { background: rgba(255,255,255,0.1); color: #9de3ff; border-color: rgba(255,255,255,0.13); }
.cta-card .button-primary { background: white; color: var(--ink); box-shadow: 0 20px 50px rgba(0,0,0,0.16); white-space: nowrap; }

.site-footer {
  background: white;
  border-top: 1px solid rgba(7, 20, 61, 0.08);
  padding: 48px 0 28px;
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-grid img { width: 150px; }
.footer-grid p { color: var(--muted); margin: 12px 0 0; }
.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  border: 1px solid rgba(7, 20, 61, 0.1);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 650;
}
.footer-links a:hover { color: var(--ink); background: #f6f9fc; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  border-top: 1px solid rgba(7, 20, 61, 0.08);
  margin-top: 34px;
  padding-top: 22px;
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero-grid, .two-col, .evidence-grid, .split-panel { grid-template-columns: 1fr; }
  .hero-panel { max-width: 650px; }
  .workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow-card:last-child { grid-column: 1 / -1; }
  .outcome-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vertical-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(7, 20, 61, 0.09);
    border-radius: 22px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .nav-shell { min-height: 72px; }
  .brand img { width: 155px; }
  .section-padding { padding: 78px 0; }
  .section-padding-sm { padding: 58px 0; }
  .metric-grid, .signal-stack, .outcome-grid, .roadmap-grid, .evidence-board, .vertical-grid { grid-template-columns: 1fr; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .footer-grid, .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(3rem, 17vw, 4.7rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .hero { padding-top: 54px; }
  .hero-actions .button { width: 100%; }
  .proof-row span { width: 100%; justify-content: center; }
  .hero-panel { border-radius: 24px; padding: 12px; }
  .workspace-card, .mini-card, .outcome-card, .roadmap-card, .vertical-card { padding: 20px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card:last-child { grid-column: auto; }
  .cta-card { border-radius: 26px; }
}

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