:root {
  --paper: #f5f0e8;
  --paper-strong: #e8e0d2;
  --paper-soft: #fffaf2;
  --ink: #1a1a1a;
  --yellow: #ffcc00;
  --red: #e63b2e;
  --blue: #0055ff;
  --shadow: 8px 8px 0 0 var(--ink);
  --shadow-lg: 10px 10px 0 0 var(--ink);
  --max-width: 1200px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

main {
  overflow: clip;
}

section[id] {
  scroll-margin-top: 6.75rem;
}

.container {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 4px solid var(--ink);
}

.site-header__inner {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 0.3rem 0.45rem;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--ink);
  color: var(--yellow);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 4px solid var(--ink);
}

.hero {
  border-top: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.3rem 0.6rem;
  border: 3px solid var(--ink);
  background: var(--yellow);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow--light {
  background: var(--yellow);
  color: var(--ink);
}

.eyebrow--paper {
  background: var(--paper);
  color: var(--ink);
}

.hero__title,
.section-title,
.final-cta__title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 10.5ch;
  font-size: clamp(2.9rem, 7.2vw, 5.4rem);
}

.highlight-red {
  display: inline;
  padding: 0 0.22em;
  background: var(--red);
  color: var(--paper);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__body,
.section-copy,
.final-cta__body {
  margin: 1.5rem 0 0;
  max-width: 38rem;
  font-size: clamp(0.98rem, 1.5vw, 1.14rem);
  font-weight: 500;
}

.section-copy {
  font-size: 0.98rem;
  line-height: 1.75;
}

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

.section-heading--center {
  text-align: center;
}

.section-title {
  max-width: 11ch;
  font-size: clamp(2.1rem, 4.8vw, 3.8rem);
}

.section-heading--center .section-title,
.section-heading--center .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.section-title--light,
.section-copy--light {
  color: var(--paper);
}

.section-copy--light {
  opacity: 0.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.85rem 1.5rem;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease,
    color 0.16s ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 0 transparent;
}

.button--compact {
  min-height: auto;
  padding: 0.7rem 1.1rem;
  font-size: 0.8rem;
}

.button--yellow {
  background: var(--yellow);
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.button--ghost {
  background: transparent;
}

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

.button--block {
  width: 100%;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.fact-card {
  padding: 1rem 1.1rem;
  border: 4px solid var(--ink);
  background: var(--paper-soft);
  box-shadow: 6px 6px 0 0 var(--ink);
}

.fact-card__value {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fact-card__label {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
}

.score-card {
  padding: 1.6rem;
  border: 4px solid var(--ink);
  background: var(--paper-soft);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}

.score-card__top,
.score-card__headline,
.trait-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.score-card__top {
  padding-bottom: 1rem;
  border-bottom: 4px solid var(--ink);
}

.score-card__kicker,
.score-card__scale,
.score-card__score-label,
.compare-card__kicker,
.feature-card__meta,
.price-card__badge,
.site-footer__tagline,
.site-footer__copyright {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
}

.score-card__kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.score-card__signal {
  width: 1.1rem;
  height: 1.1rem;
  border: 3px solid var(--ink);
  background: var(--yellow);
}

.score-card__headline {
  align-items: flex-end;
  margin-top: 1.2rem;
}

.score-card__score {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 9vw, 4.7rem);
  font-weight: 700;
  line-height: 0.9;
}

.score-card__scale {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.score-card__score-label {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
}

.meter {
  height: 1.2rem;
  margin-top: 1.2rem;
  border: 4px solid var(--ink);
  background: var(--paper);
}

.meter__fill {
  display: block;
  height: 100%;
}

.meter__fill--red {
  width: 42%;
  background: var(--red);
}

.trait-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.trait-row {
  padding: 0.8rem 0.9rem;
  border: 3px solid var(--ink);
  background: var(--paper);
  font-size: 0.92rem;
  font-weight: 600;
}

.trait-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
}

.text-red {
  color: var(--red);
}

.text-amber {
  color: #9a6b00;
}

.text-blue {
  color: var(--blue);
}

.coach-callout {
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border-left: 6px solid var(--red);
  background: var(--paper-strong);
  font-size: 0.98rem;
  font-weight: 600;
}

.coach-callout strong {
  color: var(--red);
}

.section--inverse {
  background: var(--ink);
  color: var(--paper);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.compare-card {
  padding: 1.8rem;
  border: 4px solid currentColor;
}

.compare-card--yellow {
  color: var(--yellow);
}

.compare-card--red {
  color: var(--red);
}

.compare-card__kicker {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.compare-card__body {
  margin: 0;
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card,
.step-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.5rem;
  border: 4px solid var(--ink);
  background: var(--paper-soft);
  box-shadow: 6px 6px 0 0 var(--ink);
}

.feature-card h3,
.step-card h3,
.price-card__plan {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card p,
.step-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.feature-card__meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 4px solid var(--ink);
  color: var(--ink);
}

.feature-card__icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.feature-card__icon--blue {
  background: var(--blue);
  color: var(--paper);
}

.feature-card__icon--red {
  background: var(--red);
  color: var(--paper);
}

.feature-card__icon--yellow {
  background: var(--yellow);
}

.feature-card__icon--ink {
  background: var(--ink);
  color: var(--paper);
}

.section--muted {
  background: var(--paper-strong);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: 8%;
  width: 84%;
  height: 4px;
  background: var(--ink);
}

.step-card {
  position: relative;
  z-index: 1;
  background: var(--paper);
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 4px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.step-card__number--red {
  background: var(--red);
}

.pricing {
  background: var(--ink);
  color: var(--paper);
}

.price-card {
  position: relative;
  width: min(42rem, 100%);
  margin: 0 auto;
  padding: 3rem;
  border: 8px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 12px 12px 0 0 var(--red);
}

.price-card__badge {
  position: absolute;
  top: -1.75rem;
  left: 2rem;
  margin: 0;
  padding: 0.55rem 0.9rem;
  border: 4px solid var(--ink);
  background: var(--red);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.price-card__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 4px solid var(--ink);
}

.price-card__subtitle {
  margin: 0.4rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card__amount {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
}

.price-card__amount span {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 0.9;
}

.price-card__amount small {
  padding-bottom: 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-list {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-list li::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  border: 3px solid var(--ink);
  background: var(--red);
}

.pricing__footnote {
  margin: 2rem auto 0;
  max-width: 38rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--paper);
}

.final-cta {
  position: relative;
  background: var(--red);
  color: var(--paper);
  overflow: hidden;
}

.final-cta__word {
  position: absolute;
  inset: auto auto -1rem -1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.12);
  transform: rotate(-11deg);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  text-align: center;
}

.final-cta__title {
  margin-left: auto;
  margin-right: auto;
  max-width: 12ch;
  font-size: clamp(2.5rem, 6.8vw, 4.8rem);
}

.final-cta__body {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--yellow);
}

.site-footer__inner {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.6rem 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.brand--footer {
  color: var(--yellow);
}

.site-footer__tagline {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer__legal {
  max-width: 30rem;
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.78);
}

.site-footer__links {
  display: grid;
  gap: 0.75rem;
  justify-content: start;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--yellow);
}

.site-footer__copyright {
  margin: 0;
  justify-self: end;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero__grid,
  .feature-grid,
  .steps-grid,
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__title,
  .section-title {
    max-width: none;
  }

  .steps-grid::before {
    display: none;
  }

  .site-footer__copyright {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    width: calc(100% - 1.5rem);
    padding: 0.85rem 0;
  }

  .container,
  .site-footer__inner {
    width: calc(100% - 1.5rem);
  }

  .site-nav {
    display: none;
  }

  .site-header__inner,
  .hero__grid,
  .hero__facts,
  .compare-grid,
  .feature-grid,
  .steps-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .button--compact {
    padding-inline: 0.9rem;
  }

  .hero__facts {
    display: grid;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button,
  .button--block,
  .button--paper {
    width: 100%;
  }

  .score-card {
    transform: none;
  }

  .price-card {
    padding: 2.25rem 1.25rem 1.5rem;
    box-shadow: 8px 8px 0 0 var(--red);
  }

  .price-card__badge {
    left: 1rem;
  }

  .price-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .final-cta__word {
    bottom: 1rem;
    left: -0.2rem;
  }
}
