﻿/* Vidirol — studio-grade landing: ambient layers, motion, hardware fantasy panel */

:root {
  --bg-deep: #040405;
  --bg: #09090c;
  --bg-elevated: #111118;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f4f8;
  --text-muted: #9090a3;
  --accent: #5eead4;
  --accent-dim: rgba(94, 234, 212, 0.14);
  --accent-hot: #f472b6;
  --gradient-start: #5eead4;
  --gradient-mid: #a78bfa;
  --gradient-end: #f472b6;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 72px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(30, 28, 36, 0.9), transparent 55%),
    linear-gradient(180deg, #070709 0%, var(--bg-deep) 42%, #030304 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* —— Ambient atmosphere —— */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.42;
  will-change: transform;
  animation: blob-float 18s var(--ease) infinite;
}

.ambient-blob--a {
  width: min(90vw, 560px);
  height: min(90vw, 560px);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle at 30% 30%, rgba(94, 234, 212, 0.45), transparent 55%);
  animation-delay: 0s;
}

.ambient-blob--b {
  width: min(80vw, 480px);
  height: min(80vw, 480px);
  top: 35%;
  right: -15%;
  background: radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.4), transparent 60%);
  animation-delay: -6s;
  animation-duration: 22s;
}

.ambient-blob--c {
  width: min(70vw, 420px);
  height: min(70vw, 420px);
  bottom: -10%;
  left: 25%;
  background: radial-gradient(circle at 60% 40%, rgba(244, 114, 182, 0.28), transparent 55%);
  animation-delay: -12s;
  animation-duration: 20s;
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, -3%) scale(1.05);
  }
  66% {
    transform: translate(-3%, 4%) scale(0.96);
  }
}

.ambient-grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, black 20%, transparent 70%);
  opacity: 0.38;
  animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
  to {
    transform: translate(-64px, -64px);
  }
}

.ambient-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 70% at 50% 40%, transparent 0%, var(--bg-deep) 78%);
}

.ambient-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.045) 2px,
    rgba(0, 0, 0, 0.045) 4px
  );
  opacity: 0.55;
  animation: scan-flicker 6s steps(2) infinite;
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      92deg,
      transparent,
      transparent 13px,
      rgba(255, 255, 255, 0.012) 13px,
      rgba(255, 255, 255, 0.012) 14px
    ),
    repeating-linear-gradient(
      -4deg,
      transparent,
      transparent 47px,
      rgba(0, 0, 0, 0.04) 47px,
      rgba(0, 0, 0, 0.04) 48px
    );
  opacity: 0.65;
  mix-blend-mode: overlay;
}

@keyframes scan-flicker {
  0%,
  90% {
    opacity: 0.35;
  }
  92% {
    opacity: 0.42;
  }
  100% {
    opacity: 0.35;
  }
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.075;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

a:hover {
  color: #9cfcec;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline-offset: 2px;
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
}

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

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(5, 5, 6, 0.65);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 6, 0.88);
  border-bottom-color: var(--border);
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.8);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--text);
  background: linear-gradient(120deg, var(--text) 0%, var(--text) 40%, var(--accent) 50%, var(--text) 60%, var(--text) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 0.6s var(--ease);
}

.logo:hover {
  background-position: 100% 0;
  color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav a:not(.nav-cta) {
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--gradient-mid));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav a:not(.nav-cta):hover {
  color: var(--text);
}

.nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.18), rgba(167, 139, 250, 0.12));
  color: #c6fff4 !important;
  border: 1px solid rgba(94, 234, 212, 0.35);
  box-shadow: 0 0 24px -8px rgba(94, 234, 212, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px -6px rgba(94, 234, 212, 0.5);
  border-color: rgba(94, 234, 212, 0.55);
  color: #e6fffb !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0.5rem;
    background: rgba(10, 10, 13, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), visibility 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .nav a:hover {
    background: var(--bg-elevated);
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.25rem, 7vw, 4.25rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3.5rem);
  overflow: visible;
}

