/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #1a2b4a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ========== CSS VARIABLES ========== */
:root {
  --blue-50: #f0f7ff;
  --blue-100: #e0efff;
  --blue-200: #b9dbfe;
  --blue-300: #7cbdfc;
  --blue-400: #3d9af8;
  --blue-500: #1a7ae8;
  --blue-600: #0d5fc6;
  --blue-700: #0c4a9e;
  --blue-800: #0f3e68;
  --blue-900: #0a2a4a;
  --accent: #7bd3ff;
  --radius: 16px;
  --shadow-soft: 0 2px 16px rgba(10, 42, 74, 0.06);
  --shadow-md: 0 4px 24px rgba(10, 42, 74, 0.10);
  --shadow-lg: 0 12px 40px rgba(10, 42, 74, 0.14);
  --max-w: 1140px;
}

/* ========== UTILITY ========== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 16px; } }

/* ========== NAV ========== */
.trial-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 42, 74, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--blue-900);
  letter-spacing: 0.3px;
}
.nav-logo span { color: var(--blue-500); }
.nav-cta {
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--blue-500);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: #4a6080;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--blue-500); }
@media (max-width: 720px) {
  .nav-links .nav-link { display: none; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 56px 0 64px;
  background: linear-gradient(168deg, #f0f7ff 0%, #ffffff 40%, #fef7ed 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 211, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(123, 211, 255, 0.12);
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero-badge svg { flex-shrink: 0; }

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.15;
  color: var(--blue-900);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-500);
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #4a6080;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--blue-500);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(26, 122, 232, 0.3);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.hero-cta:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 122, 232, 0.35);
}

.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: #8a9bb5;
}

/* ========== SOCIAL PROOF ========== */
.social-proof {
  padding: 32px 0;
  background: var(--blue-50);
  border-top: 1px solid rgba(10, 42, 74, 0.04);
  border-bottom: 1px solid rgba(10, 42, 74, 0.04);
}
.proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4a6080;
  font-weight: 500;
}
.proof-item svg { color: var(--blue-400); flex-shrink: 0; }
.proof-item strong { color: var(--blue-900); }

/* ========== FEATURES — Alternating rows ========== */
.features {
  padding: 80px 0 40px;
  background: #fff;
}
.features-header {
  text-align: center;
  margin-bottom: 64px;
}
.features-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--blue-900);
  margin-bottom: 12px;
}
.features-header p {
  font-size: 17px;
  color: #5a7394;
  max-width: 520px;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.feature-row:last-child { margin-bottom: 0; }

.feature-row.reversed .feature-visual { order: 2; }
.feature-row.reversed .feature-text { order: 1; }

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }
  .feature-row .feature-visual { order: -1 !important; }
  .feature-row .feature-text { order: 1 !important; }
}

.feature-visual {
  position: relative;
}
.feature-img-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-visual::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 20px;
  z-index: -1;
}
.feature-row.row-sleep .feature-visual::before {
  background: rgba(99, 102, 241, 0.08);
  top: -12px; right: -12px;
}
.feature-row.row-meditate .feature-visual::before {
  background: rgba(13, 148, 136, 0.08);
  bottom: -12px; left: -12px;
}
.feature-row.row-mindset .feature-visual::before {
  background: rgba(217, 119, 6, 0.08);
  top: -12px; right: -12px;
}
.feature-row.row-sounds .feature-visual::before {
  background: rgba(37, 99, 235, 0.08);
  bottom: -12px; left: -12px;
}

.feature-text {
  padding: 8px 0;
}

