:root {
  --black: #000000;
  --deep: #02020a;
  --cyan: #00eaff;
  --cyan-dark: #006b78;
  --purple: #8b5cff;
  --pink: #ff3cac;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.58);

  --orbitron: "Orbitron", sans-serif;
  --montserrat: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
}

body {
  font-family: var(--montserrat);
  color: #fff;
}

/* =========================================================
   MAIN
========================================================= */

.intro {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at center,
      #111126 0%,
      #05050d 42%,
      #000 100%
    );
}

/* =========================================================
   BACKGROUND
========================================================= */

.background {
  position: absolute;
  inset: -20%;
  z-index: -10;

  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(0,234,255,0.16),
      transparent 25%
    ),
    radial-gradient(
      circle at 75% 70%,
      rgba(139,92,255,0.17),
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255,60,172,0.07),
      transparent 42%
    );

  animation:
    backgroundDrift
    16s
    ease-in-out
    infinite
    alternate;
}

.stars {
  position: absolute;
  inset: 0;
  z-index: -8;
  pointer-events: none;
}

.stars--one {
  opacity: 0.65;

  background-image:
    radial-gradient(
      circle,
      rgba(255,255,255,0.95) 0 1px,
      transparent 1.5px
    );

  background-size:
    83px 83px;

  animation:
    starMove
    30s
    linear
    infinite;
}

.stars--two {
  opacity: 0.35;

  background-image:
    radial-gradient(
      circle,
      rgba(0,234,255,0.9) 0 1px,
      transparent 1.5px
    );

  background-size:
    137px 137px;

  background-position:
    42px 73px;

  animation:
    starMove
    45s
    linear
    infinite reverse;
}

.ambient-glow {
  position: absolute;
  width: 45vw;
  height: 45vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.16;
  z-index: -7;
}

.ambient-glow--one {
  left: -15%;
  top: 20%;
  background: var(--cyan);
}

.ambient-glow--two {
  right: -15%;
  bottom: 10%;
  background: var(--purple);
}

.perspective-grid {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -35%;
  height: 75%;
  z-index: -5;
  opacity: 0.13;

  background-image:
    linear-gradient(
      rgba(0,234,255,0.35) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(0,234,255,0.35) 1px,
      transparent 1px
    );

  background-size:
    60px 60px;

  transform:
    perspective(500px)
    rotateX(62deg);

  transform-origin:
    center bottom;

  animation:
    gridMove
    8s
    linear
    infinite;
}

/* =========================================================
   LETTERBOX
========================================================= */

.letterbox {
  position: absolute;
  left: 0;
  right: 0;
  height: 7vh;
  z-index: 100;
  background: #000;
}

.letterbox--top {
  top: 0;
}

.letterbox--bottom {
  bottom: 0;
}

/* =========================================================
   BRAND
========================================================= */

.brand {
  position: absolute;
  top: 8.7vh;
  left: 50%;
  z-index: 110;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
}

.brand__name {
  font-family: var(--orbitron);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
}

.brand__name span {
  color: var(--cyan);
  text-shadow:
    0 0 18px rgba(0,234,255,0.55);
}

.brand__division {
  margin-top: 4px;
  font-family: var(--orbitron);
  font-size: 7px;
  letter-spacing: 0.58em;
  color: rgba(255,255,255,0.45);
}

/* =========================================================
   SCENES
========================================================= */

.scene {
  position: absolute;
  inset: 0;
  z-index: 10;

  opacity: 0;
  visibility: hidden;

  transform:
    scale(1.08);

  transition:
    opacity 0.85s ease,
    transform 1.15s cubic-bezier(0.16,1,0.3,1),
    visibility 0.85s ease;
}

.scene.active {
  opacity: 1;
  visibility: visible;

  transform:
    scale(1);
}

.scene.leaving {
  opacity: 0;

  transform:
    scale(0.94);
}

/* =========================================================
   SCENE META
========================================================= */

.scene-meta {
  position: absolute;
  top: 11vh;
  left: 6vw;
  right: 6vw;

  display: flex;
  justify-content: space-between;

  font-family: var(--orbitron);
  font-size: 9px;
  letter-spacing: 0.28em;

  color: rgba(255,255,255,0.42);
}

