:root {
  --bg: #fff8ee;
  --surface: #ffffff;
  --ink: #132032;
  --muted: #445366;
  --brand: #ff5f2e;
  --brand-dark: #e24414;
  --accent: #11b3a2;
  --line: #e8ded0;
  --shadow: 0 20px 40px rgba(23, 37, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 95, 46, 0.18), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(17, 179, 162, 0.2), transparent 28%),
    linear-gradient(145deg, #fff8ee 0%, #fffbf4 45%, #f8fff9 100%);
  line-height: 1.45;
}

.page-glow {
  position: fixed;
  inset: auto -8rem -8rem auto;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(17, 179, 162, 0.28), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
  background: rgba(255, 252, 246, 0.8);
  border-bottom: 1px solid rgba(19, 32, 50, 0.08);
}

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

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

.site-nav {
  display: flex;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-dark);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}

.hero {
  padding: 5.4rem 0 3rem;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-dark);
}

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

h1 {
  margin-top: 0.5rem;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}

.lead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 58ch;
}

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

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

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

.btn-primary {
  background: linear-gradient(120deg, var(--brand), #ff7a3d);
  color: #fff;
  box-shadow: 0 8px 18px rgba(226, 68, 20, 0.28);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

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

.hero-stats li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem;
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  font-size: 1.2rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  border: 1px solid #dce8f0;
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.1rem;
}

.ring-wrap {
  margin-top: 1rem;
  text-align: center;
}

.ring {
  margin: 0 auto;
  width: 8.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: var(--ink);
  background:
    radial-gradient(closest-side, #f8fdff 72%, transparent 74% 100%),
    conic-gradient(var(--accent) 0 82%, #d7e5ea 82% 100%);
}

.ring-wrap p {
  margin-top: 0.7rem;
  color: var(--muted);
}

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

.mini-grid article {
  background: #fff;
  border: 1px solid #e1ecf2;
  border-radius: 12px;
  padding: 0.75rem;
}

.mini-grid h3 {
  font-size: 0.95rem;
}

.mini-grid p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

section {
  padding: 4rem 0;
}

.section-title {
  margin-top: 0.5rem;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.feature-grid,
.plans-grid,
.steps-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

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

.feature-card,
.step,
.plan,
.download-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-card,
.step,
.plan {
  padding: 1.1rem;
}

.plan {
  display: flex;
  flex-direction: column;
}

.plan .btn {
  display: block;
  text-align: center;
  margin-top: auto;
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.plan ul {
  flex: 1;
}

.feature-card p,
.step p,
.plan ul {
  color: var(--muted);
}

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

.step span {
  font-family: "Space Grotesk", sans-serif;
  color: var(--brand-dark);
  font-weight: 700;
}

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

.plans-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}

.plan .price {
  margin: 0.7rem 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
}

.plan .price span {
  font-size: 1rem;
  color: var(--muted);
}

.plan ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.plan-featured {
  border-color: rgba(226, 68, 20, 0.3);
  transform: translateY(-0.4rem);
}

.tag {
  margin: 0 0 0.35rem;
  display: inline-block;
  background: #fff1ed;
  color: var(--brand-dark);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

.download-wrap {
  padding: 2.2rem;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 95, 46, 0.12), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(17, 179, 162, 0.18), transparent 26%),
    #ffffff;
}

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

.site-footer {
  padding: 1.4rem 0 2.3rem;
}

.footer-wrap {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--brand-dark);
  border-bottom-color: var(--brand-dark);
}

.legal-main {
  padding: 3rem 0 4rem;
}

.legal-hero {
  padding: 2.6rem 0 1.6rem;
}

.legal-hero-card,
.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.legal-hero-card {
  padding: 1.5rem;
}

.legal-content {
  padding-top: 0.4rem;
}

.legal-card {
  padding: 1.5rem;
}

.legal-card h2 {
  margin-top: 1.4rem;
  font-size: 1.25rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
}

.legal-card li {
  margin-bottom: 0.4rem;
}

.static-nav {
  display: flex;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

  .plan-featured {
    transform: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 4.7rem;
    right: 4%;
    left: 4%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
    flex-direction: column;
  }

  .site-nav.open {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .reveal,
  .reveal.in-view {
    transition: none;
    transform: none;
    opacity: 1;
  }
}