.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
}
.row-sleep .feature-label { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.row-meditate .feature-label { background: rgba(13, 148, 136, 0.1); color: #0d9488; }
.row-mindset .feature-label { background: rgba(217, 119, 6, 0.1); color: #b45309; }
.row-sounds .feature-label { background: rgba(37, 99, 235, 0.1); color: #2563eb; }

.feature-text h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(24px, 3.2vw, 32px);
  color: var(--blue-900);
  margin-bottom: 14px;
  line-height: 1.25;
}

.feature-desc {
  font-size: 16px;
  color: #5a7394;
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-bullets {
  list-style: none;
}
.feature-bullets li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 16px;
  color: #3a5068;
  line-height: 1.5;
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.feature-bullets li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 8px;
  font-size: 13px;
  font-weight: 800;
}
.row-sleep .feature-bullets li::before { background: rgba(99, 102, 241, 0.1); }
.row-sleep .feature-bullets li::after { color: #6366f1; }
.row-meditate .feature-bullets li::before { background: rgba(13, 148, 136, 0.1); }
.row-meditate .feature-bullets li::after { color: #0d9488; }
.row-mindset .feature-bullets li::before { background: rgba(217, 119, 6, 0.1); }
.row-mindset .feature-bullets li::after { color: #b45309; }
.row-sounds .feature-bullets li::before { background: rgba(37, 99, 235, 0.1); }
.row-sounds .feature-bullets li::after { color: #2563eb; }

/* ========== TRACK PREVIEW ========== */
.track-preview {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
  color: #eaf2ff;
  position: relative;
  overflow: hidden;
}
.track-preview::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 211, 255, 0.06) 0%, transparent 70%);
}

.track-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.track-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 34px);
  color: #fff;
  margin-bottom: 8px;
}
.track-header p {
  color: #b7c6dd;
  font-size: 16px;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) { .track-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .track-grid { grid-template-columns: 1fr; gap: 16px; } }

.track-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.track-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.track-card .thumb {
  position: relative;
  aspect-ratio: 5 / 4;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.track-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-card .meta {
  padding: 10px 12px 14px;
}
.track-card .title {
  font-weight: 700;
  font-size: 15px;
  color: #eaf2ff;
  line-height: 1.35;
}
.track-card .subtitle {
  color: #b7c6dd;
  font-size: 13px;
  margin-top: 3px;
}

.track-cta {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.track-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--blue-900);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.track-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 211, 255, 0.3);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 80px 0;
  background: var(--blue-50);
}
.how-header {
  text-align: center;
  margin-bottom: 48px;
}
.how-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--blue-900);
  margin-bottom: 12px;
}
.how-header p {
  font-size: 17px;
  color: #5a7394;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 24px; } }

.step {
  text-align: center;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 16px;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 6px;
}
.step p {
  font-size: 14.5px;
  color: #5a7394;
}

/* ========== TESTIMONIAL ========== */
.testimonial {
  padding: 72px 0;
  background: #fff;
}
.testimonial-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, #f0f7ff 0%, #fef7ed 100%);
  border-radius: 20px;
  border: 1px solid rgba(10, 42, 74, 0.05);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--blue-900);
  line-height: 1.55;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-size: 14px;
  color: #5a7394;
  font-weight: 500;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 80px 0 96px;
  background: var(--blue-50);
}
.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.final-cta-inner h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--blue-900);
  margin-bottom: 14px;
}
.final-cta-inner .final-sub {
  font-size: 18px;
  color: #5a7394;
  margin-bottom: 36px;
  line-height: 1.65;
}

.trial-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 42, 74, 0.06);
  margin-bottom: 40px;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.trial-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.trial-price-line {
  font-size: 16px;
  color: #5a7394;
  margin-bottom: 28px;
}
.trial-price-line strong {
  color: var(--blue-900);
}

.trial-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 44px;
  border-radius: 999px;
  background: var(--blue-500);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(26, 122, 232, 0.3);
  margin-bottom: 16px;
}
.trial-btn:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 122, 232, 0.35);
}

.trial-card .trial-note {
  font-size: 13px;
  color: #8a9bb5;
}

.after-trial {
  max-width: 560px;
  margin: 0 auto;
}
.after-trial h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 20px;
}

.timeline {
  position: relative;
  text-align: left;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--blue-200);
}

