/* ─── Variables ─── */
:root {
  --midnight: #0d1b2a;
  --deep: #162033;
  --cream: #faf8f5;
  --warm: #f2ede6;
  --lavender: #c8b6e2;
  --lavender-light: #e8e0f5;
  --muted: #7a8ba3;
  --text: #1a1a2e;
  --text-soft: #4a5568;
}

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

/* ─── Typography ─── */
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, blockquote {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ─── Nav ─── */
.nav {
  padding: 1.5rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 182, 226, 0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--midnight);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
.nav-listen-btn {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--midnight);
  text-decoration: none;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--midnight);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.nav-listen-btn:hover {
  background: var(--midnight);
  color: var(--cream);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  gap: 4rem;
}
.hero-inner {
  flex: 1 1 50%;
  position: relative;
  z-index: 2;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 500;
  color: var(--midnight);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  max-width: 700px;
}
.hero-headline em {
  font-style: italic;
  color: var(--lavender);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}
.hero-atmosphere {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.atmosphere-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 182, 226, 0.4) 0%, rgba(200, 182, 226, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}
.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 600px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 40px 80px rgba(13, 27, 42, 0.15);
  z-index: 2;
}
.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.85rem 2.5rem;
  background: var(--midnight);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 100px;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.15);
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.2);
}

/* ─── Manifesto ─── */
.manifesto {
  background: var(--midnight);
  padding: 5rem 2rem;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--lavender);
  opacity: 0.4;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--cream);
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.9;
}

/* ─── How It Works ─── */
.howitworks {
  padding: 6rem 2rem;
  background: var(--warm);
}
.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 4rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.step-number {
  display: block;
  font-size: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--lavender);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}
.step-body {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── Stories ─── */
.stories {
  padding: 6rem 2rem;
  background: var(--cream);
}
.stories-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Preview player */
.preview-section {
  margin-bottom: 4rem;
}
.preview-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.preview-player {
  background: var(--midnight);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 680px;
}
.preview-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.preview-icon {
  font-size: 2rem;
  line-height: 1;
}
.preview-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.preview-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 500;
}
.preview-sub {
  font-size: 0.8rem;
  color: var(--lavender);
  opacity: 0.7;
}
.preview-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.preview-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lavender);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.preview-play-btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
}
.preview-play-btn:active {
  transform: scale(0.97);
}
.preview-progress-wrap {
  flex: 1;
}
.preview-progress-track {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.preview-progress-fill {
  height: 100%;
  background: var(--lavender);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
.preview-time {
  font-size: 0.78rem;
  color: var(--cream);
  opacity: 0.6;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
}

/* Story grid */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.story-card {
  background: var(--warm);
  border: 1px solid rgba(200, 182, 226, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.08);
}
.story-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.story-name {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}
.story-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  font-weight: 300;
}
.stories-cta {
  margin-top: 3rem;
  text-align: center;
}
.stories-listen-btn {
  font-size: 0.9rem;
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(122, 139, 163, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.stories-listen-btn:hover {
  color: var(--midnight);
  border-color: var(--midnight);
}

/* ─── Closing ─── */
.closing {
  background: var(--midnight);
  padding: 8rem 2rem;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.closing-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--lavender);
  opacity: 0.7;
}

/* ─── Footer ─── */
.footer {
  background: var(--deep);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .stories-grid { grid-template-columns: 1fr; }
  .hero { flex-direction: column; padding: 6rem 1.5rem 4rem; gap: 2rem; }
  .hero-image { position: static; transform: none; width: 100%; max-width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .howitworks, .stories { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}