:root {
  --bg: #110624;
  --bg-soft: #210a45;
  --card: rgba(35, 12, 65, 0.72);
  --card-strong: rgba(45, 15, 80, 0.9);
  --text: #fcf8ff;
  --muted: #ebd2ee;
  --line: rgba(235, 208, 255, 0.2);
  --accent: #a658ff;
  --accent-soft: #e3c6ff;
  --accent-cool: #ffbdf1;
  --accent-rgb: 166, 88, 255;
  --accent-soft-rgb: 227, 198, 255;
  --accent-warm-rgb: 255, 189, 241;
  --emerald-rgb: 200, 150, 255;
  --shadow: 0 28px 72px rgba(8, 3, 18, 0.34);
  --radius: 24px;
  --transition: 280ms ease;
  --content-width: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--accent-rgb), 0.28), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(var(--accent-warm-rgb), 0.18), transparent 24%),
    radial-gradient(circle at 50% 86%, rgba(var(--emerald-rgb), 0.16), transparent 32%),
    linear-gradient(145deg, #0f0b2a 0%, #281855 48%, #422472 100%);
  overflow-x: hidden;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

code {
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-cool);
}

::selection {
  background: rgba(var(--accent-rgb), 0.24);
  color: var(--text);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: -12%;
  pointer-events: none;
}

.site-shell::before {
  z-index: -5;
  opacity: 0.7;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(var(--accent-soft-rgb), 0.12) 16%,
      rgba(255, 255, 255, 0) 32%,
      rgba(var(--accent-rgb), 0.1) 50%,
      rgba(255, 255, 255, 0) 68%,
      rgba(var(--emerald-rgb), 0.1) 84%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(circle at 18% 10%, rgba(var(--accent-soft-rgb), 0.22), transparent 34%),
    radial-gradient(circle at 84% 4%, rgba(var(--accent-warm-rgb), 0.18), transparent 28%);
  background-size: 100% 240%, 145% 145%, 130% 130%;
  background-position: 50% 0%, 0% 0%, 100% 0%;
  filter: blur(42px) saturate(1.08);
  animation: waterfallFlow 88s ease-in-out infinite alternate;
}

.site-shell::after {
  z-index: -4;
  opacity: 0.34;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(var(--accent-soft-rgb), 0.08) 18%,
      rgba(255, 255, 255, 0) 36%,
      rgba(var(--accent-rgb), 0.08) 54%,
      rgba(255, 255, 255, 0) 74%,
      rgba(var(--accent-warm-rgb), 0.07) 100%
    );
  background-size: 180% 180%;
  background-position: 0% 0%;
  filter: blur(58px);
  mix-blend-mode: screen;
  animation: waterfallFlowAlt 112s ease-in-out infinite alternate;
}

.noise-layer,
.grid-layer,
.pulse {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -3;
}

.noise-layer {
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 3px 3px, 3px 3px;
  mix-blend-mode: soft-light;
  animation: grainDrift 140s linear infinite alternate;
}

.grid-layer {
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(var(--accent-rgb), 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-warm-rgb), 0.06) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  animation: gridDrift 90s ease-in-out infinite alternate;
}

.pulse {
  z-index: -1;
  filter: blur(24px);
}

.pulse-one {
  background: radial-gradient(circle at 10% 20%, rgba(var(--accent-rgb), 0.28), transparent 30%);
  animation: driftPulse 44s ease-in-out infinite alternate;
}

.pulse-two {
  background: radial-gradient(circle at 82% 26%, rgba(var(--accent-warm-rgb), 0.18), transparent 24%);
  animation: driftPulseAlt 58s ease-in-out infinite alternate;
}

.section-pad {
  width: var(--content-width);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 10px;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 10px 0 0;
  border: 1px solid rgba(var(--accent-soft-rgb), 0.18);
  background: linear-gradient(180deg, rgba(35, 20, 66, 0.9), rgba(35, 20, 66, 0.62));
  border-radius: 999px;
  backdrop-filter: blur(18px);
  z-index: -1;
  box-shadow: var(--shadow);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 22px;
}

