:root {
  --bg-0: #05070c;
  --bg-1: #0a0f18;
  --bg-2: #101728;
  --panel: rgba(15, 17, 31, 0.92);
  --panel-soft: rgba(13, 15, 27, 0.82);
  --line: rgba(190, 88, 255, 0.28);
  --line-strong: rgba(92, 231, 255, 0.62);
  --text: #f4f8ff;
  --muted: #97aac7;
  --cyan: #57e8ff;
  --cyan-deep: #1d7ea5;
  --pink: #ff59bc;
  --pink-soft: rgba(255, 89, 188, 0.18);
  --green: #37ff9f;
  --gold: #ffd85c;
  --radius: 22px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --font-body: "Rajdhani", system-ui, sans-serif;
  --font-head: "Orbitron", "Rajdhani", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 85% 60% at 10% 6%, rgba(87, 232, 255, 0.09), transparent 52%),
    radial-gradient(ellipse 70% 55% at 88% 18%, rgba(255, 89, 188, 0.09), transparent 48%),
    linear-gradient(180deg, #05070c 0%, #08101b 36%, #090d17 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.18;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 32%, black 18%, transparent 90%);
}

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

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 12, 0.76);
  border-bottom: 1px solid rgba(87, 232, 255, 0.18);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(87, 232, 255, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(16, 23, 40, 0.8);
  border: 1px solid rgba(87, 232, 255, 0.2);
}

.lang-btn {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: 160ms ease;
}

.lang-btn.is-active {
  background: linear-gradient(135deg, rgba(33, 104, 132, 0.9), rgba(27, 57, 92, 0.9));
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(87, 232, 255, 0.45);
}

.lang-btn:not(.is-active):hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  transition: 160ms ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(87, 232, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  text-transform: uppercase;
  transition: 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), #9df3ff 60%, #c4ffff);
  box-shadow: 0 0 28px rgba(87, 232, 255, 0.3);
}

.btn-ghost {
  border-color: rgba(87, 232, 255, 0.28);
  background: rgba(16, 23, 40, 0.74);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 52px 0 80px;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.11;
  background:
    radial-gradient(ellipse 160% 90% at 12% 0%, rgba(87, 232, 255, 0.11), transparent 78%),
    radial-gradient(ellipse 130% 80% at 92% 8%, rgba(255, 89, 188, 0.09), transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 38px;
  align-items: center;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 10px;
  margin-bottom: 22px;
  max-width: 100%;
}

.hero-eyebrow-divider {
  flex-shrink: 0;
  align-self: center;
  color: rgba(180, 200, 230, 0.38);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1;
}

.hero-eyebrow-divider::before {
  content: "·";
}

.hero-kicker,
.hero-beta,
.section-label,
.signal-label,
.panel-chip,
.step-num {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-kicker {
  color: #9ef6ff;
  font-size: clamp(0.82rem, 1.35vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-shadow: 0 0 18px rgba(87, 232, 255, 0.14);
}

.hero-beta {
  font-size: clamp(0.68rem, 1.05vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 179, 228, 0.85);
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.hero h1,
.section h2,
.cta-panel h2 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(2.25rem, 5.2vw, 4.5rem);
  max-width: min(16ch, 92%);
  line-height: 1.06;
  color: #f4f8ff;
  text-shadow: 0 0 40px rgba(87, 232, 255, 0.15);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 {
    background: linear-gradient(120deg, #ffffff 0%, #c9e8ff 42%, #eef6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
  }
}

.hero-lead,
.section-head p,
.feature-card p,
.step-card p,
.panel p,
.cta-panel p,
.footer-copy,
.list-grid li {
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-lead {
  margin-top: 22px;
  max-width: 38rem;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.55;
  color: rgba(165, 186, 215, 0.95);
}

.hero-note {
  margin-top: 10px;
  max-width: 38rem;
  color: rgba(173, 192, 224, 0.68);
  font-size: 0.94rem;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 26px;
}

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

.signal-card,
.feature-card,
.step-card,
.panel,
.cta-panel,
.hero-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 17, 29, 0.96), rgba(11, 14, 24, 0.9));
  box-shadow: var(--shadow);
}

.signal-card {
  padding: 16px 18px;
  border-radius: 18px;
}

.signal-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.08rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-panel {
  width: min(520px, 100%);
  padding: 22px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(87, 232, 255, 0.18);
  pointer-events: none;
}

.hero-panel-top,
.hero-footerline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.panel-chip {
  font-size: 0.72rem;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.chip-cyan {
  color: var(--cyan);
  background: rgba(10, 51, 62, 0.48);
}

.chip-pink {
  color: #ffd7f1;
  background: rgba(60, 11, 40, 0.48);
}

.hero-visualizer {
  margin: 18px 0 24px;
  padding: 14px 14px 18px;
  border-radius: 18px;
  background: rgba(6, 7, 12, 0.82);
  border: 1px solid rgba(255, 89, 188, 0.2);
}

.kr-band {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(28, 2, 6, 0.96), rgba(17, 3, 6, 0.96));
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 70, 70, 0.18);
}

.kr-glow {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 88px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at center, #ff7048 0%, #ff4141 35%, rgba(255, 61, 61, 0.12) 100%);
  box-shadow:
    0 0 6px rgba(255, 81, 65, 0.9),
    0 0 18px rgba(255, 45, 45, 0.45),
    0 0 38px rgba(255, 0, 0, 0.22);
  animation: knight-sweep 3s ease-in-out infinite alternate;
}

.hero-demo-video-shell {
  position: relative;
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(255, 89, 188, 0.1), transparent 34%),
    rgba(3, 5, 10, 0.96);
  border: 1px solid rgba(255, 89, 188, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(87, 232, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.34);
}

.hero-demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #03050a;
  filter: saturate(1.04) contrast(1.02);
}

