:root {
  --bg: #f6fff7;
  --bg-accent: #d8fff1;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #15332f;
  --muted: #55756f;
  --line: rgba(21, 51, 47, 0.08);
  --brand: #ff6f7f;
  --brand-deep: #ff4e63;
  --mint: #7be7cf;
  --shadow: 0 22px 70px rgba(34, 88, 75, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 111, 127, 0.26), transparent 28%),
    radial-gradient(circle at top right, rgba(123, 231, 207, 0.35), transparent 25%),
    linear-gradient(180deg, #f9fffb 0%, #effcf7 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 14px 18px;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(47, 109, 93, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #ff9a74);
  color: #fff;
  box-shadow: 0 12px 22px rgba(255, 111, 127, 0.3);
}

.topnav {
  display: flex;
  gap: 22px;
  font-size: 0.96rem;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 68px 0 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(123, 231, 207, 0.25);
  border: 1px solid rgba(123, 231, 207, 0.45);
  color: #22695d;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.cta-card h2 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.1rem);
  max-width: 8ch;
}

.hero-lead,
.reason-card p,
.step-card p,
.showcase-copy p,
.cta-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 18px 28px rgba(255, 111, 127, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero-points li::before {
  content: "✦";
  display: inline-block;
  width: 22px;
  color: var(--brand-deep);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(100%, 500px);
  padding: 30px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    linear-gradient(145deg, rgba(123, 231, 207, 0.3), rgba(255, 111, 127, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto auto 14px -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(123, 231, 207, 0.3);
  filter: blur(6px);
}

.hero-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(21, 51, 47, 0.07);
  font-size: 0.82rem;
  font-weight: 600;
}

.mascot {
  display: block;
  width: 100%;
  border-radius: 26px;
}

.floating-chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  box-shadow: 0 14px 30px rgba(21, 51, 47, 0.13);
}

.chip-top {
  top: 74px;
  left: -18px;
  background: #ffffff;
}

.chip-bottom {
  right: -14px;
  bottom: 58px;
  background: linear-gradient(135deg, var(--mint), #c9fff2);
}

.chip-right {
  top: 160px;
  right: -18px;
  background: #ffffff;
}

.chip-left {
  top: 235px;
  left: -26px;
  background: linear-gradient(135deg, #ffe7a8, #fff4cf);
}

.chip-bottom-left {
  left: 26px;
  bottom: 34px;
  background: #ffffff;
}

.stats-strip,
.steps-grid,
.reasons-grid,
.showcase,
.cta-card {
  margin-top: 28px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat,
.step-card,
.reason-card,
.quote-card,
.cta-card {
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.stat {
  padding: 22px 24px;
  border-radius: 26px;
}

.stat-value {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding-top: 74px;
}

.section-heading h2,
.showcase-copy h2,
.cta-card h2 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  max-width: 12ch;
}

.steps-grid,
.reasons-grid {
  display: grid;
  gap: 18px;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.reasons-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.reason-card {
  padding: 24px;
  border-radius: 28px;
}

.step-card.accent {
  background: linear-gradient(160deg, rgba(255, 111, 127, 0.15), rgba(123, 231, 207, 0.18));
}

.step-index {
  display: inline-flex;
  margin-bottom: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.step-card h3,
.reason-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.quote-card {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 111, 127, 0.18), rgba(255, 255, 255, 0.9));
}

.quote-card p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3.3vw, 2.25rem);
  line-height: 1.1;
}

.quote-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
}

.cta-section {
  padding-bottom: 34px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(125deg, rgba(123, 231, 207, 0.26), rgba(255, 255, 255, 0.9)),
    var(--surface-strong);
}

@media (max-width: 980px) {
  .hero,
  .steps-grid,
  .reasons-grid,
  .showcase,
  .stats-strip,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-card {
    display: grid;
  }

  .topbar {
    border-radius: 28px;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .topnav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 12px;
  }

  .floating-chip {
    position: static;
    display: inline-flex;
    margin-top: 12px;
  }
}
