:root {
  --bg: #f2f2f4;
  --surface: #ffffff;
  --ink: #17181f;
  --muted: #d8d9e0;
  --text-soft: #6f7483;
  --purple: #8b70e8;
  --purple-deep: #6e4bdf;
  --yellow: #ffbf32;
  --hero-dark: #05061f;
  --hero-mid: #1d1fa6;
  --hero-purple: #7d31eb;
  --shadow: 0 20px 55px rgba(22, 20, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(112, 75, 255, 0.24), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255, 93, 177, 0.16), transparent 24%),
    radial-gradient(circle at 70% 78%, rgba(255, 191, 50, 0.12), transparent 22%),
    linear-gradient(180deg, #161729 0%, #1b1637 38%, #171b32 100%);
  color: var(--ink);
  font-family: "Noto Sans Georgian", "Inter", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.motion-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.95;
}

.site-motion-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 14%, rgba(132, 82, 255, 0.42), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(255, 95, 184, 0.3), transparent 18%),
    radial-gradient(circle at 74% 78%, rgba(255, 191, 50, 0.22), transparent 18%),
    radial-gradient(circle at 28% 74%, rgba(79, 184, 255, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(7, 9, 24, 0.16), rgba(18, 12, 44, 0.3));
}

.motion-grid,
.motion-beam,
.motion-wave,
.motion-bars {
  position: absolute;
}

.motion-grid {
  inset: 0;
  opacity: 0.9;
  background:
    linear-gradient(rgba(147, 152, 214, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 152, 214, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
  animation: gridDrift 18s linear infinite;
  mix-blend-mode: screen;
}

.site-motion-bg::before,
.site-motion-bg::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.7;
}

.site-motion-bg::before {
  left: 8%;
  top: 10%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(124, 94, 255, 0.3), rgba(124, 94, 255, 0));
  animation: ambientBlob 14s ease-in-out infinite;
}

.site-motion-bg::after {
  right: 10%;
  bottom: 12%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 191, 50, 0.22), rgba(255, 191, 50, 0));
  animation: ambientBlob 18s ease-in-out infinite reverse;
}

.motion-beam {
  top: -18%;
  width: 26%;
  height: 145%;
  opacity: 0.5;
  background: linear-gradient(180deg, rgba(150, 126, 255, 0.55), rgba(150, 126, 255, 0.12) 34%, rgba(150, 126, 255, 0));
  filter: blur(10px);
  transform: skewX(-14deg);
}

.beam-a {
  left: 18%;
  animation: beamMove 17s ease-in-out infinite;
}

.beam-b {
  right: 10%;
  opacity: 0.13;
  animation: beamMove 23s ease-in-out infinite reverse;
}

.motion-wave {
  left: -10%;
  right: -10%;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(171, 147, 255, 0.34);
  opacity: 0.8;
}

.wave-a {
  top: 22%;
  animation: pageWave 15s ease-in-out infinite;
}

.wave-b {
  top: 48%;
  border-color: rgba(255, 191, 50, 0.1);
  animation: pageWave 18s ease-in-out infinite reverse;
}

.wave-c {
  top: 74%;
  animation: pageWave 21s ease-in-out infinite;
}

.motion-bars {
  right: 3.5%;
  bottom: 5%;
  display: flex;
  align-items: end;
  gap: 8px;
  width: 240px;
  height: 120px;
  opacity: 0.72;
}

.motion-bars span {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 207, 104, 1), rgba(142, 111, 255, 0.5));
  box-shadow: 0 0 18px rgba(142, 111, 255, 0.38);
  animation: barsDance 1.8s ease-in-out infinite;
}

.motion-bars span:nth-child(1) { height: 36px; animation-delay: -0.1s; }
.motion-bars span:nth-child(2) { height: 74px; animation-delay: -0.5s; }
.motion-bars span:nth-child(3) { height: 56px; animation-delay: -0.2s; }
.motion-bars span:nth-child(4) { height: 88px; animation-delay: -0.65s; }
.motion-bars span:nth-child(5) { height: 48px; animation-delay: -0.3s; }
.motion-bars span:nth-child(6) { height: 98px; animation-delay: -0.8s; }
.motion-bars span:nth-child(7) { height: 44px; animation-delay: -0.15s; }
.motion-bars span:nth-child(8) { height: 86px; animation-delay: -0.7s; }
.motion-bars span:nth-child(9) { height: 60px; animation-delay: -0.35s; }
.motion-bars span:nth-child(10) { height: 92px; animation-delay: -0.95s; }
.motion-bars span:nth-child(11) { height: 42px; animation-delay: -0.25s; }
.motion-bars span:nth-child(12) { height: 76px; animation-delay: -0.6s; }