/* Tighten spacing when mixers follow hero */
.hero + .section.mixers {
  padding-top: clamp(2rem, 4.5vw, 3rem);
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: min(120%, 900px);
  height: min(80vw, 520px);
  background: radial-gradient(ellipse at center, rgba(94, 234, 212, 0.12) 0%, rgba(167, 139, 250, 0.06) 45%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

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

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-led 2s var(--ease) infinite;
}

@keyframes pulse-led {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.85);
  }
}

.hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 6.5vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-line {
  display: block;
}

.hero-line + .hero-line {
  margin-top: 0.08em;
}

.gradient-text {
  background: linear-gradient(
    110deg,
    var(--gradient-start) 0%,
    var(--gradient-mid) 38%,
    var(--gradient-end) 78%,
    var(--gradient-start) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-flow 7s linear infinite;
}

@keyframes gradient-flow {
  to {
    background-position: 200% center;
  }
}

.hero-lead {
  max-width: 36rem;
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.9rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #14b8a6, #5eead4 45%, #2dd4bf);
  color: #042a28 !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 16px 48px -12px rgba(94, 234, 212, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 22px 56px -8px rgba(94, 234, 212, 0.65);
  color: #021f1e !important;
}

.btn-shine {
  position: absolute;
  inset: 0;
  translate: -100% 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.btn-primary:hover .btn-shine {
  opacity: 1;
  animation: btn-shine-sweep 0.85s var(--ease) forwards;
}

@keyframes btn-shine-sweep {
  to {
    translate: 100% 0;
  }
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text) !important;
}

.btn-glass {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.btn-ghost:hover,
.btn-glass:hover {
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--border);
}

.hero-stat dt {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stat dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Hero hardware panel */
.hero-panel-wrap {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  transform-style: preserve-3d;
  animation: panel-float 7s var(--ease) infinite;
}

@media (min-width: 960px) {
  .hero-panel-wrap {
    justify-content: flex-end;
  }
}

@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 420px;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

.hero-showcase-glow {
  position: absolute;
  inset: -15% -10%;
  background:
    radial-gradient(circle at 45% 42%, rgba(94, 234, 212, 0.22), transparent 52%),
    radial-gradient(circle at 60% 58%, rgba(167, 139, 250, 0.14), transparent 48%);
  filter: blur(36px);
  z-index: 0;
  animation: glow-breathe 5s var(--ease) infinite;
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-showcase-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  min-height: 200px;
  max-height: 240px;
}

.hero-showcase-img {
  position: absolute;
  width: 36%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
  animation: hero-layer-float 7s var(--ease) infinite;
  --layer-x: 0;
}

.hero-showcase-img--back {
  top: 4%;
  left: 0;
  z-index: 1;
  --layer-rotate: -7deg;
  animation-delay: 0s;
}

.hero-showcase-img--mid {
  top: 4%;
  right: 0;
  left: auto;
  z-index: 1;
  --layer-rotate: 7deg;
  animation-delay: -2.3s;
}

.hero-showcase-img--front {
  bottom: 2%;
  left: 50%;
  right: auto;
  width: 42%;
  z-index: 2;
  --layer-rotate: 0deg;
  --layer-x: -50%;
  animation-delay: -4.6s;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.5));
}

@keyframes hero-layer-float {
  0%,
  100% {
    transform: rotate(var(--layer-rotate)) translate(var(--layer-x), 0);
  }
  50% {
    transform: rotate(var(--layer-rotate)) translate(var(--layer-x), -5px);
  }
}

@media (max-width: 520px) {
  .hero-showcase {
    max-width: 320px;
  }

  .hero-showcase-stage {
    min-height: 170px;
    max-height: 200px;
  }

  .hero-showcase-img {
    width: 34%;
  }

  .hero-showcase-img--front {
    width: 40%;
  }
}

/* —— Sections —— */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.25rem, 5.5vw, 3.75rem) clamp(1.25rem, 4vw, 2.5rem);
}

main .section + .section {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  letter-spacing: -0.035em;
}

.section-intro {
  margin: 0 0 2rem;
  max-width: 42rem;
  color: var(--text-muted);
}

.section-manual {
  margin: 0 0 2rem;
}

.section-manual-btn {
  display: inline-flex;
  padding: 1.15rem 2.5rem;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 20px 56px -14px rgba(94, 234, 212, 0.5);
}

