:root {
  --lemon-yellow: #ffcc00;
  --bright-orange: #ffad00;
  --deep-orange: #ffb000;
  --warm-red: #ff4e00;
  --text-dark: #0f0616;
  --text-light: #f5f5f5;
  --text-faded: #9899a5;
  --card-light: #f9fafe;
  --card-dark: #303334;
  --border-dark: rgba(255, 255, 255, 0.18);
  --border-light: rgba(97, 97, 97, 0.37);
  --page-bg: #fff6e5;
  --max-width: 1120px;
  --radius-lg: 26px;
  --radius-md: 16px;
  --shadow: 0 18px 40px rgba(15, 6, 22, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 204, 0, 0.3), transparent 33%),
    radial-gradient(circle at 82% 3%, rgba(255, 78, 0, 0.18), transparent 31%),
    linear-gradient(180deg, #fff8ec 0%, #ffffff 34%, #fff9f0 100%);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(64px);
  pointer-events: none;
  z-index: -1;
}

.background-glow-1 {
  width: 380px;
  height: 380px;
  background: rgba(255, 176, 0, 0.36);
  top: -90px;
  right: -80px;
}

.background-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 78, 0, 0.24);
  left: -90px;
  bottom: 140px;
}

.container {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(
    120deg,
    rgba(255, 173, 0, 0.08),
    rgba(255, 204, 0, 0.05)
  );
}

.eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #5f4f3f;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--bright-orange), var(--warm-red));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 236, 0.72);
  border-bottom: 1px solid rgba(15, 6, 22, 0.07);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: auto;
  height: 52px;
  max-width: min(34vw, 178px);
  object-fit: contain;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  padding: 0.78rem 1.2rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--deep-orange), var(--warm-red));
  color: var(--text-light);
  box-shadow: 0 10px 24px rgba(255, 78, 0, 0.3);
}

.btn-ghost {
  border-color: var(--border-light);
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.72);
}

.btn-nav {
  padding-inline: 1rem;
  border-color: var(--border-light);
  background: #ffffff;
}

.hero {
  padding-top: 4.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: start;
}

.hero-copy h1 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.55rem);
  line-height: 1.08;
  margin: 0;
  max-width: 16ch;
}

.hero-copy h1 span {
  background: linear-gradient(120deg, #ca4200, #ff8f00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin-top: 1.3rem;
  max-width: 57ch;
  color: #40364a;
  font-size: 1.05rem;
}

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

.hero-trust {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 540px;
}

.hero-trust div {
  border: 1px solid rgba(15, 6, 22, 0.12);
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.66);
}

.hero-trust strong {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.15rem;
}

.hero-trust span {
  color: #52495d;
  font-size: 0.87rem;
}

.hero-card {
  background: linear-gradient(175deg, #201327 0%, #332239 100%);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  color: #fff8f2;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius-lg) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.card-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-family: "Sora", "Segoe UI", sans-serif;
  margin: 0.65rem 0 1.05rem;
  font-size: 1.45rem;
  line-height: 1.22;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.hero-card li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 0.37rem;
  background: linear-gradient(140deg, var(--lemon-yellow), var(--warm-red));
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.15;
}

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

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(15, 6, 22, 0.1);
  border-radius: var(--radius-md);
  padding: 1.3rem;
}

.feature-card h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0.7rem 0 0;
  color: #494052;
}

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

.step-card {
  background: linear-gradient(
    180deg,
    rgba(255, 204, 0, 0.13),
    rgba(255, 173, 0, 0.09)
  );
  border: 1px solid rgba(15, 6, 22, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.step-index {
  display: inline-flex;
  margin-bottom: 0.55rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: #7a2d00;
}

.step-card h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.step-card p {
  margin: 0.65rem 0 0;
  color: #493f50;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1.3rem;
  align-items: start;
}

.impact-text {
  margin-top: 1rem;
  color: #453b4e;
  max-width: 55ch;
}

.stats {
  display: grid;
  gap: 0.8rem;
}

.stats article {
  background: #ffffff;
  border: 1px solid rgba(15, 6, 22, 0.1);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.stats strong {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  color: #8d2e00;
}

.stats span {
  color: #4d4459;
}

.cta-section {
  padding-top: 2rem;
}

.cta {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #281729, #37172d 54%, #5b2409);
  color: var(--text-light);
  padding: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.cta h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
}

.cta p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 62ch;
}

.site-footer {
  border-top: 1px solid rgba(15, 6, 22, 0.1);
  margin-top: 2.8rem;
}

.footer-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: #5c5462;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

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

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

  .hero-card {
    max-width: 700px;
  }

  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.5rem 0;
  }

  .brand-logo {
    height: 44px;
    max-width: min(52vw, 160px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: rgba(255, 250, 240, 0.96);
    border-bottom: 1px solid rgba(15, 6, 22, 0.1);
    padding: 1rem 1.25rem 1.4rem;
    display: grid;
    gap: 0.75rem;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.9rem 0;
  }
}
