:root {
  --black: #080a07;
  --panel: #11150f;
  --paper: #f4f0e5;
  --white: #fffdf6;
  --green: #9fcb35;
  --green-dark: #2f4a1c;
  --muted: #d2d7c6;
  --line: rgba(255, 253, 246, 0.18);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

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

.funnel-page {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 34px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  color: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 2px solid rgba(244, 240, 229, 0.78);
  border-radius: 50%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
legend {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.04;
}

.hero-content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 240, 229, 0.84);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-hint span {
  width: 18px;
  height: 30px;
  border: 2px solid rgba(244, 240, 229, 0.58);
  border-radius: 999px;
  position: relative;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 7px;
  background: var(--green);
  border-radius: 99px;
  transform: translateX(-50%);
  animation: scrollPulse 1300ms ease-in-out infinite;
}

.proof-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.proof-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  margin: 0;
  background: #27301f;
  border: 1px solid rgba(244, 240, 229, 0.16);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.proof-card figcaption {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  color: var(--paper);
  background: rgba(8, 10, 7, 0.72);
  border: 1px solid rgba(244, 240, 229, 0.2);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.start-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.start-button,
.primary-button {
  color: #111407;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(159, 203, 53, 0.24);
}

.secondary-button {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
}

.quiz-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 34px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 90px;
}

.quiz-copy {
  padding-top: 18px;
}

.quiz-copy h2 {
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1;
}

.quiz-copy p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.quiz-card {
  min-height: 560px;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 16px;
  padding: clamp(18px, 4vw, 30px);
  color: var(--black);
  background: var(--paper);
  border: 1px solid rgba(244, 240, 229, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.progress {
  height: 7px;
  overflow: hidden;
  background: rgba(47, 74, 28, 0.16);
  border-radius: 99px;
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--green-dark);
  border-radius: inherit;
  transition: width 240ms ease;
}

.step-counter {
  margin: 0;
  color: rgba(8, 10, 7, 0.58);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.step {
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.step.is-active {
  display: block;
  animation: rise 240ms ease both;
}

legend {
  margin-bottom: 22px;
  color: var(--black);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.06;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice {
  position: relative;
  min-height: 144px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 2px solid rgba(47, 74, 28, 0.14);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.choice:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 74, 28, 0.38);
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice:has(input:checked) {
  border-color: var(--green-dark);
  box-shadow: inset 0 0 0 2px var(--green), 0 12px 24px rgba(47, 74, 28, 0.16);
}

.choice strong {
  color: var(--black);
  font-size: 17px;
}

.choice-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  align-items: end;
  justify-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 8px;
  background: rgba(47, 74, 28, 0.08);
  border-radius: 8px;
}

.grass-icon i {
  display: block;
  width: 8px;
  background: var(--green-dark);
  border-radius: 8px 8px 0 0;
}

.grass-low i:nth-child(1) { height: 15px; }
.grass-low i:nth-child(2) { height: 20px; }
.grass-low i:nth-child(3) { height: 13px; }
.grass-medium i:nth-child(1) { height: 25px; }
.grass-medium i:nth-child(2) { height: 35px; }
.grass-medium i:nth-child(3) { height: 28px; }
.grass-high i:nth-child(1) { height: 36px; }
.grass-high i:nth-child(2) { height: 46px; }
.grass-high i:nth-child(3) { height: 40px; }
.grass-wild i:nth-child(1) { height: 42px; transform: rotate(-9deg); }
.grass-wild i:nth-child(2) { height: 50px; }
.grass-wild i:nth-child(3) { height: 44px; transform: rotate(9deg); }

.plot-icon {
  position: relative;
  display: block;
  border: 2px solid var(--green-dark);
}

.plot-icon i {
  position: absolute;
  background: rgba(47, 74, 28, 0.2);
}

.plot-icon i:nth-child(1) {
  inset: 9px 30px 9px 10px;
}

.plot-icon i:nth-child(2) {
  inset: 9px 10px 30px 32px;
}

.plot-icon i:nth-child(3) {
  inset: 32px 10px 9px 32px;
}

.size-icon {
  display: block;
  background: rgba(47, 74, 28, 0.12);
  border: 2px solid var(--green-dark);
  border-radius: 6px;
}

.size-icon.small {
  width: 34px;
  height: 34px;
}

.size-icon.medium {
  width: 48px;
  height: 48px;
}

.size-icon.large {
  width: 62px;
  height: 62px;
}

.text-choice {
  min-height: 104px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(47, 74, 28, 0.28);
  border-radius: 6px;
  font-weight: 750;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(159, 203, 53, 0.42);
  border-color: var(--green-dark);
}

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 14px 0 10px;
  color: rgba(8, 10, 7, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--green-dark);
}

.privacy-note {
  padding: 12px 14px;
  background: rgba(47, 74, 28, 0.06);
  border-radius: 7px;
}

.privacy-note summary {
  cursor: pointer;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 950;
}

.privacy-note p {
  margin: 10px 0 0;
  color: rgba(8, 10, 7, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #8a2d1c;
  font-size: 14px;
  font-weight: 850;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.submit-button {
  display: none;
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.hidden-field {
  display: none;
}

.thanks-body {
  background:
    linear-gradient(rgba(8, 10, 7, 0.82), rgba(8, 10, 7, 0.92)),
    url("assets/hero-kaszas.png") center / cover;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  width: min(560px, 100%);
  padding: clamp(24px, 5vw, 42px);
  color: var(--black);
  background: var(--paper);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

.thanks-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 50%;
}

.thanks-card h1 {
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.98;
}

.thanks-card p:not(.eyebrow) {
  margin: 18px auto 28px;
  color: rgba(8, 10, 7, 0.72);
  font-size: 18px;
  font-weight: 750;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 8px);
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    width: min(100% - 24px, 620px);
    padding: 18px 0 24px;
  }

  .hero-content {
    padding-top: 0;
  }

  .brand {
    margin-bottom: 26px;
  }

  h1 {
    font-size: 31px;
  }

  .hero-content > p:not(.eyebrow) {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .scroll-hint {
    font-size: 12px;
  }

  .proof-comparison {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-card {
    min-height: 178px;
    max-height: 230px;
  }

  .quiz-section {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100% - 24px, 620px);
    padding: 26px 0 56px;
  }

  .quiz-copy {
    padding-top: 0;
  }

  .quiz-card {
    min-height: 0;
  }

  .choice-grid,
  .choice-grid.three {
    grid-template-columns: 1fr;
  }

  .choice {
    min-height: 108px;
    grid-template-columns: auto 1fr;
    align-items: center;
    align-content: center;
  }

  .text-choice {
    min-height: 76px;
    display: flex;
    align-items: center;
  }

  .form-actions {
    position: sticky;
    bottom: 0;
    margin: 0 -18px -18px;
    padding: 12px 18px 18px;
    background: linear-gradient(rgba(244, 240, 229, 0), var(--paper) 28%);
  }

  .primary-button,
  .secondary-button,
  .start-button {
    min-height: 50px;
    padding: 13px 16px;
  }
}

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