:root {
  --navy: #10233f;
  --navy-2: #071e55;
  --blue: #2f6fdb;
  --signal: #38bdf8;
  --amber: #cc8800;
  --accent: #38bdf8;
  --soft-blue: #eef6ff;
  --cream: #f6f0e6;
  --paper: #fff;
  --text: #111827;
  --muted: #667085;
  --line: rgba(16, 35, 63, 0.14);
  --display: 'Outfit', Inter, system-ui, sans-serif;
  --body: Inter, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--accent);
  color: #111;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 20;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand img { width: 38px; height: 38px; }
.brand strong { color: var(--navy); }
.brand em { font-style: normal; color: var(--blue); }
nav { display: flex; align-items: center; gap: 18px; font-size: 0.92rem; font-weight: 700; }
nav a { text-decoration: none; color: #263449; }
.nav-cta { background: var(--navy); color: #fff; padding: 9px 15px; border-radius: 999px; }

.section-dark { color: white; background: linear-gradient(135deg, var(--navy), var(--navy-2)); }
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: calc(100dvh - 68px);
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background: var(--navy-2);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 42%;
  z-index: -2;
  background: url('/assets/hero-fullbleed-blueprint.png') center right / cover no-repeat;
  transform: scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 30, 85, 1) 0%, rgba(7, 30, 85, 0.98) 34%, rgba(7, 30, 85, 0.74) 48%, rgba(7, 30, 85, 0.18) 67%, rgba(7, 30, 85, 0.04) 100%),
    radial-gradient(circle at 78% 20%, rgba(56, 189, 248, 0.12), transparent 32%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(590px, 42vw);
  max-width: 590px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(56, 189, 248, 0.26);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 800;
}
.hero-kicker::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }
.hero-image-credit { display: none; }

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 14px;
}
.eyebrow.dark { color: var(--blue); }
h1, h2, h3 { font-family: var(--display); line-height: 1.02; margin: 0; color: inherit; }
h1 { font-size: clamp(2.75rem, 4.55vw, 4.7rem); letter-spacing: -0.05em; max-width: 650px; line-height: 0.98; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -0.04em; }
h3 { font-size: 1.35rem; letter-spacing: -0.02em; }
.lead {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  margin: 22px 0 0;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  transition: 0.18s ease;
  white-space: nowrap;
}
.button:focus-visible, nav a:focus-visible, .text-link:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
.button-primary { background: var(--accent); color: #111827; }
.button-primary:hover { transform: translateY(-2px); filter: saturate(1.08); }
.button-secondary { border-color: rgba(255, 255, 255, 0.38); color: #fff; background: rgba(255, 255, 255, 0.08); }
.button-secondary:hover { background: rgba(255, 255, 255, 0.14); }
.hero-visual, .hero-visual img { display: none; }

.band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.35fr);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(58px, 6vw, 86px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(180deg, #f8fbff, var(--soft-blue));
  color: var(--navy);
  align-items: stretch;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
}
.band h2 { font-size: clamp(2rem, 3.35vw, 3.55rem); max-width: 760px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.problem-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-top: 4px solid rgba(47, 111, 219, 0.72);
  box-shadow: 0 18px 42px rgba(16, 35, 63, 0.08);
}
.problem-grid strong { display: block; font-family: var(--display); font-size: clamp(1.25rem, 1.6vw, 1.65rem); line-height: 1.05; margin-bottom: 14px; }
.problem-grid span { display: block; color: rgba(16, 35, 63, 0.72); }

.section { padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px); }
.split { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 42px; align-items: start; }
.split > div:first-child p:not(.eyebrow), .section-heading p, .partner-section p { color: var(--muted); font-size: 1.05rem; max-width: 620px; }
.text-link { display: inline-flex; margin-top: 22px; font-weight: 800; color: var(--blue); text-decoration: none; }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card-grid.compact article { min-height: 205px; }
.card-grid article, .feature-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 35, 63, 0.06);
}
.card-grid span, .steps span {
  display: inline-flex;
  align-items: center;
  margin-right: 7px;
  font-family: var(--mono);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.card-grid strong { display: block; font-family: var(--display); font-size: 1.28rem; line-height: 1.1; margin-top: 10px; }
.card-grid p, .feature-grid p, .steps p, .faq p { color: var(--muted); margin: 12px 0 0; }
.section-cream { background: var(--cream); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading.left { max-width: 680px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid article:nth-child(2), .feature-grid article:nth-child(5) { background: linear-gradient(135deg, #fff, rgba(47, 111, 219, 0.08)); }

.process { background: #fff; }
.steps { list-style: none; padding: 0; margin: 30px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps li { padding: 24px; border-top: 4px solid var(--blue); background: #fff; border-radius: 24px; box-shadow: 0 14px 36px rgba(16, 35, 63, 0.07); }
.steps strong { display: block; font-family: var(--display); font-size: 1.18rem; line-height: 1.14; margin-top: 8px; }
.partner-section { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.partner-section p { color: rgba(255, 255, 255, 0.74); }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { padding: 18px 18px 18px 46px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 18px; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 18px; top: 25px; width: 11px; height: 11px; border-radius: 99px; background: var(--signal); }
.faq-list { display: grid; gap: 14px; }
details { border: 1px solid var(--line); border-radius: 20px; padding: 20px 22px; background: #fff; }
summary { cursor: pointer; font-family: var(--display); font-weight: 800; font-size: 1.12rem; }
.cta { text-align: center; background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.23), transparent 35%), linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.cta p { margin-left: auto; margin-right: auto; color: rgba(255, 255, 255, 0.76); max-width: 650px; }
.cta-panel {
  width: min(760px, 100%);
  margin: 28px auto 0;
  display: grid;
  justify-items: center;
  gap: 22px;
}
.cta-panel strong { display: block; margin-bottom: 12px; }
.cta-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
}
.cta-panel li { margin: 0; }
.site-footer { padding: 28px clamp(18px, 5vw, 72px); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; background: #071e55; color: rgba(255, 255, 255, 0.7); }
.site-footer strong { color: #fff; }

@media (max-width: 1100px) {
  .hero-copy { width: min(640px, 52vw); }
  .hero::before { inset: 0 0 0 38%; }
  .problem-grid, .feature-grid { grid-template-columns: 1fr; }
  .problem-grid article { min-height: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  nav { display: none; }
  .hero {
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 74px;
  }
  .hero::before { inset: 0; opacity: 0.34; background-position: center right; }
  .hero::after { background: linear-gradient(90deg, rgba(7, 30, 85, 0.98), rgba(7, 30, 85, 0.82)); }
  .hero-copy { width: min(100%, 640px); max-width: 640px; }
  .band, .split, .partner-section { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { position: relative; }
  .hero { padding-top: 48px; padding-bottom: 62px; }
  h1 { font-size: 2.65rem; line-height: 1; }
  h2 { font-size: 2.05rem; }
  .hero-kicker { font-size: 0.66rem; letter-spacing: 0.08em; }
  .button { width: 100%; }
  .band { padding-top: 44px; padding-bottom: 44px; }
  .steps { grid-template-columns: 1fr; }
  .section { padding-top: 48px; padding-bottom: 48px; }
}
