:root {
  color-scheme: light;
  --navy: #0e1b33;
  --apricot: #f5a07e;
  --porcelain: #fff9f5;
  --ink: #142033;
  --mist: #e9eef2;
  --stone: #b9b2aa;
  --white: #ffffff;
  --line: rgba(14, 27, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--porcelain);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.9), transparent 35rem),
    linear-gradient(180deg, var(--porcelain), var(--white) 60%, var(--mist));
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.masthead {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: block;
  text-decoration: none;
}

.wordmark img {
  display: block;
  width: 190px;
  height: auto;
  mix-blend-mode: multiply;
}

.status {
  padding: 8px 12px;
  border: 1px solid rgba(245, 160, 126, 0.7);
  border-radius: 999px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 100px;
  text-align: center;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #667080;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-row i {
  width: 1px;
  height: 20px;
  background: var(--apricot);
}

.hero-mark {
  display: block;
  width: 136px;
  height: 136px;
  margin: 46px auto 36px;
  border: 1px solid rgba(245, 160, 126, 0.6);
  border-radius: 28px;
}

.kicker {
  margin: 0 0 14px;
  color: #9e5a40;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font:
    400 clamp(52px, 8vw, 88px) / 0.98 'Cormorant Garamond',
    Georgia,
    serif;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 640px;
  margin: 30px auto 0;
  color: #667080;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
}

.promise {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 34px 0 38px;
  font:
    400 24px/1.25 'Cormorant Garamond',
    Georgia,
    serif;
}

.promise span + span {
  color: #a4583b;
}

.primary-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 18px 18px 18px 24px;
  border: 1px solid var(--navy);
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(14, 27, 51, 0.08);
  text-align: left;
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.primary-action:hover {
  background: #182a48;
  transform: translateY(-2px);
}

.primary-action:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 4px;
}

.primary-action span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.primary-action b {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 160, 126, 0.18);
  color: var(--apricot);
  font-size: 22px;
  font-weight: 400;
  place-items: center;
}

.pricing {
  margin: 18px 0 0;
  color: #667080;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.pricing a {
  color: var(--navy);
  font-weight: 600;
  text-underline-offset: 3px;
}

.details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.details article {
  padding: 42px 38px 46px;
}

.details article + article {
  border-left: 1px solid var(--line);
}

.detail-number {
  color: #9e5a40;
  font-size: 10px;
  letter-spacing: 0.15em;
}

h2 {
  margin: 20px 0 12px;
  font:
    600 24px/1.25 'Avenir Next',
    'Manrope',
    'Inter',
    system-ui,
    sans-serif;
}

.details p {
  margin: 0;
  color: #667080;
  font-size: 13px;
  line-height: 1.7;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 32px;
  color: #667080;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer nav {
  display: flex;
  gap: 18px;
}

footer a {
  text-decoration-color: rgba(245, 160, 126, 0.8);
  text-underline-offset: 4px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(245, 160, 126, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: -440px;
  right: -260px;
  width: 850px;
  height: 850px;
}

.orbit-two {
  top: 260px;
  left: -570px;
  width: 980px;
  height: 980px;
  border-color: rgba(14, 27, 51, 0.18);
}

.orbit-dot {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.orbit-dot-coral {
  top: 116px;
  right: 155px;
  background: var(--apricot);
}

.orbit-dot-navy {
  top: 610px;
  left: 96px;
  width: 7px;
  height: 7px;
  background: var(--navy);
}

@media (max-width: 760px) {
  .masthead {
    width: calc(100% - 32px);
    padding: 18px 0;
  }

  .status {
    display: none;
  }

  .wordmark img {
    width: 164px;
  }

  .hero {
    width: calc(100% - 32px);
    padding: 54px 0 76px;
  }

  .eyebrow-row {
    gap: 9px;
    font-size: 7px;
    letter-spacing: 0.12em;
  }

  .eyebrow-row i {
    height: 14px;
  }

  .hero-mark {
    width: 120px;
    height: 120px;
    margin-top: 38px;
    border-radius: 24px;
  }

  h1 {
    font-size: 54px;
  }

  .lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .promise {
    flex-direction: column;
    gap: 1px;
    font-size: 22px;
  }

  .primary-action {
    padding-left: 18px;
  }

  .primary-action span {
    max-width: 230px;
    font-size: 12px;
  }

  .pricing {
    padding: 0 18px;
    line-height: 1.6;
  }

  .details {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .details article {
    padding: 32px 6px;
  }

  .details article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  footer {
    flex-direction: column;
    gap: 8px;
    width: calc(100% - 32px);
    line-height: 1.5;
  }

  footer nav {
    order: 3;
  }

  .orbit-one {
    right: -580px;
  }

  .orbit-two,
  .orbit-dot-navy {
    display: none;
  }

  .orbit-dot-coral {
    top: 100px;
    right: 18px;
  }
}

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

  .primary-action {
    transition: none;
  }
}