.scene-meta span:first-child {
  color: var(--cyan);
}

/* =========================================================
   SCENE CONTENT
========================================================= */

.scene-content {
  position: absolute;
  left: 50%;
  top: 59%;
  width: min(900px, 88vw);

  transform:
    translate(-50%, -50%);

  text-align: center;
}

.scene-kicker {
  margin-bottom: 18px;

  font-family: var(--orbitron);
  font-size: clamp(9px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.5em;

  color: var(--cyan);

  text-shadow:
    0 0 18px rgba(0,234,255,0.75);
}

.scene h1 {
  margin: 0;

  font-family: var(--orbitron);
  font-size: clamp(38px, 7vw, 94px);
  font-weight: 700;
  line-height: 0.95;

  letter-spacing: -0.045em;
}

.scene h1 strong {
  display: block;

  color: transparent;

  background:
    linear-gradient(
      90deg,
      var(--cyan),
      var(--purple),
      var(--pink)
    );

  background-clip: text;
  -webkit-background-clip: text;

  filter:
    drop-shadow(
      0 0 22px
      rgba(139,92,255,0.35)
    );
}

.scene-content p {
  max-width: 650px;
  margin: 28px auto 0;

  color: var(--muted);

  font-size: clamp(12px, 1.3vw, 17px);
  line-height: 1.7;
}

/* =========================================================
   MICROPHONE
========================================================= */

.microphone {
  position: absolute;
  left: 50%;
  top: 30%;

  width: 100px;
  height: 175px;

  transform:
    translate(-50%, -50%);

  filter:
    drop-shadow(
      0 0 25px
      rgba(0,234,255,0.55)
    );
}

.microphone__halo {
  position: absolute;
  left: 50%;
  top: 20px;

  width: 190px;
  height: 190px;

  transform:
    translateX(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0,234,255,0.17),
      transparent 68%
    );

  animation:
    microphoneHalo
    2s
    ease-in-out
    infinite
    alternate;
}

.microphone__head {
  position: absolute;
  left: 50%;
  top: 0;

  width: 68px;
  height: 100px;

  transform:
    translateX(-50%);

  border:
    2px solid
    rgba(0,234,255,0.85);

  border-radius: 38px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.13),
      rgba(0,234,255,0.04)
    );

  box-shadow:
    inset 0 0 22px
    rgba(0,234,255,0.2),

    0 0 30px
    rgba(0,234,255,0.35);
}

.microphone__lines {
  position: absolute;
  inset: 10px;

  border-radius: 30px;

  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 5px,
      rgba(255,255,255,0.15) 6px
    );
}

.microphone__neck {
  position: absolute;
  left: 50%;
  top: 94px;

  width: 4px;
  height: 43px;

  transform:
    translateX(-50%);

  background:
    var(--cyan);

  box-shadow:
    0 0 14px
    var(--cyan);
}

.microphone__arm {
  position: absolute;
  left: 50%;
  top: 128px;

  width: 3px;
  height: 30px;

  transform:
    translateX(-50%);

  background:
    rgba(255,255,255,0.75);
}

.microphone__base {
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 72px;
  height: 5px;

  transform:
    translateX(-50%);

  border-radius: 50%;

  background:
    var(--cyan);

  box-shadow:
    0 0 18px
    var(--cyan);
}

/* =========================================================
   SOUND RINGS
========================================================= */

.sound-rings {
  position: absolute;
  left: 50%;
  top: 30%;

  width: 420px;
  height: 420px;

  transform:
    translate(-50%, -50%);
}

.sound-rings span {
  position: absolute;
  left: 50%;
  top: 50%;

  border:
    1px solid
    rgba(0,234,255,0.55);

  border-radius: 50%;

  transform:
    translate(-50%, -50%)
    scale(0.45);

  opacity: 0;

  animation:
    soundRing
    3s
    ease-out
    infinite;
}

.sound-rings span:nth-child(1) {
  width: 90px;
  height: 90px;
}

.sound-rings span:nth-child(2) {
  width: 160px;
  height: 160px;
  animation-delay: 0.5s;
}

.sound-rings span:nth-child(3) {
  width: 230px;
  height: 230px;
  animation-delay: 1s;
}

