:root {
  --forest: #173225;
  --forest-deep: #0c2117;
  --cream: #f7f3e9;
  --paper: #fffdf7;
  --ink: #16231b;
  --muted: #657069;
  --line: #d9ddd3;
  --lime: #d7ff56;
  --lime-dark: #bde62c;
  --peach: #ffb69d;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --page: min(72rem, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--forest-deep);
  background: var(--lime);
}

a {
  color: inherit;
}

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

.skip {
  position: fixed;
  z-index: 100;
  top: -5rem;
  left: 1rem;
  padding: 0.65rem 1rem;
  color: var(--forest-deep);
  background: var(--lime);
  font-weight: 800;
}

.skip:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
  padding: 0.75rem max(1.25rem, calc((100% - 72rem) / 2));
  border-bottom: 1px solid rgba(23, 50, 37, 0.14);
  background: rgba(247, 243, 233, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 0.65rem;
  color: var(--lime);
  background: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.9rem;
  line-height: 1.15;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--forest);
  border-radius: 0.85rem;
  color: var(--forest-deep);
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--forest);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  background: var(--lime-dark);
  box-shadow: 2px 2px 0 var(--forest);
  transform: translate(2px, 2px);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.65rem 0.95rem;
  border-width: 1px;
  border-radius: 0.65rem;
  box-shadow: 3px 3px 0 var(--forest);
  font-size: 0.82rem;
}

.hero {
  width: var(--page);
  min-height: calc(100svh - 4.75rem);
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 6.5rem) 0;
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow,
.card-label {
  margin: 0 0 1rem;
  color: var(--forest);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.9rem, 7vw, 5.7rem);
  font-weight: 800;
}

h1 em {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: #3f4e45;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.55;
}

.hero-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.hero-action p {
  max-width: 15rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-radius: 1.5rem;
  color: var(--paper);
  background: var(--forest);
  box-shadow: 12px 12px 0 var(--peach);
}

.offer-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border: 2.7rem solid rgba(215, 255, 86, 0.14);
  border-radius: 50%;
}

.card-label,
.light {
  color: var(--lime);
}

.price {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--lime);
  font-size: clamp(4.7rem, 12vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.85;
}

.price-note {
  margin: 0.9rem 0 2rem;
  color: #dfe9df;
}

.offer-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0;
}

.offer-card dl div {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.offer-card dt {
  font-size: 1.45rem;
  font-weight: 800;
}

.offer-card dd {
  margin: 0.25rem 0 0;
  color: #bfcbbf;
  font-size: 0.72rem;
  line-height: 1.35;
}

.proof-bar {
  display: grid;
  gap: 0;
  color: var(--paper);
  background: var(--forest-deep);
}

.proof-bar p {
  margin: 0;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #c7d0ca;
  font-size: 0.83rem;
  text-align: center;
}

.proof-bar strong {
  color: var(--lime);
}

.section-wrap {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 3rem;
}

.compact-heading {
  max-width: 43rem;
}

.recognition-grid {
  display: grid;
  gap: 1rem;
}

.recognition-card {
  padding: clamp(1.4rem, 4vw, 2.25rem);
  border-radius: 1.25rem;
}

.muted-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.result-card {
  background: var(--paper);
  box-shadow: inset 0 0 0 2px var(--forest);
}

.recognition-card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recognition-card li,
.check-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.7rem;
  border-top: 1px solid var(--line);
  color: #4c5951;
}

.recognition-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  content: "→";
  color: var(--forest);
  font-weight: 800;
}

.result-card li::before {
  content: "✓";
}

.process {
  border-top: 1px solid var(--line);
}

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

.steps li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps span {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-deep);
  background: var(--peach);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
}

.steps p {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
}

.included {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  color: var(--paper);
  background: var(--forest);
}

.included-inner {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  gap: 3rem;
}

.included-price p:last-child {
  color: #bfcbbf;
}

.big-price {
  margin: 0;
  color: var(--lime);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.85;
}

.included-copy h2 {
  max-width: 11ch;
}

.check-list li {
  border-color: rgba(255, 255, 255, 0.18);
  color: #e3e9e3;
}

.check-list li::before {
  content: "✓";
  color: var(--lime);
}

.pilot-note {
  margin: 1.6rem 0 0;
  padding: 1.15rem;
  border: 1px solid rgba(215, 255, 86, 0.45);
  border-radius: 0.8rem;
  color: #cbd5cc;
  font-size: 0.86rem;
}

.pilot-note strong {
  color: var(--lime);
}

.about {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-mark {
  display: grid;
  width: min(100%, 22rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: var(--forest);
  box-shadow: 14px 14px 0 var(--peach);
  font-size: clamp(7rem, 28vw, 13rem);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.about-copy {
  max-width: 43rem;
}

.about-copy > p:not(.eyebrow) {
  color: #49574f;
  font-size: 1.05rem;
}

.boundary {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--peach);
  background: var(--paper);
  font-size: 0.86rem !important;
}

.faq {
  border-top: 1px solid var(--line);
}

.questions {
  max-width: 52rem;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 1.25rem 2.5rem 1.25rem 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  right: 0.25rem;
  content: "+";
  color: var(--forest);
  font-family: var(--mono);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 44rem;
  margin-bottom: 1.4rem;
  color: var(--muted);
}

.final-cta {
  padding: clamp(4.5rem, 10vw, 8rem) max(1.25rem, calc((100% - 72rem) / 2));
  text-align: center;
  background: var(--peach);
}

.final-cta h2 {
  max-width: 17ch;
  margin-inline: auto;
}

.final-cta .button {
  margin-top: 1rem;
}

.cta-note {
  margin: 1.2rem 0 0;
  color: #5e473f;
  font-size: 0.8rem;
}

.site-footer {
  width: var(--page);
  margin-inline: auto;
  padding: 1.5rem 0 2.5rem;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--forest);
  font-weight: 500;
}

@media (min-width: 48rem) {
  .hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  }

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

  .proof-bar p {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .proof-bar p:last-child {
    border-right: 0;
  }

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

  .steps li {
    grid-template-columns: 4rem 1fr;
    padding: 2rem 0;
  }

  .included-inner {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .about {
    grid-template-columns: 0.75fr 1.25fr;
    gap: clamp(3rem, 8vw, 7rem);
  }

  .site-footer {
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
  }
}

@media (max-width: 35rem) {
  :root {
    --page: min(100% - 1.5rem, 72rem);
  }

  .site-header {
    padding-inline: 0.75rem;
  }

  .brand small {
    display: none;
  }

  .button-small {
    min-height: 2.5rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.74rem;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .hero-action {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-action .button {
    width: 100%;
  }

  .hero-action p {
    max-width: none;
    text-align: center;
  }

  .offer-card dl {
    grid-template-columns: 1fr;
  }

  .offer-card dl div {
    display: grid;
    grid-template-columns: 3rem 1fr;
    align-items: baseline;
    gap: 0.5rem;
  }

  .about-mark {
    width: 70%;
    margin-inline: auto;
  }

  .final-cta .button {
    width: 100%;
  }
}

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

  .button {
    transition: none;
  }
}