@keyframes gridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(42px, 42px, 0); }
}

@keyframes ambientBlob {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -20px, 0) scale(1.16); }
}

@keyframes beamMove {
  0%, 100% { transform: skewX(-14deg) translateX(0); opacity: 0.1; }
  50% { transform: skewX(-10deg) translateX(40px); opacity: 0.24; }
}

@keyframes pageWave {
  0%, 100% { transform: translateX(-1.5%) scaleY(0.86); opacity: 0.25; }
  50% { transform: translateX(1.5%) scaleY(1.04); opacity: 0.5; }
}

@keyframes barsDance {
  0%, 100% { transform: scaleY(0.6); opacity: 0.55; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(139, 112, 232, 0.35), transparent 25%),
    linear-gradient(135deg, #0a0b21, #14173f 55%, #5421bf);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.loader-screen.hidden {
  visibility: hidden;
  opacity: 0;
}

.loader-card {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.loader-logo {
  width: min(420px, 74vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22));
}

.loader-line {
  width: min(260px, 68vw);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.loader-line span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffd168, #8b70e8);
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
  from { transform: translateX(-110%); }
  to { transform: translateX(250%); }
}

.page-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: 28px 24px 54px;
}

.site-credit {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 6px 24px 20px auto;
  padding: 11px 18px 11px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(135deg, rgba(93, 61, 199, 0.88), rgba(144, 92, 255, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(18, 12, 52, 0.34);
  backdrop-filter: blur(14px);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
  transition: box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
}

.site-credit::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd36d, #ff8d5c);
  box-shadow: 0 0 18px rgba(255, 195, 82, 0.65);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.site-credit::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.28s ease, background 0.28s ease;
}

.site-credit:hover {
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 24px 48px rgba(18, 12, 52, 0.42), 0 0 22px rgba(155, 104, 255, 0.28);
  background: linear-gradient(135deg, rgba(108, 73, 224, 0.94), rgba(159, 102, 255, 0.88));
  filter: saturate(1.08);
}

.site-credit:hover::before {
  transform: scale(1.14);
  box-shadow: 0 0 22px rgba(255, 195, 82, 0.9);
}

.site-credit:hover::after {
  opacity: 0.62;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06));
}

.site-header {
  position: relative;
  z-index: 3;
  max-width: 1710px;
  margin: 0 auto 18px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(33, 32, 65, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
  position: relative;
  padding: 0 34px;
}

.brand-logo {
  width: clamp(190px, 15vw, 250px);
  height: auto;
  object-fit: contain;
  filter: brightness(0) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 4px 0;
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 52px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.main-nav a:hover {
  color: var(--purple-deep);
}

.header-actions {
  gap: 14px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #9578ef, #7d63dd);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(139, 112, 232, 0.12);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero-stage,
.content-section {
  position: relative;
  z-index: 2;
  max-width: 1710px;
  margin: 0 auto;
}

.hero-slider-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 0.9fr) minmax(620px, 1.08fr) 86px;
  gap: 18px;
  align-items: center;
  min-height: 695px;
  padding: 72px 54px 96px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 36% 85%, rgba(139, 23, 200, 0.42), transparent 20%),
    radial-gradient(circle at 70% 20%, rgba(133, 84, 255, 0.36), transparent 24%),
    linear-gradient(90deg, rgba(1, 3, 29, 0.9) 0%, rgba(3, 5, 48, 0.9) 28%, rgba(21, 32, 160, 0.78) 66%, rgba(131, 64, 239, 0.72) 100%);
  backdrop-filter: blur(4px);
  box-shadow: 0 24px 90px rgba(39, 24, 96, 0.24);
}

.studio-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.studio-orb,
.studio-lightbeam,
.studio-wave,
.studio-eq {
  position: absolute;
}

.studio-orb {
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.65;
}

.studio-orb-one {
  left: 14%;
  top: 16%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(122, 75, 255, 0.55) 0%, rgba(122, 75, 255, 0) 70%);
  animation: driftOrbOne 13s ease-in-out infinite;
}

