:root {
  --navy: #0b1c2c;
  --navy-2: #12283c;
  --ink: #14202b;
  --cream: #f6f1e6;
  --paper: #fffdf8;
  --gold: #c4a35a;
  --gold-soft: #e8d5a3;
  --muted: #5c6b78;
  --line: rgba(196, 163, 90, 0.28);
  --shadow: 0 18px 50px rgba(11, 28, 44, 0.12);
  --radius: 18px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 20;
  padding: 8px 12px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--cream);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background:
    radial-gradient(1200px 420px at 80% -10%, rgba(196, 163, 90, 0.18), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
}

.kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker-on-light {
  color: var(--gold);
}

.hero h1 {
  margin: 0 0 16px;
  max-width: 14ch;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 6.1rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.lede {
  max-width: 38rem;
  margin: 0 0 28px;
  color: rgba(246, 241, 230, 0.82);
  font-size: 1.15rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}

.button.ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid color-mix(in srgb, var(--navy) 18%, transparent);
}

.horizon {
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: min(520px, 70vw);
  opacity: 0.55;
  pointer-events: none;
}

.section {
  padding: 88px 0;
}

.section h2,
.panel h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.step,
.faq details {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--navy) 8%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.step {
  padding: 24px;
}

.card h3,
.step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p,
.step p,
.faq p {
  margin: 0;
  color: var(--muted);
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.process {
  display: grid;
  gap: 14px;
}

.panel {
  background: var(--navy);
  color: var(--cream);
}

.panel .muted,
.panel a {
  color: var(--gold-soft);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 4px 20px 8px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 650;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq p {
  padding: 12px 0 16px;
}

.site-footer {
  padding: 40px 0 112px;
  border-top: 1px solid color-mix(in srgb, var(--navy) 10%, transparent);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.email-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.email-line code {
  font-size: 1rem;
}

.sticky-cta {
  display: none;
}

.legal {
  max-width: 680px;
}

.legal p + p {
  margin-top: 1em;
}

@media (max-width: 860px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 72px;
  }

  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    display: flex;
    justify-content: center;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--cream) 92%, transparent);
    backdrop-filter: blur(10px);
    border-top: 1px solid color-mix(in srgb, var(--navy) 10%, transparent);
  }

  .sticky-cta .button {
    width: min(520px, 100%);
  }
}