.sound-rings span:nth-child(4) {
  width: 300px;
  height: 300px;
  animation-delay: 1.5s;
}

.sound-rings span:nth-child(5) {
  width: 370px;
  height: 370px;
  animation-delay: 2s;
}

/* =========================================================
   WAVEFORM
========================================================= */

.waveform {
  position: absolute;
  left: 50%;
  bottom: 14vh;

  display: flex;
  align-items: center;
  justify-content: center;

  width: min(500px, 80vw);
  height: 35px;

  transform:
    translateX(-50%);

  gap: 5px;
}

.waveform i {
  width: 3px;
  height: 10px;

  border-radius: 10px;

  background:
    linear-gradient(
      180deg,
      var(--cyan),
      var(--purple)
    );

  box-shadow:
    0 0 8px
    rgba(0,234,255,0.65);

  animation:
    waveformPulse
    0.8s
    ease-in-out
    infinite
    alternate;
}

.waveform i:nth-child(2n) {
  animation-delay: 0.12s;
}

.waveform i:nth-child(3n) {
  animation-delay: 0.24s;
}

.waveform i:nth-child(4n) {
  animation-delay: 0.36s;
}

.waveform i:nth-child(5n) {
  animation-delay: 0.48s;
}

/* =========================================================
   STUDIO ORB
========================================================= */

.studio-orb {
  position: absolute;
  left: 50%;
  top: 28%;

  width: 190px;
  height: 190px;

  transform:
    translate(-50%, -50%);
}

.studio-orb__outer,
.studio-orb__middle,
.studio-orb__inner {
  position: absolute;
  border-radius: 50%;
}

.studio-orb__outer {
  inset: 0;

  border:
    1px solid
    rgba(0,234,255,0.3);

  animation:
    orbitRotate
    8s
    linear
    infinite;
}

.studio-orb__middle {
  inset: 25px;

  border:
    1px solid
    rgba(139,92,255,0.55);

  animation:
    orbitRotateReverse
    6s
    linear
    infinite;
}

.studio-orb__inner {
  inset: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle,
      #161633,
      #04040b
    );

  border:
    1px solid
    rgba(0,234,255,0.8);

  box-shadow:
    0 0 35px
    rgba(139,92,255,0.5);

  animation:
    orbPulse
    2.2s
    ease-in-out
    infinite;
}

.studio-bars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.studio-bars i {
  width: 3px;
  height: 14px;

  background:
    var(--cyan);

  box-shadow:
    0 0 8px
    var(--cyan);

  animation:
    studioBars
    0.7s
    ease-in-out
    infinite
    alternate;
}

.studio-bars i:nth-child(2) {
  animation-delay: 0.1s;
}

.studio-bars i:nth-child(3) {
  animation-delay: 0.2s;
}

.studio-bars i:nth-child(4) {
  height: 32px;
  animation-delay: 0.3s;
}

.studio-bars i:nth-child(5) {
  animation-delay: 0.4s;
}

.studio-bars i:nth-child(6) {
  animation-delay: 0.5s;
}

.studio-bars i:nth-child(7) {
  animation-delay: 0.6s;
}

/* =========================================================
   RECORDING PANEL
========================================================= */

.recording-panel {
  position: absolute;
  left: 50%;
  top: 38%;

  width: min(680px, 82vw);

  padding: 16px;

  transform:
    translateX(-50%);

  border:
    1px solid
    rgba(255,255,255,0.12);

  border-radius: 12px;

  background:
    rgba(3,3,10,0.72);

  backdrop-filter:
    blur(15px);

  box-shadow:
    0 25px 80px
    rgba(0,0,0,0.5);
}

.recording-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-family:
    var(--orbitron);

  font-size: 8px;
  letter-spacing: 0.16em;

  color:
    rgba(255,255,255,0.58);
}

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

.recording-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background:
    #ff315c;

  box-shadow:
    0 0 12px
    #ff315c;

  animation:
    recordingDot
    1s
    infinite;
}

.recording-time {
  color:
    var(--cyan);
}

.recording-wave {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 4px;

  height: 60px;
  margin-top: 10px;
}