.brand-kicker,
.eyebrow,
.section-tag,
.mini-tag,
.stat-label,
.panel-topline span,
.footer p:first-child {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-kicker,
.section-tag,
.mini-tag,
.stat-label,
.panel-topline span {
  color: var(--accent-cool);
  font-size: 0.76rem;
}

.brand-name {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-shadow: 0 0 22px rgba(var(--accent-rgb), 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 0 14px;
}

.navbar a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--transition), transform var(--transition), background var(--transition);
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.navbar a:hover,
.navbar a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.navbar a:hover::after,
.navbar a.active::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
  min-height: auto;
  padding-top: clamp(24px, 3vw, 34px);
  padding-bottom: 28px;
}

.hero-copy,
.hero-panel,
.card,
.sound-card,
.platform-stage,
.platform-link,
.contact-shell {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: clamp(420px, 45vw, 540px);
  padding: clamp(28px, 4vw, 42px);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(32, 18, 62, 0.82));
}

.hero-copy::before,
.hero-panel::before,
.sound-card::before,
.press-card::before,
.platform-stage::before,
.contact-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(var(--accent-soft-rgb), 0.12) 50%, transparent 100%);
  transform: translateX(-120%);
  animation: sheen 9s linear infinite;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-cool);
  font-size: 0.9rem;
}

.hero h1,
.section-head h2,
.sound-card h3,
.press-card h3,
.platform-stage h3,
.contact-shell h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 0.96;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(3.9rem, 9vw, 7.2rem);
  letter-spacing: 0.035em;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.hero-subtitle {
  margin: 12px 0 0;
  max-width: 11ch;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  font-weight: 600;
  color: var(--accent-cool);
  letter-spacing: 0.06em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-text,
.about-story p,
.sound-card p,
.section-head p,
.press-card p,
.platform-stage p,
.contact-shell p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-text {
  max-width: 48rem;
  margin: 18px 0 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.primary-btn,
.ghost-btn,
.sound-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #12082a;
  box-shadow: 0 16px 36px rgba(var(--accent-rgb), 0.3);
}

.primary-btn:hover,
.ghost-btn:hover,
.sound-card a:hover {
  transform: translateY(-2px);
}

.ghost-btn,
.sound-card a {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

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

.hero-meta article {
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-meta span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.hero-meta strong,
.sound-card h3,
.press-card h3,
.contact-shell h2,
.stat-card strong {
  font-size: 1.35rem;
}

.hero-panel {
  display: flex;
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: clamp(520px, 45vw, 640px);
  border-radius: calc(var(--radius) + 18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(30, 16, 58, 0.9)),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.14), transparent 42%);
}

.panel-frame {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  flex: 1;
  min-width: 0;
  min-height: 100%;
  padding: 18px;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer p {
  margin: 0;
}

.artist-showcase {
  display: flex;
  flex: 1;
  min-width: 0;
  min-height: 0;
}

.artist-image-shell {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  min-height: 100%;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.3), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(28, 15, 54, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 50px rgba(0, 0, 0, 0.22);
}

.artist-image-shell::before,
.artist-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.artist-image-shell::before {
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%);
  mix-blend-mode: screen;
}

.artist-image-shell::after {
  background:
    linear-gradient(180deg, rgba(10, 17, 21, 0.02) 12%, rgba(10, 17, 21, 0.16) 52%, rgba(10, 17, 21, 0.56) 100%),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.14), transparent 58%);
}

.artist-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.05);
}

.section-head {
  max-width: 44rem;
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  letter-spacing: 0.06em;
}

.section-head p {
  margin-top: 12px;
}

.about,
.links,
.contact {
  padding-top: 56px;
}

.about-grid {
  margin-top: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
}

.card,
.sound-card,
.platform-stage,
.platform-link,
.contact-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
}

.about-story,
.stat-card,
.sound-card,
.press-card,
.platform-stage,
.contact-shell {
  padding: 24px;
}

.about-story p + p {
  margin-top: 18px;
}

.about-side {
  display: grid;
  gap: 22px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}

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

.sound-card {
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(32, 18, 60, 0.78)),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), transparent 45%);
}

.featured-release {
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.22), rgba(32, 18, 60, 0.76)),
    linear-gradient(135deg, rgba(var(--accent-warm-rgb), 0.16), transparent 45%);
}

.sound-card a {
  margin-top: 18px;
  width: fit-content;
}

.platform-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  margin-top: 22px;
}

.platform-stage {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(32, 18, 60, 0.82)),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), transparent 46%);
}

.platform-stage h3 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.07em;
}

