:root {
  --bg: #f3ecdf;
  --bg-strong: #e8dfd0;
  --olive: #73855d;
  --olive-strong: #5f704a;
  --brown: #5a3f2b;
  --muted: #7a6b5d;
  --white: #f8f3ea;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.06);
  --radius: 22px;
  font-family: "Avenir Next", "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--brown);
  line-height: 1.6;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
}

.blob-1 {
  background: #d6ccb9;
  top: -120px;
  left: -160px;
}

.blob-2 {
  background: #a9b08f;
  bottom: -180px;
  right: -120px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 6vw;
  background: rgba(243, 236, 223, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: url('/logo.svg') center/cover no-repeat, #d6ccb9;
  box-shadow: var(--shadow-soft);
}

.logo-img.small {
  width: 44px;
  height: 44px;
}

.brand-name {
  font-weight: 700;
  color: var(--brown);
}

.brand-tag {
  font-size: 14px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--brown);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(95, 112, 74, 0.25);
}

.btn.primary:hover {
  background: var(--olive-strong);
  transform: translateY(-1px) scale(1.01);
}

.hero {
  padding: 76px 6vw 52px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow);
}

.hero h1 {
  max-width: 920px;
  margin: 0 auto 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.25;
}

.lead {
  font-size: 20px;
  max-width: 640px;
  margin: 0 auto 12px;
}

.sub {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 20px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px;
}

.section {
  padding: 60px 6vw;
  position: relative;
  z-index: 1;
}

.panel {
  padding: 0 6vw;
}

.panel-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
  max-width: 920px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.card.muted {
  background: var(--bg-strong);
}

.muted-note {
  color: var(--muted);
  margin-top: 12px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

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

.list li::before {
  content: "•";
  color: var(--olive);
  margin-right: 8px;
}

.steps {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.author {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.quote {
  background: linear-gradient(135deg, #d6ccb9, #a9b08f);
  color: var(--brown);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.cta {
  text-align: center;
  display: grid;
  gap: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

.faq-item .q {
  font-weight: 700;
  color: var(--brown);
}

.faq-item .a {
  color: var(--text);
  margin-top: 6px;
}

.footer {
  padding: 26px 6vw 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .author {
    grid-template-columns: 1fr;
  }
  .topbar {
    padding: 12px 16px;
  }
  .hero {
    padding: 64px 16px 42px;
  }
}

@media (max-width: 600px) {
  .logo-img {
    width: 48px;
    height: 48px;
  }
  .btn {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .panel-inner,
  .card {
    padding: 22px;
  }
  h1 {
    font-size: 28px;
  }
}