.studio-orb-two {
  right: 10%;
  bottom: 10%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 95, 184, 0.28) 0%, rgba(255, 191, 50, 0.06) 42%, rgba(255, 95, 184, 0) 72%);
  animation: driftOrbTwo 17s ease-in-out infinite;
}

.studio-lightbeam {
  top: -16%;
  width: 24%;
  height: 140%;
  opacity: 0.2;
  filter: blur(2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 34%, rgba(255, 255, 255, 0));
  transform: skewX(-14deg);
}

.beam-one {
  left: 45%;
  animation: swayBeam 11s ease-in-out infinite;
}

.beam-two {
  left: 70%;
  opacity: 0.12;
  animation: swayBeam 15s ease-in-out infinite reverse;
}

.studio-wave {
  left: -6%;
  right: -6%;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.35;
}

.wave-one {
  bottom: 12%;
  transform: scaleY(0.72);
  animation: waveFloat 12s linear infinite;
}

.wave-two {
  bottom: 8%;
  transform: scaleY(0.88);
  animation: waveFloat 16s linear infinite reverse;
}

.wave-three {
  bottom: 4%;
  transform: scaleY(1.02);
  border-color: rgba(255, 191, 50, 0.12);
  animation: waveFloat 18s linear infinite;
}

.studio-eq {
  left: 9%;
  bottom: 12%;
  display: flex;
  align-items: end;
  gap: 8px;
  width: 220px;
  height: 120px;
  opacity: 0.48;
}

.studio-eq span {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 209, 104, 0.95), rgba(139, 112, 232, 0.42));
  box-shadow: 0 0 14px rgba(139, 112, 232, 0.25);
  animation: eqBounce 1.7s ease-in-out infinite;
}

.studio-eq span:nth-child(1) { height: 36px; animation-delay: -0.1s; }
.studio-eq span:nth-child(2) { height: 82px; animation-delay: -0.45s; }
.studio-eq span:nth-child(3) { height: 52px; animation-delay: -0.2s; }
.studio-eq span:nth-child(4) { height: 94px; animation-delay: -0.65s; }
.studio-eq span:nth-child(5) { height: 66px; animation-delay: -0.35s; }
.studio-eq span:nth-child(6) { height: 110px; animation-delay: -0.8s; }
.studio-eq span:nth-child(7) { height: 72px; animation-delay: -0.5s; }
.studio-eq span:nth-child(8) { height: 96px; animation-delay: -1s; }
.studio-eq span:nth-child(9) { height: 58px; animation-delay: -0.25s; }
.studio-eq span:nth-child(10) { height: 88px; animation-delay: -0.7s; }
.studio-eq span:nth-child(11) { height: 48px; animation-delay: -0.4s; }
.studio-eq span:nth-child(12) { height: 74px; animation-delay: -0.9s; }

@keyframes driftOrbOne {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(34px, -22px, 0) scale(1.08); }
}

@keyframes driftOrbTwo {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-38px, 18px, 0) scale(1.12); }
}

@keyframes swayBeam {
  0%, 100% { transform: skewX(-14deg) translateX(0); opacity: 0.12; }
  50% { transform: skewX(-10deg) translateX(26px); opacity: 0.26; }
}

@keyframes waveFloat {
  0% { transform: translateX(-1%) scaleY(0.8); }
  50% { transform: translateX(1%) scaleY(1); }
  100% { transform: translateX(-1%) scaleY(0.8); }
}

@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.62); opacity: 0.7; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding-right: 18px;
  color: #fff;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 18px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.92;
}

.hero-copy h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
  text-wrap: balance;
}

