:root {
  --ink: #0a1024;
  --navy: #0a1733;
  --navy-deep: #060d1f;
  --brand-ink: #16307f;
  --brand: #1f4fd6;
  --brand-2: #3d8bff;
  --sky: #9cc4ff;
  --mist: #f4f7fe;
  --line: #e3e9f6;
  --muted: #5b6680;
  --white: #ffffff;
  --grad: linear-gradient(135deg, #16307f 0%, #1f4fd6 48%, #3d8bff 100%);
  --maxw: 1160px;
  --r: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--sky); }
.eyebrow.on-dark::before { background: var(--sky); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: var(--white); box-shadow: 0 12px 30px rgba(31, 79, 214, 0.32); }
.btn-light { background: var(--white); color: var(--brand-ink); }
.btn-outline { border-color: var(--line); color: var(--brand-ink); background: var(--white); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.32); color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-header img { height: 30px; display: block; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none; }
.nav a:hover { color: var(--brand); }
.nav .btn { padding: 10px 18px; }
.nav-toggle { display: none; }

.hero {
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(61, 139, 255, 0.28), transparent 60%),
    var(--navy);
  color: var(--white);
  text-align: center;
  padding: 104px 0 88px;
}
.hero h1 { font-size: clamp(38px, 6vw, 66px); max-width: 14ch; margin-inline: auto; }
.hero .sub { font-size: clamp(17px, 2.2vw, 21px); color: #c6d4f0; max-width: 60ch; margin: 18px auto 0; }
.hero .cred { font-weight: 700; color: var(--white); letter-spacing: 0.01em; margin-top: 14px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.trust { margin-top: 34px; color: #9fb2d6; font-size: 13px; }

.countdown {
  display: inline-flex;
  gap: 0;
  margin: 30px auto 0;
  border: 1px solid rgba(156, 196, 255, 0.28);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(8, 20, 45, 0.55);
}
.countdown .unit { padding: 14px 22px; text-align: center; border-right: 1px solid rgba(156, 196, 255, 0.18); }
.countdown .unit:last-child { border-right: 0; }
.countdown .n { font-family: "Bricolage Grotesque", sans-serif; font-size: 30px; font-weight: 800; font-variant-numeric: tabular-nums; }
.countdown .l { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky); margin-top: 4px; }

section { padding: 86px 0; }
.section-head { max-width: 60ch; }
.section-head.center { margin-inline: auto; text-align: center; }
section h2 { font-size: clamp(28px, 3.6vw, 40px); color: var(--navy); }
.lead { font-size: 18px; color: var(--muted); }

.band-mist { background: var(--mist); }
.band-navy { background: var(--navy); color: var(--white); }
.band-navy h2 { color: var(--white); }
.band-navy .lead { color: #c6d4f0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
}
.feature h3 { font-size: 18px; color: var(--brand-ink); }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

.cycle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
}
.cycle .node {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  color: var(--navy);
}
.cycle .node:nth-child(odd) { border-color: var(--brand); color: var(--brand-ink); }
.cycle .link { width: 34px; height: 2px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.cycle .loop-back { width: 100%; text-align: center; margin-top: 10px; font-size: 13px; color: var(--muted); }

.pathway { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-top: 48px; }
.tier {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  overflow: hidden;
}
.tier::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); }
.tier .num { font-family: "Bricolage Grotesque", sans-serif; font-size: 13px; font-weight: 800; color: var(--brand); letter-spacing: 0.08em; }
.tier .code { font-size: 12px; font-weight: 700; color: var(--muted); float: right; }
.tier h3 { font-size: 19px; margin-top: 8px; color: var(--navy); }
.tier p { font-size: 14px; color: var(--muted); }
.tier .meta { font-size: 13px; color: var(--ink); margin: 4px 0; }
.tier a { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 14px; color: var(--brand); text-decoration: none; }
.tier a:hover { text-decoration: underline; }

