:root {
  --navy: #092f5b;
  --navy-deep: #061f3d;
  --blue: #1767ad;
  --blue-bright: #2589d8;
  --cyan: #39b9e6;
  --gold: #d6b84f;
  --gold-soft: #fff8dd;
  --ink: #10233d;
  --muted: #5c708a;
  --line: #dbe6f1;
  --surface: #f4f8fc;
  --white: #ffffff;
  --success: #15966c;
  --warning: #d98b12;
  --danger: #d74646;
  --shadow: 0 20px 55px rgba(9, 47, 91, 0.12);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--blue); }
a:hover { color: var(--navy); }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0; line-height: 1.18; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.9rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.25rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--navy); color: white; padding: .8rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .75rem max(1.25rem, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(219, 230, 241, .9);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 88px; height: 72px; object-fit: contain; }
.menu { display: flex; align-items: center; justify-content: flex-end; gap: .25rem; flex-wrap: wrap; }
.menu a {
  padding: .7rem .8rem;
  color: #354b65;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 10px;
}
.menu a:hover, .menu a.active { color: var(--blue); background: #edf6fd; }
.menu a.nav-cta { margin-left: .4rem; background: var(--navy); color: white; padding-inline: 1rem; }
.menu a.nav-cta:hover { background: var(--blue); color: white; }

.container { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-compact { padding: 3.5rem 0; }
.section-soft { background: var(--surface); }
.section-dark { background: var(--navy-deep); color: white; }
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { margin-top: 1rem; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p { color: #bdd0e5; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 99px; background: var(--gold); }
.section-dark .eyebrow { color: #9edcff; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 15%, rgba(57, 185, 230, .25), transparent 28%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 58%, #166eb3 100%);
  color: white;
  padding: 5.5rem 0 5.9rem;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 4rem; }
.hero h1 { max-width: 720px; }
.hero .lead { margin: 1.4rem 0 0; max-width: 650px; color: #d8e7f5; font-size: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 1.4rem; }
.hero-note { color: #a9c5df; font-size: .92rem; }
.hero .eyebrow { color: #a9ddfa; }
.hero-home { padding: 4.4rem 0 4.7rem; }
.hero-home h1 { max-width: 700px; font-size: clamp(2.65rem, 4.25vw, 4.15rem); }
.hero-home .lead { font-size: 1.12rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.15rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #18283d; }
.btn-primary:hover { background: #e9c95a; color: #18283d; }
.btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,.38); }
.btn-secondary:hover { background: rgba(255,255,255,.1); color: white; }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--navy); color: white; }
.btn-outline { background: white; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.dashboard {
  position: relative;
  background: white;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: 0 28px 75px rgba(0,0,0,.28);
}
.dashboard::after {
  content: "Illustrative dashboard";
  position: absolute; right: 1.15rem; top: 1.15rem;
  color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800;
}
.dashboard-title { font-weight: 850; padding: .2rem 0 1rem; }
.platform-console {
  position: relative; padding: 1.4rem; border-radius: 24px;
  background: rgba(255,255,255,.97); color: var(--ink);
  box-shadow: 0 28px 75px rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.5);
}
.console-label { display: block; color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .8rem; }
.console-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: 15px; margin-top: .7rem; background: #fbfdff; }
.console-item strong, .console-item small { display: block; }
.console-item strong { color: var(--navy); font-size: 1.05rem; }
.console-item small { color: var(--muted); margin-top: .15rem; }
.console-icon { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: white; font-weight: 900; background: linear-gradient(135deg,var(--navy),var(--blue-bright)); }
.console-item:nth-of-type(3) .console-icon { background: linear-gradient(135deg,#087b70,#25a77d); }
.console-item:nth-of-type(4) .console-icon { background: linear-gradient(135deg,#6b4db5,#3888c9); }
.console-footer { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.console-footer span { padding: .28rem .55rem; border-radius: 999px; color: var(--blue); background: #eaf5fd; font-size: .68rem; font-weight: 800; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.stat { padding: .8rem; border: 1px solid var(--line); border-radius: 12px; background: #fbfdff; }
.stat-label { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .58rem; font-weight: 850; }
.stat strong { display: block; margin-top: .25rem; font-size: 1.55rem; color: var(--navy); }
.stat.score { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.stat.score .stat-label, .stat.score strong { color: white; }
.mini-table { margin-top: .8rem; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.mini-row { display: grid; grid-template-columns: 1.5fr .8fr .8fr; gap: .5rem; align-items: center; padding: .78rem; border-bottom: 1px solid var(--line); font-size: .78rem; }
.mini-row:last-child { border-bottom: 0; }
.mini-row.header { color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-size: .6rem; font-weight: 850; background: #f3f7fb; }
.status { justify-self: start; border-radius: 999px; padding: .2rem .5rem; font-weight: 800; font-size: .68rem; }
.status.valid { color: #087452; background: #dff8ee; }
.status.due { color: #965a00; background: #fff1c9; }
.status.gap { color: #a32e2e; background: #ffe2e2; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 10px 30px rgba(9,47,91,.06);
}
.card h3 { color: var(--navy); margin-bottom: .65rem; }
.card p { color: var(--muted); margin-bottom: 0; }
.card-link { display: inline-block; margin-top: 1rem; font-weight: 800; text-decoration: none; }
.product-grid { align-items: stretch; }
.product-card { position: relative; overflow: hidden; display: flex; flex-direction: column; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: 0 14px 38px rgba(9,47,91,.08); }
.product-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--blue); }
.product-ohc::before { background: var(--success); }
.product-ops::before { background: linear-gradient(90deg,#6248ad,#2589d8); }
.product-kicker { color: var(--blue); font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .75rem; }
.product-card h3 { color: var(--navy); font-size: 1.55rem; margin-bottom: .7rem; }
.product-card p { color: var(--muted); }
.product-card .card-link { margin-top: auto; padding-top: 1rem; }
.compact-list { display: grid; gap: .45rem; margin: .5rem 0 1.3rem; padding-left: 1.1rem; color: #415872; font-size: .92rem; }
.body-lead { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }
.body-lead.light { color: #c8dbee; }
.outcome-stack { display: grid; gap: .75rem; }
.outcome-stack div { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.15rem; border-radius: 15px; background: white; border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(9,47,91,.06); }
.outcome-stack strong { color: var(--gold); font-size: 1.1rem; }
.outcome-stack span { color: var(--navy); font-weight: 800; }
.number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 12px;
  background: #eaf5fd; color: var(--blue); font-weight: 900; margin-bottom: 1rem;
}
.pill { display: inline-flex; padding: .25rem .55rem; border-radius: 999px; background: #eaf5fd; color: var(--blue); font-size: .72rem; font-weight: 850; }

.feature-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.feature-list { display: grid; gap: .9rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 1.8rem; color: #3f556f; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.scope-map { background: white; color: var(--navy); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.scope-level { padding: .85rem 1rem; margin: .55rem 0 0; border-radius: 12px; background: #edf6fd; border-left: 4px solid var(--blue); font-weight: 800; }
.scope-level:nth-child(3) { margin-left: 1.2rem; }
.scope-level:nth-child(4) { margin-left: 2.4rem; }
.scope-level:nth-child(5) { margin-left: 3.6rem; background: var(--gold-soft); border-left-color: var(--gold); }

.industry-card { min-height: 260px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; color: white; border-radius: var(--radius); padding: 1.6rem; background-size: cover; background-position: center; }
.industry-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,28,54,.94), rgba(5,28,54,.16)); }
.industry-card > * { position: relative; z-index: 1; }
.industry-card h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.industry-card p { color: #d9e7f4; margin-bottom: 0; }

.page-hero { padding: 4.8rem 0; color: white; background: linear-gradient(135deg, var(--navy-deep), var(--blue)); }
.page-hero .container { max-width: 900px; }
.page-hero .eyebrow { color: #f2d56f; }
.page-hero p { max-width: 720px; color: #d9e8f6; font-size: 1.15rem; margin-top: 1.2rem; }
.page-hero .hero-actions { margin-bottom: 0; }
.page-hero-compact { padding: 2.6rem 0 2.8rem; }
.page-hero-compact .container { max-width: 960px; }
.page-hero-compact h1 { max-width: 820px; font-size: clamp(2.35rem, 5vw, 4.25rem); }
.page-hero-compact p { margin-top: .85rem; }
.contact-intro { padding: 1.55rem 0 1.7rem; }
.contact-intro .container { max-width: 1180px; }
.contact-intro .eyebrow { margin-bottom: .4rem; }
.contact-intro h1 { max-width: 820px; font-size: clamp(2rem, 3.2vw, 3rem); }
.contact-intro p { margin: .45rem 0 0; max-width: 780px; font-size: 1rem; }
.ohc-hero { background: radial-gradient(circle at 88% 20%,rgba(72,212,177,.26),transparent 28%),linear-gradient(135deg,#062d3b,#075c66 55%,#128d78); }
.ops-hero { background: radial-gradient(circle at 88% 20%,rgba(107,77,181,.35),transparent 28%),linear-gradient(135deg,#171e4b,#204d87 58%,#2879b3); }
.metric-grid { margin-top: 1rem; }
.metric-card { padding: 1.5rem; border-radius: var(--radius); background: #f8fbfe; border: 1px solid var(--line); }
.metric-card strong { display: block; color: var(--navy); font-size: 1.5rem; }
.metric-card span { display: block; color: var(--muted); margin-top: .45rem; }
.workflow-line { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--line); }
.workflow-line > div { background: white; padding: 1.6rem; }
.workflow-line span { color: var(--success); font-weight: 900; }
.workflow-line h3 { color: var(--navy); margin: .7rem 0 .5rem; }
.workflow-line p { color: var(--muted); margin: 0; }
.light-list li { color: #d5e4f2; }
.module-ribbon { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .65rem; padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: #f8fbfe; }
.module-ribbon span { padding: .65rem .9rem; border-radius: 11px; background: white; border: 1px solid var(--line); color: var(--navy); font-weight: 800; }
.module-ribbon i { color: var(--gold); font-style: normal; font-weight: 900; }
.card-title-gap { margin-top: 1rem; }

.founder { display: grid; grid-template-columns: 320px 1fr; align-items: center; gap: 3rem; }
.founder img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.founder-copy p { color: var(--muted); }

.cta-band { padding: 2.2rem; border-radius: 24px; background: linear-gradient(135deg, var(--navy), var(--blue)); color: white; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band p { color: #d9e8f6; margin: .6rem 0 0; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start; }
.contact-section { padding: 2.25rem 0 4.5rem; }
.form-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: .9rem; color: #344b65; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid #cbd9e7; border-radius: 11px; padding: .8rem .9rem;
  font: inherit; color: var(--ink); background: white;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(37,137,216,.18); border-color: var(--blue-bright); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { color: var(--muted); font-size: .84rem; margin: .8rem 0 0; }
.form-status { display: none; margin: .9rem 0 0; padding: .85rem 1rem; border-radius: 10px; font-weight: 750; }
.form-status.success { display: block; color: #086344; background: #e7f8f1; border: 1px solid #a9e4cf; }
.form-status.error { display: block; color: #9d2929; background: #fff0f0; border: 1px solid #efb7b7; }
.field button:disabled { cursor: wait; opacity: .72; transform: none; }
.contact-card { background: var(--navy-deep); color: white; border-radius: var(--radius); padding: 2rem; }
.contact-card p, .contact-card a { color: #cfe1f2; }
.contact-card a { font-weight: 750; }
.contact-item { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-item:last-child { border-bottom: 0; }
.contact-item strong { display: block; color: white; margin-bottom: .25rem; }

.legal { max-width: 850px; }
.legal h2 { font-size: 1.55rem; margin: 2rem 0 .75rem; }
.legal p, .legal li { color: #465d76; }

.site-footer { background: #061b34; color: white; padding: 3.5rem 0 1.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 2.5rem; }
.footer-brand img { width: 105px; height: 86px; object-fit: contain; background: white; border-radius: 12px; padding: .25rem; margin-bottom: 1rem; }
.site-footer p, .site-footer a { color: #b9cde0; }
.site-footer h3 { color: white; font-size: 1rem; margin-bottom: .8rem; }
.footer-links { display: grid; gap: .5rem; }
.footer-links a { text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); margin-top: 2.5rem; padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; color: #8eaac4; font-size: .85rem; }
.footer-bottom p { margin: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 980px) {
  .site-nav { align-items: flex-start; gap: .8rem; }
  .menu { max-width: 680px; }
  .hero-grid, .feature-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 3rem; }
  .hero-copy { max-width: 760px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .founder { grid-template-columns: 260px 1fr; }
  .workflow-line { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  .site-nav { position: static; flex-direction: column; align-items: center; padding: .7rem 1rem 1rem; }
  .brand img { width: 78px; height: 62px; }
  .menu { justify-content: center; gap: .1rem; }
  .menu a { font-size: .82rem; padding: .55rem .55rem; }
  .menu a.nav-cta { margin-left: 0; }
  .hero { padding: 4rem 0; }
  .hero-home { padding: 3.4rem 0 3.8rem; }
  .hero-home h1 { font-size: clamp(2.35rem, 11vw, 3.3rem); }
  .page-hero-compact { padding: 2.25rem 0 2.5rem; }
  .page-hero-compact h1 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .contact-intro { padding: 1.4rem 0 1.55rem; }
  .contact-intro h1 { font-size: clamp(1.9rem, 9vw, 2.65rem); }
  .contact-section { padding: 1.5rem 0 3.5rem; }
  .hero-grid { gap: 2.4rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .mini-row { grid-template-columns: 1.3fr .8fr; }
  .mini-row > :nth-child(2) { display: none; }
  .grid-2, .grid-3, .grid-4, .contact-grid, .footer-grid, .founder { grid-template-columns: 1fr; }
  .workflow-line { grid-template-columns: 1fr; }
  .founder img { max-width: 320px; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .scope-level:nth-child(n) { margin-left: 0; }
  .section { padding: 4rem 0; }
  .footer-bottom { flex-direction: column; }
}

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