.hero-description {
  max-width: 500px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
  text-wrap: pretty;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 186px;
  min-height: 60px;
  margin-top: 38px;
  padding: 0 24px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #9a7df0, #7f66e0);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-arrow {
  position: relative;
  z-index: 3;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #1b1d28;
  background: rgba(255, 255, 255, 0.82);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.hero-visual {
  position: relative;
  z-index: 3;
  height: 520px;
  min-width: 0;
  padding-left: 12px;
}

.ui-card {
  position: absolute;
  border-radius: 30px;
  background: linear-gradient(180deg, #26272b 0%, #1d1f24 100%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.ui-main {
  right: 18px;
  top: 34px;
  width: min(100%, 600px);
  padding: 16px 18px 20px;
}

.ui-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.ui-toolbar span {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
}

.ui-toolbar span:nth-child(1),
.ui-toolbar span:nth-child(4) {
  opacity: 0.45;
}

.ui-toolbar span:nth-child(2) {
  background: #6f87ff;
}

.ui-screen {
  display: grid;
  grid-template-columns: 1fr 165px;
  gap: 16px;
}

.ui-preview,
.ui-sidebar {
  border-radius: 18px;
  background: #30323a;
}

.ui-preview {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #3a3d46;
  background-size: 28px 28px;
}

.podcast-ring {
  position: absolute;
  inset: 42px 62px 42px 62px;
  border: 5px solid #c85fff;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(200, 95, 255, 0.5));
}

.podcast-mic {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 146px;
  height: 198px;
  transform: translate(-50%, -50%);
}

.mic-head {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #1f2128, #0f1118);
  border: 6px solid #2d2f39;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.02);
}

.mic-body {
  position: relative;
  width: 26px;
  height: 92px;
  margin: -8px auto 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #20232d, #090b11);
}

.mic-body::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 96px;
  height: 48px;
  transform: translateX(-50%);
  border: 6px solid #2b2e37;
  border-top: 0;
  border-radius: 0 0 42px 42px;
}

.mic-body::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -56px;
  width: 72px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #2c2f38;
}

.ui-sidebar {
  padding: 18px 14px;
}

.ui-line {
  height: 18px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.ui-line.short {
  width: 72%;
}

.ui-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.progress-track {
  flex: 1;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #60a5ff, #6cf2a7);
}

.ui-controls {
  display: flex;
  gap: 10px;
}

.ui-controls i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  opacity: 0.9;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 178px;
  padding: 18px 20px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(180deg, rgba(58, 61, 72, 0.95), rgba(34, 36, 43, 0.96));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.2;
}

.floating-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.floating-top {
  top: 112px;
  right: -10px;
}

.floating-bottom {
  left: 32px;
  bottom: 48px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 42px;
  display: flex;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 2px solid #ffbf32;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-dot.active {
  background: #ffbf32;
}

.content-section {
  padding-top: 72px;
}

.aurora-section {
  padding-bottom: 10px;
}

.aurora-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 25%, rgba(149, 120, 239, 0.16), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(255, 191, 50, 0.14), transparent 20%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.16));
  opacity: 0.82;
  pointer-events: none;
}

.aurora-section::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 6%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 49, 235, 0.15) 0%, rgba(125, 49, 235, 0) 72%);
  filter: blur(16px);
  animation: pulseAura 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseAura {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

.animated-section {
  overflow: hidden;
}

.animated-section::before {
  background:
    radial-gradient(circle at 18% 26%, rgba(149, 120, 239, 0.18), transparent 24%),
    radial-gradient(circle at 84% 70%, rgba(255, 191, 50, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.40));
}

.animated-section::after {
  top: 12%;
  right: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(125, 49, 235, 0.18) 0%, rgba(125, 49, 235, 0) 72%);
}

.animated-section .section-head::before,
.animated-section .contact-box::before {
  content: "";
  position: absolute;
  inset: auto auto 10% -6%;
  width: 48%;
  height: 180px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(140, 112, 232, 0), rgba(140, 112, 232, 0.14), rgba(255, 191, 50, 0.08), rgba(140, 112, 232, 0));
  filter: blur(16px);
  animation: driftWave 12s ease-in-out infinite;
  pointer-events: none;
}

.animated-section .section-head::after,
.animated-section .contact-box::after {
  content: "";
  position: absolute;
  top: 18%;
  right: -8%;
  width: 42%;
  height: 140px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 191, 50, 0), rgba(255, 191, 50, 0.12), rgba(125, 49, 235, 0.10), rgba(255, 191, 50, 0));
  filter: blur(14px);
  animation: driftWaveReverse 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes driftWave {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(26px, -10px, 0) rotate(2deg);
    opacity: 0.95;
  }
}

@keyframes driftWaveReverse {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(8deg);
    opacity: 0.3;
  }
  50% {
    transform: translate3d(-28px, 12px, 0) rotate(-3deg);
    opacity: 0.8;
  }
}

.slider-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.slider-actions {
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #9578ef, #7d63dd);
  font-size: 30px;
  cursor: pointer;
}

