:root {
  --bg: #f6f0e6;
  --bg-deep: #f2dcc6;
  --ink: #201a16;
  --muted: #554b43;
  --accent: #ff6a3d;
  --accent-dark: #e7542b;
  --accent-2: #1c7c54;
  --card: #fff8ee;
  --stroke: #e3d4c2;
  --shadow: 0 18px 50px rgba(32, 26, 22, 0.18);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff7ed 0%, var(--bg) 45%, #f1e3d3 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Georgia", serif;
  margin: 0 0 12px 0;
}

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(246, 240, 230, 0.85);
  border-bottom: 1px solid rgba(227, 212, 194, 0.6);
}

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

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  padding: 90px 0 60px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 3.4vw, 3.5rem);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff2e2;
  border: 1px solid var(--stroke);
  font-weight: 600;
  margin-bottom: 14px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(255, 106, 61, 0.35);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 106, 61, 0.4);
}

.button.ghost {
  background: transparent;
}

.button.small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.button.full {
  width: 100%;
}

.hero-meta {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(227, 212, 194, 0.7);
}

.card-title {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.card-price {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 14px 0;
}

.card-note {
  color: var(--muted);
  margin-bottom: 18px;
}

.card-list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 500;
}

.section-title {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  max-width: 680px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(32, 26, 22, 0.08);
}

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

.step {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--stroke);
}

.step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-2);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.6fr);
  gap: 26px;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(120deg, #fff2e2, #ffe3d1);
  border: 1px solid #f0cbb0;
  box-shadow: var(--shadow);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}

.pricing-cta {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--stroke);
  display: grid;
  gap: 12px;
  align-content: center;
  text-align: center;
}

.price {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.fine {
  font-size: 0.85rem;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 16px;
}

details {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 16px 20px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

summary + p {
  margin-top: 12px;
  color: var(--muted);
}

.purchase {
  background: #1f2420;
  color: #fff;
  border-radius: 30px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 18px 40px rgba(31, 36, 32, 0.35);
}

.purchase .button.primary {
  background: #f5b76c;
  color: #1f2420;
  box-shadow: none;
}

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

.footer {
  margin-top: 80px;
  padding: 40px 0 60px;
  border-top: 1px solid rgba(227, 212, 194, 0.6);
  background: rgba(246, 240, 230, 0.7);
}

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

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.orb {
  position: fixed;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(0.2px);
  z-index: -1;
}

.orb-one {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.35), rgba(255, 106, 61, 0));
  top: -120px;
  right: -60px;
  animation: float 12s ease-in-out infinite;
}

.orb-two {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(28, 124, 84, 0.3), rgba(28, 124, 84, 0));
  bottom: 40px;
  left: -60px;
  animation: float 10s ease-in-out infinite reverse;
}

.orb-three {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(44, 85, 155, 0.28), rgba(44, 85, 155, 0));
  top: 40%;
  right: 12%;
  animation: float 11s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.8s ease forwards;
}

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

.reveal.delay-2 {
  animation-delay: 0.24s;
}

.reveal.delay-3 {
  animation-delay: 0.36s;
}

.reveal.delay-4 {
  animation-delay: 0.48s;
}

.reveal.delay-5 {
  animation-delay: 0.6s;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .purchase {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-card,
  .pricing-card {
    padding: 24px;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .orb {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
