/* ═══════════════════════════════════════════
   MOODCANVAS — style.css
   Palette: deep violet dusk + living accents
═══════════════════════════════════════════ */

/* ── RESET & TOKENS ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0d0b14;
  --bg2:         #13101f;
  --surface:     #1c1728;
  --surface2:    #251f38;
  --border:      rgba(255,255,255,0.07);
  --text:        #e8e2f4;
  --text-muted:  #7a6f98;
  --accent:      #c084fc;
  --accent2:     #818cf8;
  --accent3:     #f472b6;
  --gold:        #fbbf24;

  /* Mood colours */
  --joy:       #f59e0b;
  --calm:      #38bdf8;
  --melancholy:#818cf8;
  --passion:   #f43f5e;
  --awe:       #a78bfa;
  --chaos:     #4ade80;

  --radius:    16px;
  --radius-sm: 8px;
  --nav-h:     68px;

  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}

body * { cursor: none !important; }

/* ── SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ── CURSOR ──────────────────────────────── */
#cursor {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%,-50%);
  transition: transform 0.1s, background 0.3s, width 0.3s, height 0.3s;
  mix-blend-mode: screen;
}
#cursor-trail {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  transform: translate(-50%,-50%);
  transition: left 0.12s var(--ease-smooth), top 0.12s var(--ease-smooth),
              border-color 0.3s, width 0.3s, height 0.3s;
  opacity: 0.5;
}
body:has(#page-create.active) #cursor { background: var(--gold); }
body:has(#page-create.active) #cursor-trail { border-color: var(--gold); }

/* ── NAVBAR ──────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(13,11,20,0.6);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  cursor: pointer !important;
  user-select: none;
}
.logo-symbol {
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
   -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: logoSpin 8s linear infinite;
}
@keyframes logoSpin {
  from { filter: hue-rotate(0deg); }
  to   { filter: hue-rotate(360deg); }
}
.nav-links {
  display: flex; gap: 8px; list-style: none;
}
.nav-link {
  text-decoration: none; color: var(--text-muted);
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 16px; border-radius: 99px;
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.3s var(--ease-bounce);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after { width: 20px; }
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  color: var(--bg); background: var(--accent);
  border: none; border-radius: 99px;
  padding: 10px 22px;
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s, filter 0.2s;
}
.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(192,132,252,0.5);
  filter: brightness(1.1);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 700px) {
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }
}

/* ── PAGES ───────────────────────────────── */
.page {
  display: none;
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
}
.page.active { display: block; }

/* ══════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════ */

/* Hero */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.85;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 700px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) { animation-delay: 0.7s; }
.hero-title .italic { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--text-muted);
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* Mood Strip */
.mood-strip-section {
  padding: 80px 40px 60px;
  text-align: center;
}
.strip-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 32px;
}
.mood-strip {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 16px;
}
.strip-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 110px;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s, border-color 0.3s;
  cursor: pointer !important;
  user-select: none;
}
.strip-card:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.strip-card[data-mood="joy"]        { --card-c: var(--joy); }
.strip-card[data-mood="calm"]       { --card-c: var(--calm); }
.strip-card[data-mood="melancholy"] { --card-c: var(--melancholy); }
.strip-card[data-mood="passion"]    { --card-c: var(--passion); }
.strip-card[data-mood="awe"]        { --card-c: var(--awe); }
.strip-card[data-mood="chaos"]      { --card-c: var(--chaos); }
.strip-card:hover { border-color: var(--card-c); }
.strip-orb {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card-c);
  box-shadow: 0 0 20px var(--card-c);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}
.strip-card:hover .strip-orb {
  transform: scale(1.3);
  box-shadow: 0 0 40px var(--card-c);
}
.strip-card span { font-size: 0.82rem; color: var(--text-muted); }

/* Features */
.features-section { padding: 40px 40px 80px; }
.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.feat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s, border-color 0.3s;
  opacity: 0; transform: translateY(40px);
}
.feat-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-bounce),
              box-shadow 0.3s, border-color 0.3s;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192,132,252,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feat-icon {
  font-size: 1.8rem; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
   -webkit-text-fill-color: transparent;
}
.feat-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 10px; }
.feat-card p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* Quote Band */
.quote-band {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 60px 40px; text-align: center;
}
.quote-band blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-style: italic; color: var(--text);
  max-width: 700px; margin: 0 auto; line-height: 1.7;
  transition: opacity 0.5s;
}
.quote-band cite {
  display: block; margin-top: 16px;
  font-style: normal; font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.12em; color: var(--text-muted);
}

/* Home CTA */
.home-cta-section {
  padding: 100px 40px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(192,132,252,0.08) 0%, transparent 70%);
}
.home-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px;
}
.home-cta-section p { color: var(--text-muted); margin-bottom: 36px; font-size: 1.05rem; }

