:root {
  --teal: #12403B;
  --teal-deep: #0C2E2A;
  --amber: #F0B429;
  --amber-ink: #8A6212;
  --cream: #FAF6EE;
  --cream-deep: #F4EEE1;
  --terracotta: #D96C4A;
  --ink: #1E231F;
  --muted: #4A544C;
  --caption: #6B665A;
  --line: #E4DCC8;
  --white: #FFFFFF;
  --on-teal: #E8E4D8;
  --on-teal-dim: #9FC2BC;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;

  --radius: 14px;
  --radius-lg: 20px;
  --container: 1120px;
  --gutter: 20px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.15; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--amber-ink); }

.sprite { position: absolute; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--teal);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

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

.btn--ghost { background: transparent; border-color: var(--teal); color: var(--teal); }
.btn--ghost:hover { background: var(--teal); color: var(--cream); }

.btn--quiet {
  background: transparent;
  border-color: rgba(250, 246, 238, .45);
  color: var(--on-teal);
  min-height: 44px;
  padding: 10px 18px;
  font-size: 15px;
}
.btn--quiet:hover { background: rgba(250, 246, 238, .12); color: var(--cream); }

.btn--sm { min-height: 44px; padding: 10px 18px; font-size: 15px; }
.btn--lg { min-height: 56px; padding: 16px 32px; font-size: 17px; }
.btn--block { width: 100%; margin-top: auto; }

/* ---------- Lockup ---------- */

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  text-decoration: none;
}
.lockup__mark { width: 34px; height: 34px; flex-shrink: 0; color: currentColor; }
.lockup__text { display: flex; flex-direction: column; gap: 2px; }
.lockup__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  color: var(--teal);
  white-space: nowrap;
}
.lockup__strap {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber-ink);
}
.lockup--reversed .lockup__name { color: var(--cream); }
.lockup--reversed .lockup__strap { color: var(--amber); }
.lockup--reversed { color: var(--cream); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 246, 238, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}
.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 15.5px;
  font-weight: 500;
}
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover { color: var(--teal); text-decoration: underline; }

@media (max-width: 800px) {
  .site-nav { display: none; }
  .site-header__inner { justify-content: space-between; gap: 12px; }
  .lockup__strap { display: none; }
}

@media (max-width: 480px) {
  .site-header .lockup__name { font-size: 18px; }
  .site-header .lockup__mark { width: 28px; height: 28px; }
  .site-header .lockup { gap: 9px; }
  .site-header .btn--sm { padding: 10px 14px; font-size: 14px; white-space: nowrap; }
}

/* ---------- Hero ---------- */

.hero { padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 6vw, 64px); }
.hero__inner { max-width: 760px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--amber-ink);
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(38px, 6.2vw, 62px);
  letter-spacing: -0.5px;
  color: var(--teal);
  margin-bottom: 20px;
}

.hero__lede {
  font-size: clamp(17px, 2.1vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__note {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--caption);
}

/* ---------- Print trail ---------- */

.trail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  padding: 8px 0 4px;
  color: var(--teal);
}
.trail__print { width: 26px; height: 26px; flex-shrink: 0; }
.trail__print--a { opacity: .22; transform: rotate(-8deg); }
.trail__print--b { opacity: .38; transform: rotate(4deg) translateY(14px); }
.trail__print--c { opacity: .55; transform: rotate(-6deg); }
.trail__print--d { opacity: .75; transform: rotate(3deg) translateY(14px); }
.trail__print--amber { color: var(--amber); opacity: 1; transform: rotate(3deg) translateY(14px); }

.trail--cta { color: var(--cream); margin-bottom: 26px; justify-content: flex-start; }
.trail--cta .trail__print { width: 30px; height: 30px; }

/* ---------- Sections ---------- */

.section { padding: clamp(56px, 8vw, 92px) 0; }
.section--cream-deep { background: var(--cream-deep); }
.section--teal { background: var(--teal); color: var(--on-teal); }

.section__head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 52px); }
.section__title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--teal);
  margin-bottom: 14px;
}
.section__title--on-teal { color: var(--cream); }
.section__lede { font-size: 17px; color: var(--muted); }
.on-teal { color: var(--on-teal); }

/* ---------- Grid + cards ---------- */

.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  color: var(--teal);
}
.card p { font-size: 15.5px; line-height: 1.55; color: var(--muted); }

