/* SleepWise — dreamy nocturnal sleep & wellness app */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --bg: #07091c;
  --bg-2: #0d1230;
  --bg-3: #161b3e;
  --ink: #e8e4f3;
  --ink-soft: #b8b4d0;
  --ink-mute: #7c7a99;
  --line: rgba(232, 228, 243, 0.08);
  --line-2: rgba(232, 228, 243, 0.14);
  --gold: oklch(0.82 0.12 85);
  --gold-soft: oklch(0.82 0.12 85 / 0.18);
  --violet: oklch(0.68 0.16 285);
  --rose: oklch(0.78 0.10 25);
  --teal: oklch(0.74 0.09 200);
  --card: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.05);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Geist', system-ui, sans-serif;
  --mono: 'Geist Mono', monospace;
}

[data-theme="light"] {
  --bg: #f5f1e8;
  --bg-2: #ede7d6;
  --bg-3: #e3dcc6;
  --ink: #1a1535;
  --ink-soft: #4a4565;
  --ink-mute: #8a8499;
  --line: rgba(26, 21, 53, 0.10);
  --line-2: rgba(26, 21, 53, 0.18);
  --gold: oklch(0.55 0.13 75);
  --gold-soft: oklch(0.55 0.13 75 / 0.15);
  --violet: oklch(0.45 0.16 285);
  --card: rgba(26, 21, 53, 0.03);
  --card-hover: rgba(26, 21, 53, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
}

/* ============ STARFIELD ============ */
.starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: var(--ink);
  animation: twinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: var(--opa-min, 0.2); transform: scale(0.8); }
  50% { opacity: var(--opa-max, 1); transform: scale(1.1); }
}
[data-theme="light"] .starfield { display: none; }

.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, oklch(0.45 0.18 285 / 0.35), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 30%, oklch(0.55 0.14 220 / 0.25), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, oklch(0.50 0.12 320 / 0.20), transparent 70%);
}
[data-theme="light"] .aurora {
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, oklch(0.85 0.06 75 / 0.40), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 30%, oklch(0.80 0.05 25 / 0.30), transparent 60%);
}

/* ============ LAYOUT ============ */
.shell {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 32px;
  height: 32px;
  position: relative;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-select {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-family: var(--sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.theme-toggle {
  background: transparent;
  border: 1px solid var(--line-2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ HERO ============ */
.hero {
  padding: 80px 0 60px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero p.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 6px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ HERO CALCULATOR ============ */
.calc-card {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 40px;
  background:
    linear-gradient(140deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  backdrop-filter: blur(20px);
}
[data-theme="light"] .calc-card {
  background: rgba(255,255,255,0.5);
}
.calc-tabs {
  display: flex;
  gap: 4px;
  background: var(--card);
  padding: 4px;
  border-radius: 100px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
}
.calc-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink-soft);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.calc-tab.active {
  background: var(--ink);
  color: var(--bg);
}
.calc-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.time-input-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  margin-bottom: 28px;
}
.time-input {
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  width: auto;
  outline: none;
  letter-spacing: -0.02em;
}
.time-input::-webkit-inner-spin-button,
.time-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.time-colon {
  font-size: 64px;
  color: var(--ink-mute);
  font-weight: 300;
}
.ampm-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 16px;
}
.ampm-btn {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-soft);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-family: var(--mono);
  cursor: pointer;
}
.ampm-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.results-block {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 8px;
}
.results-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.results-title h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}
.results-title span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.bedtime-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  cursor: pointer;
  transition: padding 0.2s;
}
.bedtime-row:last-child { border-bottom: none; }
.bedtime-row:hover { padding-left: 8px; }
.bedtime-time {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.bedtime-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.bedtime-recommended .bedtime-time { color: var(--gold); }
.bedtime-quality {
  display: flex;
  gap: 3px;
}
.qual-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-2);
}
.qual-dot.on { background: var(--gold); }

/* ============ MOON ANIMATION ============ */
.moon-orbit {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  pointer-events: none;
}

/* ============ SECTIONS ============ */
section {
  position: relative;
  padding: 100px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 600px;
}
.section-head h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.section-head p {
  color: var(--ink-soft);
  max-width: 380px;
  font-size: 15px;
}

