:root {
  --navy: #0f2744;
  --navy-mid: #1a3a5c;
  --ink: #1a2332;
  --muted: #4a5968;
  --line: #d5dbe3;
  --paper: #f4f6f8;
  --white: #ffffff;
  --amber: #e8a317;
  --amber-deep: #a86b08;
  --amber-ink: #1a1204;
  --amber-text: #7a4e06;
  --amber-wash: #fff6e4;
  --shadow: 0 8px 24px rgba(15, 39, 68, 0.08);
  --radius: 14px;
  --max: 1080px;
  --header: 4.5rem;
  color-scheme: light;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  line-height: 1.5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 1.0625rem;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-mid);
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--amber-text);
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--amber);
  color: var(--amber-ink);
  padding: 0.5rem 0.8rem;
  z-index: 20;
  border-radius: 8px;
}

.skip:focus {
  top: 0.75rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.site-header::after {
  content: "";
  display: block;
  height: 4px;
  background: var(--amber);
}

.bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-right: auto;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  order: 3;
  width: 100%;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover {
  color: var(--amber);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  border: 2px solid transparent;
}

.btn-compact {
  min-height: 44px;
  padding: 0.45rem 0.85rem;
}

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

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

.btn-amber {
  background: var(--amber);
  color: var(--amber-ink);
  border-color: var(--amber-deep);
}

.btn-amber:hover {
  background: #f0b429;
  color: var(--amber-ink);
}

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover {
  background: var(--paper);
  color: var(--navy);
}

.hero {
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 163, 23, 0.16), transparent 42%),
    var(--paper);
  padding: 2.25rem 0 2.5rem;
}

.hero-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--amber-text);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 7vw, 3.25rem);
  color: var(--navy);
}

h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy);
}

h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.lede,
.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.lede {
  font-size: 1.125rem;
  max-width: 40rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0.75rem;
}

.fine {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 40rem;
}

.sheet {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.15rem 1rem;
}

.sheet-kicker {
  margin: 0 0 0.6rem;
  font-weight: 700;
  color: var(--amber-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.sheet ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sheet li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.2rem 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

.sheet li span:first-child {
  font-weight: 700;
  color: var(--navy);
}

.sheet li span:last-child {
  color: var(--muted);
  text-align: right;
}

.sheet-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

section {
  padding: 2.5rem 0;
}

.band {
  background: var(--paper);
}

.cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem 1.15rem;
}

.band .card {
  background: var(--white);
}

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

.card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  counter-reset: step;
}

.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem 1.1rem 4.4rem;
  position: relative;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--amber);
  color: var(--amber-ink);
  font-weight: 800;
  display: grid;
  place-items: center;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.price-card .price {
  margin: 0.2rem 0 0.45rem;
  color: var(--amber-text);
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price .currency {
  font-size: 0.55em;
  vertical-align: super;
}

.price .per {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
}

.placeholder {
  margin-top: 1rem;
  border: 2px dashed var(--amber-deep);
  background: var(--amber-wash);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
}

.placeholder p {
  margin: 0.4rem 0 0;
}

.placeholder p:first-child,
.placeholder-flag {
  margin-top: 0;
}

.placeholder-flag {
  display: inline-block;
  margin: 0 0 0.6rem;
  background: var(--amber);
  color: var(--amber-ink);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}

.faq h3 {
  margin-top: 1.25rem;
}

.faq p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.site-footer {
  background: var(--navy);
  color: #d5deea;
  padding: 2rem 0 1.25rem;
}

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

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.35rem 0;
}

.site-footer p {
  margin: 0.7rem 0 0;
}

.brand-footer {
  color: var(--white);
  margin-right: 0;
}

.legal {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.legal p {
  margin: 0;
  font-size: 0.92rem;
}

.narrow {
  max-width: 40rem;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

@media (min-width: 720px) {
  .nav {
    order: 0;
    width: auto;
    justify-content: flex-end;
  }

  .cards-2,
  .cards-3,
  .cards-4 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr;
  }

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

  .steps li {
    padding: 1rem 1rem 1.1rem;
    padding-top: 4.2rem;
  }

  .steps li::before {
    top: 1rem;
    left: 1rem;
  }
}

@media (min-width: 980px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

  section {
    padding: 3.25rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  .site-header,
  .cta-row,
  .skip {
    display: none;
  }

  body,
  .band,
  .hero,
  .site-footer {
    background: white;
    color: black;
  }
}