/* ── BUTTONS ─────────────────────────────── */
.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 500;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none; border-radius: 99px;
  padding: 14px 32px;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s, filter 0.25s;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
  display: inline-block;
}
.home-cta-section .btn-primary,
.about-team .btn-primary { animation: none; opacity: 1; }
.btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 36px rgba(192,132,252,0.55);
  filter: brightness(1.12);
}
.pulse-btn {
  animation: fadeUp 0.8s 1.1s forwards, pulseShadow 2.5s 2s infinite !important;
}
@keyframes pulseShadow {
  0%,100% { box-shadow: 0 0 24px rgba(192,132,252,0.35); }
  50%      { box-shadow: 0 0 48px rgba(192,132,252,0.7); }
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 99px; padding: 10px 22px;
  font-size: 0.9rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(192,132,252,0.06); }
.btn-ghost-sm {
  background: transparent; border: none;
  color: var(--text-muted); font-size: 0.82rem;
  transition: color 0.2s;
}
.btn-ghost-sm:hover { color: var(--text); }

/* ══════════════════════════════════════════
   CREATE PAGE
══════════════════════════════════════════ */
#page-create { padding: 0; overflow: hidden; height: 100vh; }

#art-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.create-ui {
  position: relative; z-index: 10;
  height: 100%;
  display: flex; align-items: flex-end;
  pointer-events: none;
}

/* Mood picker panel */
.create-panel {
  pointer-events: all;
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, 94vw);
  background: rgba(13,11,20,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: opacity 0.4s, transform 0.4s var(--ease-smooth);
}
.create-panel.hidden { opacity: 0; pointer-events: none; transform: translate(-50%,-60%) scale(0.96); }
.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2rem); margin-bottom: 6px;
}
.panel-sub { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }

/* Mood Grid */
.mood-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 24px;
}
.mood-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 18px 12px;
  transition: transform 0.25s var(--ease-bounce), border-color 0.25s, box-shadow 0.25s, background 0.25s;
  color: var(--text);
  position: relative; overflow: hidden;
}
.mood-btn::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.3s;
}
.mood-btn[data-mood="joy"]::before        { background: radial-gradient(circle at center, rgba(245,158,11,0.15), transparent 70%); }
.mood-btn[data-mood="calm"]::before       { background: radial-gradient(circle at center, rgba(56,189,248,0.15), transparent 70%); }
.mood-btn[data-mood="melancholy"]::before { background: radial-gradient(circle at center, rgba(129,140,248,0.15), transparent 70%); }
.mood-btn[data-mood="passion"]::before    { background: radial-gradient(circle at center, rgba(244,63,94,0.15), transparent 70%); }
.mood-btn[data-mood="awe"]::before        { background: radial-gradient(circle at center, rgba(167,139,250,0.15), transparent 70%); }
.mood-btn[data-mood="chaos"]::before      { background: radial-gradient(circle at center, rgba(74,222,128,0.15), transparent 70%); }
.mood-btn:hover::before { opacity: 1; }
.mood-btn[data-mood="joy"]:hover        { border-color: var(--joy);        box-shadow: 0 0 20px rgba(245,158,11,0.3); }
.mood-btn[data-mood="calm"]:hover       { border-color: var(--calm);       box-shadow: 0 0 20px rgba(56,189,248,0.3); }
.mood-btn[data-mood="melancholy"]:hover { border-color: var(--melancholy); box-shadow: 0 0 20px rgba(129,140,248,0.3); }
.mood-btn[data-mood="passion"]:hover    { border-color: var(--passion);    box-shadow: 0 0 20px rgba(244,63,94,0.3); }
.mood-btn[data-mood="awe"]:hover        { border-color: var(--awe);        box-shadow: 0 0 20px rgba(167,139,250,0.3); }
.mood-btn[data-mood="chaos"]:hover      { border-color: var(--chaos);      box-shadow: 0 0 20px rgba(74,222,128,0.3); }
.mood-btn:hover { transform: translateY(-4px) scale(1.03); }
.mood-emoji  { font-size: 1.6rem; line-height: 1; }
.mood-label  { font-weight: 600; font-size: 0.9rem; }
.mood-desc   { font-size: 0.72rem; color: var(--text-muted); }

/* Write your mood */
.mood-write {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
#mood-text {
  width: 100%; min-height: 70px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  padding: 14px 16px; resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}
#mood-text:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 16px rgba(192,132,252,0.2); }
#mood-text::placeholder { color: var(--text-muted); }

