:root {
  --navy: #0b1628;
  --navy-2: #101f34;
  --slate: #243447;
  --steel: #536477;
  --muted: #5d6b7a;
  --line: #d9e1ea;
  --soft: #f5f7fa;
  --white: #ffffff;
  --blue: #0b6fb3;
  --blue-dark: #075487;
  --teal: #2f6f7e;
  --teal-dark: #244f5c;
  --text: #142033;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(11, 22, 40, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: min(210px, 48vw);
  max-height: 48px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-text small {
  margin-top: 4px;
  color: var(--steel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  color: var(--slate);
  text-decoration: none;
  padding: 10px 9px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--soft);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  padding: 9px 12px;
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(93, 143, 184, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), #13243a 62%, #1f344c);
  padding: 68px 0 64px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8fc5ea;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 62px);
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
}

h3 {
  font-size: 20px;
}

.lead {
  margin: 22px 0 0;
  color: #dbe6f0;
  font-size: 19px;
  max-width: 760px;
}

.section .lead {
  color: var(--slate);
}

.hero .lead {
  color: #dbe6f0;
}

.page-hero .lead {
  color: var(--slate);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--blue-dark);
  color: var(--white);
}

.button.primary:hover {
  background: var(--navy);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button.secondary:hover {
  border-color: var(--white);
  color: var(--white);
}

.button.dark {
  color: var(--navy);
  border-color: var(--line);
}

.button.dark:hover {
  background: var(--soft);
  color: var(--navy);
}

.hero-visual {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.snapshot-card {
  min-height: 292px;
  display: grid;
  gap: 20px;
}

.snapshot-header h2 {
  color: var(--white);
  font-size: 24px;
}

.snapshot-header p {
  margin: 8px 0 0;
  color: #dbe6f0;
}

.status-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #edf5fb;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.chart-row {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 14px;
  align-items: center;
  color: #edf5fb;
  font-size: 13px;
  font-weight: 700;
}

.track {
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.fill {
  height: 100%;
  border-radius: inherit;
}

.fill.load {
  width: 72%;
  background: #5d8fb8;
}

.fill.reserve {
  width: 52%;
  background: #d4a747;
}

.fill.window {
  width: 38%;
  margin-left: 48%;
  background: var(--teal);
}

.chart-note {
  margin: 0;
  color: #dbe6f0;
  font-size: 14px;
}

.page-hero {
  padding: 68px 0 44px;
  background:
    radial-gradient(circle at 84% 22%, rgba(93, 143, 184, 0.12), transparent 30%),
    linear-gradient(135deg, var(--soft), #edf3f8);
  border-bottom: 1px solid var(--line);
}

.section {
  padding: 66px 0;
}

.section.muted {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-section {
  background: #eef3f7;
}

.offer-section .card {
  border-color: #cbd8e4;
  box-shadow: 0 14px 30px rgba(11, 22, 40, 0.07);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

.section-heading p,
.prose p,
.card p,
.notice p,
.contact-card p,
.step p,
.deliverable-list li,
.plain-list li {
  color: var(--muted);
}

.section-heading p {
  margin: 16px 0 0;
  font-size: 17px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.notice,
.contact-card,
.step,
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 24px rgba(11, 22, 40, 0.04);
}

.card p,
.notice p,
.contact-card p,
.step p {
  margin: 14px 0 0;
}

.card strong {
  color: var(--navy);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.prose p {
  margin: 0 0 18px;
  font-size: 17px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.deliverable-list,
.plain-list {
  margin: 0;
  padding-left: 20px;
}

.deliverable-list li + li,
.plain-list li + li {
  margin-top: 8px;
}

.band {
  background: var(--navy);
  color: var(--white);
  padding: 52px 0;
}

.band h2 {
  color: var(--white);
}

.band p {
  color: #dbe6f0;
}

.process {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 86px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  background: var(--white);
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
}

.logo-strip img {
  max-height: 54px;
  width: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 32px;
  align-items: start;
}

.email-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  background: var(--navy);
  color: #dbe6f0;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.site-footer strong {
  color: var(--white);
}

.footer-brand img {
  display: block;
  width: 132px;
  max-width: 100%;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 8px;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.four,
  .card-grid.three,
  .card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .hero,
  .section,
  .page-hero {
    padding: 44px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 18px;
  }

  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .step {
    padding-left: 24px;
    padding-top: 78px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