.recording-wave i {
  width: 3px;
  height: 9px;

  border-radius: 5px;

  background:
    linear-gradient(
      180deg,
      var(--cyan),
      var(--purple)
    );

  animation:
    recordingWave
    0.9s
    ease-in-out
    infinite
    alternate;
}

.recording-wave i:nth-child(2n) {
  animation-delay: 0.1s;
}

.recording-wave i:nth-child(3n) {
  animation-delay: 0.2s;
}

.recording-wave i:nth-child(4n) {
  animation-delay: 0.3s;
}

.recording-wave i:nth-child(5n) {
  animation-delay: 0.4s;
}

.recording-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.recording-controls span {
  width: 7px;
  height: 7px;

  border:
    1px solid
    rgba(255,255,255,0.3);

  border-radius: 50%;
}

.recording-controls strong {
  color:
    #ff315c;

  font-size: 20px;

  text-shadow:
    0 0 15px
    #ff315c;
}

/* =========================================================
   UNIVERSE
========================================================= */

.universe {
  position: absolute;
  left: 50%;
  top: 34%;

  width: min(450px, 72vw);
  aspect-ratio: 1;

  transform:
    translate(-50%, -50%);
}

.universe__orbit {
  position: absolute;
  left: 50%;
  top: 50%;

  border:
    1px solid
    rgba(0,234,255,0.25);

  border-radius: 50%;

  transform:
    translate(-50%, -50%)
    rotateX(63deg);
}

.universe__orbit--1 {
  width: 180px;
  height: 180px;

  animation:
    universeOrbit
    7s
    linear
    infinite;
}

.universe__orbit--2 {
  width: 290px;
  height: 290px;

  border-color:
    rgba(139,92,255,0.3);

  animation:
    universeOrbitReverse
    11s
    linear
    infinite;
}

.universe__orbit--3 {
  width: 410px;
  height: 410px;

  border-color:
    rgba(255,60,172,0.18);

  animation:
    universeOrbit
    17s
    linear
    infinite;
}

.universe__core {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 92px;
  height: 92px;

  transform:
    translate(-50%, -50%);

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 30%,
      #ffffff 0%,
      var(--cyan) 13%,
      var(--purple) 46%,
      #12051e 76%
    );

  box-shadow:
    0 0 35px
    rgba(0,234,255,0.65),

    0 0 85px
    rgba(139,92,255,0.5);

  animation:
    universePulse
    2.5s
    ease-in-out
    infinite;
}

.universe__core span {
  font-family:
    var(--orbitron);

  font-size: 23px;
  font-weight: 900;

  text-shadow:
    0 0 15px
    rgba(255,255,255,0.9);
}

.universe__planet {
  position: absolute;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background:
    var(--cyan);

  box-shadow:
    0 0 14px
    var(--cyan);
}

.universe__planet--1 {
  left: 15%;
  top: 34%;
}

.universe__planet--2 {
  right: 12%;
  top: 24%;

  background:
    var(--purple);

  box-shadow:
    0 0 14px
    var(--purple);
}

.universe__planet--3 {
  right: 15%;
  bottom: 24%;

  background:
    var(--pink);

  box-shadow:
    0 0 14px
    var(--pink);
}

.universe__planet--4 {
  left: 19%;
  bottom: 18%;
}

.universe__planet--5 {
  left: 50%;
  top: 3%;

  background:
    #fff;

  box-shadow:
    0 0 14px
    #fff;
}

/* =========================================================
   NETWORK
========================================================= */

