:root {
  --navy: #082a66;
  --navy-dark: #041b43;
  --red: #e10c1b;
  --ink: #111827;
  --muted: #667085;
  --line: #e7ebf0;
  --soft: #f6f8fb;
  --white: #ffffff;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 28px 70px rgba(8, 42, 102, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
img, svg { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

.page { min-height: 100vh; overflow: hidden; }
.header {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand img { width: 212px; height: auto; }
.header-actions { display: flex; align-items: center; gap: 30px; }
.launch-status { display: inline-flex; align-items: center; gap: 10px; color: #475467; font-size: 13px; font-weight: 650; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(225,12,27,.08); }
.text-link { text-decoration: none; color: var(--navy); font-size: 13px; font-weight: 800; letter-spacing: .01em; }
.text-link span { color: var(--red); margin-left: 4px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  gap: 70px;
  align-items: center;
  min-height: 690px;
  padding-block: 72px 78px;
}
.hero-content { max-width: 650px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 850;
  letter-spacing: .18em;
}
h1, h2, h3, p { text-wrap: balance; }
h1 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(48px, 5vw, 76px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 850;
}
h1 span { color: var(--navy); }
.intro {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--navy); box-shadow: 0 12px 30px rgba(8,42,102,.22); }
.button-primary:hover { background: var(--navy-dark); }
.button-quiet { color: var(--navy); border: 1px solid var(--line); background: #fff; }
.button-quiet:hover { box-shadow: 0 10px 25px rgba(16,24,40,.08); }
.promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  max-width: 560px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.promise div { display: flex; align-items: center; gap: 12px; padding: 18px 16px 0 0; }
.promise strong { color: #98a2b3; font-size: 11px; letter-spacing: .14em; }
.promise span { color: var(--navy-dark); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.hero-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid #dfe6ef;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: var(--shadow);
}
.panel-grid {
  position: absolute;
  inset: 0;
  opacity: .52;
  background-image: linear-gradient(#dfe6ef 1px, transparent 1px), linear-gradient(90deg, #dfe6ef 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 72%);
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -85px;
  top: -90px;
  border-radius: 50%;
  background: rgba(225,12,27,.05);
  border: 1px solid rgba(225,12,27,.08);
}
.panel-kicker { position: relative; z-index: 2; color: #667085; font-size: 11px; font-weight: 850; letter-spacing: .18em; }
.panel-mark { position: relative; z-index: 2; width: 190px; margin: 40px auto 18px; filter: drop-shadow(0 16px 24px rgba(8,42,102,.15)); }
.panel-title { position: relative; z-index: 2; text-align: center; color: var(--navy-dark); font-size: 30px; line-height: 1.08; letter-spacing: -.04em; font-weight: 850; }
.application-row { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.application-card { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid #dfe6ef; border-radius: 12px; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); }
.application-card > span { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; color: white; background: var(--navy); font-size: 13px; font-weight: 850; }
.application-card:last-child > span { background: var(--red); }
.application-card strong, .application-card small { display: block; }
.application-card strong { color: var(--navy-dark); font-size: 13px; }
.application-card small { margin-top: 2px; color: var(--muted); font-size: 10px; line-height: 1.25; }

.focus { padding-block: 100px 112px; }
.section-heading { display: grid; grid-template-columns: .9fr 1.55fr; gap: 70px; align-items: end; margin-bottom: 42px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2 { margin: 0; color: var(--navy-dark); font-size: clamp(34px, 3.8vw, 54px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p:last-child { grid-column: 2; margin: -42px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 600px; }
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.focus-card { position: relative; min-height: 330px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.focus-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(16,24,40,.08); }
.focus-card.featured { border-color: transparent; background: var(--navy); }
.card-number { position: absolute; top: 22px; right: 24px; color: #98a2b3; font-size: 11px; font-weight: 850; letter-spacing: .14em; }
.featured .card-number { color: rgba(255,255,255,.5); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 54px; border-radius: 12px; color: var(--navy); background: var(--soft); }
.featured .card-icon { color: white; background: rgba(255,255,255,.12); }
.card-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.focus-card h3 { margin: 0; color: var(--navy-dark); font-size: 23px; letter-spacing: -.025em; }
.focus-card p { margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.featured h3 { color: #fff; }
.featured p { color: rgba(255,255,255,.72); }

.launch {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  padding: 54px 58px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid #e6ebf2;
}
.launch-copy h2 { margin: 0; color: var(--navy-dark); font-size: clamp(32px, 3.4vw, 48px); line-height: 1.1; letter-spacing: -.04em; }
.launch-copy > p:last-child { margin: 18px 0 0; color: var(--muted); line-height: 1.65; }
.notify-form { display: grid; gap: 11px; }
.notify-form label { color: var(--navy-dark); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.form-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.form-row input { min-width: 0; height: 52px; padding: 0 16px; border: 1px solid #d0d5dd; border-radius: 9px; background: #fff; color: var(--ink); outline: none; }
.form-row input:focus { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(8,42,102,.08); }
.form-row button { height: 52px; padding: 0 19px; border: 0; border-radius: 9px; color: white; background: var(--red); font-weight: 850; cursor: pointer; }
.notify-form small { color: #98a2b3; font-size: 11px; line-height: 1.5; }

.footer { display: grid; grid-template-columns: 1fr auto; gap: 30px 50px; align-items: end; padding-block: 34px 28px; border-top: 1px solid var(--line); }
.footer-brand img { width: 150px; }
.footer-brand span { display: block; margin-top: 10px; color: var(--muted); font-size: 12px; }
.footer-contact { display: grid; justify-items: end; gap: 6px; font-size: 12px; }
.footer-contact a { color: var(--navy); font-weight: 800; text-decoration: none; }
.footer-contact span { color: var(--muted); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: #98a2b3; font-size: 11px; letter-spacing: .03em; }

.toast { position: fixed; left: 50%; bottom: 22px; z-index: 20; transform: translate(-50%, 30px); opacity: 0; padding: 13px 18px; border-radius: 9px; color: #fff; background: var(--navy-dark); font-size: 13px; box-shadow: 0 16px 40px rgba(0,0,0,.18); transition: .25s ease; pointer-events: none; }
.toast.show { transform: translate(-50%,0); opacity: 1; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: 48px; min-height: auto; }
  .hero-content { max-width: 760px; }
  .hero-panel { min-height: 500px; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .section-heading > p:last-child { grid-column: auto; margin: 0; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card { min-height: 260px; }
  .card-icon { margin-bottom: 38px; }
  .launch { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 30px, 1180px); }
  .header { min-height: 78px; }
  .brand img { width: 174px; }
  .header-actions .launch-status { display: none; }
  .text-link { font-size: 12px; }
  .hero { padding-block: 54px 66px; }
  h1 { font-size: clamp(43px, 13vw, 60px); }
  .intro { font-size: 16px; line-height: 1.65; }
  .cta-row { align-items: stretch; }
  .button { width: 100%; }
  .promise { grid-template-columns: 1fr; margin-top: 34px; }
  .promise div { padding-top: 14px; }
  .hero-panel { min-height: 470px; padding: 28px; border-radius: 17px; }
  .panel-mark { width: 165px; margin-top: 42px; }
  .application-row { grid-template-columns: 1fr; left: 20px; right: 20px; bottom: 20px; }
  .section-heading h2 { font-size: 38px; }
  .focus { padding-block: 78px; }
  .focus-card { padding: 25px; }
  .launch { margin-bottom: 72px; padding: 34px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; align-items: start; }
  .footer-contact { justify-items: start; }
  .footer-bottom { flex-direction: column; }
}

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