.hero-video-mobile-audio {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(87, 232, 255, 0.32);
  border-radius: 50%;
  background: rgba(7, 11, 20, 0.78);
  backdrop-filter: blur(10px);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  color: #c7f9ff;
  cursor: pointer;
  transition: 160ms ease;
}

.hero-video-mobile-audio:hover {
  transform: translateY(-1px);
  border-color: rgba(87, 232, 255, 0.48);
}

.hero-video-mobile-audio.is-muted {
  color: #ffd0ea;
  border-color: rgba(255, 89, 188, 0.34);
}

.hero-video-mobile-audio-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 140ms ease;
}

.hero-video-mobile-audio-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-video-mobile-audio-icon-off {
  opacity: 0;
  transform: scale(0.82);
}

.hero-video-mobile-audio.is-muted .hero-video-mobile-audio-icon-on {
  opacity: 0;
  transform: scale(0.82);
}

.hero-video-mobile-audio.is-muted .hero-video-mobile-audio-icon-off {
  opacity: 1;
  transform: scale(1);
}

.hero-video-controls {
  display: grid;
  gap: 12px;
  padding: 12px 12px 6px;
  border-top: 1px solid rgba(87, 232, 255, 0.08);
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.92), rgba(10, 12, 20, 0.86));
}

.hero-video-row,
.hero-video-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
}

.hero-video-btn {
  border: 1px solid rgba(87, 232, 255, 0.22);
  background: rgba(16, 23, 40, 0.74);
  color: var(--text);
  border-radius: 12px;
  padding: 9px 14px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 160ms ease;
}

.hero-video-btn:hover {
  transform: translateY(-1px);
}

.hero-video-btn-primary {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), #9df3ff 60%, #c4ffff);
  box-shadow: 0 0 18px rgba(87, 232, 255, 0.16);
}

.hero-video-icon-btn {
  min-width: 42px;
  padding: 9px 12px;
  font-size: 0.92rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero-video-progress-wrap {
  display: grid;
  gap: 8px;
}

.hero-video-volume-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 92px;
  flex: 1 1 92px;
  padding: 0 4px;
}

.hero-video-source-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(16, 23, 40, 0.82);
  border: 1px solid rgba(87, 232, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}

