:root {
  --cream: #F5EDE3;
  --cream-dark: #EDE4D8;
  --navy: #1A1625;
  --coral: #FF6B35;
  --coral-dark: #E55A27;
  --sand: #D4C5A9;
  --text: #2D2420;
  --text-light: #6B5D52;
  --success: #3D7A4A;
  --new: #4A6FA5;
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 48px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #FFD4B8 0%, transparent 70%);
  top: -150px; right: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #B8D4FF 0%, transparent 70%);
  bottom: -100px; left: 10%;
}

.dots-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,36,32,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 24px;
}

.lede {
  font-size: 18px;
  color: var(--text-light);
  max-width: 440px;
  line-height: 1.7;
}

/* ── HERO VISUAL ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.product-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.p-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 2px 20px rgba(26,22,37,0.08), 0 1px 3px rgba(26,22,37,0.05);
  position: relative;
  transform: rotate(var(--rotate, 0deg));
  transition: transform 0.3s ease;
}
.p-card:hover { transform: rotate(0deg) translateY(-3px); }

.p-card-1 { --rotate: -1.5deg; }
.p-card-2 { --rotate: 0.8deg; }
.p-card-3 { --rotate: -0.5deg; }

.p-card-icon { flex-shrink: 0; }

.p-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.p-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.p-card-price {
  font-size: 13px;
  color: var(--text-light);
}

.p-card-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--cream);
  color: var(--text-light);
}

.p-card-badge.sold { background: #D4EAD7; color: var(--success); }
.p-card-badge.new { background: #D5E4F5; color: var(--new); }

.earnings-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 30px;
}

.earnings-dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ── WHAT ── */
.what {
  background: var(--navy);
  color: white;
  padding: 100px 48px;
}

.what-inner { max-width: 1200px; margin: 0 auto; }

.what-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 48px;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}

.what-item {}

.what-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  margin-bottom: 12px;
  line-height: 1;
}

.what-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.what-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── PRODUCTS ── */
.products {
  padding: 100px 48px;
  background: var(--cream);
}

.products-inner { max-width: 1200px; margin: 0 auto; }

.products-header {
  margin-bottom: 64px;
}

.products-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  max-width: 560px;
  margin-top: 12px;
}

.product-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--sand);
}

.product-row:last-child { border-bottom: 1px solid var(--sand); }
.product-row-featured { border: 2px solid var(--coral); border-radius: 16px; padding: 32px 40px; margin-top: 8px; }
.product-tag-row { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.product-tag-row h3 { margin-bottom: 0; }
.product-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: white; background: var(--coral); padding: 3px 10px; border-radius: 20px; }
.product-includes { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.product-includes span { font-size: 12px; font-weight: 500; color: var(--text-light); background: var(--cream-dark); padding: 4px 10px; border-radius: 20px; }

.product-row-left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.product-icon-large { flex-shrink: 0; }

.product-meta h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-meta p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 480px;
  line-height: 1.6;
}

.product-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  min-width: 160px;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
}

.product-signal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.signal-bar {
  height: 4px;
  width: 28px;
  background: var(--coral);
  border-radius: 2px;
  opacity: 0.3;
}

.signal-bar:nth-child(1) { opacity: 1; }
.signal-bar:nth-child(2) { opacity: 0.85; }
.signal-bar:nth-child(3) { opacity: 0.7; }
.signal-bar:nth-child(4) { opacity: 0.55; }

.buy-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-family: 'Space Grotesk', sans-serif;
}
.buy-btn:hover { background: var(--coral-dark); transform: translateY(-1px); }
.buy-btn:active { transform: translateY(0); }
.buy-btn-secondary { background: var(--navy); }
.buy-btn-secondary:hover { background: #2a2235; }

.product-signal span {
  line-height: 1.4;
}

.products-cta {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
}
.products-cta a { color: var(--coral); font-weight: 600; text-decoration: none; }
.products-cta a:hover { text-decoration: underline; }

/* ── MANIFESTO ── */
.manifesto {
  background: #FFF8F2;
  padding: 100px 48px;
  border-top: 1px solid var(--sand);
}

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

.manifesto-quote {
  max-width: 700px;
  margin-bottom: 64px;
}

.manifesto-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 24px;
}

.manifesto-quote p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  border-radius: 16px;
  overflow: hidden;
}

.stat {
  background: white;
  padding: 40px 32px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  text-align: center;
  background: var(--navy);
  color: white;
}

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

.closing-deco {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.closing h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

.closing p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ── FOOTER ── */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--sand);
}

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

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-light);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .what-grid { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 1fr; gap: 20px; }
  .product-row-right { align-items: flex-start; flex-direction: row; align-items: center; }
  .manifesto-stats { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .what, .products, .manifesto, .closing { padding: 80px 24px; }
}

@media (max-width: 480px) {
  .product-row-left { flex-direction: column; }
  .what-num { font-size: 36px; }
  .stat-num { font-size: 32px; }
}