:root {
  --bg: #060911;
  --bg-soft: #0a0f1c;
  --surface: rgba(15, 22, 38, 0.72);
  --surface-solid: #0e1524;
  --line: rgba(147, 255, 238, 0.14);
  --line-strong: rgba(147, 255, 238, 0.3);
  --text: #f4f7fb;
  --muted: #919daf;
  --cyan: #55f4dc;
  --cyan-bright: #8effee;
  --purple: #8b5cf6;
  --pink: #ff4fbc;
  --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Cascadia Mono", "Consolas", monospace;
  --container: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(61, 211, 191, 0.07), transparent 35%),
    var(--bg);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  color: #03100e;
  background: var(--cyan);
  font-weight: 700;
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(6, 9, 17, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), 1320px);
  height: var(--header-height);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  letter-spacing: 0.04em;
  font-size: 0.96rem;
  font-weight: 800;
}

.brand > span:last-child > span {
  color: var(--cyan);
}

.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--cyan);
  transform: rotate(45deg);
  box-shadow: 0 0 16px rgba(85, 244, 220, 0.45);
}

.brand-mark::after {
  position: absolute;
  inset: 5px;
  border: 1px solid var(--pink);
  content: "";
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.primary-nav a {
  position: relative;
  color: #b8c0ce;
  font-size: 0.76rem;
  font-weight: 600;
  transition: color 0.2s;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  content: "";
  transition: transform 0.2s;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: var(--text);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: var(--header-height);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 9, 17, 0.98) 0%, rgba(6, 9, 17, 0.72) 50%, rgba(6, 9, 17, 0.2) 100%),
    radial-gradient(circle at 78% 43%, rgba(85, 244, 220, 0.12), transparent 34%),
    radial-gradient(circle at 74% 45%, rgba(139, 92, 246, 0.14), transparent 50%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(93, 255, 231, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 255, 231, 0.18) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black 15%, transparent 95%);
}

.hero-grid-bg::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 3%, transparent 45%, var(--bg) 98%);
  content: "";
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.orb-one {
  top: 19%;
  right: 8%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(104, 255, 232, 0.2);
  box-shadow: inset 0 0 60px rgba(85, 244, 220, 0.08), 0 0 80px rgba(85, 244, 220, 0.1);
}

.orb-two {
  right: -80px;
  bottom: -120px;
  width: 350px;
  height: 350px;
  background: rgba(255, 79, 188, 0.07);
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  min-height: 640px;
  padding-block: 58px 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.06em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 6.6vw, 6.4rem);
  font-weight: 800;
}

h1 em,
h2 em {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan-bright), var(--cyan) 45%, #a975ff 92%);
  background-clip: text;
  font-style: normal;
  text-shadow: 0 0 40px rgba(85, 244, 220, 0.12);
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 32px;
  color: #aab3c2;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #04110f;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(85, 244, 220, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 35px rgba(85, 244, 220, 0.4);
}

.button-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(11, 17, 29, 0.55);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--cyan);
  background: rgba(85, 244, 220, 0.06);
}

.hero-note {
  margin: 24px 0 0;
  color: #657083;
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.hero-note span {
  margin-right: 7px;
  color: var(--pink);
}

.stage-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 530px;
  isolation: isolate;
}

.hero-character {
  position: absolute;
  z-index: -1;
  inset: -8% -20% -8% -26%;
  width: 146%;
  max-width: none;
  height: 116%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(1.04) contrast(1.04);
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 86%, transparent 100%);
}

.stage-visual::before {
  position: absolute;
  z-index: 0;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 255, 226, 0.14), transparent 68%);
  content: "";
  filter: blur(18px);
}

.holo-ring {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.ring-outer {
  width: min(410px, 84%);
  aspect-ratio: 1;
  border: 1px solid rgba(97, 255, 232, 0.3);
  border-right-color: rgba(255, 79, 188, 0.45);
  box-shadow: 0 0 45px rgba(73, 255, 227, 0.09), inset 0 0 45px rgba(73, 255, 227, 0.06);
  animation: ring-spin 18s linear infinite;
}

.ring-outer::before,
.ring-outer::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
  content: "";
}

.ring-outer::before {
  top: 17%;
  left: 8%;
}

.ring-outer::after {
  right: 4%;
  bottom: 27%;
  background: var(--pink);
}

.ring-inner {
  width: min(300px, 61%);
  aspect-ratio: 1;
  border: 1px dashed rgba(163, 119, 255, 0.38);
  animation: ring-spin 22s linear infinite reverse;
}

.holo-figure {
  position: relative;
  width: 180px;
  height: 375px;
  filter: drop-shadow(0 0 13px rgba(85, 244, 220, 0.6));
  animation: figure-float 4s ease-in-out infinite;
}

.figure-head {
  position: absolute;
  z-index: 3;
  top: 25px;
  left: 65px;
  width: 54px;
  height: 62px;
  border: 2px solid var(--cyan-bright);
  border-radius: 48% 48% 43% 43%;
  background: linear-gradient(135deg, rgba(85, 244, 220, 0.3), rgba(139, 92, 246, 0.24));
}

.figure-head::after {
  position: absolute;
  right: 8px;
  bottom: 15px;
  left: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 7px rgba(85, 244, 220, 0.4), 0 -7px rgba(85, 244, 220, 0.4);
  content: "";
}

.figure-hair {
  position: absolute;
  z-index: 1;
  top: 37px;
  width: 56px;
  height: 250px;
  border: 2px solid rgba(85, 244, 220, 0.75);
  background: linear-gradient(to bottom, rgba(85, 244, 220, 0.32), rgba(85, 244, 220, 0.02));
  clip-path: polygon(20% 0, 82% 6%, 100% 100%, 32% 83%, 0 14%);
}