.hero-video-source-btn {
  min-width: 74px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 160ms ease;
}

.hero-video-source-btn:hover {
  color: var(--text);
}

.hero-video-source-btn.is-active {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), #9df3ff 60%, #c4ffff);
  box-shadow: 0 0 14px rgba(87, 232, 255, 0.18);
}

.hero-video-volume-inline-label {
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.hero-video-progress {
  width: 100%;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.hero-video-progress::-webkit-slider-runnable-track {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(87, 232, 255, 0.22), rgba(255, 89, 188, 0.26));
  border: 1px solid rgba(87, 232, 255, 0.12);
}

.hero-video-progress::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: -5px;
  background: linear-gradient(135deg, #8ff4ff, #57e8ff);
  box-shadow: 0 0 12px rgba(87, 232, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-video-volume {
  width: 100%;
  min-width: 86px;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.hero-video-volume::-webkit-slider-runnable-track {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(87, 232, 255, 0.22), rgba(255, 89, 188, 0.26));
  border: 1px solid rgba(87, 232, 255, 0.12);
}

.hero-video-volume::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: -5px;
  background: linear-gradient(135deg, #8ff4ff, #57e8ff);
  box-shadow: 0 0 12px rgba(87, 232, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-video-time {
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.78rem;
}

.hero-platter {
  position: relative;
  width: 270px;
  height: 270px;
  margin: 0 auto 24px;
}

.hero-platter::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 208deg,
      rgba(0, 0, 0, 0) 0deg,
      rgba(0, 0, 0, 0) 288deg,
      rgba(88, 228, 255, 0.04) 308deg,
      rgba(255, 92, 188, 0.12) 328deg,
      rgba(255, 223, 122, 0.18) 342deg,
      rgba(255, 255, 255, 0.22) 350deg,
      rgba(0, 0, 0, 0) 360deg
    );
  mask: radial-gradient(circle, transparent 69%, black 72%, black 76%, transparent 79%);
  animation: platter-orbit 4.8s linear infinite;
  z-index: 3;
}

.hero-platter::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  margin-top: -121px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff4cf 0%, #ffd85c 34%, #ff59bc 72%, rgba(255, 89, 188, 0.18) 100%);
  box-shadow:
    0 0 10px rgba(255, 216, 92, 0.95),
    0 0 20px rgba(255, 89, 188, 0.55),
    -12px 0 10px rgba(255, 255, 255, 0.18),
    -24px 0 14px rgba(255, 216, 92, 0.16),
    -38px 0 18px rgba(255, 89, 188, 0.18),
    -56px 0 24px rgba(255, 89, 188, 0.12),
    -74px 0 28px rgba(87, 232, 255, 0.09);
  transform-origin: 0 121px;
  animation: platter-orbit 4.8s linear infinite;
  z-index: 4;
}

.platter-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.platter-ring-outer {
  border: 6px solid rgba(228, 235, 248, 0.88);
  box-shadow: 0 0 0 6px rgba(58, 105, 184, 0.15);
}

.platter-ring-inner {
  inset: 32px;
  border: 7px solid rgba(33, 45, 77, 0.72);
}

.platter-logo {
  position: absolute;
  inset: 66px;
  width: calc(100% - 132px);
  height: calc(100% - 132px);
  object-fit: contain;
  opacity: 0.36;
  filter: brightness(1.08) contrast(1.04);
}

.platter-core {
  position: absolute;
  inset: 104px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(22, 27, 44, 0.78), rgba(14, 18, 32, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-footerline {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ribbon {
  padding-bottom: 10px;
}

.ribbon-track {
  display: flex;
  gap: 18px;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 89, 188, 0.18);
  background: rgba(12, 15, 25, 0.92);
  color: #d2e6ff;
  font-family: var(--font-head);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ribbon-track span::after {
  content: "•";
  margin-left: 18px;
  color: rgba(255, 89, 188, 0.55);
}

.ribbon-shell {
  overflow: hidden;
  position: relative;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 89, 188, 0.18);
  background: rgba(12, 15, 25, 0.92);
}

.ribbon-shell::before,
.ribbon-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  pointer-events: none;
  z-index: 1;
}

.ribbon-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(12, 15, 25, 0.98), rgba(12, 15, 25, 0));
}

.ribbon-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(12, 15, 25, 0.98), rgba(12, 15, 25, 0));
}

