:root {
  --bg: #f6f1ea;
  --bg-soft: #fff7ee;
  --ink: #1b1a17;
  --muted: #6b6157;
  --accent: #ff4d1c;
  --accent-dark: #0f3d3e;
  --highlight: #f2b12f;
  --line: #e5ddd2;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(20, 15, 10, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(255, 77, 28, 0.18), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(15, 61, 62, 0.15), transparent 50%),
    linear-gradient(120deg, rgba(242, 177, 47, 0.12), transparent 50%),
    repeating-linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.6) 0px,
      rgba(255, 255, 255, 0.6) 2px,
      rgba(255, 255, 255, 0) 2px,
      rgba(255, 255, 255, 0) 12px
    );
}

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

.hero {
  padding: clamp(72px, 12vw, 140px) 0 clamp(56px, 10vw, 120px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  background: rgba(15, 61, 62, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

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

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

p {
  margin: 0 0 16px;
  color: var(--ink);
}

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

.method-line {
  display: inline-block;
  margin: 12px 0 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 77, 28, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.method-line strong {
  color: var(--accent);
}

.desire-line {
  margin: 0 0 8px;
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 500;
}

.hero-copy > * {
  animation: fadeUp 0.8s ease both;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.25s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.35s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.45s;
}

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

.cta-row.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 77, 28, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(255, 77, 28, 0.3);
}

.btn.ghost {
  border-color: rgba(15, 61, 62, 0.4);
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.6);
}

.hero-notes {
  font-size: 0.95rem;
  color: var(--accent-dark);
  font-weight: 500;
}

.hero-card {
  position: relative;
  display: grid;
  gap: 20px;
  justify-items: end;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 61, 62, 0.1);
}

.card.soft {
  background: var(--bg-soft);
  box-shadow: none;
  border-color: rgba(255, 77, 28, 0.15);
}

.card-title {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent-dark);
}

.hero-badge {
  align-self: start;
  background: var(--highlight);
  color: #2d2316;
  padding: 10px 18px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(242, 177, 47, 0.25);
  animation: float 4s ease-in-out infinite;
}

.section {
  padding: clamp(64px, 10vw, 120px) 0;
}

.section-title {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

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

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

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

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

.list.highlight li {
  padding: 14px 16px;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 24px rgba(20, 15, 10, 0.08);
}

.list.negative li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(15, 61, 62, 0.06);
}

.list.negative li::before {
  content: "x";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 77, 28, 0.2);
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.callout {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 77, 28, 0.2);
  box-shadow: var(--shadow);
}

.callout.dark {
  background: var(--accent-dark);
  color: #fff;
}

.callout.dark p {
  color: rgba(255, 255, 255, 0.85);
}

.callout-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

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

.stat {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(15, 61, 62, 0.15);
  background: rgba(255, 255, 255, 0.6);
}

.stat-number {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.stat-text {
  color: var(--muted);
  margin: 0;
}

.checklist,
.denylist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.checklist li,
.denylist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checklist li::before {
  content: "✓";
  font-weight: 700;
  color: var(--accent);
}

.denylist li::before {
  content: "x";
  font-weight: 700;
  color: #c53d2c;
}

.notice {
  border-radius: 18px;
  border: 1px dashed rgba(15, 61, 62, 0.4);
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
}

.notice-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.offer {
  background: linear-gradient(135deg, rgba(255, 77, 28, 0.08), rgba(15, 61, 62, 0.08));
}

.offer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.price-card {
  background: var(--card);
  padding: 28px;
  border-radius: 22px;
  border: 2px solid rgba(255, 77, 28, 0.2);
  box-shadow: var(--shadow);
  text-align: center;
}

.price-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--accent-dark);
}

.fine-print {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 12px;
}

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

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

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

  .hero-card {
    justify-items: start;
  }
}

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

  .btn {
    width: 100%;
  }

  .cta-row {
    gap: 12px;
  }
}
