:root {
  color-scheme: light;
  --ink: #10251b;
  --muted: #5d705f;
  --green: #112b1e;
  --green-2: #183a28;
  --sage: #dfe9d9;
  --cream: #fbf7ea;
  --gold: #d6bc68;
  --line: #c7d4bf;
  --danger: #ffd9cf;
}

* {
  box-sizing: border-box;
}

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

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

main {
  overflow: hidden;
}

.hero {
  min-height: 92vh;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 0%, rgba(214, 188, 104, 0.32), transparent 34%),
    linear-gradient(145deg, #edf4ea 0%, #f9f4e5 48%, #dfe9d9 100%);
}

.nav {
  max-width: 1120px;
  margin: 0 auto 58px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(16, 37, 27, 0.22);
}

.brand-name {
  font-weight: 900;
  font-size: 18px;
}

.nav-cta {
  margin-left: auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  background: rgba(255, 253, 246, 0.7);
}

.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #416346;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 650px;
  color: #34493a;
  font-size: 21px;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 16px;
}

.primary,
.secondary,
button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 0 22px;
  font-weight: 900;
}

.primary,
button {
  border: 0;
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 18px 34px rgba(16, 37, 27, 0.2);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 253, 246, 0.72);
}

.proof {
  color: var(--muted);
  font-weight: 700;
}

.app-card {
  border: 1px solid #294434;
  border-radius: 28px;
  background: var(--green);
  color: var(--cream);
  padding: 24px;
  box-shadow: 0 30px 70px rgba(16, 37, 27, 0.35);
}

.app-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.app-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.app-top div {
  flex: 1;
  display: grid;
  gap: 3px;
}

.app-top span,
.app-card p,
.cooldown span {
  color: #b9cbb0;
}

.app-top b {
  border-radius: 999px;
  background: var(--danger);
  color: #84321f;
  padding: 10px 14px;
}

.app-card h2 {
  margin-bottom: 8px;
  font-size: 44px;
  line-height: 1;
}

.meter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 22px;
  background: var(--cream);
  color: var(--ink);
  margin: 28px 0 16px;
}

.meter-grid div {
  padding: 18px;
}

.meter-grid div + div {
  border-left: 1px solid #d8c987;
}

.meter-grid span,
.meter-grid small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.meter-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 42px;
  line-height: 1;
}

.cooldown {
  display: grid;
  gap: 5px;
  border: 1px solid #396443;
  border-radius: 18px;
  background: var(--green-2);
  padding: 16px;
}

.cooldown strong {
  font-size: 24px;
}

.section,
.signup {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 24px;
}

.section-heading {
  max-width: 680px;
}

.section h2,
.signup h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

article,
form {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffdf6;
  padding: 22px;
}

article span {
  color: #6f895f;
  font-weight: 900;
}

article h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}

article p,
.signup p {
  color: var(--muted);
  line-height: 1.5;
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #304836;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcf7;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
  font-size: 16px;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #416346;
  font-weight: 800;
}

.form-status.error {
  color: #9a3b24;
}

@media (max-width: 860px) {
  .hero-grid,
  .signup {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding: 18px;
  }

  .nav {
    margin-bottom: 40px;
  }

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

  .section,
  .signup {
    padding: 64px 18px;
  }
}