.hair-left {
  left: 7px;
  transform: rotate(7deg);
}

.hair-right {
  right: 1px;
  transform: scaleX(-1) rotate(7deg);
}

.figure-body {
  position: absolute;
  z-index: 2;
  top: 81px;
  left: 44px;
  width: 96px;
  height: 250px;
  border: 2px solid var(--cyan);
  background:
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, rgba(85, 244, 220, 0.3), rgba(139, 92, 246, 0.2));
  clip-path: polygon(30% 0, 70% 0, 84% 38%, 97% 100%, 54% 91%, 11% 100%, 20% 38%);
}

.figure-arm {
  position: absolute;
  z-index: 3;
  top: 98px;
  width: 21px;
  height: 155px;
  border: 1px solid var(--cyan);
  background: rgba(85, 244, 220, 0.16);
}

.arm-left {
  left: 36px;
  transform: rotate(19deg);
}

.arm-right {
  right: 33px;
  transform: rotate(-19deg);
}

.stage-platform {
  position: absolute;
  bottom: 60px;
  width: 75%;
  height: 42px;
  border: 1px solid rgba(85, 244, 220, 0.5);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(85, 244, 220, 0.3), transparent 65%);
  box-shadow: 0 0 36px rgba(85, 244, 220, 0.22);
  transform: perspective(100px) rotateX(55deg);
}

.equalizer {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 90px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 50px;
}

.equalizer i {
  width: 3px;
  height: calc(7px + var(--i, 1) * 4px);
  background: var(--pink);
  box-shadow: 0 0 7px var(--pink);
  animation: equalize 1s ease-in-out infinite alternate;
}

.equalizer i:nth-child(2n) { height: 31px; animation-delay: -0.3s; }
.equalizer i:nth-child(3n) { height: 18px; animation-delay: -0.6s; }
.equalizer i:nth-child(4n) { height: 42px; animation-delay: -0.8s; }

.visual-index {
  position: absolute;
  z-index: 2;
  top: 10%;
  right: 5%;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-mono);
  font-size: 1.8rem;
}

.visual-index span {
  color: #536073;
  font-size: 0.7rem;
}

.data-tag {
  position: absolute;
  z-index: 2;
  padding: 4px 8px;
  border-left: 1px solid var(--cyan);
  color: #78869a;
  font-family: var(--font-mono);
  font-size: 0.55rem;
}

.data-tag-top {
  top: 21%;
  left: 4%;
}

.data-tag-bottom {
  right: 1%;
  bottom: 24%;
}

.hero-marquee {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(7, 12, 21, 0.75);
  backdrop-filter: blur(8px);
}

.hero-marquee div {
  display: flex;
  align-items: center;
  width: max-content;
  padding-block: 13px;
  animation: marquee 26s linear infinite;
}

.hero-marquee span {
  margin-inline: 34px;
  color: #6d788a;
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.25em;
}

.hero-marquee b {
  color: var(--cyan);
  font-size: 0.7rem;
}

.section {
  position: relative;
  padding-block: clamp(90px, 12vw, 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  margin-bottom: 25px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5.4vw, 5.3rem);
  font-weight: 800;
}

.section-heading > p,
.music-intro > p,
.contact-copy > p {
  max-width: 470px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.concept {
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    var(--bg-soft);
  background-size: 80px 80px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  position: relative;
  min-height: 370px;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 14, 25, 0.68);
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.feature-card::before {
  position: absolute;
  inset: auto -20% -50% 20%;
  height: 65%;
  background: radial-gradient(circle, rgba(85, 244, 220, 0.12), transparent 68%);
  content: "";
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  z-index: 2;
  border-color: rgba(85, 244, 220, 0.4);
  background: rgba(15, 25, 40, 0.95);
  transform: translateY(-7px);
}

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

.feature-card-accent {
  background: linear-gradient(150deg, rgba(18, 38, 48, 0.92), rgba(14, 17, 34, 0.9));
}

.card-number {
  color: #566174;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-align: right;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin: 30px 0 32px;
  border: 1px solid var(--line-strong);
  background: rgba(85, 244, 220, 0.04);
}

.voice-icon {
  gap: 5px;
}

.voice-icon i {
  width: 3px;
  height: 18px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.voice-icon i:nth-child(2),
.voice-icon i:nth-child(4) {
  height: 35px;
}

.voice-icon i:nth-child(3) {
  height: 50px;
}

.prism-icon span {
  width: 42px;
  height: 42px;
  border: 1px solid var(--cyan);
  background: linear-gradient(135deg, rgba(85, 244, 220, 0.4), rgba(255, 79, 188, 0.12));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 8px var(--cyan));
}

.spark-icon {
  color: var(--pink);
  font-size: 2rem;
  text-shadow: 0 0 14px var(--pink);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.82rem;
}

.card-link {
  position: absolute;
  bottom: 28px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-solid);
}

.gallery-card-wide {
  min-height: 460px;
}

.gallery-card:nth-child(3) {
  min-height: 420px;
}

.artwork {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 0.6s ease, filter 0.6s;
}

.gallery-image {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-image-portrait {
  object-position: center 32%;
}

.gallery-image-stage {
  object-position: 72% center;
}

.gallery-card:hover .artwork {
  transform: scale(1.035);
  filter: saturate(1.2);
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 7, 14, 0.98), transparent 70%);
  content: "";
  pointer-events: none;
}

.gallery-card-copy {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 23px;
  left: 25px;
}

.gallery-card-copy > span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.13em;
}

.gallery-card-copy h3 {
  margin: 4px 0 3px;
  font-size: 1.35rem;
}

.gallery-card-copy p {
  margin: 0;
  color: #8b96a8;
  font-size: 0.75rem;
}