.ribbon-track {
  gap: 0;
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
  width: max-content;
  animation: ribbon-flow 26s linear infinite;
}

.ribbon-row {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
  padding-right: 18px;
}

.ribbon-row span::after {
  content: "•";
  margin-left: 18px;
  color: rgba(255, 89, 188, 0.55);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(9, 12, 21, 0.82), rgba(10, 9, 18, 0.86));
  border-top: 1px solid rgba(255, 89, 188, 0.1);
  border-bottom: 1px solid rgba(87, 232, 255, 0.1);
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.demo-note {
  margin-top: 10px;
  color: rgba(173, 192, 224, 0.54);
  font-size: 0.92rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.section-label {
  color: var(--cyan);
  font-size: 0.76rem;
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.feature-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps-grid,
.download-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.download-summary-card {
  border: 1px solid rgba(87, 232, 255, 0.16);
  border-radius: 20px;
  padding: 20px;
  background: rgba(10, 14, 24, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.download-summary-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.list-clean {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.5;
}

.download-missing {
  margin-top: 18px;
  color: #ffb8d8;
  font-size: 1rem;
}

.flow-demo-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
}

.flow-demo-container {
  width: min(1320px, 95vw);
}

.flow-demo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.flow-tag {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(180, 110, 255, 0.22);
  background: rgba(14, 18, 31, 0.84);
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.flow-tag.is-active {
  color: var(--gold);
  border-color: rgba(255, 216, 92, 0.42);
  box-shadow: 0 0 20px rgba(255, 216, 92, 0.12);
}

.flow-demo-canvas-shell {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top center, rgba(87, 232, 255, 0.06), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 89, 188, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(13, 17, 29, 0.96), rgba(11, 14, 24, 0.9));
  box-shadow: var(--shadow);
}

.flow-demo-canvas-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 920 / 520;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(4, 7, 14, 0.82);
}

#flow-demo-canvas {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(4, 7, 14, 0.82);
}

.flow-demo-status {
  margin-top: 16px;
  padding: 14px 16px 4px;
  border-top: 1px solid rgba(87, 232, 255, 0.12);
}

.flow-demo-status strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flow-demo-status p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.feature-card,
.step-card,
.panel,
.cta-panel {
  border-radius: 24px;
  padding: 22px;
}

.feature-card h3,
.step-card h3,
.panel h2,
.panel h3,
.cta-panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-head);
}

.step-num {
  color: var(--pink);
  font-size: 0.84rem;
  display: inline-block;
  margin-bottom: 12px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.demo-mix-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.demo-mix-sidebar,
.demo-mix-player {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 17, 29, 0.96), rgba(11, 14, 24, 0.9));
  box-shadow: var(--shadow);
}

.demo-mix-sidebar {
  padding: 18px;
}

.demo-mix-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.demo-mix-count {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
}

.demo-mix-list {
  display: grid;
  gap: 10px;
  max-height: 378px;
  overflow-y: auto;
  padding-right: 6px;
}

.demo-mix-list::-webkit-scrollbar {
  width: 10px;
}

.demo-mix-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(8, 12, 20, 0.86);
  border: 1px solid rgba(87, 232, 255, 0.08);
}

.demo-mix-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(87, 232, 255, 0.72), rgba(255, 89, 188, 0.62));
  border: 2px solid rgba(8, 12, 20, 0.92);
}

.demo-mix-list {
  scrollbar-width: thin;
  scrollbar-color: rgba(87, 232, 255, 0.72) rgba(8, 12, 20, 0.86);
}

.demo-mix-item {
  width: 100%;
  border: 1px solid rgba(180, 110, 255, 0.22);
  border-radius: 18px;
  background: rgba(10, 15, 25, 0.82);
  min-height: 90px;
  padding: 14px;
  color: inherit;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: 180ms ease;
}

