:root {
  --bg: #f3efe7;
  --text: #16212d;
  --muted: #5e6770;
  --card: #fffdf9;
  --line: #dad4ca;
  --brand: #0e7b6f;
  --brand-dark: #0b645b;
  --brand-soft: #d9f3ee;
  --accent: #ef8642;
  --max-width: 1120px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 18px 45px rgba(22, 33, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 0% 0%, #fef7eb 0%, var(--bg) 45%), var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2.4rem, var(--max-width));
  margin-inline: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: color-mix(in oklab, var(--bg), transparent 30%);
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  padding: 0.78rem 1.35rem;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(14, 123, 111, 0.25);
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.button-ghost:hover {
  background: #fff;
  box-shadow: 0 8px 18px rgba(22, 33, 45, 0.08);
}

.hero {
  padding: 5.2rem 0 2.6rem;
  position: relative;
}

.kicker {
  display: inline-block;
  color: var(--brand-dark);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  max-width: 13ch;
  margin-bottom: 1rem;
}

.hero-text {
  color: var(--muted);
  max-width: 62ch;
  font-size: clamp(1rem, 1.4vw, 1.17rem);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

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

.card {
  background: color-mix(in oklab, var(--card), white 35%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(22, 33, 45, 0.05);
}

.stat-card {
  padding: 1.2rem;
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

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

.section {
  padding: 2.7rem 0;
}

.section-heading {
  max-width: 60ch;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 3.3vw, 2.4rem);
}

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

.feature {
  padding: 1.25rem;
}

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--muted);
}

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

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: #fff;
}

.step-number {
  display: inline-flex;
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent);
  background: #fff4eb;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.step h3 {
  font-size: 1.12rem;
  margin-bottom: 0.42rem;
}

.step p {
  color: var(--muted);
}

.cta-block {
  background: linear-gradient(140deg, var(--brand-soft), #fff3e6);
  border-radius: var(--radius-lg);
  border: 1px solid #cfe6e1;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 5vw, 2.4rem);
}

.cta-block h2 {
  font-size: clamp(1.5rem, 3.8vw, 2.5rem);
  max-width: 18ch;
  margin-bottom: 0.65rem;
}

.cta-block p {
  color: #24413d;
  margin-bottom: 1rem;
  max-width: 62ch;
}

.footer {
  padding: 2rem 0 2.2rem;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  margin-top: 1rem;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

.bg-shape-one {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 35% 30%, #ffe2c7, #f0c5a3 78%);
  top: -70px;
  right: -80px;
  animation: float-slow 13s ease-in-out infinite;
}

.bg-shape-two {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 45% 30%, #c8f0e8, #94d5cb 75%);
  left: -110px;
  bottom: 5%;
  animation: float-slow 16s ease-in-out infinite reverse;
}

.reveal,
.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible,
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 980px) {
  .hero-cards,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .header {
    position: static;
    background: transparent;
    backdrop-filter: none;
  }

  .header .button-ghost {
    display: none;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero h1 {
    max-width: none;
  }

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