:root {
  --navy: #102f3b;
  --navy-deep: #09232c;
  --teal: #16736f;
  --teal-bright: #79d4c6;
  --teal-pale: #e7f4f1;
  --ink: #19343d;
  --muted: #60777d;
  --paper: #f4f6f2;
  --white: #fff;
  --line: #dce6e2;
  --gold: #e6bd6d;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(121, 212, 198, .15), transparent 25rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: .06em;
}

.brand strong,
.brand small { display: block; }

.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 500; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.header-link {
  color: var(--teal);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.header-link span { margin-left: 6px; transition: transform .2s ease; }
.header-link:hover span { display: inline-block; transform: translateX(3px); }

main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 70px;
  padding: 76px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(16, 47, 59, .96), rgba(14, 75, 76, .87)),
    repeating-linear-gradient(115deg, transparent 0 26px, rgba(255,255,255,.03) 27px 28px);
  box-shadow: 0 28px 90px rgba(9, 35, 44, .2);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(121, 212, 198, .24);
  border-radius: 50%;
}

.hero::before { width: 520px; height: 520px; top: -320px; right: -120px; }
.hero::after { width: 290px; height: 290px; right: 90px; bottom: -220px; }

.hero-copy,
.proof-card { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow.light { color: var(--teal-bright); }

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(50px, 6.1vw, 82px);
  letter-spacing: -.035em;
}

.lede {
  max-width: 680px;
  margin: 0;
  color: #d9e7e4;
  font-size: 18px;
  line-height: 1.7;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
  color: #c1d5d2;
  font-size: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 750;
}

.status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 6px rgba(121,212,198,.11);
}

.proof-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(7, 36, 44, .42);
  backdrop-filter: blur(14px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.proof-grid div {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid rgba(255,255,255,.11);
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.proof-grid div:nth-child(even) { border-right: 0; }
.proof-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.proof-grid strong { font-family: Georgia, "Times New Roman", serif; font-size: 42px; font-weight: 500; }
.proof-grid span { margin-top: 5px; color: #bcd1ce; font-size: 11px; line-height: 1.35; }

.summary {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 120px;
  padding: 110px 20px 58px;
}

.summary h2,
.gates h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 54px);
}

.summary > p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.delivery-card {
  min-height: 430px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 18px;
  position: relative;
  background: rgba(255,255,255,.76);
}

.delivery-card.featured {
  color: var(--white);
  border-color: transparent;
  background: var(--teal);
}

.delivery-card.featured .eyebrow { color: #c3f0e8; }
.delivery-card.featured p,
.delivery-card.featured li { color: #d9efeb; }
.delivery-card.featured li::marker { color: var(--gold); }

.number {
  position: absolute;
  top: 34px;
  right: 36px;
  color: #a9bbb8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.featured .number { color: rgba(255,255,255,.55); }

.delivery-card h3 {
  max-width: 440px;
  margin-bottom: 22px;
  font-size: 35px;
}

.delivery-card p,
.delivery-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.delivery-card ul { margin: 26px 0 0; padding-left: 20px; }
.delivery-card li { margin: 7px 0; padding-left: 5px; }
.delivery-card li::marker { color: var(--teal); }

.boundary {
  margin-top: 108px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  border-radius: 24px;
  color: var(--white);
  background: var(--navy-deep);
}

.boundary h2 {
  max-width: 460px;
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 54px);
}

.never-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.never-grid span {
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 8px;
  color: #d7e6e3;
  background: rgba(255,255,255,.035);
  font-size: 12px;
}

.never-grid span::before {
  content: "—";
  margin-right: 9px;
  color: var(--teal-bright);
}

.gates {
  padding: 115px 20px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 100px;
}

.gate-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.gate-copy .fine-print {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-size: 12px;
}

.cta {
  min-height: 260px;
  padding: 54px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-radius: 20px;
  color: var(--white);
  background: var(--teal);
}

.cta h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 50px);
}

.cta a {
  flex: 0 0 auto;
  padding: 16px 20px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.cta a span { margin-left: 10px; }

footer {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; gap: 45px; padding: 60px 48px; }
  .summary, .boundary, .gates { grid-template-columns: 1fr; gap: 40px; }
  .summary { padding-top: 80px; }
  .boundary { padding: 55px 48px; }
  .gates { padding-block: 85px; }
}

@media (max-width: 680px) {
  .site-header,
  main,
  footer { width: min(100% - 30px, 1180px); }
  .site-header { min-height: 78px; }
  .header-link { font-size: 0; }
  .header-link span { font-size: 20px; }
  .hero { min-height: auto; padding: 48px 24px; border-radius: 18px; }
  h1 { font-size: 48px; }
  .lede { font-size: 16px; }
  .status-row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .proof-card { padding: 18px; }
  .proof-grid div { min-height: 105px; padding: 15px; }
  .proof-grid strong { font-size: 34px; }
  .summary { padding: 70px 5px 35px; }
  .summary > p { margin-top: 0; }
  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-card { min-height: auto; padding: 34px 28px; }
  .delivery-card h3 { font-size: 31px; }
  .boundary { margin-top: 75px; padding: 45px 26px; }
  .never-grid { grid-template-columns: 1fr; }
  .gates { padding: 75px 5px; }
  .cta { padding: 42px 28px; align-items: flex-start; flex-direction: column; }
  footer { min-height: 110px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 8px; }
}

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

@media print {
  .site-header, .cta, footer { display: none; }
  main { width: 100%; }
  .hero, .boundary { color: #000; background: #fff; box-shadow: none; }
  .delivery-card { break-inside: avoid; }
}