.artwork-stage {
  background:
    radial-gradient(circle at 50% 42%, rgba(85, 244, 220, 0.25), transparent 8%),
    radial-gradient(circle at 50% 48%, rgba(138, 92, 246, 0.3), transparent 32%),
    linear-gradient(130deg, #060915, #12102f 55%, #091e25);
}

.art-sun {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 60px rgba(85, 244, 220, 0.15), inset 0 0 45px rgba(85, 244, 220, 0.1);
}

.art-sun::after {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(255, 79, 188, 0.5);
  border-radius: inherit;
  content: "";
}

.art-floor {
  position: absolute;
  right: -30%;
  bottom: -70%;
  left: -30%;
  height: 105%;
  transform: perspective(280px) rotateX(64deg);
  background-image:
    linear-gradient(rgba(85, 244, 220, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 244, 220, 0.32) 1px, transparent 1px);
  background-size: 40px 40px;
}

.art-beam {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 105%;
  background: linear-gradient(to bottom, transparent, var(--pink), transparent);
  box-shadow: 0 0 15px var(--pink);
}

.beam-a { left: 28%; transform: rotate(24deg); }
.beam-b { right: 28%; transform: rotate(-24deg); }

.artwork-idol {
  background:
    repeating-linear-gradient(to bottom, transparent 0 5px, rgba(0, 0, 0, 0.22) 5px 7px),
    radial-gradient(circle at 50% 42%, rgba(255, 79, 188, 0.22), transparent 26%),
    linear-gradient(140deg, #0a1022, #171032 55%, #10282b);
}

.pixel-face {
  position: absolute;
  top: 14%;
  left: 50%;
  width: 170px;
  height: 220px;
  border: 1px solid var(--cyan);
  background:
    linear-gradient(90deg, transparent 15%, rgba(85, 244, 220, 0.16) 15% 17%, transparent 17% 83%, rgba(85, 244, 220, 0.16) 83% 85%, transparent 85%),
    linear-gradient(135deg, rgba(85, 244, 220, 0.26), rgba(139, 92, 246, 0.2));
  clip-path: polygon(20% 0, 80% 0, 100% 20%, 87% 82%, 50% 100%, 13% 82%, 0 20%);
  transform: translateX(-50%);
  box-shadow: 0 0 28px rgba(85, 244, 220, 0.22);
}

.pixel-face::before,
.pixel-face::after {
  position: absolute;
  top: 45%;
  width: 35px;
  height: 3px;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  content: "";
}

.pixel-face::before { left: 23px; }
.pixel-face::after { right: 23px; }

.scanline {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(85, 244, 220, 0.7);
  box-shadow: 0 0 15px var(--cyan);
  animation: scan 4s linear infinite;
}

.artwork-dreams {
  background:
    radial-gradient(circle at 62% 35%, rgba(255, 79, 188, 0.28), transparent 25%),
    radial-gradient(circle at 40% 55%, rgba(85, 244, 220, 0.18), transparent 38%),
    linear-gradient(135deg, #080c1a, #1b1032);
}

.dream-orb {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--cyan) 5%, #7a4de0 34%, #160e2d 70%);
  box-shadow: 0 0 55px rgba(139, 92, 246, 0.6);
  transform: translateX(-50%);
}

.dream-ring {
  position: absolute;
  top: 34%;
  left: 50%;
  width: 260px;
  height: 70px;
  border: 1px solid rgba(85, 244, 220, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.dream-ring-two {
  width: 310px;
  transform: translate(-50%, -50%) rotate(18deg);
  border-color: rgba(255, 79, 188, 0.45);
}

.artwork-beats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(7px, 2vw, 20px);
  background:
    linear-gradient(90deg, rgba(85, 244, 220, 0.06) 1px, transparent 1px),
    linear-gradient(140deg, #071317, #15102c);
  background-size: 30px 100%;
}

.artwork-beats span {
  width: clamp(6px, 1.3vw, 13px);
  height: 28%;
  background: linear-gradient(to top, var(--purple), var(--cyan));
  box-shadow: 0 0 18px rgba(85, 244, 220, 0.35);
}

.artwork-beats span:nth-child(2n) { height: 55%; }
.artwork-beats span:nth-child(3n) { height: 78%; }
.artwork-beats span:nth-child(4n) { height: 40%; }

.artwork-beats b {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-mono);
  font-size: 1.2rem;
}

.music {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 50%, rgba(85, 244, 220, 0.08), transparent 35%),
    var(--bg-soft);
}

.music-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.music-intro h2 {
  margin-bottom: 28px;
}

.album-art {
  position: relative;
  display: grid;
  place-items: center;
  width: min(360px, 90%);
  aspect-ratio: 1;
  margin-top: 50px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(rgba(85, 244, 220, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 244, 220, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #121d2b, #17102c);
  background-size: 20px 20px, 20px 20px, 100% 100%;
  box-shadow: 28px 28px 0 rgba(85, 244, 220, 0.025);
}

.album-art::before,
.album-art::after {
  position: absolute;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  content: "";
}

.album-art::after {
  transform: rotate(90deg);
}

.album-orbit {
  position: absolute;
  width: 63%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 79, 188, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 79, 188, 0.1);
}

.album-orbit::after {
  position: absolute;
  top: 45%;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  content: "";
}

.album-core {
  z-index: 2;
  color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  background-clip: text;
  font-family: var(--font-mono);
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: -0.15em;
}

.album-art > span {
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: #6b7686;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
}

.player {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  background: rgba(7, 11, 20, 0.72);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.now-playing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.now-playing span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
}

.now-playing h3 {
  margin: 7px 0 2px;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
}

.now-playing p {
  margin: 0;
  color: #626e80;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.13em;
}

.play-button {
  position: relative;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(85, 244, 220, 0.07);
  cursor: pointer;
  box-shadow: 0 0 24px rgba(85, 244, 220, 0.15);
  transition: background 0.2s, box-shadow 0.2s;
}

.play-button:hover,
.play-button:focus-visible {
  background: rgba(85, 244, 220, 0.15);
  box-shadow: 0 0 30px rgba(85, 244, 220, 0.3);
}

.play-button span {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--cyan);
  transform: translate(-50%, -50%);
}

.play-button[aria-pressed="true"] span {
  left: 50%;
  width: 11px;
  height: 14px;
  border: 0;
  border-right: 3px solid var(--cyan);
  border-left: 3px solid var(--cyan);
}

.progress {
  height: 2px;
  margin-top: 32px;
  overflow: hidden;
  background: #263142;
}

.progress span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 0 9px var(--cyan);
}

.time-row {
  display: flex;
  justify-content: space-between;
  margin: 6px 0 27px;
  color: #596579;
  font-family: var(--font-mono);
  font-size: 0.5rem;
}

.tracklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.track {
  display: grid;
  grid-template-columns: 28px 35px 1fr;
  align-items: center;
  gap: 12px;
  padding: 15px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.2s;
}

.track:hover,
.track:focus-visible {
  background: rgba(85, 244, 220, 0.05);
  outline: none;
}

.track.active {
  background: linear-gradient(90deg, rgba(85, 244, 220, 0.08), transparent);
}

.track-number {
  color: #596477;
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.track-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.track-wave i {
  width: 2px;
  height: 6px;
  background: #475365;
}

.track-wave i:nth-child(2) { height: 14px; }
.track-wave i:nth-child(3) { height: 19px; }
.track-wave i:nth-child(4) { height: 10px; }

.track.active .track-wave i {
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

.track > span:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.track strong {
  font-size: 0.78rem;
  font-weight: 600;
}

.track small {
  color: #5d6879;
  font-family: var(--font-mono);
  font-size: 0.52rem;
}

.timeline-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.07), transparent 30%),
    var(--bg);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 39px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  content: "";
  opacity: 0.45;
}