.tl-item {
  position: relative;
  padding: 0 0 28px 44px;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: 6px;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--blue-300);
  background: #fff;
}
.tl-dot.active {
  border-color: var(--blue-500);
  background: var(--blue-500);
}
.tl-dot.active::after {
  content: '✓';
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.tl-dot.green {
  border-color: #10b981;
  background: #10b981;
}
.tl-dot.green::after {
  content: '✓';
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.tl-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 2px;
}
.tl-desc {
  font-size: 14px;
  color: #5a7394;
  line-height: 1.55;
}

.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 14px;
  max-width: 560px;
  margin: 32px auto 0;
  text-align: left;
}
.guarantee-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
}
.guarantee-text h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 2px;
}
.guarantee-text p {
  font-size: 13.5px;
  color: #5a7394;
  line-height: 1.55;
}

/* ========== FOOTER ========== */
.trial-footer {
  padding: 40px 0;
  background: var(--blue-900);
  color: #b7c6dd;
  text-align: center;
  font-size: 14px;
}
.trial-footer .logo-footer {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #eaf2ff;
  margin-bottom: 10px;
}
.trial-footer .logo-footer span { color: var(--accent); }
.trial-footer .footer-links {
  opacity: 0.7;
  margin-bottom: 8px;
}
.trial-footer .footer-links a {
  color: #b7c6dd;
  transition: color 0.15s;
}
.trial-footer .footer-links a:hover {
  color: var(--accent);
}
.trial-footer .footer-sep {
  margin: 0 8px;
  opacity: 0.5;
}
.trial-footer .footer-copy {
  opacity: 0.5;
}

/* ========== LEGAL PAGES (voorwaarden, privacy) ========== */
.legal-page {
  padding: 48px 0 80px;
  background: #fff;
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--blue-900);
  margin-bottom: 8px;
  line-height: 1.2;
}
.legal-content .legal-updated {
  font-size: 14px;
  color: #8a9bb5;
  font-style: italic;
  margin-bottom: 24px;
}
.legal-content h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--blue-900);
  margin-top: 40px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-900);
  margin-top: 20px;
  margin-bottom: 6px;
}
.legal-content p {
  font-size: 15.5px;
  color: #3a5068;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-content p strong {
  color: var(--blue-900);
}
.legal-content a {
  color: var(--blue-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover {
  color: var(--blue-600);
}
.legal-content .legal-address {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--blue-50);
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #4a6080;
}

/* ========== CONTACT FORM (landing) ========== */
.contact-info-box {
  padding: 20px 24px;
  background: var(--blue-50);
  border: 1px solid rgba(10, 42, 74, 0.06);
  border-radius: 14px;
  margin-bottom: 28px;
}
.contact-info-box p {
  font-size: 15px;
  color: #4a6080;
  line-height: 1.65;
  margin-bottom: 8px;
}
.contact-info-box p:last-child { margin-bottom: 0; }

.contact-msg {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.contact-msg-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #b91c1c;
}
.contact-msg-success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #059669;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-900);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--blue-200);
  border-radius: 10px;
  background: #fff;
  color: var(--blue-900);
  font-size: 16px;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(26, 122, 232, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a9bb5;
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  margin: 4px 0;
}

.contact-submit {
  padding: 14px 28px;
  background: var(--blue-500);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(26, 122, 232, 0.25);
  align-self: flex-start;
}
.contact-submit:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 122, 232, 0.3);
}
.contact-submit:active {
  transform: translateY(0);
}

/* ========== PLACEHOLDER for track cards ========== */
.placeholder-sm {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: 0.6;
}
.placeholder-sm.story { background: linear-gradient(135deg, #1e293b 0%, #334155 100%); }
.placeholder-sm.meditate { background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%); }
.placeholder-sm.mindset { background: linear-gradient(135deg, #78350f 0%, #92400e 100%); }
.placeholder-sm.campfire { background: linear-gradient(135deg, #431407 0%, #7c2d12 100%); }
.placeholder-sm.sleep { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%); }
.placeholder-sm.ocean { background: linear-gradient(135deg, #0c4a6e 0%, #164e63 100%); }
.placeholder-sm.music { background: linear-gradient(135deg, #3b0764 0%, #581c87 100%); }
.placeholder-sm.nature { background: linear-gradient(135deg, #064e3b 0%, #065f46 100%); }
