:root {
  color-scheme: light;
  --ink: #10221d;
  --muted: #5d6d66;
  --paper: #fbf8ef;
  --paper-strong: #fffdf7;
  --line: rgba(16, 34, 29, 0.14);
  --green: #174c38;
  --green-soft: #dceee4;
  --gold: #d69c3c;
  --shadow: 0 24px 70px rgba(16, 34, 29, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(214, 156, 60, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--paper) 0%, #f4efe2 100%);
  color: var(--ink);
}

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

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 1.2rem 0;
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.8rem;
  background: var(--green);
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.nav {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
}

.nav a:hover,
.nav-cta {
  background: rgba(23, 76, 56, 0.08);
  color: var(--green);
}

main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 72vh;
  padding: 3rem 0 5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 780;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

h2 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}

.hero-subtitle {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
}

.button.primary {
  border-color: var(--green);
  background: var(--green);
  color: white;
  box-shadow: 0 16px 32px rgba(23, 76, 56, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.5);
}

.button:hover {
  transform: translateY(-1px);
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.answer-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-topline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
}

.status-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #23a568;
  box-shadow: 0 0 0 0.35rem rgba(35, 165, 104, 0.13);
}

.answer-card h2 {
  max-width: 12ch;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

dl,
dd {
  margin: 0;
}

.answer-card dl {
  display: grid;
  gap: 0.9rem;
}

.answer-card dl > div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.55);
}

dt {
  margin-bottom: 0.35rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dd {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

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

.steps article,
.final-cta {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 253, 247, 0.62);
}

.step-number {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.steps p,
.final-cta p,
.use-list {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: start;
}

.use-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.use-list li {
  padding: 1rem 1rem 1rem 2.6rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 253, 247, 0.62);
  position: relative;
}

.use-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  color: var(--green);
  font-weight: 900;
}

.final-cta {
  display: grid;
  justify-items: start;
  gap: 0.2rem;
  margin-bottom: 3rem;
  background: var(--green);
  color: white;
}

.final-cta h2 {
  max-width: 18ch;
}

.final-cta p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button.primary {
  border-color: white;
  background: white;
  color: var(--green);
  box-shadow: none;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--green);
  font-weight: 750;
}

@media (max-width: 840px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

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

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(3.05rem, 13.4vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.032em;
  }
}