.timeline li {
  position: relative;
  padding-right: clamp(20px, 3vw, 50px);
}

.timeline-year {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.timeline-dot {
  display: block;
  width: 11px;
  height: 11px;
  margin: 29px 0 33px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 0 15px var(--cyan);
}

.timeline li:nth-child(2) .timeline-dot { background: #70d5ec; box-shadow: 0 0 0 1px #70d5ec, 0 0 15px #70d5ec; }
.timeline li:nth-child(3) .timeline-dot { background: var(--purple); box-shadow: 0 0 0 1px var(--purple), 0 0 15px var(--purple); }
.timeline li:nth-child(4) .timeline-dot { background: var(--pink); box-shadow: 0 0 0 1px var(--pink), 0 0 15px var(--pink); }

.timeline h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.timeline p {
  color: var(--muted);
  font-size: 0.75rem;
}

.contact {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(85, 244, 220, 0.025) 1px, transparent 1px),
    var(--bg-soft);
  background-size: 60px 100%;
}

.contact-glow {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(85, 244, 220, 0.08);
  filter: blur(90px);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 140px);
}

.contact-copy h2 {
  margin-bottom: 27px;
}

.disclaimer {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.disclaimer > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.disclaimer p {
  margin: 0;
  color: #7f8a9c;
  font-size: 0.7rem;
}

.disclaimer strong {
  color: #c7cfda;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(7, 11, 20, 0.68);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #98a3b4;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input {
  height: 49px;
  padding-inline: 15px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #4f5b6d;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(85, 244, 220, 0.07);
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-align: center;
}

.live-launch {
  min-width: 180px;
}

body.live-active {
  overflow: hidden;
}

.live-experience[hidden] {
  display: none;
}

.live-experience {
  position: fixed;
  z-index: 500;
  inset: 0;
  overflow: hidden;
  color: var(--text);
  background: #02050b;
  isolation: isolate;
}

.live-experience::before {
  position: absolute;
  z-index: 5;
  inset: 0;
  border: clamp(6px, 0.8vw, 12px) solid rgba(85, 244, 220, 0.08);
  content: "";
  pointer-events: none;
}

.live-experience.is-opening {
  animation: live-enter 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.live-experience.is-closing {
  animation: live-exit 0.42s ease both;
}

.live-canvas,
.live-noise,
.live-flash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.live-canvas {
  z-index: 3;
}

.live-noise {
  z-index: 4;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.live-flash {
  z-index: 2;
  opacity: 0;
  background: radial-gradient(circle at 65% 55%, rgba(124, 255, 238, 0.55), transparent 48%);
}

.live-experience.beat .live-flash {
  animation: live-flash 0.34s ease-out;
}

.live-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px clamp(20px, 3vw, 52px);
  border-bottom: 1px solid rgba(85, 244, 220, 0.18);
  background: linear-gradient(to bottom, rgba(2, 5, 11, 0.78), transparent);
}

.live-identity {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-mono);
}

.live-identity strong,
.live-identity small {
  display: block;
}

.live-identity strong {
  color: var(--cyan);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
}

.live-identity small {
  margin-top: 3px;
  color: #667488;
  font-size: 0.46rem;
  letter-spacing: 0.12em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 14px var(--pink);
  animation: live-dot 1.2s ease-in-out infinite;
}

.live-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-control,
.live-close,
.track-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #aeb8c6;
  background: rgba(5, 10, 18, 0.65);
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.track-upload {
  padding-inline: 14px;
  border-color: rgba(85, 244, 220, 0.32);
  color: var(--cyan);
  cursor: pointer;
}

.track-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.track-upload > span {
  font-size: 0.9rem;
  line-height: 1;
}

.track-picker-toggle {
  border-color: rgba(255, 79, 188, 0.35);
  color: #ff86cf;
}

.track-picker {
  position: absolute;
  z-index: 30;
  top: 82px;
  right: 0;
  width: min(440px, 100%);
  height: calc(100% - 82px);
  padding: 28px;
  overflow-y: auto;
  border-left: 1px solid rgba(85, 244, 220, 0.22);
  background: rgba(3, 7, 14, 0.96);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.45);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.38s;
  backdrop-filter: blur(24px);
}