.network {
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.network__node {
  position: absolute;

  padding:
    7px
    12px;

  border:
    1px solid
    rgba(0,234,255,0.3);

  border-radius:
    30px;

  background:
    rgba(0,234,255,0.035);

  font-family:
    var(--orbitron);

  font-size: 7px;
  letter-spacing: 0.18em;

  color:
    rgba(255,255,255,0.65);

  box-shadow:
    0 0 20px
    rgba(0,234,255,0.06);

  animation:
    nodeFloat
    4s
    ease-in-out
    infinite;
}

.network__node--1 {
  left: 9%;
  top: 33%;
}

.network__node--2 {
  right: 8%;
  top: 28%;

  animation-delay:
    0.8s;
}

.network__node--3 {
  right: 11%;
  bottom: 28%;

  animation-delay:
    1.5s;
}

.network__node--4 {
  left: 8%;
  bottom: 25%;

  animation-delay:
    2.2s;
}

/* =========================================================
   FINAL MESSAGE
========================================================= */

.final-message {
  position: absolute;
  left: 50%;
  top: 68%;

  width: 92vw;

  transform:
    translate(-50%, -50%);

  text-align: center;
}

.final-message__brand {
  font-family:
    var(--orbitron);

  font-size:
    clamp(28px, 5vw, 66px);

  font-weight:
    900;

  letter-spacing:
    0.04em;
}

.final-message__brand span {
  color:
    var(--cyan);

  text-shadow:
    0 0 25px
    rgba(0,234,255,0.55);
}

.final-message__division {
  margin-top: 8px;

  font-family:
    var(--orbitron);

  font-size:
    clamp(11px, 1.5vw, 18px);

  letter-spacing:
    0.55em;

  color:
    var(--purple);
}

.final-message__tagline {
  margin-top: 22px;

  font-size:
    clamp(8px, 1.15vw, 14px);

  letter-spacing:
    0.28em;

  color:
    rgba(255,255,255,0.55);
}

/* =========================================================
   STATUS
========================================================= */

.status {
  position: absolute;

  left: 6vw;
  bottom: 10.5vh;

  z-index: 120;

  font-family:
    var(--orbitron);

  font-size: 8px;

  letter-spacing:
    0.2em;

  color:
    rgba(255,255,255,0.45);
}

/* =========================================================
   PROGRESS
========================================================= */

.progress {
  position: absolute;

  left: 6vw;
  right: 6vw;
  bottom: 8.5vh;

  height: 1px;

  z-index: 120;

  background:
    rgba(255,255,255,0.12);
}

.progress__bar {
  width: 0%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--cyan),
      var(--purple),
      var(--pink)
    );

  box-shadow:
    0 0 12px
    rgba(0,234,255,0.7);

  transition:
    width 0.08s linear;
}

/* =========================================================
   DOTS
========================================================= */

.scene-dots {
  position: absolute;

  right: 6vw;
  bottom: 10.2vh;

  z-index: 130;

  display: flex;
  gap: 8px;
}

.scene-dot {
  width: 6px;
  height: 6px;

  border:
    1px solid
    rgba(255,255,255,0.3);

  border-radius: 50%;

  transition:
    0.3s ease;
}

.scene-dot.active {
  border-color:
    var(--cyan);

  background:
    var(--cyan);

  box-shadow:
    0 0 10px
    var(--cyan);
}

/* =========================================================
   SKIP
========================================================= */

.skip {
  position: absolute;

  right: 6vw;
  top: 10.4vh;

  z-index: 140;

  padding:
    8px
    12px;

  border:
    1px solid
    rgba(255,255,255,0.18);

  border-radius:
    4px;

  background:
    rgba(0,0,0,0.4);

  color:
    rgba(255,255,255,0.55);

  font-family:
    var(--orbitron);

  font-size:
    7px;

  letter-spacing:
    0.18em;

  cursor:
    pointer;

  transition:
    0.2s ease;
}