.platform-stage p {
  max-width: 33rem;
  margin-top: 16px;
}

.platform-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.platform-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--platform-glow));
}

.platform-chip span {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.platform-linkwall {
  display: grid;
  gap: 12px;
}

.platform-link {
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(30, 16, 58, 0.9)),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.09), transparent 56%);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.platform-link::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  z-index: -1;
  opacity: 0.84;
  background: radial-gradient(circle, var(--platform-glow) 0%, rgba(0, 0, 0, 0) 72%);
  transition: transform var(--transition), opacity var(--transition);
}

.platform-link:hover {
  transform: translateX(6px);
  border-color: var(--platform-accent);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.platform-link:hover::before {
  transform: scale(1.14);
  opacity: 1;
}

.platform-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.platform-logo-shell {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px var(--platform-glow);
}

.platform-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.platform-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.platform-label {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.platform-brand-copy strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.platform-link-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.platform-route {
  color: var(--accent-cool);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.platform-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

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

.press-card {
  min-height: 220px;
}

.contact {
  padding-bottom: 84px;
}

.contact-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(30, 16, 58, 0.88)),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), transparent 50%);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 34px;
  color: var(--muted);
  border-top: 1px solid rgba(var(--accent-soft-rgb), 0.12);
}

.svlenx-tag {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  min-width: 124px;
  height: 30px;
  padding: 0 15px 0 6px;
  border-radius: 999px;
  border: 2px solid white;
  background: linear-gradient(to right, black, #dca3ff);

  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(var(--accent-rgb), 0.28);
  transition: border-color var(--transition), box-shadow var(--transition), filter var(--transition);
  will-change: transform;
  animation: svlenxFloat 8s ease-in-out infinite;
}

.svlenx-tag::before,
.svlenx-tag::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.svlenx-tag::before {
  inset: -2px;
  z-index: -2;
  background: linear-gradient(120deg, rgba(var(--accent-rgb), 0.48), rgba(var(--accent-warm-rgb), 0.24), rgba(var(--accent-rgb), 0.14));
  filter: blur(18px);
  opacity: 0.92;
  animation: svlenxGlow 8s ease-in-out infinite alternate;
}

.svlenx-tag::after {
  inset: 1px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 44%, rgba(var(--accent-rgb), 0.16));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.svlenx-tag:hover {
  border-color: rgba(var(--accent-soft-rgb), 0.68);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    0 0 40px rgba(var(--accent-rgb), 0.38);
  filter: brightness(1.04);
}

.svlenx-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 54px;

}

.svlenx-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
 
.svlenx-copy {
  display: flex;
align-content: center;
  gap: 1px;
}

.svlenx-copy strong {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 0 18px rgba(var(--accent-rgb), 0.24);
}

.svlenx-copy small {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal="left"] {
  transform: translate3d(-48px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(48px, 0, 0);
}

[data-reveal="up"] {
  transform: translate3d(0, 42px, 0);
}

[data-reveal].visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.topbar.scrolled::before {
  border-color: rgba(var(--accent-soft-rgb), 0.24);
  background: linear-gradient(180deg, rgba(28, 15, 53, 0.96), rgba(28, 15, 53, 0.76));
}

@keyframes waterfallFlow {
  0% {
    transform: translate3d(0, -2%, 0) scale(1);
    background-position: 50% 0%, 0% 0%, 100% 0%;
  }
  50% {
    transform: translate3d(1%, 1%, 0) scale(1.04);
    background-position: 50% 35%, 8% 10%, 92% 6%;
  }
  100% {
    transform: translate3d(-1%, 4%, 0) scale(1.08);
    background-position: 50% 70%, 12% 20%, 88% 12%;
  }
}

@keyframes waterfallFlowAlt {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
    background-position: 0% 0%;
  }
  100% {
    transform: translate3d(2%, 3%, 0) scale(1.08);
    background-position: 100% 100%;
  }
}

@keyframes grainDrift {
  0% {
    transform: translate3d(0, 0, 0);
    background-position: 0 0, 0 0;
  }
  100% {
    transform: translate3d(-1.5%, 1.5%, 0);
    background-position: 6px 18px, -8px 10px;
  }
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0);
    background-position: 0 0, 0 0;
  }
  100% {
    transform: translate3d(0, 2%, 0);
    background-position: 0 42px, 28px 0;
  }
}

