:root {
  --bg: #f4f1ea;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #14213d;
  --muted: #49566f;
  --line: rgba(20, 33, 61, 0.12);
  --accent: #d17a22;
  --accent-2: #0f766e;
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.12);
  --radius: 24px;
  --max-width: 1160px;
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(209, 122, 34, 0.14), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(15, 118, 110, 0.18), transparent 20%),
    linear-gradient(180deg, #fcfaf7 0%, var(--bg) 55%, #eef5f2 100%);
}

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

.shell {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.hero {
  padding: 28px 0 96px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow);
}

.brand-copy strong,
.eyebrow,
h1,
h2,
.card h3,
.stat strong {
  font-family: var(--font-display);
}

.brand-copy span,
.meta,
.lede,
.card p,
.footer-note,
.section-intro,
.bullet {
  color: var(--muted);
}

.tagline {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.lede {
  margin: 24px 0 0;
  max-width: 60ch;
  font-size: 1.08rem;
  line-height: 1.7;
}

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

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

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(20, 33, 61, 0.18);
}

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

.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.panel-grid {
  display: grid;
  gap: 18px;
}

.meta {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid rgba(20, 33, 61, 0.08);
}

.feature strong {
  font-size: 1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.stat {
  padding: 18px;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid rgba(20, 33, 61, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.section {
  padding: 0 0 82px;
}

.section-header {
  margin-bottom: 24px;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.03em;
}

.section-intro {
  max-width: 64ch;
  margin: 12px 0 0;
  line-height: 1.7;
}

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

.card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  line-height: 1.7;
}

.bullets {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.65;
}

.bullet::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 9px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.footer {
  padding: 0 0 34px;
}

.footer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.footer-note {
  margin: 0;
  line-height: 1.6;
}

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

  .stats {
    grid-template-columns: 1fr;
  }

  .topbar,
  .footer-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .panel,
  .card,
  .hero-copy,
  .topbar {
    animation: rise 700ms ease both;
  }

  .card:nth-child(2) {
    animation-delay: 100ms;
  }

  .card:nth-child(3) {
    animation-delay: 180ms;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