.track-picker.open {
  transform: translateX(0);
  visibility: visible;
}

.track-picker-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.track-picker-heading span,
.track-picker-heading strong {
  display: block;
  font-family: var(--font-mono);
}

.track-picker-heading span {
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
}

.track-picker-heading strong {
  font-size: 1.05rem;
}

.track-picker-heading button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #8f9caf;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.song-search {
  margin-bottom: 9px;
}

.song-search > label,
.track-picker-label {
  display: block;
  margin-bottom: 8px;
  color: #69768a;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.13em;
}

.song-search > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.song-search input {
  min-width: 0;
  height: 43px;
  padding: 0 12px;
  border: 1px solid rgba(85, 244, 220, 0.25);
  border-right: 0;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.song-search input:focus {
  border-color: var(--cyan);
  box-shadow: inset 0 0 18px rgba(85, 244, 220, 0.06);
}

.song-search button {
  padding-inline: 13px;
  border: 1px solid var(--cyan);
  color: #04110f;
  background: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.46rem;
  font-weight: 700;
  cursor: pointer;
}

.song-search button:disabled {
  opacity: 0.45;
  cursor: wait;
}

.song-search-status {
  min-height: 20px;
  margin: 0 0 13px;
  color: #657388;
  font-family: var(--font-mono);
  font-size: 0.46rem;
}

.song-search-results {
  display: grid;
  gap: 7px;
  max-height: 280px;
  margin-bottom: 24px;
  overflow-y: auto;
}

.song-result {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.song-result:hover,
.song-result:focus-visible,
.song-result.active {
  border-color: rgba(255, 79, 188, 0.55);
  outline: none;
  background: rgba(255, 79, 188, 0.06);
}

.song-result-index {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 79, 188, 0.45);
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 0.52rem;
}

.song-result span:nth-child(2) {
  min-width: 0;
}

.song-result strong,
.song-result small {
  display: block;
  overflow: hidden;
  font-family: var(--font-mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song-result strong {
  font-size: 0.62rem;
}

.song-result small {
  margin-top: 3px;
  color: #657388;
  font-size: 0.43rem;
}

.song-result > em {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.44rem;
  font-style: normal;
}

.track-picker-label {
  margin-top: 2px;
}

.youtube-tracks {
  display: grid;
  gap: 11px;
}

.youtube-track {
  display: grid;
  grid-template-columns: 62px 1fr 24px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 84px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.youtube-track:hover,
.youtube-track:focus-visible,
.youtube-track.active {
  border-color: rgba(85, 244, 220, 0.5);
  outline: none;
  background: rgba(85, 244, 220, 0.07);
  transform: translateX(-4px);
}

.youtube-track > span:nth-child(2) {
  min-width: 0;
}

.youtube-track small,
.youtube-track strong,
.youtube-track em {
  display: block;
  overflow: hidden;
  font-family: var(--font-mono);
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.youtube-track small {
  color: #667489;
  font-size: 0.4rem;
  letter-spacing: 0.08em;
}

.youtube-track strong {
  margin-block: 4px;
  font-size: 0.72rem;
}

.youtube-track em {
  color: var(--cyan);
  font-size: 0.45rem;
}

.youtube-track[data-embed="restricted"] em {
  color: #ff83cf;
}

.youtube-track > i {
  color: var(--cyan);
  font-size: 0.68rem;
  font-style: normal;
}

.track-cover {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
}

.track-cover-cyan {
  color: var(--cyan);
  background: radial-gradient(circle, rgba(85, 244, 220, 0.23), transparent 65%);
}

.track-cover-pink {
  color: var(--pink);
  background: radial-gradient(circle, rgba(255, 79, 188, 0.2), transparent 65%);
}

.difficulty-picker,
.offset-control {
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.difficulty-picker > span,
.offset-control span {
  color: #69768a;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.13em;
}

.difficulty-picker > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 10px;
}

.difficulty-picker button,
.offset-control button {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #718095;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--font-mono);
  font-size: 0.43rem;
  cursor: pointer;
}

.difficulty-picker button:hover,
.difficulty-picker button:focus-visible,
.difficulty-picker button.active {
  border-color: var(--cyan);
  outline: none;
  color: #04110f;
  background: var(--cyan);
}

.offset-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.offset-control small {
  display: block;
  max-width: 200px;
  margin-top: 4px;
  color: #59677a;
  font-size: 0.5rem;
}

.offset-control > div:last-child {
  display: grid;
  grid-template-columns: 32px 58px 32px;
  align-items: center;
}

.offset-control output {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.52rem;
  text-align: center;
}

.youtube-notice {
  margin: 25px 0 0;
  color: #4f5c6e;
  font-family: var(--font-mono);
  font-size: 0.45rem;
}

.youtube-notice a {
  color: #8292a8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.youtube-player-shell {
  position: absolute;
  z-index: 7;
  right: 32px;
  bottom: 116px;
  width: 240px;
  padding: 5px;
  border: 1px solid rgba(85, 244, 220, 0.24);
  background: #02050b;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
  transition: opacity 0.25s;
}

.youtube-player-shell iframe {
  display: block;
  width: 100%;
  height: 132px;
  border: 0;
}

.youtube-player-shell > span {
  display: block;
  padding: 5px 4px 2px;
  color: #536176;
  font-family: var(--font-mono);
  font-size: 0.38rem;
  letter-spacing: 0.1em;
}

.live-experience.game-running .youtube-player-shell {
  opacity: 0.4;
}

.live-control {
  padding-inline: 14px;
}

.live-close {
  min-width: 96px;
  padding-inline: 13px;
}

.live-control:hover,
.live-control:focus-visible,
.live-close:hover,
.live-close:focus-visible,
.track-upload:hover,
.track-upload:focus-within {
  border-color: var(--cyan);
  outline: none;
  color: var(--cyan);
  background: rgba(85, 244, 220, 0.08);
}

.live-close > span {
  position: relative;
  width: 12px;
  height: 12px;
}

.live-close > span::before,
.live-close > span::after {
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
}

.live-close > span::before {
  transform: rotate(45deg);
}

.live-close > span::after {
  transform: rotate(-45deg);
}

.sound-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 13px;
}

.sound-bars i {
  width: 2px;
  height: 6px;
  background: var(--cyan);
  animation: sound-bar 0.55s ease-in-out infinite alternate;
}

.sound-bars i:nth-child(2) {
  height: 12px;
  animation-delay: -0.2s;
}

.sound-bars i:nth-child(3) {
  height: 8px;
  animation-delay: -0.38s;
}

.live-control[aria-pressed="false"] .sound-bars i {
  height: 2px;
  animation: none;
}

.live-stage {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 48%, rgba(54, 219, 205, 0.1), transparent 30%),
    linear-gradient(100deg, #02050b 0%, #060b16 36%, #091323 100%);
}

.live-stage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #02050b 1%, rgba(2, 5, 11, 0.92) 25%, transparent 58%, rgba(2, 5, 11, 0.12)),
    linear-gradient(to top, #02050b 0%, transparent 35%);
  content: "";
}

.live-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(85, 244, 220, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 244, 220, 0.12) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, transparent 5%, black 45%, transparent 95%);
  transform: perspective(550px) rotateX(62deg) scale(1.5) translateY(19%);
}

.live-halo {
  position: absolute;
  top: 50%;
  left: 69%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(85, 244, 220, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 80px rgba(85, 244, 220, 0.12),
    inset 0 0 80px rgba(139, 92, 246, 0.1);
  animation: live-halo 12s linear infinite;
}

.live-halo::before,
.live-halo::after {
  position: absolute;
  border-radius: inherit;
  content: "";
}

.live-halo::before {
  inset: 8%;
  border: 1px dashed rgba(255, 79, 188, 0.38);
}

.live-halo::after {
  inset: 22%;
  border: 1px solid rgba(85, 244, 220, 0.22);
}

.live-character {
  position: absolute;
  top: 50%;
  left: 71%;
  width: min(72vw, 1280px);
  max-width: none;
  height: 105%;
  object-fit: cover;
  object-position: 70% center;
  transform: translate(-50%, -50%) scale(1.02);
  filter: saturate(1.18) contrast(1.06);
  animation: live-character 5s ease-in-out infinite;
}

.live-scan {
  position: absolute;
  z-index: 2;
  top: -10%;
  right: 0;
  width: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(85, 244, 220, 0.9), transparent);
  box-shadow: 0 0 22px var(--cyan);
  animation: live-scan 5s linear infinite;
}

.live-content {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: clamp(35px, 8vw, 140px);
  width: min(44vw, 650px);
  transform: translateY(-54%);
}

.rhythm-hud {
  position: absolute;
  z-index: 8;
  top: 104px;
  right: clamp(25px, 4vw, 65px);
  display: flex;
  gap: clamp(18px, 3vw, 48px);
  padding: 12px 16px;
  border: 1px solid rgba(85, 244, 220, 0.14);
  background: rgba(2, 6, 12, 0.58);
  backdrop-filter: blur(12px);
}

.rhythm-hud > div {
  min-width: 74px;
}

.rhythm-hud span,
.rhythm-hud strong {
  display: block;
  font-family: var(--font-mono);
}

.rhythm-hud span {
  margin-bottom: 3px;
  color: #546276;
  font-size: 0.42rem;
  letter-spacing: 0.14em;
}

.rhythm-hud strong {
  max-width: 185px;
  overflow: hidden;
  color: var(--cyan);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rhythm-hud small {
  display: block;
  margin-top: 3px;
  color: #75849a;
  font-family: var(--font-mono);
  font-size: 0.38rem;
  white-space: nowrap;
}

.game-message {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: min(420px, calc(100% - 40px));
  min-height: 100px;
  padding: 20px;
  border: 1px solid rgba(85, 244, 220, 0.24);
  opacity: 0;
  color: #91a0b4;
  background: rgba(2, 6, 13, 0.82);
  font-family: var(--font-mono);
  text-align: center;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
  backdrop-filter: blur(18px);
  transition: opacity 0.25s, transform 0.25s;
}

.game-message.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.game-message strong {
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
}

.game-message span {
  font-size: 0.56rem;
}

.game-start-overlay {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: min(360px, calc(100% - 36px));
  padding: 18px 24px;
  border: 1px solid var(--cyan);
  color: var(--text);
  background:
    linear-gradient(100deg, rgba(85, 244, 220, 0.15), rgba(8, 13, 24, 0.96) 38%),
    #050b14;
  cursor: pointer;
  box-shadow: 0 0 50px rgba(85, 244, 220, 0.2);
  transform: translate(-50%, -50%);
  animation: start-overlay-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.game-start-overlay[hidden] {
  display: none;
}

.game-start-overlay:hover,
.game-start-overlay:focus-visible {
  outline: none;
  background:
    linear-gradient(100deg, rgba(85, 244, 220, 0.28), rgba(8, 13, 24, 0.98) 45%),
    #050b14;
  box-shadow: 0 0 70px rgba(85, 244, 220, 0.36);
}

.game-start-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: #04110f;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(85, 244, 220, 0.45);
}

.game-start-overlay strong,
.game-start-overlay small {
  display: block;
  font-family: var(--font-mono);
  text-align: left;
}

.game-start-overlay strong {
  color: var(--cyan);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
}

.game-start-overlay small {
  margin-top: 5px;
  color: #8694a7;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.live-experience.game-ready .live-content,
.live-experience.game-running .live-content,
.live-experience.game-running .live-lyrics {
  opacity: 0.12;
  filter: blur(3px);
  transition: opacity 0.35s, filter 0.35s;
}

.live-experience.game-running .live-content,
.live-experience.game-running .live-lyrics,
.live-experience.game-running .rhythm-hud {
  pointer-events: none;
}

.live-experience.game-running .live-canvas {
  pointer-events: auto;
  cursor: none;
  touch-action: none;
}

.live-experience.game-running .pulse-button {
  opacity: 0.18;
  pointer-events: none;
}

.live-experience.game-running .live-character {
  filter: saturate(1.18) contrast(1.06) brightness(0.62);
}

.live-experience.game-complete .live-canvas {
  pointer-events: none;
}

.live-kicker {
  margin-bottom: 20px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: clamp(0.48rem, 0.75vw, 0.66rem);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.live-content h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.8rem);
  line-height: 0.82;
  text-shadow: 0 0 50px rgba(85, 244, 220, 0.12);
}

.live-content h2 em {
  display: inline-block;
  padding-bottom: 0.1em;
}

.live-description {
  max-width: 440px;
  margin-top: 27px;
  color: #8996a9;
  font-size: clamp(0.68rem, 1vw, 0.9rem);
}

.live-side-data {
  position: absolute;
  z-index: 6;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #526176;
  font-family: var(--font-mono);
  font-size: 0.46rem;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.live-side-left {
  left: 25px;
  transform: translateY(-50%) rotate(180deg);
}

.live-side-right {
  right: 25px;
  transform: translateY(-50%);
}

.live-side-data i {
  width: 1px;
  height: 70px;
  background: linear-gradient(var(--cyan), transparent);
}

.live-side-data strong {
  color: var(--cyan);
  font-size: 0.58rem;
}

.live-lyrics {
  position: absolute;
  z-index: 7;
  right: 20%;
  bottom: 130px;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(36vw, 500px);
  font-family: var(--font-mono);
  text-align: center;
  text-shadow: 0 2px 12px #02050b;
}

.live-lyrics strong {
  margin-block: 4px;
  color: var(--text);
  font-size: clamp(0.72rem, 1.3vw, 1.1rem);
  letter-spacing: 0.16em;
}

.live-lyrics span {
  color: rgba(177, 191, 207, 0.38);
  font-size: clamp(0.42rem, 0.65vw, 0.56rem);
  letter-spacing: 0.1em;
}

.live-lyrics.change strong {
  animation: lyric-change 0.45s ease;
}

.live-footer {
  position: absolute;
  z-index: 9;
  right: clamp(25px, 4vw, 65px);
  bottom: 29px;
  left: clamp(25px, 4vw, 65px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
}

.live-stat > span {
  display: block;
  margin-bottom: 2px;
  color: #59677b;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.15em;
}

.live-stat > strong {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
  text-shadow: 0 0 16px rgba(85, 244, 220, 0.35);
}

.live-stat-right {
  justify-self: end;
  text-align: right;
}

.live-stat-right strong i {
  margin-right: 5px;
  color: var(--pink);
  font-size: 0.7em;
  font-style: normal;
}

.pulse-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--text);
  background: rgba(5, 14, 22, 0.74);
  cursor: pointer;
  box-shadow: 0 0 30px rgba(85, 244, 220, 0.18), inset 0 0 20px rgba(85, 244, 220, 0.08);
  transition: transform 0.12s, background 0.2s;
}

.pulse-button:hover,
.pulse-button:focus-visible {
  outline: none;
  background: rgba(85, 244, 220, 0.14);
  transform: scale(1.06);
}

.pulse-button:active,
.pulse-button.hit {
  transform: scale(0.92);
}

.pulse-button strong,
.pulse-button small {
  position: absolute;
  font-family: var(--font-mono);
}

.pulse-button strong {
  top: 29px;
  color: var(--cyan);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.pulse-button small {
  bottom: 23px;
  color: #627185;
  font-size: 0.32rem;
  letter-spacing: 0.08em;
}

.pulse-rings,
.pulse-rings i {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(85, 244, 220, 0.28);
  border-radius: 50%;
}

.pulse-rings i {
  animation: pulse-ring 2s ease-out infinite;
}

.pulse-rings i:nth-child(2) {
  animation-delay: -1s;
}

.live-progress {
  position: absolute;
  z-index: 9;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.live-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--pink));
  box-shadow: 0 0 12px var(--cyan);
}

.site-footer {
  padding: 46px 0 22px;
  border-top: 1px solid var(--line);
  background: #04070c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-bottom: 35px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #8994a4;
  font-size: 0.7rem;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
}

.back-to-top {
  display: grid;
  justify-self: end;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid var(--line-strong);
  color: var(--cyan);
  transition: background 0.2s;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(85, 244, 220, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;
  color: #515c6c;
  font-family: var(--font-mono);
  font-size: 0.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

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

@keyframes equalize {
  to { transform: scaleY(0.45); }
}

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

@keyframes scan {
  from { top: 0; }
  to { top: 100%; }
}

@keyframes live-enter {
  from { opacity: 0; clip-path: inset(50% 0 50% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

@keyframes live-exit {
  to { opacity: 0; transform: scale(1.03); filter: blur(8px); }
}

@keyframes live-flash {
  0% { opacity: 0.8; }
  100% { opacity: 0; }
}

@keyframes live-dot {
  50% { opacity: 0.35; transform: scale(0.7); }
}

@keyframes sound-bar {
  to { transform: scaleY(0.4); }
}

@keyframes live-halo {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes live-character {
  0%, 100% { transform: translate(-50%, -50%) scale(1.02); }
  50% { transform: translate(-50%, -51.2%) scale(1.035); }
}

@keyframes live-scan {
  from { top: 2%; }
  to { top: 98%; }
}

@keyframes lyric-change {
  0% { opacity: 0; transform: translateY(12px); filter: blur(5px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes pulse-ring {
  0% { opacity: 0.7; transform: scale(0.75); }
  100% { opacity: 0; transform: scale(1.8); }
}

@keyframes start-overlay-in {
  from { opacity: 0; transform: translate(-50%, -44%) scale(0.94); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 20px 35px;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 9, 17, 0.98);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s, visibility 0.3s;
  }

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

  .primary-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 95px;
  }

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

  .stage-visual {
    min-height: 500px;
    margin-top: -35px;
    opacity: 0.88;
  }

  .section-heading,
  .music-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 30px;
  }

  .feature-card {
    padding: 28px;
  }

  .music-layout {
    gap: 70px;
  }

  .album-art {
    margin-inline: auto;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 50px 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline-dot {
    margin-block: 18px;
  }

  .live-character {
    left: 70%;
    width: 100vw;
    height: 100%;
  }

  .live-content {
    top: 37%;
    width: 58vw;
  }

  .live-content h2 {
    font-size: clamp(3.8rem, 10vw, 6rem);
  }

  .live-lyrics {
    right: 8%;
    width: 46vw;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 90px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    overflow-wrap: break-word;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stage-visual {
    min-height: 420px;
    margin: -10px -20px 0;
    transform: scale(0.92);
  }

  .holo-figure {
    transform: scale(0.85);
  }

  .section {
    padding-block: 86px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

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

  .feature-card {
    min-height: 345px;
  }

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

  .gallery-card,
  .gallery-card-wide,
  .gallery-card:nth-child(3) {
    min-height: 370px;
  }

  .music-layout {
    gap: 55px;
  }

  .album-art {
    width: 100%;
  }

  .player {
    padding: 21px 16px;
  }

  .track {
    grid-template-columns: 23px 25px 1fr;
    gap: 8px;
    padding-inline: 7px;
  }

  .track > span:last-child {
    min-width: 0;
  }

  .track strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 50px;
  }

  .timeline::before {
    display: block;
    top: 5px;
    bottom: 30px;
    left: 5px;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--cyan), var(--purple), var(--pink));
  }

  .timeline li {
    padding: 0 0 46px 35px;
  }

  .timeline-dot {
    position: absolute;
    top: 2px;
    left: 0;
    margin: 0;
  }

  .timeline li > div {
    margin-top: 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 35px;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
  }

  .back-to-top {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .live-header {
    min-height: 67px;
    padding: 13px 14px;
  }

  .live-identity small,
  .live-control {
    display: none;
  }

  .track-upload {
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .track-upload > span {
    font-size: 1.1rem;
  }

  .track-picker-toggle {
    display: inline-flex;
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .track-picker-toggle::before {
    content: "♫";
    font-size: 1rem;
  }

  .track-picker {
    top: 67px;
    width: 100%;
    height: calc(100% - 67px);
    padding: 22px 16px 30px;
    border-left: 0;
  }

  .youtube-player-shell {
    right: 10px;
    bottom: 107px;
    width: 150px;
  }

  .youtube-player-shell iframe {
    height: 82px;
  }

  .live-experience.game-running .youtube-player-shell {
    opacity: 0.2;
  }

  .live-close {
    min-width: 42px;
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .live-close > span {
    width: 15px;
  }

  .live-close > span::before,
  .live-close > span::after {
    width: 15px;
  }

  .live-stage::after {
    background:
      linear-gradient(to bottom, #02050b 2%, transparent 25%, transparent 64%, #02050b 92%),
      linear-gradient(90deg, rgba(2, 5, 11, 0.72), transparent 80%);
  }

  .live-character {
    top: 50%;
    left: 56%;
    width: 145vw;
    height: 73%;
    object-position: 70% center;
  }

  .live-halo {
    top: 50%;
    left: 57%;
    width: 105vw;
  }

  .live-content {
    top: 18%;
    left: 18px;
    width: calc(100% - 36px);
    transform: none;
  }

  .rhythm-hud {
    top: 77px;
    right: 12px;
    left: 12px;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
  }

  .rhythm-hud > div {
    min-width: 0;
  }

  .rhythm-hud > div:nth-child(2) {
    text-align: center;
  }

  .rhythm-hud > div:last-child {
    text-align: right;
  }

  .rhythm-hud strong {
    max-width: 110px;
    font-size: 0.52rem;
  }

  .game-message {
    min-height: 84px;
  }

  .game-start-overlay {
    gap: 13px;
    padding: 14px;
  }

  .game-start-icon {
    width: 44px;
    height: 44px;
  }

  .game-start-overlay strong {
    font-size: 0.68rem;
  }

  .live-kicker {
    margin-bottom: 12px;
  }

  .live-content h2 {
    font-size: clamp(2.9rem, 15vw, 4rem);
    line-height: 0.88;
  }

  .live-description {
    display: none;
  }

  .live-side-data {
    display: none;
  }

  .live-lyrics {
    right: 15px;
    bottom: 126px;
    left: 15px;
    width: auto;
  }

  .live-lyrics strong {
    font-size: 0.72rem;
  }

  .live-footer {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .pulse-button {
    width: 73px;
    height: 73px;
  }

  .pulse-button strong {
    top: 23px;
  }

  .pulse-button small {
    bottom: 18px;
    font-size: 0.27rem;
  }

  .live-stat > strong {
    font-size: 1.45rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
