:root {
  --bg: #1a1410;
  --bg-warm: #231c15;
  --fg: #f5ede4;
  --fg-muted: #b8a898;
  --accent: #e87b35;
  --accent-glow: #ff9a56;
  --tier-basic: #6b9e6b;
  --tier-mid: #d4983d;
  --tier-premium: #c75d4a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 48px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 60px;
  position: relative;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232, 123, 53, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
}

.lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  width: 300px;
  height: 360px;
  flex-shrink: 0;
}

.price-float {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 16px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.price-float-1 {
  top: 20px;
  left: 0;
  background: var(--tier-basic);
  color: #fff;
  font-size: 22px;
  transform: rotate(-3deg);
}

.price-float-2 {
  top: 130px;
  right: 0;
  background: var(--tier-mid);
  color: #1a1410;
  font-size: 26px;
  transform: rotate(2deg);
}

.price-float-3 {
  bottom: 40px;
  left: 20px;
  background: var(--tier-premium);
  color: #fff;
  font-size: 20px;
  transform: rotate(-1deg);
}

/* ---- SECTIONS SHARED ---- */
.section-label {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  text-align: center;
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tier {
  background: var(--bg-warm);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}

.tier-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
}

.tier-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}

.tier-basic .tier-price { color: var(--tier-basic); }
.tier-mid .tier-price { color: var(--tier-mid); }
.tier-premium .tier-price { color: var(--tier-premium); }

.tier-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.tier p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- HOW ---- */
.how {
  padding: 100px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 60px;
}

.reason-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.reason h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}

.reason p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
}

.footer-meta {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 60px 24px 40px;
    min-height: auto;
    gap: 40px;
  }

  .hero-visual {
    width: 100%;
    height: 200px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }

  .price-float {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    font-size: 16px !important;
    padding: 12px 20px;
  }

  .pricing { padding: 60px 24px; }

  .tiers {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how { padding: 60px 24px; }

  .reasons {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .closing { padding: 80px 24px; }

  .site-footer { padding: 32px 24px; }

  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }

  .lede { font-size: 17px; }
}