:root {
  --bg: #f9f6f1;
  --ink: #1c1917;
  --ink-muted: #6b6460;
  --accent: #e8521a;
  --accent-light: #fdf0eb;
  --border: rgba(28, 25, 23, 0.1);
  --radius: 14px;
  --radius-sm: 8px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.1; font-weight: 600; }
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; font-family: 'DM Sans', sans-serif; font-weight: 500; }
p { font-size: 1rem; line-height: 1.7; color: var(--ink-muted); }
em { font-style: italic; color: var(--accent); }

/* Section eyebrow */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  margin-bottom: 1.25rem;
}

.section-sub {
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--ink-muted);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

/* Hero */
.hero {
  padding: 6rem 4rem 5rem;
  border-bottom: 1px solid var(--border);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.hero-headline {
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-intro {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
}

.price-divider {
  font-size: 1.5rem;
  color: var(--ink-muted);
}

.price-standard {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--ink-muted);
}

.price-label {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-left: 0.5rem;
}

/* Social Grid Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-grid {
  position: relative;
  width: 320px;
  height: 360px;
}

/* Social Cards */
.social-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(28,25,23,0.08), 0 1px 3px rgba(28,25,23,0.05);
  overflow: hidden;
  border: 1px solid var(--border);
}

.card-1 { width: 160px; top: 0; left: 0; }
.card-2 { width: 145px; top: 10px; right: 0; }
.card-3 { width: 140px; bottom: 20px; left: 30px; }

.card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
}

.card-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.card-line {
  height: 8px;
  border-radius: 4px;
  background: var(--ink);
  opacity: 0.15;
}
.card-line.short { width: 60px; }
.card-line.medium { width: 80px; }

.card-img {
  width: 100%;
  height: 80px;
  background: #f0ece7;
}
.card-img-1 {
  background: linear-gradient(135deg, #e8521a22 0%, #e8521a44 100%);
}
.card-img-2 {
  background: linear-gradient(135deg, #1c191722 0%, #1c191744 100%);
}
.card-img-3 {
  background: linear-gradient(135deg, #e8521a15 0%, transparent 100%);
  height: 70px;
}

.card-reactions {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
}

.reaction {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--ink);
  opacity: 0.12;
}
.reaction.heart.filled { background: var(--accent); opacity: 0.7; }

.card-caption {
  height: 8px;
  width: 70%;
  margin: 0 0.75rem 0.6rem;
  border-radius: 4px;
  background: var(--ink);
  opacity: 0.08;
}

/* Grid label */
.grid-label {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* Stack deck */
.stack-deck {
  position: absolute;
  bottom: 30px;
  right: -20px;
  width: 140px;
  height: 100px;
}

.stack-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(28,25,23,0.08);
}

.stack-back { width: 120px; height: 80px; bottom: -12px; left: 10px; background: #f0ece7; }
.stack-mid { width: 120px; height: 80px; bottom: -6px; left: 5px; background: white; }
.stack-front { width: 120px; height: 80px; bottom: 0; left: 0; padding: 0.75rem; }

.stack-check {
  width: 28px;
  height: 28px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.stack-line {
  height: 6px;
  background: var(--ink);
  border-radius: 3px;
  opacity: 0.15;
  width: 80%;
  margin-bottom: 4px;
}
.stack-line.short { width: 55%; }

/* Float badge */
.float-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 8px rgba(28,25,23,0.08);
}

/* Proof strip */
.proof {
  padding: 2.5rem 4rem;
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2.5rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 500;
  text-align: center;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Inside section */
.inside {
  padding: 7rem 4rem;
  border-bottom: 1px solid var(--border);
}

.inside-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.inside-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.inside-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.2s ease;
}

.inside-card:hover {
  box-shadow: 0 8px 32px rgba(28,25,23,0.07);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.inside-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

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

/* CTA card in grid */
.inside-cta-card {
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: span 1;
}

.cta-card-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.cta-card-tag::before {
  content: '— ';
  color: var(--accent);
}

.inside-cta-card h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-card-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cta-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.cta-price-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Process section */
.process {
  padding: 7rem 4rem;
  border-bottom: 1px solid var(--border);
}

.process-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.step {
  flex: 1;
  padding: 2.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.step-arrow {
  padding-top: 2.5rem;
  flex-shrink: 0;
  align-self: center;
}

/* Manifesto */
.manifesto {
  padding: 7rem 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--ink);
  color: white;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-quote {
  position: relative;
}

.quote-mark {
  margin-bottom: 1.5rem;
}

.manifesto blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.4;
  color: white;
  font-weight: 400;
  font-style: normal;
}

/* Closing */
.closing {
  padding: 7rem 4rem;
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.closing-headline {
  margin-bottom: 1.25rem;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 480px;
  margin: 0 auto 3.5rem;
}

.closing-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.closing-tier {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  position: relative;
}

.closing-tier-featured {
  border-color: var(--accent);
  background: var(--accent-light);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.tier-price {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.tier-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Footer */
.footer {
  padding: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.footer-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--ink-muted);
  opacity: 0.7;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 1.25rem 2rem; }
  .hero { padding: 4rem 2rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .proof { padding: 2rem; }
  .proof-inner { gap: 0; }
  .proof-stat { padding: 0.75rem 1.25rem; }
  .stat-number { font-size: 2rem; }
  .proof-divider { height: 30px; }
  .inside { padding: 5rem 2rem; }
  .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .inside-cta-card { grid-column: span 2; }
  .process { padding: 5rem 2rem; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .manifesto { padding: 5rem 2rem; }
  .closing { padding: 5rem 2rem; }
  .closing-pricing { grid-template-columns: 1fr; }
  .footer { padding: 3rem 2rem; }
}

@media (max-width: 600px) {
  .inside-grid { grid-template-columns: 1fr; }
  .inside-cta-card { grid-column: span 1; }
}