.demo-mix-item:hover,
.demo-mix-item.is-active {
  border-color: rgba(87, 232, 255, 0.42);
  background: rgba(15, 24, 40, 0.94);
  box-shadow: 0 0 20px rgba(87, 232, 255, 0.1);
}

.demo-mix-item-num {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 89, 188, 0.24);
  background: rgba(41, 10, 33, 0.55);
  color: var(--pink);
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.demo-mix-item-copy {
  display: grid;
  gap: 2px;
}

.demo-mix-item-copy strong {
  font-family: var(--font-head);
  font-size: 0.92rem;
}

.demo-mix-item-copy small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.25;
}

.demo-mix-player-shell {
  min-width: 0;
}

.demo-mix-player {
  padding: 22px;
  overflow: hidden;
}

.demo-player-top,
.demo-player-footerline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.demo-player-main {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: 20px 0 22px;
}

.demo-player-platter-wrap {
  display: flex;
  justify-content: center;
}

.demo-player-platter {
  position: relative;
  width: 260px;
  height: 260px;
}

.demo-player-platter::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 218deg,
      rgba(0, 0, 0, 0) 0deg,
      rgba(0, 0, 0, 0) 292deg,
      rgba(88, 228, 255, 0.04) 308deg,
      rgba(255, 92, 188, 0.12) 326deg,
      rgba(255, 223, 122, 0.18) 342deg,
      rgba(255, 255, 255, 0.22) 350deg,
      rgba(0, 0, 0, 0) 360deg
    );
  mask: radial-gradient(circle, transparent 69%, black 72%, black 76%, transparent 79%);
  animation: platter-orbit 4.8s linear infinite paused;
  z-index: 3;
}

.demo-player-platter::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  margin-top: -116px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff4cf 0%, #ffd85c 34%, #ff59bc 72%, rgba(255, 89, 188, 0.18) 100%);
  box-shadow:
    0 0 10px rgba(255, 216, 92, 0.95),
    0 0 20px rgba(255, 89, 188, 0.55),
    -12px 0 10px rgba(255, 255, 255, 0.18),
    -24px 0 14px rgba(255, 216, 92, 0.16),
    -38px 0 18px rgba(255, 89, 188, 0.18),
    -56px 0 24px rgba(255, 89, 188, 0.12),
    -74px 0 28px rgba(87, 232, 255, 0.09);
  transform-origin: 0 116px;
  animation: platter-orbit 4.8s linear infinite paused;
  z-index: 4;
}

.demo-player-platter.is-spinning::before,
.demo-player-platter.is-spinning::after {
  animation-play-state: running;
}

.demo-player-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.demo-player-ring-outer {
  border: 6px solid rgba(228, 235, 248, 0.88);
  box-shadow: 0 0 0 6px rgba(58, 105, 184, 0.15);
}

.demo-player-ring-inner {
  inset: 32px;
  border: 7px solid rgba(33, 45, 77, 0.72);
}

.demo-player-logo {
  position: absolute;
  inset: 62px;
  width: calc(100% - 124px);
  height: calc(100% - 124px);
  object-fit: contain;
  opacity: 0.42;
  filter: brightness(1.08) contrast(1.04);
}