@keyframes svlenxFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes svlenxGlow {
  0% {
    opacity: 0.76;
    filter: blur(16px);
  }
  100% {
    opacity: 1;
    filter: blur(22px);
  }
}

@keyframes driftPulse {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(8%, 3%, 0) scale(1.12);
  }
}

@keyframes driftPulseAlt {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-8%, 6%, 0) scale(1.14);
  }
}

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

@keyframes sheen {
  0% {
    transform: translateX(-130%);
  }
  18%,
  100% {
    transform: translateX(130%);
  }
}

@media (max-width: 1080px) {
  .topbar,
  .hero,
  .about-grid,
  .platform-showcase,
  .contact-shell,
  .footer {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: relative;
    padding-top: 24px;
  }

  .topbar::before {
    border-radius: 34px;
  }

  .topbar,
  .contact-shell,
  .footer {
    display: grid;
  }

  .topbar,
  .footer {
    gap: 14px;
  }

  .navbar {
    justify-content: flex-start;
    padding: 0 14px 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-copy,
  .hero-panel {
    min-height: auto;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .artist-image-shell {
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .navbar {
    width: 100%;
    gap: 8px;
    padding: 0 14px 14px;
  }

  .navbar a {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    background: rgba(255, 255, 255, 0.025);
  }

  .panel-topline {
    flex-wrap: wrap;
    gap: 10px;
  }

  .contact-shell {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --content-width: min(100vw - 28px, 100%);
    --radius: 22px;
  }

  /* Fix rendering lag on mobile by disabling expensive visual effects */
  *,
  *::before,
  *::after {
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Completely hide heavy effect layers to make it a fast, normal site on mobile */
  .site-shell::before,
  .site-shell::after,
  .noise-layer,
  .grid-layer,
  .pulse {
    display: none !important;
  }

  .hero-copy,
  .hero-panel,
  .card,
  .sound-card,
  .platform-stage,
  .platform-link,
  .contact-shell,
  .topbar::before {
    backdrop-filter: none;
  }

  .topbar {
    gap: 10px;
    padding-top: 16px;
  }

  .topbar::before {
    inset: 0;
  }

  .brand-block {
    padding: 0 18px;
  }

  .brand-name {
    font-size: clamp(1.7rem, 8vw, 2rem);
  }

  .navbar {
    padding: 0 14px 14px;
  }

  .navbar a {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .hero-copy,
  .hero-panel,
  .panel-frame,
  .about-story,
  .stat-card,
  .platform-stage,
  .contact-shell {
    padding: 22px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 22vw, 5rem);
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: clamp(1.3rem, 8vw, 2rem);
  }

  .panel-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .artist-image-shell {
    min-height: 340px;
  }

  .section-head h2 {
    font-size: clamp(2.4rem, 14vw, 3.6rem);
  }

  .contact-actions,
  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .platform-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .platform-brand {
    width: 100%;
  }

  .platform-link-meta {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .svlenx-tag {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    min-width: 90px;
    height: 24px;
    padding: 0 10px 0 4px;
  }

  .svlenx-logo {
    width: 28px;
    height: 28px;
  }

  .svlenx-logo img {
    width: 20px;
    height: 20px;
  }

  .svlenx-copy strong {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  :root {
    --content-width: min(100vw - 20px, 100%);
  }

  .brand-block {
    padding: 0 16px;
  }

  .navbar {
    gap: 6px;
    padding: 0 12px 12px;
  }

  .navbar a {
    flex-basis: calc(50% - 6px);
    min-height: 44px;
    font-size: 0.84rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 20vw, 4rem);
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 8vw, 1.55rem);
  }

  .hero-text,
  .about-story p,
  .section-head p,
  .platform-stage p,
  .contact-shell p {
    font-size: 1rem;
  }

  .section-head h2 {
    font-size: clamp(2rem, 13vw, 3rem);
    letter-spacing: 0.04em;
  }

  .platform-brand {
    gap: 12px;
  }

  .platform-logo-shell {
    width: 56px;
    height: 56px;
  }

  .platform-brand-copy strong {
    font-size: 1.5rem;
  }

  .platform-link-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .platform-arrow {
    width: 100%;
  }

  .footer {
    gap: 10px;
    padding-bottom: 82px;
  }
}

@media (max-width: 360px) {
  .navbar a {
    flex-basis: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