.roles { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 44px; }
.role { border-left: 3px solid var(--brand); padding: 6px 0 6px 18px; }
.role h3 { font-size: 17px; margin-bottom: 2px; color: var(--navy); }
.role p { margin: 0; font-size: 14px; color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.chip { border: 1px solid var(--line); background: var(--white); border-radius: 10px; padding: 12px 18px; font-weight: 600; font-size: 15px; color: var(--navy); }
.fineprint { font-size: 13px; color: var(--muted); margin-top: 18px; }

.scorecard-cta { text-align: center; }
.scorecard-cta .deliverables { list-style: none; padding: 0; margin: 26px auto 0; max-width: 540px; text-align: left; }
.scorecard-cta .deliverables li { position: relative; padding: 8px 0 8px 32px; color: #d4e0f7; }
.scorecard-cta .deliverables li::before { content: "→"; position: absolute; left: 0; color: var(--sky); font-weight: 800; }

.preview {
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
}
.preview .stage {
  aspect-ratio: 16 / 7;
  background:
    radial-gradient(700px 300px at 30% 0%, rgba(61, 139, 255, 0.35), transparent 60%),
    var(--navy);
  display: grid;
  place-items: center;
  color: #c6d4f0;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 24px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px;
  max-width: 620px;
  margin: 44px auto 0;
  text-align: center;
}
.panel h3 { font-size: 22px; color: var(--navy); }
.panel .meta { color: var(--ink); font-weight: 600; margin: 2px 0; }

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.list-check { list-style: none; padding: 0; margin: 20px 0 0; }
.list-check li { position: relative; padding: 7px 0 7px 30px; color: var(--ink); }
.list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }

.faq { max-width: 800px; margin: 44px auto 0; }
details { border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; margin-bottom: 12px; background: var(--white); }
summary { font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--brand); font-weight: 800; }
details[open] summary::after { content: "–"; }
details p { margin: 12px 0 0; color: var(--muted); }

.final-cta { text-align: center; background: var(--grad); color: var(--white); }
.final-cta h2 { color: var(--white); }
.final-cta p { color: #e6efff; }

.site-footer { background: var(--navy-deep); color: #aebbd6; padding: 60px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer img { height: 28px; margin-bottom: 14px; }
.site-footer h4 { color: var(--white); font-size: 14px; margin: 0 0 12px; letter-spacing: 0.02em; }
.site-footer a { display: block; color: #aebbd6; text-decoration: none; margin: 8px 0; font-size: 14px; }
.site-footer a:hover { color: var(--white); }
.colophon { border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 40px; padding-top: 22px; font-size: 13px; color: #7e8cab; }

:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 2px; border-radius: 6px; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav { gap: 16px; }
  .nav a:not(.btn) { display: none; }
  .hero { padding: 80px 0 64px; }
  .hero h1 { font-size: clamp(30px, 8vw, 42px); max-width: 18ch; }
  .countdown .unit { padding: 12px 16px; }
  .countdown .n { font-size: 26px; }
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  transform: scale(1.05);
  animation: heroDrift 24s ease-in-out infinite alternate;
}
.hero > .wrap { position: relative; z-index: 1; }
@keyframes heroDrift { to { transform: scale(1.12) translateY(-12px); } }

.page-hero {
  position: relative;
  color: var(--white);
  background: var(--navy);
  padding: 92px 0 72px;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); max-width: 18ch; }
.page-hero p { font-size: clamp(17px, 2.2vw, 20px); color: #c6d4f0; max-width: 58ch; }

.media { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 18px 40px rgba(10, 23, 51, 0.12); }
.media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.media:hover img { transform: scale(1.04); }

.feature .ic, .role .ic { font-size: 22px; }

.imgsplit { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.imgsplit .media { aspect-ratio: 4 / 3; }

.tier { transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.tier:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(10, 23, 51, 0.14); border-color: var(--brand); }

.cred-strip { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; align-items: center; margin-top: 30px; opacity: 0.9; }
.cred-strip span { font-weight: 700; color: var(--muted); letter-spacing: 0.02em; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; box-shadow: 0 18px 40px rgba(10, 23, 51, 0.08); }
.field { margin-bottom: 16px; text-align: left; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: var(--mist);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; }

@media (max-width: 820px) {
  .imgsplit { grid-template-columns: 1fr; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
