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

:root {
  --cream: #EDE8DF;
  --cream2: #E6E0D5;
  --ink: #1A1A14;
  --ink-muted: rgba(26,26,20,0.45);
  --green: #1C3D2E;
  --green-light: #2a5a42;
  --accent: #C4522A;
  --border: rgba(26,26,20,0.12);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(237,232,223,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  background: var(--green);
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 100px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--ink-muted);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--ink);
}

.hero-title em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--ink-muted);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
  font-weight: 400;
}

/* ── WAITLIST FORM ── */
.waitlist-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 440px;
  margin-bottom: 16px;
}

.email-input {
  flex: 1;
  background: rgba(26,26,20,0.06);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 22px;
  outline: none;
  transition: border-color 0.2s;
}
.email-input::placeholder { color: var(--ink-muted); }
.email-input:focus { border-color: var(--green); }

.submit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  border: none;
  border-radius: 100px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.submit-btn:hover { background: var(--green-light); transform: translateY(-1px); }
.submit-btn:active { transform: translateY(0); }
.btn-icon { transition: transform 0.2s; }
.submit-btn:hover .btn-icon { transform: translateX(3px); }

.waitlist-count {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 80px;
}
.waitlist-count span { color: var(--green); font-weight: 600; }

/* ── IMAGE CARD STACK ── */
.card-stack {
  position: relative;
  width: 320px;
  height: 400px;
  margin: 0 auto;
}

.stack-card {
  position: absolute;
  width: 260px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,26,20,0.15);
}

.stack-card:nth-child(1) {
  left: 0; top: 40px;
  transform: rotate(-6deg);
  z-index: 1;
  background: #d4c9b8;
}

.stack-card:nth-child(2) {
  right: 0; top: 0;
  transform: rotate(4deg);
  z-index: 2;
  background: #c8bfad;
}

.stack-card:nth-child(3) {
  left: 30px; top: 20px;
  z-index: 3;
  background: #bfb5a2;
}

.card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 12px;
}

.card-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.card-score {
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: var(--green);
  padding: 4px 14px;
  border-radius: 100px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 4px;
}

.card-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  background: rgba(26,26,20,0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background: var(--border);
}

/* ── HOW IT WORKS ── */
.how {
  padding: 120px 48px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.how-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-muted);
  padding-top: 3px;
  min-width: 24px;
}

.step-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.step-body p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
}

.how-visual {
  background: var(--cream2);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.taste-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(26,26,20,0.06);
}

.taste-icon { font-size: 20px; }

.taste-name { flex: 1; }

.taste-match {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: rgba(28,61,46,0.08);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── PLATFORMS ── */
.platforms {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}

.platforms-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-label-sm {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.section-title-lg {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
}

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

.platform-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.platform-card:hover {
  border-color: rgba(26,26,20,0.25);
  box-shadow: 0 4px 20px rgba(26,26,20,0.08);
}
.platform-card.dim { opacity: 0.5; }

.platform-icon { font-size: 28px; margin-bottom: 12px; }
.platform-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.platform-desc { font-size: 13px; color: var(--ink-muted); }
.soon-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 100px;
}

/* ── CTA ── */
.cta-section {
  padding: 160px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-inner { display: flex; flex-direction: column; align-items: center; }

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 1.0;
  margin-bottom: 20px;
  color: var(--ink);
}
.cta-title em { font-style: italic; color: var(--green); }

.cta-sub {
  font-size: 16px;
  color: var(--ink-muted);
  margin-bottom: 36px;
}

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

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

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 14px;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }

.footer-copy { font-size: 13px; color: var(--ink-muted); }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--green);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  box-shadow: 0 8px 32px rgba(26,26,20,0.2);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 999;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 120px 20px 60px; }
  .waitlist-form { flex-direction: column; }
  .submit-btn { width: 100%; justify-content: center; }
  .how { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .platforms { padding: 80px 24px; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { flex-direction: column; gap: 8px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .card-stack { display: none; }
}

/* ── PLATFORM MONOGRAM TILES (emoji replacement) ── */
.platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-sans);
  margin-bottom: 12px;
}
.brand-spotify   { background: #1DB954; }
.brand-goodreads { background: #75420E; font-family: var(--font-serif); font-style: italic; }
.brand-anilist   { background: #02A9FF; }
.brand-mal       { background: #2E51A2; }
.brand-steam     { background: linear-gradient(135deg, #00adee, #171a21); }
.brand-gg        { background: #7c5cf5; }
.brand-apple     { background: linear-gradient(135deg, #FA57C1, #B24BF3); }
.brand-trakt     { background: #ed1c24; }
.brand-serializd { background: #0e7490; }
.brand-letterboxd { background: #14181c; gap: 3px; }
.lb-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.lb-o { background: #ff8000; }
.lb-g { background: #00e054; margin-left: -4px; }
.lb-b { background: #40bcf4; margin-left: -4px; }

/* ── TASTE ROW SVG ICONS ── */
.taste-icon { display: flex; align-items: center; color: var(--green); }
.ticon { width: 18px; height: 18px; }

/* ── REAL BRAND LOGOS ── */
.brand-img { width: 24px; height: 24px; object-fit: contain; display: block; }
.brand-gg .brand-img, .brand-serializd .brand-img { border-radius: 6px; }
.brand-letterboxd .brand-img { width: 28px; height: 28px; }

/* ── LOGO MARK ── */
.logo { display: inline-flex; align-items: center; gap: 8px; }
.logo-mark { width: 26px; height: 26px; border-radius: 6px; }
