:root {
  --bg: #f3f6f1;
  --bg-deep: #e5ede8;
  --ink: #152018;
  --ink-soft: #3d4f42;
  --brand: #1f3d2b;
  --accent: #e4572e;
  --accent-hover: #c9441f;
  --line: rgba(21, 32, 24, 0.12);
  --hero-text: #f7faf5;
  --hero-heading: #ffd23f;
  --radius: 14px;
  --wrap: min(1120px, calc(100% - 2.5rem));
  --font-display: "Unbounded", sans-serif;
  --font-body: "Onest", sans-serif;
  --shadow-soft: 0 18px 50px rgba(21, 32, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(228, 87, 46, 0.08), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(31, 61, 43, 0.08), transparent 50%),
    linear-gradient(180deg, #f7faf5 0%, var(--bg) 40%, #eef3eb 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.25rem;
  background: rgba(15, 28, 20, 0.28);
  border-bottom: 1px solid rgba(247, 250, 245, 0.08);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header .logo {
  color: var(--hero-text);
}

.site-header.is-solid {
  background: rgba(243, 246, 241, 0.72);
  border-bottom-color: var(--line);
}

.site-header.is-solid .logo {
  color: var(--brand);
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--brand);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1.05rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease;
}

.site-header.is-past-hero .header-cta {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.header-cta:hover {
  background: var(--accent-hover);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--hero-text);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 28, 20, 0.2) 0%, rgba(15, 28, 20, 0.35) 35%, rgba(15, 28, 20, 0.82) 100%),
    linear-gradient(90deg, rgba(15, 28, 20, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin: 0 auto;
  padding: 7.5rem 0 3.5rem;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--hero-text);
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--hero-heading);
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(247, 250, 245, 0.9);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-hero {
  min-height: 3.75rem;
  padding: 1.05rem 1.9rem;
  font-size: 1.15rem;
}

.btn-ghost {
  border-color: rgba(247, 250, 245, 0.45);
  color: var(--hero-text);
  background: rgba(247, 250, 245, 0.06);
}

.btn-ghost:hover {
  border-color: rgba(247, 250, 245, 0.85);
  background: rgba(247, 250, 245, 0.12);
}

.section {
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
}

.section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--brand);
}

.section-lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.problem {
  background:
    linear-gradient(180deg, rgba(31, 61, 43, 0.04), transparent),
    transparent;
}

.problem .section-lead {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  max-width: 36rem;
}

.steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  counter-reset: none;
}

.steps li {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.step-num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.steps h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

.audience-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 500;
}

.audience-list li:first-child {
  border-top: 1px solid var(--line);
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.5rem;
  max-width: 44rem;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--accent);
  transform: rotate(0deg);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details[open] summary::after,
.faq-list details.is-open summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-list details p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.final-cta {
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.final-inner {
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(228, 87, 46, 0.12), transparent 40%),
    linear-gradient(180deg, #1f3d2b, #274c36);
  color: var(--hero-text);
  box-shadow: var(--shadow-soft);
  animation: none;
}

.final-inner h2 {
  color: var(--hero-text);
}

.final-inner .section-lead {
  color: rgba(247, 250, 245, 0.86);
  margin-bottom: 1.5rem;
}

.site-footer {
  padding: 2rem 0 2.75rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: baseline;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 36rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

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

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

  .hero-content {
    padding: 6.5rem 0 2.75rem;
  }

  .brand {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }
}

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

  .hero-media img,
  .hero-content,
  .reveal,
  .faq-answer {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