/* ============ TOOLS GRID ============ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.tool-card {
  background: var(--bg);
  padding: 32px;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tool-card:hover { background: var(--bg-2); }
.tool-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
}
.tool-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tool-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.tool-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  color: var(--ink-mute);
  transition: transform 0.2s, color 0.2s;
}
.tool-card:hover .tool-arrow { transform: translate(4px, -4px); color: var(--gold); }

/* ============ MODAL ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 28, 0.85);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow: auto;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 40px 24px;
  border-bottom: 1px solid var(--line);
}
.modal-head h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.modal-head p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.modal-close {
  background: transparent;
  border: 1px solid var(--line-2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.modal-body { padding: 32px 40px 40px; }

/* ============ EDU SECTION ============ */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cycle-viz {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 480px;
}
.stage-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stage-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.3s;
}
.stage-item:hover { padding-left: 8px; }
.stage-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
}
.stage-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.stage-pct {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
}
.stage-desc {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 4px;
}

/* ============ TIPS / ARTICLES ============ */
.tips-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.tip-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  background: var(--card);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.tip-card:hover { background: var(--card-hover); border-color: var(--line-2); }
.tip-card.feat {
  grid-row: span 2;
  min-height: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7, 9, 28, 0.9) 100%),
    repeating-linear-gradient(45deg, var(--violet) 0 2px, transparent 2px 18px);
}
[data-theme="light"] .tip-card.feat {
  background:
    linear-gradient(180deg, transparent 0%, rgba(245, 241, 232, 0.9) 100%),
    repeating-linear-gradient(45deg, var(--gold-soft) 0 2px, transparent 2px 18px);
}
.tip-tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.tip-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 12px;
  line-height: 1.15;
}
.tip-card.feat .tip-title { font-size: 36px; }
.tip-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 24px;
}

/* ============ TESTIMONIALS ============ */
.test-marquee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  background: var(--card);
}
.test-quote {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin-bottom: 32px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--gold));
  font-family: var(--serif);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-weight: 500;
}
.test-name { font-size: 14px; font-weight: 500; }
.test-role { font-size: 12px; color: var(--ink-mute); font-family: var(--mono); }

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 28px;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  background:
    radial-gradient(ellipse at top, oklch(0.30 0.16 285 / 0.4), transparent 70%),
    var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 32px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
[data-theme="light"] .newsletter {
  background:
    radial-gradient(ellipse at top, oklch(0.85 0.06 75 / 0.5), transparent 70%),
    var(--bg-2);
}
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.newsletter p {
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 auto 36px;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 6px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  padding: 12px 20px;
  font-size: 14px;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }

/* ============ ADSENSE ============ */
.adslot {
  border: 1px dashed var(--line-2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 8px,
      var(--card) 8px 9px
    );
}
.adslot-leaderboard { min-height: 90px; display: flex; align-items: center; justify-content: center; margin: 24px 0; }
.adslot-square { aspect-ratio: 1; max-width: 300px; display: flex; align-items: center; justify-content: center; }
.adslot-banner { min-height: 120px; display: flex; align-items: center; justify-content: center; margin: 60px 0; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-mute);
  font-family: var(--mono);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid, .edu-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: 1fr; }
  .tip-card.feat { grid-row: auto; }
  .test-marquee { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero h1 { font-size: 56px; }
  section { padding: 60px 0; }
  .newsletter { padding: 48px 24px; }
}

/* ============ UTILITIES ============ */
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
}
.btn-ghost:hover { background: var(--card-hover); }

.divider-stars {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 80px 0;
  color: var(--ink-mute);
}
.divider-stars::before, .divider-stars::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Number input — clean */
input[type="number"], input[type="text"], input[type="email"], select {
  font-family: var(--sans);
  color: var(--ink);
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 6px;
  min-width: 140px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 50;
}
.dropdown-item {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--ink);
  padding: 8px 14px;
  text-align: left;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--sans);
}
.dropdown-item:hover { background: var(--card-hover); }
.dropdown-item.active { color: var(--gold); }
