:root {
  color-scheme: light;
  --bg: #f6efe7;
  --bg-soft: #fce9db;
  --ink: #1f1b16;
  --muted: #5f554c;
  --accent: #f2693a;
  --accent-dark: #c24d22;
  --card: #fffaf3;
  --stroke: #e7d6c6;
  --shadow: 0 30px 70px rgba(56, 40, 28, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background:
    radial-gradient(1000px 500px at 15% -5%, #fbd7c2 0%, transparent 60%),
    radial-gradient(900px 600px at 85% 0%, #cceee6 0%, transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.3;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li {
  margin-bottom: 8px;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(246, 239, 231, 0.86);
  border-bottom: 1px solid rgba(231, 214, 198, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Fraunces", serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: none;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.hero-panel {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}

.panel-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.panel-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.panel-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 6px;
}

.stat {
  font-size: 1.4rem;
  font-weight: 600;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
}

.helper {
  font-size: 0.9rem;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 16px 30px rgba(242, 105, 58, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(242, 105, 58, 0.3);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stroke);
  box-shadow: none;
}

.button.full {
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffe6dc;
  color: #8a3b1c;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  width: fit-content;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
}

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

.section {
  padding: 72px 0;
}

.section.soft {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(231, 214, 198, 0.6);
  border-bottom: 1px solid rgba(231, 214, 198, 0.6);
}

.section-header {
  display: grid;
  gap: 14px;
  max-width: 700px;
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(50, 36, 25, 0.12);
}

.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 12px;
}

.step-number {
  font-size: 0.8rem;
  color: var(--accent-dark);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.tag-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.tag {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  text-align: center;
}

.muted-tag {
  color: var(--muted);
}

.pricing {
  position: relative;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 28px;
  display: grid;
  gap: 16px;
  min-height: 100%;
}

.plan-card ul {
  list-style: none;
  padding: 0;
}

.plan-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.plan-name {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
}

.plan-price {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

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

.plan-card.featured {
  border-color: rgba(242, 105, 58, 0.6);
  box-shadow: 0 30px 60px rgba(242, 105, 58, 0.2);
}

.pricing-note {
  margin-top: 20px;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.faq-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 10px;
}

.cta {
  padding: 80px 0;
}

.cta-inner {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 26px;
  padding: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 0 30px;
  border-top: 1px solid rgba(231, 214, 198, 0.6);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-note {
  text-align: center;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.muted-logo {
  color: var(--muted);
  margin-bottom: 12px;
}

.fade {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .cta-inner {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 56px;
  }

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

  .cta-inner {
    padding: 28px;
  }

  .nav-inner {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    animation: none;
    opacity: 1;
  }
}

.legal {
  padding: 72px 0 80px;
}

.legal h1 {
  margin-bottom: 12px;
}

.legal section {
  margin-top: 24px;
}

.legal h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

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