:root {
  --bg: #08070f;
  --bg-2: #0e0d1a;
  --surface: #14132a;
  --surface-2: #1c1b38;
  --accent: #8b6cf7;
  --accent-2: #c4b5fd;
  --amber: #f5c542;
  --text: #e8e6f3;
  --text-muted: #7a78a0;
  --text-dim: #4a4870;

  --swatch-cozy: #f97316;
  --swatch-dream: #a78bfa;
  --swatch-cosmic: #38bdf8;
  --swatch-liminal: #6ee7b7;
  --swatch-anime: #fb7185;

  --cat-study: #a78bfa;
  --cat-sleep: #60a5fa;
  --cat-meditation: #34d399;
  --cat-motivation: #fbbf24;
  --cat-joy: #f87171;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #4f46e5, transparent 70%);
  top: -200px; left: -100px;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  bottom: -150px; right: -100px;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #c4b5fd, transparent 70%);
  top: 40%; left: 60%;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid rgba(196, 181, 253, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  background: linear-gradient(135deg, #f0eeff 0%, #c4b5fd 50%, #8b6cf7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}

.hero-lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px 48px;
  backdrop-filter: blur(20px);
  width: fit-content;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
  max-width: 90px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* ── SECTION SHARED ── */
.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-body {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── ATMOSPHERE ── */
.atmosphere {
  padding: 120px 24px;
  background: var(--bg-2);
}

.atmosphere-inner {
  max-width: 900px;
  margin: 0 auto;
}

.visual-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.swatch {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.swatch-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.swatch-cozy .swatch-dot { background: var(--swatch-cozy); }
.swatch-dream .swatch-dot { background: var(--swatch-dream); }
.swatch-cosmic .swatch-dot { background: var(--swatch-cosmic); }
.swatch-liminal .swatch-dot { background: var(--swatch-liminal); }
.swatch-anime .swatch-dot { background: var(--swatch-anime); }

/* ── CATEGORIES ── */
.categories {
  padding: 100px 24px;
  background: var(--bg);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.category-card {
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s;
}

.category-card:hover { border-color: rgba(255,255,255,0.12); }

.cat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cat-study .cat-icon { background: rgba(167, 139, 250, 0.15); color: var(--cat-study); }
.cat-sleep .cat-icon { background: rgba(96, 165, 250, 0.15); color: var(--cat-sleep); }
.cat-meditation .cat-icon { background: rgba(52, 211, 153, 0.15); color: var(--cat-meditation); }
.cat-motivation .cat-icon { background: rgba(251, 191, 36, 0.15); color: var(--cat-motivation); }
.cat-joy .cat-icon { background: rgba(248, 113, 113, 0.15); color: var(--cat-joy); }

.category-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.category-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── PIPELINE ── */
.pipeline {
  padding: 100px 24px;
  background: var(--bg-2);
}

.pipeline-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pipeline-steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 56px;
  flex-wrap: wrap;
  justify-content: center;
}

.pipeline-step {
  flex: 1;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.step-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.step-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.pipeline-arrow {
  color: var(--text-dim);
  display: flex;
  align-items: center;
  padding-top: 36px;
  flex-shrink: 0;
}

/* ── VISION ── */
.vision {
  padding: 100px 24px;
  background: var(--bg);
}

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

.vision-quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 56px;
  position: relative;
}

.vision-quote::before {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--amber));
  border-radius: 2px;
  margin: 0 auto 32px;
}

.vision-pillars {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.pillar:last-child { border-right: none; }

.pillar-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.pillar-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
  max-width: 120px;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 24px 80px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

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

.closing h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 40px;
}

.closing-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.closing-tags span {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

/* ── FOOTER ── */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 28px 32px;
  }
  .stat-divider { width: 40px; height: 1px; }
  .pipeline-steps { flex-direction: column; align-items: stretch; }
  .pipeline-arrow { transform: rotate(90deg); padding: 8px 0; justify-content: center; }
  .vision-pillars { flex-direction: column; gap: 0; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
  .pillar:last-child { border-bottom: none; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}