@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #FAFAFA;
  --bg-alt: #F4F1EE;
  --bg-card: #FFFFFF;
  --border: #E8E0DC;
  --text: #1A1A1A;
  --muted: #888888;
  --muted-light: #AAAAAA;
  --accent: #C4908A;
  --accent-dim: rgba(196, 144, 138, 0.12);
  --accent-hover: #B87E78;
  --pro: #7B8DB8;
  --pro-dim: rgba(123, 141, 184, 0.12);
  --premium: #D4756B;
  --premium-dim: rgba(212, 117, 107, 0.10);
  --radius: 12px;
  --radius-pill: 100px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; }

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

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

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

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ── Hero ── */
.hero {
  padding: 8rem 0 7rem;
  text-align: center;
  background: var(--bg);
}

.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(196, 144, 138, 0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--text);
}

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

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.hero-copy {
  font-size: 1rem;
  color: #888;
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 144, 138, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: #C8C0BC;
  background: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted-light);
  letter-spacing: 0.01em;
}

/* ── Features ── */
.features { background: var(--bg-alt); }

.section-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 1.1rem;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid rgba(196, 144, 138, 0.3);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  font-family: var(--font-serif);
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--text);
}

.step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Pricing ── */
.pricing { background: var(--bg-alt); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--premium);
  border-width: 1.5px;
  box-shadow: 0 4px 24px rgba(212, 117, 107, 0.12), var(--shadow-sm);
}

.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.badge-free {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(196, 144, 138, 0.25);
}
.badge-pro {
  background: var(--pro-dim);
  color: var(--pro);
  border: 1px solid rgba(123, 141, 184, 0.3);
}
.badge-premium {
  background: var(--premium-dim);
  color: var(--premium);
  border: 1px solid rgba(212, 117, 107, 0.3);
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0.2rem;
  line-height: 1.1;
  color: var(--text);
  font-family: var(--font-serif);
}

.price sup {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
  font-family: var(--font-sans);
}

.price-note {
  font-size: 0.8rem;
  color: var(--muted-light);
  margin-bottom: 1.5rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: #555;
  padding: 0.38rem 0;
}

.feature-list li .check { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.feature-list li .dash { color: #CCCCCC; flex-shrink: 0; margin-top: 2px; }
.feature-list li .label { color: var(--muted-light); }

.btn-full { width: 100%; justify-content: center; }

.btn-pro {
  background: var(--pro-dim);
  color: var(--pro);
  border: 1.5px solid rgba(123, 141, 184, 0.35);
  border-radius: var(--radius-pill);
}
.btn-pro:hover {
  background: rgba(123, 141, 184, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(123, 141, 184, 0.2);
}

.btn-premium {
  background: var(--premium);
  color: #fff;
  border-radius: var(--radius-pill);
}
.btn-premium:hover {
  background: #C2665C;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212, 117, 107, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
}
.btn-outline:hover {
  border-color: #C8C0BC;
  background: var(--bg-alt);
  transform: translateY(-1px);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
  background: var(--bg);
}

footer .footer-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

footer p {
  font-size: 0.82rem;
  color: var(--muted-light);
}

footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid-3, .steps-grid, .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 5rem 0 4rem; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
}