/* Controls panel */
.create-controls {
  pointer-events: all;
  width: 100%;
  background: rgba(13,11,20,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid var(--border);
  padding: 16px 32px 20px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  transition: opacity 0.4s, transform 0.4s var(--ease-smooth);
}
.create-controls.hidden { opacity: 0; pointer-events: none; transform: translateY(100%); }
.controls-top { display: flex; align-items: center; gap: 12px; }
.current-mood-tag {
  font-family: 'Space Mono', monospace; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 99px;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--accent);
}
.controls-sliders {
  display: flex; gap: 24px; flex: 1; flex-wrap: wrap;
}
.controls-sliders label {
  font-size: 0.78rem; color: var(--text-muted);
  display: flex; flex-direction: column; gap: 6px; min-width: 100px;
}
input[type="range"] {
  width: 100%; height: 4px;
  background: var(--surface2); border-radius: 99px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(192,132,252,0.5);
  transition: transform 0.2s var(--ease-bounce);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.3); }
.controls-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-action {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); font-size: 0.82rem;
  border-radius: var(--radius-sm); padding: 8px 14px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease-bounce);
  white-space: nowrap;
}
.btn-action:hover {
  background: var(--surface); border-color: var(--accent); color: var(--accent);
  transform: translateY(-2px);
}
.therapy-note {
  width: 100%; font-size: 0.78rem; color: var(--text-muted);
  font-style: italic; text-align: center; line-height: 1.5;
  min-height: 1.2em;
  transition: opacity 0.5s;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 40px 120px;
}
.about-hero-text {
  margin-bottom: 72px;
}
.about-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 20px;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700; line-height: 1.1;
}
.about-title em { font-style: italic; color: var(--accent); }
.about-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  margin-bottom: 80px;
}
@media (max-width: 700px) {
  .about-body { grid-template-columns: 1fr; gap: 36px; }
  .about-wrap { padding: 60px 20px 80px; }
}
.about-col h3 {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 16px;
}
.about-col p { color: var(--text-muted); line-height: 1.8; font-size: 0.96rem; margin-bottom: 16px; }

/* Showcase */
.about-moods-showcase {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .about-moods-showcase { grid-template-columns: repeat(3, 1fr); }
}
.showcase-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex; align-items: flex-end;
  padding: 12px;
  position: relative; overflow: hidden;
  cursor: pointer !important;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}
.showcase-item:hover { transform: scale(1.06); }
.showcase-item[data-mood="joy"]        { background: linear-gradient(135deg, #78350f, #f59e0b); }
.showcase-item[data-mood="calm"]       { background: linear-gradient(135deg, #0c4a6e, #38bdf8); }
.showcase-item[data-mood="melancholy"] { background: linear-gradient(135deg, #312e81, #818cf8); }
.showcase-item[data-mood="passion"]    { background: linear-gradient(135deg, #881337, #f43f5e); }
.showcase-item[data-mood="awe"]        { background: linear-gradient(135deg, #2e1065, #a78bfa); }
.showcase-item[data-mood="chaos"]      { background: linear-gradient(135deg, #14532d, #4ade80); }
.showcase-item span {
  font-family: 'Space Mono', monospace; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); position: relative; z-index: 1;
}
.showcase-item:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.5); }

.about-team {
  text-align: center; padding: 60px 20px;
  background: var(--surface); border-radius: 24px;
  border: 1px solid var(--border);
}
.about-team h3 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 14px;
}
.about-team p { color: var(--text-muted); margin-bottom: 28px; }

/* ── TRANSITION OVERLAY ──────────────────── */
#transition-overlay {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none; opacity: 0;
}
#transition-canvas { width: 100%; height: 100%; }
#transition-overlay.active { pointer-events: all; }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── MOOD COLOUR VARIABLES (canvas bg tint) ── */
body[data-mood="joy"]        { --mood-tint: rgba(245,158,11,0.03); }
body[data-mood="calm"]       { --mood-tint: rgba(56,189,248,0.03); }
body[data-mood="melancholy"] { --mood-tint: rgba(129,140,248,0.03); }
body[data-mood="passion"]    { --mood-tint: rgba(244,63,94,0.03); }
body[data-mood="awe"]        { --mood-tint: rgba(167,139,250,0.03); }
body[data-mood="chaos"]      { --mood-tint: rgba(74,222,128,0.03); }

/* ── MOBILE OVERRIDES ────────────────────── */
@media (max-width: 600px) {
  .mood-grid { grid-template-columns: repeat(2, 1fr); }
  .create-panel { padding: 28px 20px; }
  .controls-sliders { display: flex; flex-direction: column; gap: 16px; width: 100%; }
  .feat-grid { grid-template-columns: 1fr; }
  .mood-strip-section { padding: 50px 16px 40px; }
  .home-cta-section  { padding: 70px 20px; }
}