.skip:hover,
.skip:focus-visible {
  color:
    #fff;

  border-color:
    var(--cyan);

  box-shadow:
    0 0 15px
    rgba(0,234,255,0.25);

  outline:
    none;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes backgroundDrift {
  from {
    transform:
      translate(-2%, -1%)
      scale(1);
  }

  to {
    transform:
      translate(2%, 1%)
      scale(1.08);
  }
}

@keyframes starMove {
  from {
    transform:
      translateY(0);
  }

  to {
    transform:
      translateY(-100px);
  }
}

@keyframes gridMove {
  from {
    background-position:
      0 0;
  }

  to {
    background-position:
      0 60px;
  }
}

@keyframes microphoneHalo {
  from {
    transform:
      translateX(-50%)
      scale(0.85);

    opacity:
      0.45;
  }

  to {
    transform:
      translateX(-50%)
      scale(1.15);

    opacity:
      1;
  }
}

@keyframes soundRing {
  0% {
    opacity:
      0;

    transform:
      translate(-50%, -50%)
      scale(0.4);
  }

  15% {
    opacity:
      0.8;
  }

  100% {
    opacity:
      0;

    transform:
      translate(-50%, -50%)
      scale(1.05);
  }
}

@keyframes waveformPulse {
  from {
    height:
      7px;
  }

  to {
    height:
      31px;
  }
}

@keyframes orbitRotate {
  from {
    transform:
      rotateX(63deg)
      rotateZ(0deg);
  }

  to {
    transform:
      rotateX(63deg)
      rotateZ(360deg);
  }
}

@keyframes orbitRotateReverse {
  from {
    transform:
      rotateX(63deg)
      rotateZ(360deg);
  }

  to {
    transform:
      rotateX(63deg)
      rotateZ(0deg);
  }
}

@keyframes orbPulse {
  0%,
  100% {
    transform:
      scale(0.92);
  }

  50% {
    transform:
      scale(1.08);
  }
}

@keyframes studioBars {
  from {
    height:
      7px;
  }

  to {
    height:
      29px;
  }
}

@keyframes recordingDot {
  0%,
  100% {
    opacity:
      1;

    transform:
      scale(1);
  }

  50% {
    opacity:
      0.35;

    transform:
      scale(0.65);
  }
}

@keyframes recordingWave {
  from {
    height:
      7px;
  }

  to {
    height:
      45px;
  }
}

@keyframes universePulse {
  0%,
  100% {
    transform:
      translate(-50%, -50%)
      scale(0.94);
  }

  50% {
    transform:
      translate(-50%, -50%)
      scale(1.08);
  }
}

@keyframes universeOrbit {
  from {
    transform:
      translate(-50%, -50%)
      rotateX(63deg)
      rotateZ(0deg);
  }

  to {
    transform:
      translate(-50%, -50%)
      rotateX(63deg)
      rotateZ(360deg);
  }
}

@keyframes universeOrbitReverse {
  from {
    transform:
      translate(-50%, -50%)
      rotateX(63deg)
      rotateZ(360deg);
  }

  to {
    transform:
      translate(-50%, -50%)
      rotateX(63deg)
      rotateZ(0deg);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-9px);
  }
}

/* =========================================================
   FINAL TRANSITION
========================================================= */

.intro.finishing {
  animation:
    introExit
    1.1s
    ease
    forwards;
}

@keyframes introExit {
  from {
    opacity:
      1;

    transform:
      scale(1);
  }

  to {
    opacity:
      0;

    transform:
      scale(1.04);
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .letterbox {
    height:
      5vh;
  }

  .brand {
    top:
      6vh;
  }

  .scene-meta {
    top:
      8vh;

    left:
      5vw;

    right:
      5vw;

    font-size:
      7px;
  }

  .skip {
    top:
      7.8vh;

    right:
      5vw;
  }

  .microphone {
    top:
      27%;

    transform:
      translate(-50%, -50%)
      scale(0.72);
  }

  .sound-rings {
    top:
      27%;

    transform:
      translate(-50%, -50%)
      scale(0.72);
  }

  .waveform {
    bottom:
      13vh;
  }

  .studio-orb {
    top:
      26%;

    transform:
      translate(-50%, -50%)
      scale(0.72);
  }

  .recording-panel {
    top:
      36%;

    width:
      86vw;
  }

  .recording-wave {
    height:
      45px;
  }

  .universe {
    top:
      28%;

    transform:
      translate(-50%, -50%)
      scale(0.68);
  }

  .network__node {
    font-size:
      6px;

    padding:
      6px 8px;
  }

  .final-message {
    top:
      61%;
  }

  .final-message__tagline {
    line-height:
      1.8;

    letter-spacing:
      0.16em;
  }

  .scene-content {
    top:
      55%;

    width:
      90vw;
  }

  .scene-content p {
    margin-top:
      20px;
  }

  .status {
    left:
      5vw;

    bottom:
      7.8vh;

    font-size:
      6px;
  }

  .progress {
    left:
      5vw;

    right:
      5vw;

    bottom:
      6vh;
  }

  .scene-dots {
    right:
      5vw;

    bottom:
      7.5vh;
  }

}