.demo-player-core {
  position: absolute;
  inset: 104px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(22, 27, 44, 0.78), rgba(14, 18, 32, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-player-kicker,
.demo-volume-label {
  margin: 0;
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-player-info h3 {
  margin: 4px 0 6px;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.08;
}

.demo-player-info > p:last-of-type,
.demo-player-info > p {
  color: var(--muted);
}

.demo-player-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.demo-player-signal span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 216, 92, 0.2);
  background: rgba(31, 24, 7, 0.38);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.demo-progress-block {
  margin-bottom: 16px;
}

.demo-slider {
  width: 100%;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.demo-slider::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(87, 232, 255, 0.22), rgba(255, 89, 188, 0.26));
  border: 1px solid rgba(87, 232, 255, 0.12);
}

.demo-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: -6px;
  background: linear-gradient(135deg, #8ff4ff, #57e8ff);
  box-shadow: 0 0 12px rgba(87, 232, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.demo-time-row,
.demo-secondary-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.demo-time-row {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.8rem;
}

.demo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.demo-control-btn,
.demo-mute-btn {
  border: 1px solid rgba(87, 232, 255, 0.22);
  background: rgba(16, 23, 40, 0.74);
  color: var(--text);
  border-radius: 14px;
  padding: 11px 16px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 160ms ease;
}

.demo-control-btn:hover,
.demo-mute-btn:hover {
  transform: translateY(-1px);
}

.demo-control-btn-primary {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), #9df3ff 60%, #c4ffff);
  box-shadow: 0 0 28px rgba(87, 232, 255, 0.18);
}

.demo-volume-wrap {
  display: grid;
  gap: 8px;
  min-width: 180px;
  flex: 1;
}

.demo-volume {
  max-width: 240px;
}

.demo-player-footerline {
  padding-top: 14px;
  border-top: 1px solid rgba(87, 232, 255, 0.12);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.list-grid li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.warn li,
.list-grid.warn li {
  border-color: rgba(255, 89, 188, 0.12);
}

.cta-panel {
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.site-footer {
  position: relative;
  padding: 40px 0 52px;
  border-top: 1px solid rgba(87, 232, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(4, 6, 11, 0.98) 0%, rgba(5, 8, 14, 0.96) 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  max-height: 120px;
  background: linear-gradient(180deg, rgba(87, 232, 255, 0.06), transparent);
  pointer-events: none;
}

.site-footer > .container {
  position: relative;
}

.footer-shell {
  border: 1px solid rgba(194, 64, 255, 0.2);
  border-radius: 22px;
  padding: 18px 22px 16px;
  background:
    linear-gradient(165deg, rgba(13, 19, 32, 0.98), rgba(7, 10, 18, 0.96)),
    radial-gradient(circle at 10% 15%, rgba(87, 232, 255, 0.11), transparent 38%),
    radial-gradient(circle at 92% 8%, rgba(255, 70, 186, 0.1), transparent 32%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(87, 232, 255, 0.05),
    0 22px 48px rgba(0, 0, 0, 0.4);
}

.footer-identity {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(87, 232, 255, 0.1);
}

.footer-logo-app-large {
  display: block;
  width: clamp(72px, 16vw, 96px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: clamp(16px, 4vw, 22px);
  border: 1px solid rgba(87, 232, 255, 0.28);
  background: radial-gradient(circle at 35% 25%, rgba(87, 232, 255, 0.12), rgba(8, 12, 24, 0.6));
  box-shadow:
    0 0 18px rgba(87, 232, 255, 0.18),
    0 0 28px rgba(255, 89, 188, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-identity-titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  max-width: 22rem;
  min-width: 0;
}

.footer-product-name {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.footer-byline {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.footer-byline--center {
  display: block;
}

.footer-byline a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.footer-byline a:hover {
  color: #aef7ff;
  text-shadow: 0 0 12px rgba(87, 232, 255, 0.28);
}

.footer-studio-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(87, 232, 255, 0.18);
  background: rgba(8, 14, 28, 0.55);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.footer-studio-mark img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-studio-mark:hover {
  border-color: rgba(87, 232, 255, 0.35);
  box-shadow: 0 0 16px rgba(87, 232, 255, 0.12);
}

.footer-badges--center {
  justify-content: center;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 22px 44px;
  padding-top: 4px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-nav--center {
  align-items: center;
}

.footer-nav-label {
  margin: 0 0 4px;
  font-family: var(--font-head);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(173, 192, 224, 0.42);
}

.footer-nav a {
  color: rgba(214, 228, 255, 0.78);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-nav a:hover {
  color: var(--cyan);
}

.footer-legal-col {
  min-width: 8.5rem;
}

.footer-legal-col--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links-col {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-legal-col--center .footer-links-col {
  align-items: center;
}

.footer-links-col a {
  font-size: 0.88rem;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(87, 232, 255, 0.22);
  background: rgba(17, 26, 41, 0.88);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-badge-beta {
  border-color: rgba(255, 70, 186, 0.24);
  color: #ff92d1;
  background: rgba(45, 16, 39, 0.82);
}

.footer-copy {
  margin: 16px auto 0;
  max-width: 34rem;
  text-align: center;
  color: rgba(214, 228, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-subline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(87, 232, 255, 0.1);
  color: rgba(173, 192, 224, 0.55);
  font-size: 0.8rem;
}

.footer-subline--center {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-copyright {
  max-width: 30rem;
  line-height: 1.4;
}

.footer-studio-link {
  flex-shrink: 0;
  color: rgba(87, 232, 255, 0.65);
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.footer-studio-link:hover {
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(87, 232, 255, 0.22);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes knight-sweep {
  0% { left: 12%; opacity: 0.8; }
  50% { opacity: 1; }
  100% { left: 88%; opacity: 0.74; }
}

@keyframes platter-orbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes ribbon-flow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ribbon-track {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .flow-demo-grid,
  .split-grid,
  .demo-mix-layout,
  .feature-grid,
  .steps,
  .steps-grid,
  .download-summary-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .hero-grid,
  .flow-demo-grid,
  .split-grid,
  .demo-mix-layout,
  .feature-grid,
  .steps,
  .steps-grid,
  .download-summary-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
  }

  .brand-copy,
  .hero-copy,
  .hero-visual {
    min-width: 0;
  }

    .header-actions {
      justify-self: start;
      width: 100%;
      flex-wrap: wrap;
    }

    .footer-shell {
      padding: 18px 18px 16px;
    }

    .footer-links {
      justify-content: flex-start;
    }

    .footer-subline {
      justify-content: flex-start;
    }

  .header-actions .btn {
    width: 100%;
  }

  .lang-switch {
    width: fit-content;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .footer-identity {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-bottom: 12px;
  }

  .footer-identity-titles {
    align-items: center;
  }

  .footer-copy {
    margin-top: 12px;
  }

  .footer-subline,
  .footer-subline--center {
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 36px 0 60px;
  }

  .hero-eyebrow {
    justify-content: center;
    text-align: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 10vw, 2.85rem);
    line-height: 1.04;
    letter-spacing: 0.015em;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-lead,
  .hero-note {
    max-width: 100%;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .flow-demo-container {
    width: min(94vw, 720px);
  }

  .flow-demo-status strong {
    font-size: 0.76rem;
  }

  .flow-demo-status p {
    font-size: 0.94rem;
  }

  .hero-panel {
    padding: 18px;
  }

  .flow-demo-canvas-shell {
    padding: 14px;
    border-radius: 22px;
  }

  .flow-demo-canvas-frame {
    aspect-ratio: 920 / 780;
  }

  .demo-mix-sidebar,
  .demo-mix-player {
    padding: 16px;
  }

  .demo-mix-list {
    max-height: 392px;
  }

  .demo-player-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-video-volume-inline {
    min-width: 100%;
    order: 4;
    padding: 0;
  }

  .hero-video-controls {
    padding: 12px 10px 8px;
  }

  .hero-video-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .hero-video-progress-wrap {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .hero-video-progress {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-video-time {
    width: 100%;
    min-width: 0;
  }

  .hero-video-mobile-audio {
    display: inline-flex;
  }

  .demo-player-platter {
    width: 220px;
    height: 220px;
  }

  .demo-player-logo {
    inset: 52px;
    width: calc(100% - 104px);
    height: calc(100% - 104px);
  }

  .demo-player-core {
    inset: 86px;
  }

  .demo-secondary-controls,
  .demo-player-footerline {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-volume-wrap,
  .demo-volume {
    max-width: none;
    width: 100%;
  }

  .hero-platter {
    width: 220px;
    height: 220px;
  }

  .platter-logo {
    inset: 54px;
    width: calc(100% - 108px);
    height: calc(100% - 108px);
  }

  .platter-core {
    inset: 85px;
  }
}
