:root {
  --bg: #f6f3ee;
  --bg-alt: #efe9e1;
  --ink: #1b1b1b;
  --muted: #6d6a66;
  --accent: #c78f58;
  --accent-dark: #9f6c3c;
  --card: #ffffff;
  --border: rgba(27, 27, 27, 0.08);
  --shadow: 0 20px 60px rgba(27, 27, 27, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

.bg-glow {
  position: fixed;
  inset: -20% -10% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(199, 143, 88, 0.25), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(246, 243, 238, 0.9);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  justify-content: center;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow);
}

.btn-accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(199, 143, 88, 0.35);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--ink);
  background: transparent;
}

.hero {
  padding: 110px 0 80px;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 16px 0;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 12px;
}

h3 {
  margin: 0 0 12px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  margin: 28px 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.meta-title {
  font-weight: 600;
}

.meta-text {
  font-size: 13px;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.chip {
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
}

.hero-card ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.hero-card-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.promo-card {
  background: #1b1b1b;
  color: #f6f3ee;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 24px 70px rgba(27, 27, 27, 0.35);
  display: grid;
  gap: 16px;
}

.promo-kicker {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--accent);
}

.promo-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(246, 243, 238, 0.8);
}

.promo-text {
  color: rgba(246, 243, 238, 0.8);
  font-size: 15px;
}

.promo-btn {
  width: fit-content;
}

.section {
  padding: 80px 0;
}

.section-muted {
  background: var(--bg-alt);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

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

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(27, 27, 27, 0.06);
}

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

.steps {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.country-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.country-btn {
  border: 1px solid var(--border);
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
}

.country-btn.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.price-card {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  display: grid;
  gap: 10px;
  min-height: 170px;
}

.price-card .label {
  font-size: 15px;
  font-weight: 600;
}

.price-card .value {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-card .per {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.price-card .discount {
  font-size: 12px;
  color: var(--accent-dark);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 999px;
  justify-self: end;
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.best-badge {
  font-size: 12px;
  color: #1b1b1b;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.old-price {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}

.btn-pay {
  margin-top: 10px;
  justify-self: start;
  font-size: 13px;
}

.price-note {
  font-size: 12px;
  color: var(--muted);
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(199, 143, 88, 0.25);
  transform: translateY(-6px);
}

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

.referral-metrics {
  display: flex;
  gap: 24px;
  margin: 20px 0 24px;
  flex-wrap: wrap;
}

.metric {
  background: var(--card);
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  min-width: 140px;
}

.metric-value {
  font-size: 26px;
  font-weight: 700;
}

.metric-label {
  font-size: 13px;
  color: var(--muted);
}

.btn-partner {
  margin-top: 8px;
}

.legal {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.legal p {
  margin: 0 0 14px;
}

.article-body {
  background: var(--card);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  color: var(--ink);
}

.article-body p {
  margin: 0 0 14px;
  color: var(--muted);
}

.article-body h2 {
  margin: 18px 0 10px;
}

.article-body strong {
  color: var(--ink);
}

.placeholder {
  color: var(--accent-dark);
  font-weight: 600;
}

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

.site-footer {
  padding: 30px 0 40px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

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

@media (max-width: 900px) {
  .header-row {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }
}

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

  .btn {
    width: 100%;
  }

  .footer-row {
    flex-direction: column;
    gap: 8px;
  }
}
