:root {
  --ink: #12251e;
  --green: #173f31;
  --green-light: #2b654f;
  --cream: #f7f0dd;
  --cream-deep: #ede2c7;
  --orange: #ed6a2c;
  --yellow: #f7c84a;
  --muted: #5d6c65;
  --line: rgb(18 37 30 / 16%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.section-wrap,
.site-footer {
  width: min(100% - 48px, 1220px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 520;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand strong {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px 11px 11px 3px;
  color: var(--cream);
  background: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}

.site-header nav a {
  color: #31463d;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--orange);
}

.site-header .nav-contact {
  padding: 10px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
}

.hero {
  display: grid;
  width: min(100% - 48px, 1220px);
  min-height: 720px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: center;
  padding-block: 70px 88px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.features-intro h2,
.privacy-inner h2,
.closing h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 7.4vw, 104px);
}

.hero h1 em {
  color: var(--orange);
  font-weight: inherit;
}

.hero-lede {
  max-width: 640px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 5px 5px 0 var(--orange);
}

.button-secondary {
  background: transparent;
}

.hero-facts {
  display: grid;
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.hero-facts li {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 9px;
  padding-right: 10px;
  color: #44574f;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.hero-facts li + li {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.hero-facts span {
  color: var(--orange);
  font-family: Georgia, serif;
}

.hunt-scene {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 52% 52% 16px 16px;
  background: var(--green);
  box-shadow: 14px 14px 0 var(--yellow);
}

.scene-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgb(255 255 255 / 40%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 40%) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.scene-note {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.note-one {
  top: 95px;
  left: 24px;
}

.note-two {
  right: 22px;
  bottom: 128px;
  transform: rotate(7deg);
}

.trail {
  position: absolute;
  inset: 60px 40px;
}

.trail span {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  opacity: 0.7;
}

.trail span:nth-child(1) { top: 10%; left: 18%; }
.trail span:nth-child(2) { top: 20%; left: 40%; }
.trail span:nth-child(3) { top: 18%; left: 67%; }
.trail span:nth-child(4) { top: 40%; left: 82%; }
.trail span:nth-child(5) { top: 68%; left: 76%; }

.reward-card {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(78%, 340px);
  padding: 18px 22px 24px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--cream);
  box-shadow: 9px 9px 0 var(--orange);
  text-align: center;
  transform: translate(-50%, -48%) rotate(-1.5deg);
}

.reward-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgb(18 37 30 / 40%);
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.reward-icon svg {
  width: 104px;
  margin-top: 13px;
}

.reward-value {
  margin: 2px 0;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.reward-copy {
  margin: 5px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.reward-button {
  display: block;
  padding: 12px;
  border-radius: 4px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 750;
}

.compass {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: 26px;
  width: 92px;
  color: var(--ink);
  transform: rotate(14deg);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  color: var(--cream);
  background: var(--orange);
}

.marquee div {
  display: flex;
  width: max-content;
  min-width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  padding-inline: 30px;
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.marquee i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.story,
.pricing {
  padding-block: 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: 60px;
}

.section-heading .eyebrow {
  align-self: start;
}

.section-heading h2,
.features-intro h2,
.privacy-inner h2,
.closing h2 {
  font-size: clamp(43px, 6.2vw, 78px);
}

.steps {
  display: grid;
  margin-top: 78px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  grid-template-columns: repeat(3, 1fr);
}

.steps article {
  position: relative;
  min-height: 390px;
  padding: 24px 32px 38px;
}

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

.step-number {
  margin: 0;
  color: var(--orange);
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.step-icon {
  display: grid;
  width: 88px;
  height: 88px;
  margin: 48px 0 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-deep);
}

.step-icon svg {
  width: 52px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.steps h3,
.feature-list h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.steps article > p:last-child,
.feature-list article > p,
.features-intro > p:last-child,
.pricing-heading > p:last-child,
.closing > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.features {
  display: grid;
  width: 100%;
  max-width: none;
  padding: 130px max(24px, calc((100vw - 1220px) / 2));
  color: var(--cream);
  background: var(--green);
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 140px);
}

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

.features-intro > p:last-child {
  max-width: 520px;
  margin-top: 30px;
  color: rgb(247 240 221 / 70%);
}

.feature-list {
  border-top: 1px solid rgb(247 240 221 / 36%);
}

.feature-list article {
  display: grid;
  padding: 34px 0;
  border-bottom: 1px solid rgb(247 240 221 / 36%);
  grid-template-columns: 90px 1fr;
  column-gap: 28px;
}

.feature-list article > span {
  color: var(--yellow);
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-list article > p {
  margin: 13px 0 0;
  color: rgb(247 240 221 / 70%);
  grid-column: 2;
}

.pricing-heading {
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.1fr) minmax(200px, 0.35fr);
}

.pricing-heading > p:last-child {
  margin: 0;
}

.price-grid {
  display: grid;
  max-width: 970px;
  margin: 80px 0 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.price-card {
  position: relative;
  padding: 36px;
  border: 1px solid var(--ink);
  background: rgb(255 255 255 / 20%);
}

.price-card-featured {
  color: var(--cream);
  background: var(--green);
  box-shadow: 9px 9px 0 var(--orange);
}

.popular {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--yellow);
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-name {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.price strong {
  font-family: Georgia, serif;
  font-size: 62px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--muted);
  font-size: 13px;
}

.price-card-featured .price span,
.price-card-featured ul {
  color: rgb(247 240 221 / 72%);
}

.allowance {
  margin: 30px 0 0;
  padding: 22px 0;
  border-block: 1px solid currentColor;
  font-size: 13px;
}

.allowance strong {
  margin-right: 5px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 28px;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.price-card li::before {
  margin-right: 9px;
  color: var(--orange);
  content: "+";
  font-weight: 800;
}

.privacy-band {
  color: var(--cream);
  background: var(--orange);
}

.privacy-inner {
  display: grid;
  min-height: 390px;
  align-items: center;
  grid-template-columns: 150px 1fr 0.72fr;
  gap: 60px;
}

.privacy-symbol svg {
  width: 120px;
  fill: none;
  stroke: var(--cream);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.privacy-inner .eyebrow {
  color: var(--cream);
}

.privacy-inner h2 {
  font-size: clamp(45px, 5vw, 70px);
}

.privacy-inner > p {
  font-size: 16px;
  line-height: 1.75;
}

.closing {
  padding-block: 140px;
  text-align: center;
}

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  max-width: 900px;
  margin-inline: auto;
}

.closing > p {
  max-width: 620px;
  margin: 28px auto 32px;
  font-size: 17px;
}

.site-footer {
  display: grid;
  padding-block: 60px 30px;
  border-top: 1px solid var(--line);
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}

.footer-brand > p {
  max-width: 280px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-links div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.footer-links p {
  margin: 0 0 5px;
  color: var(--orange);
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hunt-scene {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .pricing-heading {
    grid-template-columns: 1fr;
  }

  .privacy-inner {
    padding-block: 80px;
    grid-template-columns: 110px 1fr;
  }

  .privacy-inner > p {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section-wrap,
  .site-footer,
  .hero {
    width: min(100% - 30px, 1220px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-block: 18px;
  }

  .site-header nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .site-header nav a {
    font-size: 12px;
  }

  .site-header .nav-contact {
    padding: 7px 11px;
  }

  .hero {
    gap: 58px;
    padding-block: 56px 70px;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 78px);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    min-height: 48px;
  }

  .hero-facts li + li {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hunt-scene {
    min-height: 500px;
    border-radius: 48% 48% 12px 12px;
    box-shadow: 8px 8px 0 var(--yellow);
  }

  .reward-card {
    width: 80%;
  }

  .marquee div {
    justify-content: flex-start;
    font-size: 14px;
  }

  .marquee span:nth-of-type(n + 4),
  .marquee i:nth-of-type(n + 4) {
    display: none;
  }

  .story,
  .pricing {
    padding-block: 90px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .steps article {
    min-height: auto;
    padding: 28px 18px 38px;
  }

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

  .step-icon {
    margin-block: 32px 24px;
  }

  .features {
    padding-block: 90px;
    gap: 50px;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .feature-list article > span {
    margin-bottom: 14px;
  }

  .feature-list article > p {
    grid-column: 1;
  }

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

  .price-card {
    padding: 30px 24px;
  }

  .privacy-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .privacy-inner > p {
    grid-column: 1;
  }

  .privacy-symbol svg {
    width: 90px;
  }

  .closing {
    padding-block: 100px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