/* ---------- Ten seconds ---------- */

.tens { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (max-width: 900px) { .tens { grid-template-columns: 1fr; } }

.tens__copy .section__lede { color: var(--on-teal); }
.tens__copy p { font-size: 17px; line-height: 1.6; }

.tens__panel {
  background: var(--teal-deep);
  border: 1px solid rgba(250, 246, 238, .16);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  min-height: 268px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tens__stage { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; width: 100%; }
.tens__stage[hidden] { display: none; }

.tens__prompt { font-size: 15.5px; color: var(--on-teal-dim); max-width: 34ch; }

.tens__counter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.tens__waiting-label { font-size: 14.5px; color: var(--on-teal-dim); margin-top: -6px; }

.tens__bar {
  width: min(280px, 80%);
  height: 6px;
  background: rgba(250, 246, 238, .16);
  border-radius: 3px;
  overflow: hidden;
}
.tens__bar-fill { width: 0%; height: 100%; background: var(--amber); }

.tens__done-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  color: var(--cream);
}
.tens__done-body { font-size: 15.5px; color: var(--on-teal); max-width: 38ch; }

/* ---------- Proof ---------- */

.proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .proof { grid-template-columns: 1fr; } }

.proof__case {
  background: var(--white);
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.proof__client { font-weight: 600; font-size: 15px; color: var(--caption); }
.proof__scores { display: flex; align-items: center; gap: 20px; }
.proof__arrow { width: 40px; height: 16px; color: var(--caption); flex-shrink: 0; }

.score { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.score__num { font-family: var(--display); font-weight: 700; font-size: 38px; line-height: 1; }
.score__label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.score--before .score__num, .score--before .score__label { color: #B4452C; }
.score--after .score__num, .score--after .score__label { color: #1D6B52; }

.proof__detail { font-size: 15px; color: var(--muted); }

.placeholder-note {
  margin-top: 20px;
  font-size: 14.5px;
  color: var(--caption);
  max-width: 62ch;
}

/* ---------- Prices ---------- */

.prices .card { padding: 30px 26px; gap: 8px; }
.card--featured { border-color: var(--teal); border-width: 2px; }

.price__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  color: var(--teal);
}
.price__figure {
  font-family: var(--display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--ink);
}
.price__per { font-family: var(--body); font-size: 16px; font-weight: 500; color: var(--caption); }
.price__meta { font-size: 14px; color: var(--caption); margin-bottom: 10px; }

.ticks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.ticks li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 2.5px solid var(--amber-ink);
  border-bottom: 2.5px solid var(--amber-ink);
  transform: rotate(-45deg);
}

/* ---------- Steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.step { display: flex; flex-direction: column; gap: 10px; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--amber);
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 4px;
}
.step__title { font-size: 21px; font-weight: 600; color: var(--teal); }
.step p { font-size: 15.5px; line-height: 1.55; color: var(--muted); }

/* ---------- CTA ---------- */

.cta__panel {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  color: var(--on-teal);
}
.cta__title {
  font-size: clamp(27px, 4vw, 40px);
  color: var(--cream);
  margin-bottom: 16px;
  max-width: 18ch;
}
.cta__lede { font-size: 17px; line-height: 1.6; color: var(--on-teal); max-width: 56ch; }
.cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 32px; }
.cta__alt { font-size: 15.5px; color: var(--on-teal-dim); }
.cta__alt a { color: var(--cream); }
.cta__alt a:hover { color: var(--amber); }

/* ---------- Footer ---------- */

.site-footer { background: var(--teal-deep); color: var(--on-teal); padding: clamp(44px, 6vw, 64px) 0 28px; }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: 44px; justify-content: space-between; }
.site-footer__brand { max-width: 320px; display: flex; flex-direction: column; gap: 14px; }
.site-footer__descriptor { font-size: 15px; color: var(--on-teal-dim); line-height: 1.55; }

.site-footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.site-footer__heading {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.site-footer__list { display: flex; flex-direction: column; gap: 9px; font-size: 15px; }
.site-footer__list a { color: var(--on-teal); text-decoration: none; }
.site-footer__list a:hover { color: var(--amber); text-decoration: underline; }
.site-footer__list li { color: var(--on-teal-dim); }

.site-footer__legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(250, 246, 238, .14);
  font-size: 13.5px;
  color: var(--on-teal-dim);
}