.section-manual-btn:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 26px 64px -10px rgba(94, 234, 212, 0.62);
}

/* Features */
.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  --spot-x: 50%;
  --spot-y: 50%;
  margin: 0;
  padding: 1.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.45s var(--ease);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--spot-x) var(--spot-y),
    rgba(94, 234, 212, 0.12),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(94, 234, 212, 0.22);
  box-shadow:
    0 32px 64px -36px rgba(0, 0, 0, 0.9),
    0 0 40px -16px rgba(94, 234, 212, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(94, 234, 212, 0.35));
  transition: transform 0.4s var(--ease);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-8deg);
}

.feature-card h3 {
  position: relative;
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-card p {
  position: relative;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Mixers + marquee */
.mixers {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(167, 139, 250, 0.05) 42%, transparent 100%);
}

.mixer-marquee {
  margin: 0 0 2.25rem;
}

.mixer-marquee-mask {
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  overflow: hidden;
  /* Room for hover lift so chips are not clipped top/bottom */
  padding: 0.85rem 0;
  margin: -0.85rem 0;
}

.mixer-marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 40s linear infinite;
}

.mixer-marquee-mask:hover .mixer-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.mixer-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

.mixer-chips--row {
  flex-shrink: 0;
}

.mixer-chips li.mixer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem 0.5rem 0.5rem;
  background: linear-gradient(135deg, rgba(18, 18, 26, 0.95), rgba(12, 12, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 1rem;
  color: var(--text-muted);
  white-space: nowrap;
  box-shadow: 0 12px 32px -20px rgba(0, 0, 0, 0.8);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.mixer-chip-thumb {
  flex-shrink: 0;
  width: 160px;
  height: 88px;
  /* Transparent PNG/JPG thumbnails: no "boxed" treatment */
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mixer-chip-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mixer-chips li.mixer-chip:hover {
  border-color: rgba(167, 139, 250, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(167, 139, 250, 0.2);
}

.mixer-chips li.mixer-chip:hover .mixer-chip-thumb {
  border-color: transparent;
}

.mixer-chips strong {
  color: var(--text);
  font-weight: 600;
}

.mixers-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 40rem;
}

@media (max-width: 640px) {
  .mixer-marquee-track {
    gap: 2rem;
  }

  .mixer-chip-thumb {
    width: 120px;
    height: 66px;
    border-radius: 10px;
  }

  .mixer-chips li.mixer-chip {
    font-size: 0.875rem;
    padding: 0.4rem 0.95rem 0.4rem 0.4rem;
  }
}

/* How — timeline */
.how .steps {
  position: relative;
}

.how .steps::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 2.75rem;
  bottom: 2.75rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(94, 234, 212, 0.35), rgba(167, 139, 250, 0.25), rgba(244, 114, 182, 0.2));
  border-radius: 2px;
  opacity: 0.6;
}

@media (max-width: 520px) {
  .how .steps::before {
    left: 1.1rem;
  }
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.steps li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(145deg, rgba(94, 234, 212, 0.2), rgba(167, 139, 250, 0.12));
  color: #b8fff0;
  border: 1px solid rgba(94, 234, 212, 0.35);
  box-shadow: 0 0 24px -8px rgba(94, 234, 212, 0.35);
  z-index: 1;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.steps li:hover .step-num {
  transform: scale(1.08);
  box-shadow: 0 0 32px -6px rgba(94, 234, 212, 0.5);
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Creator — panel label / gear sticker */
.creator {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.creator-sticker-wrap {
  max-width: 40rem;
  margin: 0 auto;
}

.creator-quote {
  margin: 0;
  padding: 0 0 1.2rem;
  background:
    radial-gradient(circle at 12px 12px, rgba(148, 163, 175, 0.45) 2.5px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 12px) 12px, rgba(148, 163, 175, 0.45) 2.5px, transparent 2.5px),
    radial-gradient(circle at 12px calc(100% - 12px), rgba(148, 163, 175, 0.45) 2.5px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 12px) calc(100% - 12px), rgba(148, 163, 175, 0.45) 2.5px, transparent 2.5px),
    linear-gradient(165deg, #4a5568 0%, #3a4454 40%, #2d3544 100%);
  border: 2px solid rgba(148, 180, 200, 0.35);
  border-radius: 5px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 0 24px -8px rgba(94, 234, 212, 0.12),
    0 14px 36px -12px rgba(0, 0, 0, 0.55),
    5px 8px 0 rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  transform: rotate(-1.4deg);
  transition: transform 0.4s var(--ease);
}

.creator-quote:hover {
  transform: rotate(-0.6deg) translateY(-2px);
}

.creator-quote::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.35rem;
  height: 1.35rem;
  background: linear-gradient(225deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 45%, transparent 46%);
  pointer-events: none;
}

.creator-quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.03) 3px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.35;
  pointer-events: none;
}

