:root {
  --ink: #172033;
  --muted: #58647a;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #d8deea;
  --navy: #071426;
  --blue: #1f5fbf;
  --cyan: #00a7b5;
  --green: #287d57;
  --yellow: #f0b429;
  --red: #c4382b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--blue);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  gap: 32px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 32px auto;
  padding: clamp(26px, 4vw, 44px);
  background: linear-gradient(135deg, #071426 0%, #102a43 58%, #154b58 100%);
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: #b8f3ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
}

.lead {
  max-width: 760px;
  margin: 16px 0 0;
  color: #dce8f7;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.1;
}

.button.primary {
  background: var(--yellow);
  color: #111827;
}

.button.secondary {
  background: #e8f7f9;
  color: #063f46;
}

.button.text {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.safety-line {
  max-width: 540px;
  margin: 18px 0 0;
  color: #ffd9d6;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 360px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.status-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 16px;
  color: #ffffff;
  background: rgba(7, 20, 38, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.status-label {
  color: #b8f3ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 26px;
}

.content-section.band {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 20px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.content-section h2,
.final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
}

.content-section p,
.content-section li,
.final-cta p,
.site-footer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.steps,
.feature-grid,
.link-grid,
.compare {
  display: grid;
  gap: 16px;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid,
.link-grid {
  grid-template-columns: repeat(4, 1fr);
}

.link-grid.small {
  grid-template-columns: repeat(3, 1fr);
}

.steps article,
.feature-grid article,
.link-grid a,
.compare > div,
.faq-list details {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
}

.steps h3,
.feature-grid h3,
.compare h3,
.link-grid strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.link-grid a {
  text-decoration: none;
}

.link-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.compare {
  grid-template-columns: 1fr 1fr;
}

.compare ul,
.checklist {
  margin: 0;
  padding-left: 20px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto;
  padding: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b362f 0%, #123767 55%, #071426 100%);
  border-radius: 8px;
}

.final-cta p {
  color: #dce8f7;
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header,
  .site-footer,
  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .steps,
  .feature-grid,
  .link-grid,
  .link-grid.small,
  .compare {
    grid-template-columns: 1fr;
  }

  .hero {
    width: min(100% - 24px, 1180px);
    margin-top: 16px;
    padding: 24px;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-visual img {
    min-height: 260px;
  }

  .button {
    width: 100%;
  }

  .content-section,
  .final-cta,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }
}