.course-slider {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 24px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.static-courses {
  grid-auto-flow: unset;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
}

.course-slider::-webkit-scrollbar {
  display: none;
}

.course-showcase-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.course-showcase-media {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 80%, rgba(152, 87, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #4a1ea7 0%, #34146f 56%, #6420d1 100%);
}

.course-showcase-label {
  position: relative;
  z-index: 2;
  max-width: 52%;
  padding: 34px 22px 0;
  color: #fff;
}

.course-showcase-label h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
}

.course-showcase-label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.course-person,
.course-person-group {
  position: absolute;
  right: 0;
  bottom: 0;
}

.course-person {
  width: 50%;
  height: 100%;
  background:
    radial-gradient(circle at 55% 28%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.08)),
    url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
  clip-path: inset(0 round 0 0 0 36px);
}

.course-person-one {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=900&q=80");
}

.recording-photo {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=900&q=80");
}

.course-person-two {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=900&q=80");
}

.mixing-photo {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=900&q=80");
}

.course-person-three,
.course-person-four {
  position: absolute;
  bottom: 0;
  width: 34%;
  height: 100%;
  clip-path: inset(0 round 0 0 0 30px);
}

.course-person-three {
  right: 28%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.course-person-four {
  right: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1438761681033-6461ffad8d80?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.course-person-five {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1507591064344-4c6ce005b128?auto=format&fit=crop&w=900&q=80");
}

.video-photo {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=900&q=80");
}

.podcast-photo {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1589903308904-1010c2294adc?auto=format&fit=crop&w=900&q=80");
}

.course-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  background: rgba(24, 26, 31, 0.65);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.course-showcase-body {
  padding: 24px 20px 18px;
}

.course-showcase-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 800;
}

.course-showcase-body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
  text-wrap: pretty;
}

.course-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.course-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #594f7f;
  background: rgba(141, 115, 238, 0.1);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.course-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.course-price-row strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
}

.course-price-row span {
  color: #df5e5e;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  text-decoration: line-through;
  font-weight: 700;
}

.course-circle-arrow {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #9578ef, #7d63dd);
  font-size: 28px;
  line-height: 1;
}