.creator-quote-label {
  display: block;
  position: relative;
  z-index: 1;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(210, 250, 244, 0.92);
  background: linear-gradient(90deg, rgba(94, 234, 212, 0.14), rgba(167, 139, 250, 0.08));
  border-bottom: 1px solid rgba(94, 234, 212, 0.2);
}

.creator-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1.1rem 1.15rem 1rem;
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  line-height: 1.62;
  color: rgba(236, 240, 248, 0.9);
  font-style: normal;
  background: linear-gradient(180deg, rgba(22, 28, 38, 0.72), rgba(16, 20, 28, 0.85));
  border-bottom: 1px solid rgba(94, 234, 212, 0.08);
}

.creator-quote footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1.15rem 0;
}

.creator-quote cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 248, 252, 0.95);
}

.creator-role {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(167, 180, 200, 0.82);
}

/* CTA */
.cta-block {
  padding-bottom: clamp(2.5rem, 8vw, 4.5rem);
}

.cta-inner {
  position: relative;
  text-align: center;
  padding: clamp(2.75rem, 7vw, 4.5rem);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(94, 234, 212, 0.2);
  background: linear-gradient(155deg, rgba(94, 234, 212, 0.1), rgba(167, 139, 250, 0.08) 50%, rgba(244, 114, 182, 0.06));
  overflow: hidden;
  box-shadow: 0 40px 100px -50px rgba(94, 234, 212, 0.25);
}

.cta-aurora {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(94, 234, 212, 0.2), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(244, 114, 182, 0.15), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(167, 139, 250, 0.12), transparent 45%);
  animation: aurora-shift 12s var(--ease) infinite;
  pointer-events: none;
}

@keyframes aurora-shift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(3%, -2%) rotate(3deg);
  }
  66% {
    transform: translate(-2%, 2%) rotate(-2deg);
  }
}

.cta-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cta-rings span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: ring-pulse 5s var(--ease) infinite;
}

.cta-rings span:nth-child(1) {
  width: 180px;
  height: 180px;
  animation-delay: 0s;
}

.cta-rings span:nth-child(2) {
  width: 280px;
  height: 280px;
  animation-delay: 0.6s;
}

.cta-rings span:nth-child(3) {
  width: 400px;
  height: 400px;
  animation-delay: 1.2s;
}

@keyframes ring-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.08;
    transform: scale(1.04);
  }
}

.cta-title,
.cta-copy,
.cta-inner .btn {
  position: relative;
  z-index: 1;
}

.cta-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  letter-spacing: -0.03em;
}

.cta-copy {
  margin: 0 auto 1.85rem;
  max-width: 28rem;
  color: rgba(236, 236, 241, 0.85);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(5, 5, 6, 0.6);
  backdrop-filter: blur(8px);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 28rem;
  line-height: 1.5;
}

/* Hero reveal stagger */
.hero .reveal {
  transition-delay: 0ms;
}

.hero .reveal[data-reveal-delay="120"] {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .ambient-blob,
  .ambient-grid,
  .ambient-scan,
  .gradient-text,
  .mixer-marquee-track,
  .hero-panel-wrap,
  .hero-showcase-glow,
  .hero-showcase-img,
  .cta-aurora,
  .cta-rings span,
  .eyebrow-pulse,
  .btn-primary:hover .btn-shine {
    animation: none !important;
  }

  .feature-card:hover,
  .creator-quote:hover {
    transform: none;
  }

  .creator-quote {
    transform: none;
  }
}

