:root {
  --bg1: #fff8e8;
  --bg2: #eef6ff;
  --bg3: #fff1f6;
  --text: #0f172a;
  --muted: #475569;
  --card: rgba(255, 255, 255, 0.88);
  --border: #dbe1ea;
  --shadow: 0 18px 45px rgba(148, 163, 184, 0.24);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg1), var(--bg2), var(--bg3));
}

a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; }

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}
.blob-1 { width: 320px; height: 320px; top: -70px; left: -60px; background: rgba(232, 121, 249, 0.28); }
.blob-2 { width: 360px; height: 360px; top: 60px; right: 20px; background: rgba(34, 211, 238, 0.28); }
.blob-3 { width: 280px; height: 280px; bottom: 30px; left: 35%; background: rgba(251, 191, 36, 0.18); }
.line-glow {
  position: absolute;
  top: 160px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.45), transparent);
}

.container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  overflow: hidden;
  padding: 28px;
}
.hero-content {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(148,163,184,0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #334155;
}
.dot { width: 8px; height: 8px; border-radius: 999px; background: #22c55e; display: inline-block; }

h1 {
  margin-top: 14px;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.gradient-text {
  background: linear-gradient(90deg, #2563eb, #c026d3, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy {
  margin-top: 18px;
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #334155;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--border);
  color: #334155;
  font-size: 0.8rem;
  font-weight: 700;
}
.chip-blue { background: #dbeafe; color: #1d4ed8; }
.chip-fuchsia { background: #fae8ff; color: #a21caf; }
.chip-green { background: #dcfce7; color: #15803d; }
.chip-amber { background: #fef3c7; color: #b45309; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 800;
}
.button-primary {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 12px 24px rgba(100, 116, 139, 0.25);
}
.button-secondary {
  background: #fff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.hero-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.panel {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(148,163,184,0.12);
}
.panel-wide { grid-column: 1 / -1; }
.panel-dark {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #fff;
}
.cyan { background: #ecfeff; border-color: #bae6fd; }
.violet { background: #f5f3ff; border-color: #ddd6fe; }
.amber { background: #fffbeb; border-color: #fde68a; }
.pink { background: #fdf2f8; border-color: #fbcfe8; }
.panel-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.7);
}
.panel-title { margin-top: 8px; font-size: 1.15rem; font-weight: 800; }
.panel-title-sm { font-size: 0.95rem; font-weight: 800; color: #0f172a; }
.panel-copy { margin-top: 4px; font-size: 0.78rem; line-height: 1.55; color: #475569; }
.emoji { font-size: 1.6rem; }

.section { margin-top: 32px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.section-head h2, .closing h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); }
.section-head p, .closing p { color: #475569; }
.pill-note {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid #cbd5e1;
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #475569;
}

.videos-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}
.featured-video, .small-media-card, .feature-card-wrap, .closing { padding: 18px; }
.media-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.media-title { font-size: 0.92rem; font-weight: 800; color: #0f172a; }
.media-subtitle { font-size: 0.76rem; color: #64748b; }
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.media-player {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid #dbe1ea;
  background: #000;
}
.media-player.small { border-radius: 16px; margin-top: 10px; }
.media-note {
  margin-top: 10px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #475569;
}
.stack { display: flex; flex-direction: column; gap: 16px; }
.small-media-card { position: relative; overflow: hidden; }
.small-media-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}
.accent-cyan::before { background: linear-gradient(90deg, #06b6d4, #2563eb); }
.accent-amber::before { background: linear-gradient(90deg, #f59e0b, #f97316); }
.accent-violet::before { background: linear-gradient(90deg, #a78bfa, #c026d3); }

.audio-features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}
.audio-card {
  border-radius: var(--radius);
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e293b 50%, #0f172a);
  box-shadow: var(--shadow);
}
.audio-card h3, .feature-card-wrap h3 { font-size: 1.9rem; }
.audio-copy { margin-top: 10px; color: rgba(255,255,255,0.82); line-height: 1.7; }
.audio-inner {
  margin-top: 16px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.audio-player { width: 100%; margin-top: 10px; }
.feature-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.mini-card {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.closing {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}
.quad-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.quad {
  aspect-ratio: 1 / 1;
  padding: 16px;
  border-radius: 22px;
  color: #fff;
  box-shadow: 0 14px 26px rgba(148,163,184,0.22);
}
.cyan-grad { background: linear-gradient(135deg, #22d3ee, #2563eb); }
.pink-grad { background: linear-gradient(135deg, #d946ef, #ec4899); }
.amber-grad { background: linear-gradient(135deg, #fbbf24, #f97316); }
.green-grad { background: linear-gradient(135deg, #34d399, #14b8a6); }
.light { color: #fff; margin-top: 8px; }
.quad-copy { color: rgba(255,255,255,0.92); font-size: 0.78rem; line-height: 1.5; }

@media (max-width: 980px) {
  .hero-content,
  .videos-layout,
  .audio-features,
  .closing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container { padding: 20px 14px 40px; }
  .hero, .featured-video, .small-media-card, .feature-card-wrap, .closing, .audio-card { padding: 16px; }
  .hero-grid, .feature-grid, .quad-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .pill-note { display: none; }
}