.media-seo,
.media-meta,
.media-figma,
.media-premiere,
.media-after-advanced,
.media-cubase-advanced {
  background:
    radial-gradient(circle at 80% 80%, rgba(152, 87, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #5926bb 0%, #321262 56%, #6420d1 100%);
}

.media-after-advanced {
  background:
    radial-gradient(circle at 80% 80%, rgba(255, 120, 86, 0.18), transparent 28%),
    linear-gradient(135deg, #6e2bff 0%, #37166b 52%, #ff5d8c 100%);
}

.media-cubase-advanced {
  background:
    radial-gradient(circle at 82% 78%, rgba(255, 191, 50, 0.24), transparent 26%),
    linear-gradient(135deg, #2d1970 0%, #18234d 48%, #0e7a7f 100%);
}

.section-head {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.14;
  font-weight: 800;
  text-wrap: balance;
  color: #f7f4ff;
  text-shadow: 0 12px 28px rgba(12, 10, 34, 0.45);
}

.section-kicker {
  color: rgba(241, 235, 255, 0.86);
  text-shadow: 0 8px 24px rgba(12, 10, 34, 0.3);
}

.aurora-section .section-kicker,
.aurora-section .section-head h2 {
  color: #f5f1ff;
  text-shadow: 0 10px 30px rgba(19, 11, 48, 0.34);
}

.aurora-section .section-head h2 {
  max-width: 980px;
}

.aurora-section .section-head p:not(.section-kicker),
.aurora-section .contact-text {
  color: rgba(237, 232, 255, 0.88);
}

.animated-section .section-kicker,
.animated-section .section-head h2 {
  color: #f5f1ff;
  text-shadow: 0 10px 30px rgba(19, 11, 48, 0.34);
}

.animated-section .section-head h2 {
  max-width: 980px;
}

.animated-section .section-head p:not(.section-kicker),
.animated-section .contact-text {
  color: rgba(237, 232, 255, 0.88);
}

#advantages,
#blog {
  padding-top: 78px;
}

.card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.info-card,
.contact-box {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(22, 20, 48, 0.1);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.info-card {
  display: block;
  padding: 28px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(28, 18, 78, 0.18);
}

.video-icon,
.premiere-icon {
  background: linear-gradient(135deg, #7a4fff, #4d7cff);
}

.audio-icon,
.after-icon {
  background: linear-gradient(135deg, #ff8a4d, #ff5c8f);
}

.podcast-icon,
.cubase-icon {
  background: linear-gradient(135deg, #ffbf32, #d68a00);
}

.tech-icon,
.space-icon,
.city-icon {
  background: linear-gradient(135deg, #8b70e8, #6e4bdf);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 800;
  color: #1c1d2b;
}

.info-card p,
.contact-text {
  margin: 0;
  color: #6a7083;
  font-size: 16px;
  line-height: 1.78;
  font-weight: 500;
  text-wrap: pretty;
}

.social-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  transition: transform 0.25s ease;
}

.social-icon,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.social-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #fff;
  font-size: 20px;
  text-transform: lowercase;
  box-shadow: 0 12px 26px rgba(22, 20, 48, 0.14);
}

.facebook-icon {
  background: linear-gradient(135deg, #1877f2, #6b7cff);
}

.instagram-icon {
  background: linear-gradient(135deg, #fd5949, #d6249f 55%, #285aeb);
}

.youtube-icon {
  background: linear-gradient(135deg, #ff4d4d, #d90000);
}

.social-icon svg,
.contact-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 34px;
}

.contact-box h2 {
  color: #181a27;
  text-shadow: none;
}

#contact .section-kicker {
  color: #78728f;
  text-shadow: none;
}

#contact .contact-text,
#contact .contact-box p:not(.section-kicker) {
  color: #70768a;
  text-shadow: none;
}

.contact-links {
  display: grid;
  gap: 14px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(244, 241, 251, 0.88);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #fff;
  font-size: 17px;
  background: linear-gradient(135deg, #8b70e8, #6e4bdf);
}

.phone-icon {
  background: linear-gradient(135deg, #4facfe, #6e4bdf);
}

.mail-icon {
  background: linear-gradient(135deg, #ff8b49, #ff5a5a);
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
  text-transform: lowercase;
}

.course-showcase-card[data-package-link]:focus-visible {
  outline: 3px solid rgba(168, 132, 255, 0.95);
  outline-offset: 4px;
}

.detail-page {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
}

.detail-header .brand-logo {
  filter: brightness(0) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.detail-hero,
.detail-panel,
.detail-side-card {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 56px rgba(17, 12, 44, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 420px;
  gap: 26px;
  padding: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(122, 74, 255, 0.22), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255, 103, 192, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(8, 9, 34, 0.94), rgba(32, 29, 86, 0.9) 56%, rgba(98, 56, 201, 0.86));
}

.detail-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
  font-weight: 800;
}

.detail-kicker {
  margin: 0 0 14px;
  color: rgba(239, 231, 255, 0.86);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-summary {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(246, 243, 255, 0.92);
  font-size: 18px;
  line-height: 1.78;
  font-weight: 500;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.detail-meta-card {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-meta-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(237, 230, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.detail-meta-card strong {
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.detail-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.detail-back-link {
  color: rgba(242, 236, 255, 0.86);
  font-weight: 700;
}

.detail-side-card {
  overflow: hidden;
}

.detail-side-media {
  position: relative;
  min-height: 290px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(135deg, #4d1cc0 0%, #291751 100%);
  overflow: hidden;
}

.detail-embed-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0d1d;
}

.detail-side-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #fff;
  background: rgba(17, 18, 27, 0.6);
  font-family: "Inter", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.detail-side-body {
  padding: 22px 22px 26px;
}

.detail-side-body h2 {
  margin: 0 0 10px;
  color: #1a1b29;
  font-size: 28px;
  line-height: 1.14;
}

.detail-side-body p {
  margin: 0;
  color: #70768a;
  font-size: 16px;
  line-height: 1.7;
}

.detail-section {
  position: relative;
  z-index: 2;
}

.detail-section-head {
  max-width: 880px;
}

.detail-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-video-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px rgba(17, 12, 44, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.48);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.detail-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(17, 12, 44, 0.18);
}

.detail-video-cover {
  position: relative;
  min-height: 220px;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.18), transparent 16%),
    linear-gradient(135deg, #5826bb 0%, #2b174f 100%);
}

.detail-video-cover::after,
.detail-side-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.68;
}

.detail-video-tag,
.detail-video-play {
  position: absolute;
  z-index: 1;
}

.detail-video-tag {
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(12, 13, 24, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.detail-video-play {
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #9a7df0, #7f66e0);
  font-size: 22px;
  font-weight: 800;
}

.detail-video-body {
  padding: 22px;
}

.detail-video-body h3 {
  margin: 0 0 10px;
  color: #1a1b29;
  font-size: 24px;
  line-height: 1.16;
}

.detail-video-body p {
  margin: 0;
  color: #70768a;
  font-size: 15px;
  line-height: 1.72;
}

.detail-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.detail-panel {
  padding: 28px;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding: 16px 18px 16px 52px;
  border-radius: 22px;
  color: #202232;
  background: rgba(243, 241, 250, 0.92);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8d73ee, #ffbf32);
  box-shadow: 0 0 0 6px rgba(141, 115, 238, 0.12);
}

.cover-recording {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.1)),
    url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.cover-mix {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.14)),
    url("https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.cover-video {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.18)),
    url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.cover-podcast {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.16)),
    url("https://images.unsplash.com/photo-1589903308904-1010c2294adc?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.cover-premiere {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.16)),
    url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.cover-after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.16)),
    url("https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.cover-cubase {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.18)),
    url("https://images.unsplash.com/photo-1507591064344-4c6ce005b128?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

@media (max-width: 1250px) {
  .hero-slider-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 58px 30px 88px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-visual {
    height: 500px;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .hero-copy h1,
  .hero-description {
    max-width: 100%;
  }

  .card-grid,
  .contact-box {
    grid-template-columns: 1fr 1fr;
  }

  .animated-section .section-head::before,
  .animated-section .section-head::after,
  .animated-section .contact-box::before,
  .animated-section .contact-box::after {
    width: 58%;
  }

  .slider-head {
    align-items: start;
    flex-direction: column;
  }

  .detail-hero {
    grid-template-columns: 1fr;
  }

  .detail-video-grid,
  .detail-split {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 1000;
  }

  .main-nav.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-inner {
    position: relative;
  }

  .hero-visual {
    height: 430px;
  }

  .studio-eq {
    left: 6%;
    width: 180px;
    height: 96px;
  }

  .ui-main {
    right: 0;
    width: 100%;
  }

  .course-slider {
    grid-auto-columns: minmax(300px, 82vw);
  }

  .motion-bars {
    right: 2%;
    width: 170px;
    height: 90px;
    gap: 6px;
  }

  .detail-meta,
  .detail-video-grid,
  .detail-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 16px 12px 34px;
  }

  .site-credit {
    margin: 4px 12px 16px auto;
    padding: 10px 14px 10px 12px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .header-inner {
    min-height: 86px;
    padding: 0 18px;
  }

  .site-header {
    border-radius: 20px;
  }

  .hero-slider-card {
    min-height: auto;
    padding: 34px 18px 78px;
    border-radius: 26px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-visual {
    height: 330px;
  }

  .studio-orb-one,
  .studio-orb-two,
  .studio-lightbeam,
  .studio-wave {
    opacity: 0.6;
  }

  .studio-eq {
    left: 7%;
    bottom: 16%;
    width: 148px;
    height: 74px;
    gap: 5px;
  }

  .studio-eq span {
    width: 7px;
  }

  .floating-card {
    min-width: 140px;
    padding: 14px 16px;
  }

  .floating-top {
    right: 0;
  }

  .floating-bottom {
    left: 0;
  }

  .card-grid,
  .contact-box,
  .static-courses {
    grid-template-columns: 1fr;
  }

  .motion-grid {
    background-size: 28px 28px;
  }

  .motion-bars,
  .motion-wave {
    opacity: 0.24;
  }

  .motion-beam {
    width: 44%;
  }

  .animated-section .section-head::before,
  .animated-section .section-head::after,
  .animated-section .contact-box::before,
  .animated-section .contact-box::after {
    display: none;
  }

  .course-showcase-media {
    min-height: 234px;
  }

  .course-showcase-label h3 {
    font-size: 24px;
    line-height: 1.1;
  }

  .detail-hero,
  .detail-panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .detail-copy h1 {
    font-size: 32px;
  }

  .detail-summary {
    font-size: 16px;
    line-height: 1.72;
  }

  .detail-actions {
    align-items: start;
    flex-direction: column;
  }

  .detail-side-media,
  .detail-video-cover {
    min-height: 210px;
  }
}
