:root {
  --green: #123d27;
  --green-2: #1f5b3b;
  --light-green: #e8f1e7;
  --orange: #f05a1a;
  --ink: #111814;
  --muted: #5f6b64;
  --paper: #fbfaf5;
  --line: #d9dfd4;
  --white: #ffffff;
  color-scheme: light;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(18, 61, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 39, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 74px);
  background: rgba(251, 250, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: white;
  background: var(--green);
  border: 2px solid #9dbb9b;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.brand strong {
  display: block;
  color: var(--green);
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.1;
}

nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a:hover,
.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button.primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(240, 90, 26, 0.2);
}

.button.secondary {
  color: var(--green);
  background: white;
  border: 2px solid var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(42px, 6vw, 92px) clamp(20px, 6vw, 90px) 46px;
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--green);
  font-family: Impact, "Arial Black", "Avenir Next Condensed", sans-serif;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.93;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p,
.calculator-section p,
.made-for p,
.final-cta p,
.faq p {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.5;
}

.hero-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 690px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

svg {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-visual {
  position: relative;
  min-height: 690px;
}

.cover {
  position: absolute;
  left: 19%;
  top: 0;
  width: min(440px, 56vw);
  max-width: 62%;
  border-radius: 8px;
  box-shadow: 0 28px 54px rgba(17, 24, 20, 0.24);
  transform: rotate(-1.5deg);
}

.ticket {
  position: absolute;
  top: 28px;
  right: 0;
  width: 300px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(17, 24, 20, 0.08);
}

.ticket span,
.ticket b {
  display: block;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.ticket p {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.98rem;
}

.ticket b {
  margin-top: 14px;
  text-align: right;
}

.tablet {
  position: absolute;
  right: 3%;
  bottom: 24px;
  width: min(420px, 70vw);
  padding: 22px;
  background: #101512;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(17, 24, 20, 0.28);
}

.tablet-bar {
  width: 60px;
  height: 5px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #4d5a52;
}

.tablet h3 {
  margin: 0 0 14px;
  color: #f8fff6;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.tablet dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.tablet div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: #edf5e8;
}

.tablet dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.tablet dd {
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.outcomes,
.calculator-section,
.made-for,
.faq {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0;
  color: var(--green);
  font-family: Impact, "Arial Black", "Avenir Next Condensed", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.outcomes h2 {
  text-align: center;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 44px auto 0;
  background: var(--line);
}

.outcome-grid article {
  padding: 40px clamp(20px, 3vw, 46px);
  background: rgba(251, 250, 245, 0.92);
  text-align: center;
}

.outcome-grid svg {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--green);
}

.outcome-grid h3,
.calc-preview h3,
.made-for h2,
.faq summary {
  color: var(--green);
  font-weight: 900;
}

.outcome-grid h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.outcome-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.calculator-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  background: rgba(232, 241, 231, 0.55);
}

.calculator-section p {
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--green);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.8rem;
}

.calc-preview {
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #b7c8b1;
  box-shadow: 0 20px 44px rgba(18, 61, 39, 0.1);
}

.calc-preview h3 {
  margin: 0 0 18px;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.calc-row.header {
  color: white;
  background: var(--green);
  font-weight: 900;
}

.calc-row.result {
  color: var(--green);
  background: var(--light-green);
  font-weight: 900;
}

.made-for {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.note-card {
  padding: clamp(28px, 5vw, 54px);
  background: white;
  border-left: 8px solid var(--orange);
  box-shadow: 0 18px 42px rgba(17, 24, 20, 0.07);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.who-grid span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  color: var(--green);
  background: var(--light-green);
  border: 1px solid #b7c8b1;
  font-weight: 900;
  text-align: center;
}

.final-cta {
  padding: clamp(56px, 8vw, 90px) 20px;
  color: white;
  background: var(--green);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: white;
}

.final-cta p {
  margin: 16px auto 26px;
}

.faq {
  max-width: 980px;
  margin: 0 auto;
  border-bottom: 0;
}

.faq h2 {
  margin-bottom: 28px;
}

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

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

summary {
  cursor: pointer;
  font-size: 1.18rem;
}

.faq p {
  margin: 14px 0 0;
  color: var(--muted);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 90px);
  color: #d8ead4;
  background: #08130e;
}

footer .brand strong,
footer .brand small,
footer p {
  color: inherit;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .calculator-section,
  .made-for {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 610px;
  }

  .cover {
    left: 0;
    max-width: 66%;
  }

  .ticket {
    width: 250px;
  }

  .proof-list,
  .outcome-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 18px;
  }

  .header-cta {
    width: 100%;
  }

  nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .hero p,
  .calculator-section p,
  .made-for p,
  .final-cta p,
  .faq p {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 520px;
  }

  .cover {
    width: 72%;
    max-width: 72%;
  }

  .ticket {
    right: -6px;
    width: 210px;
    padding: 18px;
  }

  .ticket p {
    font-size: 0.76rem;
  }

  .tablet {
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
  }

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

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
