
:root {
  --background: #030407;
  --foreground: #f8f7f4;
  --aylen-red: #af0202;
  --aylen-black: #1b1b1b;
  --deep-black: #080c11;
  --stage-blue: #4c778f;
  --skin-rose: #a98b89;
  --muted-white: rgba(248, 247, 244, 0.68);
  --font-geist-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --scroll-progress: 0;
  --mobile-nav-space: 5.5rem;
}


* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--foreground);
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

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

svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

button {
  font: inherit;
}

.js [data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(42px);
  transition:
    opacity 820ms ease,
    filter 820ms ease,
    transform 820ms ease;
}

.js [data-image-reveal] {
  opacity: 0;
  clip-path: inset(18% 0% 18% 0%);
  filter: blur(12px);
  transform: scale(1.04);
  transition:
    opacity 920ms ease,
    clip-path 920ms ease,
    filter 920ms ease,
    transform 920ms ease;
}

.js [data-reveal].is-visible,
.js [data-image-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0% 0% 0% 0%);
  filter: blur(0);
  transform: translateY(0) scale(1);
}

::selection {
  background: var(--aylen-red);
  color: white;
}

[id] {
  scroll-margin-top: 6rem;
}

.site-experience {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, #030407 0%, #0c080a 45%, #030407 100%),
    var(--background);
}

.cursor-aura {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(175, 2, 2, 0.72);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(175, 2, 2, 0.36);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.hero-scene {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  background: #030407;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.96) 0%, rgba(3, 4, 7, 0.74) 36%, rgba(3, 4, 7, 0.2) 72%, rgba(3, 4, 7, 0.52) 100%),
    linear-gradient(0deg, rgba(3, 4, 7, 0.96) 0%, rgba(3, 4, 7, 0) 42%),
    radial-gradient(ellipse at 70% 46%, rgba(175, 2, 2, 0.2), transparent 36%);
}

.desktop-nav {
  position: fixed;
  top: 1.05rem;
  right: clamp(1.25rem, 4vw, 4.5rem);
  left: clamp(1.25rem, 4vw, 4.5rem);
  z-index: 900;
  display: grid;
  grid-template-columns: minmax(9rem, 12rem) 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.4rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(3, 4, 7, 0.92);
  padding: 0.68rem 0.72rem 0.68rem 1.05rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
  transition:
    min-height 180ms ease,
    opacity 160ms ease,
    padding 180ms ease,
    transform 160ms ease,
    background 180ms ease,
    visibility 0s linear 0s;
}

.desktop-nav::after,
.mobile-nav::after {
  content: "";
  position: absolute;
  right: 0.72rem;
  bottom: -1px;
  left: 0.72rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aylen-red), rgba(255, 255, 255, 0.74));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  transition: transform 160ms linear;
}

.nav-wordmark {
  display: inline-flex;
  align-items: center;
  width: 10.5rem;
}

.desktop-nav nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.desktop-nav nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  border-radius: 6px;
  padding: 0 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background 280ms ease,
    color 280ms ease,
    transform 280ms ease;
}

.desktop-nav nav a::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  bottom: 0.58rem;
  left: 0.85rem;
  height: 1px;
  background: var(--aylen-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.desktop-nav nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transform: translateY(-1px);
}

.desktop-nav nav a:hover::after,
.desktop-nav nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.desktop-nav nav a[aria-current="location"] {
  background: rgba(175, 2, 2, 0.16);
  color: white;
}

.desktop-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  border: 1px solid rgba(175, 2, 2, 0.68);
  border-radius: 6px;
  background: rgba(175, 2, 2, 0.2);
  padding: 0 0.95rem;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background 280ms ease,
    box-shadow 280ms ease,
    transform 280ms ease;
}

.desktop-nav-cta:hover {
  background: rgba(175, 2, 2, 0.72);
  box-shadow: 0 0 34px rgba(175, 2, 2, 0.28);
  transform: translateY(-1px);
}

.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.mobile-menu a:focus-visible,
.mobile-menu-button:focus-visible,
.mobile-menu-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.88);
  outline-offset: 3px;
}

.mobile-nav,
.mobile-menu {
  display: none;
}

.mobile-nav {
  position: fixed;
  top: 0.85rem;
  right: 1rem;
  left: 1rem;
  z-index: 900;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(3, 4, 7, 0.94);
  padding: 0.55rem 0.58rem 0.55rem 0.78rem;
  backdrop-filter: blur(20px);
  transition:
    background 180ms ease,
    opacity 160ms ease,
    transform 160ms ease,
    visibility 0s linear 0s;
}

.nav-compact .desktop-nav {
  min-height: 3.85rem;
  background: rgba(3, 4, 7, 0.96);
  padding-block: 0.45rem;
}

.nav-compact .mobile-nav {
  background: rgba(3, 4, 7, 0.97);
}

.mobile-mark {
  display: inline-flex;
  width: 4.8rem;
}

.mobile-menu-button,
.mobile-menu-close {
  display: inline-flex;
  width: 2.9rem;
  height: 2.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.mobile-menu-button .icon-close {
  display: none;
}

.mobile-menu-button[aria-expanded="true"] .icon-menu {
  display: none;
}

.mobile-menu-button[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    linear-gradient(135deg, rgba(3, 4, 7, 0.98) 0%, rgba(34, 2, 5, 0.98) 58%, rgba(3, 4, 7, 0.98) 100%),
    #030407;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1.2rem);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.nav-open .mobile-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.8rem);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-sheen {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(175, 2, 2, 0.32), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(76, 119, 143, 0.26), transparent 28%);
  opacity: 0.75;
}

.mobile-menu-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.mobile-menu-header img {
  width: 8.5rem;
}

.mobile-menu nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  padding: clamp(1rem, 5svh, 2rem) 1rem 1rem;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  align-items: center;
  min-height: clamp(4.25rem, 10.5svh, 5.4rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(1rem);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    opacity 360ms ease,
    transform 360ms ease;
  transition-delay: calc(var(--nav-index) * 45ms);
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav a:active {
  border-color: rgba(175, 2, 2, 0.72);
  background: rgba(175, 2, 2, 0.18);
}

.mobile-menu nav a[aria-current="location"] {
  border-color: rgba(175, 2, 2, 0.82);
  background:
    linear-gradient(90deg, rgba(175, 2, 2, 0.24), rgba(255, 255, 255, 0.065)),
    rgba(255, 255, 255, 0.055);
}

.mobile-menu nav a[aria-current="location"] span,
.mobile-menu nav a[aria-current="location"] svg {
  color: white;
}

.mobile-menu nav span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-menu nav strong {
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-streaming-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: auto 1rem calc(2.25rem + env(safe-area-inset-bottom));
  border: 1px solid rgba(175, 2, 2, 0.84);
  border-radius: 8px;
  background: var(--aylen-red);
  color: white;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

html.nav-open,
html.nav-open body {
  overflow: hidden;
}

.biography-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, #030407 0%, #140305 44%, #030407 100%),
    #030407;
  color: white;
}

.biography-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  background: #030407;
}

.biography-hero-media,
.biography-hero-media img,
.biography-hero-shade {
  position: absolute;
  inset: 0;
}

.biography-hero-media {
  z-index: -3;
}

.biography-hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 72% center;
}

.biography-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.96) 0%, rgba(3, 4, 7, 0.78) 42%, rgba(3, 4, 7, 0.22) 74%, rgba(3, 4, 7, 0.64) 100%),
    linear-gradient(0deg, rgba(3, 4, 7, 0.96) 0%, rgba(3, 4, 7, 0.08) 48%, rgba(3, 4, 7, 0.26) 100%),
    radial-gradient(ellipse at 74% 42%, rgba(175, 2, 2, 0.24), transparent 34%);
}

.biography-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92svh;
  max-width: 64rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 9rem clamp(1.25rem, 4vw, 4.5rem) 5rem;
}

.biography-hero-content h1 {
  max-width: 48rem;
  margin: 0.85rem 0 0;
  font-size: 4.9rem;
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.biography-hero-content p:not(.section-kicker) {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.75;
}

.biography-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.biography-body {
  display: grid;
  grid-template-columns: minmax(18rem, 0.48fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  background: #f8f7f4;
  color: #030407;
}

.biography-sticky-heading {
  position: sticky;
  top: 7.25rem;
  align-self: start;
}

.biography-sticky-heading h2 {
  max-width: 30rem;
  margin: 0.8rem 0 1.6rem;
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.biography-source-link {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(3, 4, 7, 0.15);
  border-radius: 6px;
  padding: 0 1rem;
  color: #030407;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    border-color 280ms ease,
    background 280ms ease,
    transform 280ms ease;
}

.biography-source-link:hover {
  border-color: rgba(175, 2, 2, 0.62);
  background: rgba(175, 2, 2, 0.08);
  transform: translateY(-1px);
}

.biography-copy {
  display: grid;
  gap: 1.15rem;
  max-width: 58rem;
}

.biography-copy p {
  margin: 0;
  color: rgba(3, 4, 7, 0.78);
  font-size: 1.04rem;
  line-height: 1.85;
}

.biography-copy p:first-child {
  color: #030407;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.58;
}

.biography-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.biography-milestone {
  display: grid;
  min-height: 18rem;
  align-content: end;
  gap: 0.75rem;
  background:
    linear-gradient(135deg, rgba(175, 2, 2, 0.22), rgba(255, 255, 255, 0.035)),
    #050609;
  padding: 1.25rem;
}

.biography-milestone span {
  color: var(--aylen-red);
  font-size: 3.7rem;
  font-weight: 950;
  line-height: 0.86;
}

.biography-milestone strong {
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.biography-milestone p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.55;
}

.biography-close {
  display: grid;
  min-height: 54svh;
  place-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 4.5rem);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(175, 2, 2, 0.32), transparent 44%),
    #030407;
}

.biography-close div {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
}

.biography-close p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.biography-close h2 {
  margin: 0;
  color: var(--aylen-red);
  font-size: 5rem;
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 94svh;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 82rem;
  padding: 8rem clamp(1.25rem, 4vw, 4.5rem) 4.2rem;
}

.hero-kicker,
.section-kicker {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0.9rem 0 0;
  max-width: 44rem;
  font-size: 6rem;
  font-weight: 950;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-content h1 span {
  display: block;
  color: var(--aylen-red);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 57rem;
  margin-top: 2rem;
}

.hero-bottom p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.premium-action,
.ghost-action {
  position: relative;
  display: inline-flex;
  min-height: 3.7rem;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  overflow: hidden;
  border-radius: 2px;
  padding: 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  transition:
    border-color 500ms ease,
    box-shadow 500ms ease,
    transform 500ms ease;
}

.premium-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 42%, transparent 58%),
    linear-gradient(90deg, rgba(175, 2, 2, 0.92), rgba(175, 2, 2, 0.22));
  transform: translateX(-108%);
  transition: transform 700ms ease;
}

.premium-action:hover {
  border-color: rgba(175, 2, 2, 0.92);
  box-shadow: 0 0 44px rgba(175, 2, 2, 0.26);
  transform: translateY(-2px);
}

.premium-action:hover::before {
  transform: translateX(0);
}

.ghost-action {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  transition:
    border-color 300ms ease,
    color 300ms ease,
    transform 300ms ease;
}

.ghost-action:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

.ghost-action.light {
  border-color: rgba(3, 4, 7, 0.16);
  color: #030407;
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(4.5rem, 0.18fr) minmax(22rem, 1fr) minmax(24rem, 0.9fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 100svh;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  background:
    linear-gradient(135deg, #0a0507 0%, #2a0305 46%, #09090b 100%),
    #0a0507;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 80%, transparent);
  opacity: 0.35;
}

.scene-number {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.1);
  font-size: 5rem;
  font-weight: 950;
  line-height: 0.85;
}

.story-manifesto {
  position: relative;
  z-index: 1;
  align-self: center;
}

.story-manifesto h2 {
  max-width: 10ch;
  margin: 0.9rem 0 0;
  font-size: clamp(3.7rem, 6vw, 6.8rem);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
}

.story-manifesto h2 span {
  color: var(--aylen-red);
}

.story-slogan {
  margin: 2rem 0 0;
  color: white;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.story-description {
  max-width: 32rem;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
}

.story-brand-panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(175, 2, 2, 0.65);
  background:
    linear-gradient(145deg, rgba(175, 2, 2, 0.16), transparent 44%),
    #030407;
}

.story-brand-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(1.25rem, 3vw, 3rem);
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(175, 2, 2, 0.75), transparent);
}

.story-monogram {
  display: grid;
  min-height: clamp(11rem, 22vw, 18rem);
  place-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.story-monogram img {
  width: min(18rem, 78%);
  height: auto;
}

.story-brand-panel > p {
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-pillars {
  display: grid;
  margin-top: 0.8rem;
}

.story-pillars div {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 4.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.story-pillars small {
  color: var(--aylen-red);
  font-weight: 900;
}

.story-pillars strong {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  text-transform: uppercase;
}

.story-pillars span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: 700;
}

.music-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(24rem, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 110svh;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  overflow: hidden;
  background: #030407;
}

.music-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.23;
}

.music-backdrop img {
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.music-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #030407 0%, rgba(3, 4, 7, 0.86) 38%, rgba(3, 4, 7, 0.58) 100%),
    linear-gradient(180deg, #030407 0%, transparent 30%, #030407 100%);
}

.music-intro,
.platform-stack,
.embed-stage {
  position: relative;
  z-index: 1;
}

.music-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-kicker {
  color: var(--aylen-red);
}

.music-intro h2,
.section-heading h2,
.gallery-heading h2,
.tour-content h2,
.contact-copy h2 {
  margin: 0.8rem 0 0;
  max-width: 42rem;
  font-size: 4.6rem;
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.music-intro p:not(.section-kicker) {
  max-width: 34rem;
  margin: 1.5rem 0 2rem;
  color: var(--muted-white);
  font-size: 1rem;
  line-height: 1.75;
}

.platform-stack {
  display: grid;
  align-content: end;
  gap: 0.8rem;
  max-width: 36rem;
  margin-left: auto;
}

.platform-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 1rem;
  backdrop-filter: blur(18px);
  transition:
    border-color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}

.platform-link:hover {
  border-color: rgba(175, 2, 2, 0.78);
  background: rgba(175, 2, 2, 0.15);
  transform: translateX(4px);
}

.platform-link span {
  display: grid;
  gap: 0.28rem;
}

.platform-link strong {
  font-size: 1rem;
}

.platform-link small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
}

.embed-stage {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.embed-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.embed-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.spotify-frame iframe {
  height: 22rem;
}

.youtube-frame {
  aspect-ratio: 16 / 9;
}

.youtube-frame iframe {
  height: 100%;
}

.youtube-channel-card {
  position: relative;
  display: grid;
  place-items: center;
  color: white;
}

.youtube-channel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 4, 7, 0.12), rgba(3, 4, 7, 0.82)),
    linear-gradient(90deg, rgba(175, 2, 2, 0.28), transparent 58%);
}

.youtube-channel-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition:
    filter 500ms ease,
    scale 700ms ease;
}

.youtube-channel-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  padding: 1.25rem;
  text-align: center;
}

.youtube-play-mark {
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 0.35rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(175, 2, 2, 0.78);
  box-shadow: 0 0 32px rgba(175, 2, 2, 0.36);
}

.youtube-play-mark svg {
  fill: white;
  margin-left: 0.16rem;
  stroke: white;
}

.youtube-channel-overlay small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.youtube-channel-overlay strong {
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.youtube-channel-card:hover > img {
  filter: saturate(1.16) contrast(1.06);
  scale: 1.04;
}

.discography-section {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  background:
    linear-gradient(180deg, #030407 0%, #101015 42%, #030407 100%),
    #030407;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.release-card {
  position: relative;
  display: grid;
  min-height: 31rem;
  overflow: hidden;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #111;
  padding: 1rem;
  transition:
    border-color 400ms ease,
    transform 400ms ease,
    box-shadow 400ms ease;
}

.release-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    scale 700ms ease,
    filter 700ms ease;
}

.release-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 4, 7, 0.28) 44%, rgba(3, 4, 7, 0.96) 100%),
    linear-gradient(90deg, rgba(175, 2, 2, 0.18), transparent 42%);
}

.release-card span,
.release-card strong,
.release-card svg {
  position: relative;
  z-index: 1;
}

.release-card .release-year {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
}

.release-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-card strong {
  margin-top: 0.4rem;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.release-card svg {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.release-card:hover {
  border-color: rgba(175, 2, 2, 0.85);
  box-shadow: 0 0 52px rgba(175, 2, 2, 0.2);
  transform: translateY(-8px);
}

.release-card:hover img {
  filter: saturate(1.18) contrast(1.08);
  scale: 1.05;
}

.gallery-section {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background: #050609;
}

.gallery-heading {
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
}

.gallery-viewport {
  margin-top: 2.5rem;
  overflow: visible;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  will-change: transform;
}

.gallery-frame {
  position: relative;
  width: 22rem;
  height: 31rem;
  flex: 0 0 auto;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #111;
}

.gallery-frame:nth-child(2n) {
  width: 30rem;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 500ms ease,
    scale 700ms ease;
}

.gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 4, 7, 0.86));
}

.gallery-frame figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-frame:hover img {
  filter: saturate(1.18);
  scale: 1.04;
}

.tour-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(20rem, 1fr);
  min-height: 92svh;
  background: #f8f7f4;
  color: #030407;
}

.tour-image {
  position: relative;
  overflow: hidden;
  min-height: 34rem;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 4vw, 4.5rem);
}

.tour-content h2 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
  overflow-wrap: anywhere;
}

.tour-content .section-kicker {
  color: var(--aylen-red);
}

.tour-lines {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0;
  max-width: 34rem;
}

.tour-lines div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  border-top: 1px solid rgba(3, 4, 7, 0.16);
  padding-top: 1rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.tour-lines svg {
  margin-top: 0.08rem;
}

.tour-lines span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.booking-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 42rem;
  margin: 0 0 1rem;
}

.booking-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  min-width: 0;
  min-height: 5.2rem;
  border: 1px solid rgba(3, 4, 7, 0.15);
  border-radius: 8px;
  background: rgba(3, 4, 7, 0.045);
  padding: 1rem;
  transition:
    border-color 280ms ease,
    background 280ms ease,
    transform 280ms ease;
}

.booking-card:hover {
  border-color: rgba(175, 2, 2, 0.5);
  background: rgba(175, 2, 2, 0.075);
  transform: translateY(-2px);
}

.booking-card span {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.booking-card strong {
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-card small {
  color: rgba(3, 4, 7, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  background:
    linear-gradient(135deg, #09090b 0%, #210204 55%, #030407 100%),
    #030407;
}

.contact-mark img {
  width: min(24rem, 100%);
}

.contact-copy p {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-copy h2 {
  font-size: 3.4rem;
}

.contact-links {
  display: grid;
  gap: 0.75rem;
}

.contact-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0 1rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    border-color 300ms ease,
    transform 300ms ease,
    background 300ms ease;
}

.contact-links a:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

@media (min-width: 760px) {
  .hero-content h1 {
    font-size: 8.5rem;
  }

  .biography-hero-content h1 {
    max-width: 36rem;
    font-size: clamp(4.7rem, 8vw, 5.8rem);
  }
}

@media (min-width: 1180px) {
  .hero-content h1 {
    font-size: 10rem;
  }

  .biography-hero-content h1 {
    max-width: 34rem;
    font-size: 5.8rem;
  }

  .scene-number {
    font-size: 8rem;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    grid-template-columns: minmax(8rem, 9rem) 1fr auto;
  }

  .nav-wordmark {
    width: 8.6rem;
  }

  .desktop-nav nav a {
    padding: 0 0.62rem;
    font-size: 0.72rem;
  }

  .hero-bottom,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-section,
  .music-section,
  .embed-stage,
  .tour-section,
  .biography-body,
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-section {
    min-height: auto;
  }

  .scene-number {
    display: none;
  }

  .story-manifesto {
    justify-self: center;
    text-align: center;
  }

  .story-manifesto h2,
  .story-description {
    margin-right: auto;
    margin-left: auto;
  }

  .story-brand-panel {
    width: min(100%, 46rem);
    justify-self: center;
    border-right: 0;
    border-left: 0;
  }

  .platform-stack {
    max-width: none;
    margin-left: 0;
  }

  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-image {
    min-height: 28rem;
  }

  .booking-contact-grid {
    grid-template-columns: 1fr;
  }

  .biography-sticky-heading {
    position: static;
  }

  .biography-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {
  .embed-stage {
    align-items: stretch;
  }

  .embed-frame {
    height: 100%;
  }

  .spotify-frame {
    min-height: 22rem;
  }

  .spotify-frame iframe {
    height: 100%;
    min-height: 22rem;
  }
}

@media (max-width: 1099px) {
  html {
    scroll-padding-top: var(--mobile-nav-space);
  }

  [id] {
    scroll-margin-top: var(--mobile-nav-space);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav,
  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 5.25rem;
  }

  [id] {
    scroll-margin-top: 5.25rem;
  }

  .cursor-aura {
    display: none;
  }

  .hero-media img {
    object-position: 78% 28%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 4, 7, 0.92) 0%, rgba(3, 4, 7, 0.52) 60%, rgba(3, 4, 7, 0.32) 100%),
      linear-gradient(0deg, rgba(3, 4, 7, 0.98) 0%, rgba(3, 4, 7, 0.08) 58%),
      radial-gradient(ellipse at 62% 44%, rgba(175, 2, 2, 0.16), transparent 40%);
  }

  .hero-content {
    width: 100%;
    max-width: none;
    align-items: center;
    padding-top: 9rem;
    padding-right: 1.25rem;
    padding-bottom: 2.5rem;
    padding-left: 1.25rem;
    text-align: center;
  }

  .hero-content h1 {
    max-width: 6ch;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(3.55rem, 17.5vw, 4.35rem);
  }

  .hero-bottom {
    width: 100%;
    max-width: 25rem;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
    margin-top: 1.15rem;
    margin-left: auto;
  }

  .hero-bottom p {
    max-width: 22rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .biography-hero {
    min-height: 0;
    padding-top: clamp(26rem, 112vw, 30rem);
  }

  .biography-hero-media,
  .biography-hero-shade {
    inset: 0 0 auto;
    height: clamp(26rem, 112vw, 30rem);
  }

  .biography-hero-media {
    z-index: 0;
  }

  .biography-hero-media img {
    height: 100%;
    object-position: 68% 34%;
  }

  .biography-hero-shade {
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(3, 4, 7, 0.08) 0%, rgba(3, 4, 7, 0.08) 56%, #030407 100%),
      linear-gradient(90deg, rgba(3, 4, 7, 0.34), transparent 56%, rgba(3, 4, 7, 0.18));
  }

  .biography-hero-content {
    z-index: 2;
    min-height: 0;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2.25rem;
    padding-right: 1.25rem;
    padding-bottom: 3.4rem;
    padding-left: 1.25rem;
    background: #030407;
    text-align: center;
  }

  .biography-hero-content h1 {
    max-width: 10ch;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.85rem, 13vw, 3.65rem);
  }

  .biography-hero-content p:not(.section-kicker) {
    margin-right: auto;
    margin-left: auto;
  }

  .biography-actions,
  .biography-actions .premium-action,
  .biography-actions .ghost-action {
    width: 100%;
  }

  .hero-actions,
  .premium-action,
  .ghost-action {
    width: 100%;
  }

  .hero-actions,
  .biography-actions {
    justify-content: center;
  }

  .hero-actions .premium-action,
  .hero-actions .ghost-action,
  .biography-actions .premium-action,
  .biography-actions .ghost-action,
  .music-intro .premium-action {
    max-width: 22rem;
    margin-right: auto;
    margin-left: auto;
  }

  .story-section,
  .music-section,
  .discography-section,
  .gallery-section,
  .tour-section,
  .contact-section,
  .biography-body,
  .biography-timeline {
    text-align: center;
  }

  .story-section,
  .music-section,
  .contact-section,
  .biography-body {
    justify-items: center;
  }

  .story-manifesto {
    max-width: 34rem;
  }

  .story-manifesto h2 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .story-description {
    margin-right: auto;
    margin-left: auto;
  }

  .story-brand-panel {
    width: min(100%, 34rem);
    padding: 2rem 1rem;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .story-monogram {
    min-height: 10rem;
  }

  .story-brand-panel > p {
    margin-right: auto;
    margin-left: auto;
  }

  .story-pillars div {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.22rem;
    padding: 1rem 0;
  }

  .music-intro h2,
  .section-heading h2,
  .gallery-heading h2,
  .biography-sticky-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3rem);
    overflow-wrap: anywhere;
  }

  .music-intro {
    width: 100%;
    align-items: center;
  }

  .music-intro h2,
  .music-intro p:not(.section-kicker),
  .section-heading h2,
  .gallery-heading h2,
  .biography-sticky-heading h2,
  .contact-copy h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .platform-stack,
  .embed-stage {
    width: 100%;
    max-width: 36rem;
    margin-right: auto;
    margin-left: auto;
  }

  .platform-link {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .platform-link span {
    text-align: center;
  }

  .section-heading {
    align-items: center;
    text-align: center;
  }

  .release-card {
    justify-items: center;
    text-align: center;
  }

  .release-card .release-year {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .release-card > svg {
    display: none;
  }

  .gallery-heading {
    text-align: center;
  }

  .tour-section {
    min-height: auto;
  }

  .tour-image {
    min-height: clamp(20rem, 82vw, 28rem);
  }

  .tour-content {
    align-items: center;
    padding: 3rem 1.15rem 3.6rem;
    text-align: center;
  }

  .tour-content h2 {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.72rem, 8.7vw, 3rem);
    line-height: 0.96;
  }

  .tour-lines {
    width: 100%;
    max-width: 32rem;
    gap: 0.65rem;
    margin: 1.55rem auto;
  }

  .tour-lines div {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.72rem;
    padding-top: 0.9rem;
    font-size: clamp(0.95rem, 5.2vw, 1.22rem);
    text-align: center;
  }

  .booking-contact-grid {
    width: 100%;
    max-width: 32rem;
    margin-right: auto;
    margin-left: auto;
  }

  .booking-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.72rem;
    min-height: 0;
    padding: 0.95rem;
    text-align: center;
  }

  .booking-card small {
    font-size: clamp(0.82rem, 4.5vw, 1rem);
  }

  .tour-content .ghost-action.light {
    max-width: 100%;
    min-height: 3.35rem;
    margin-right: auto;
    margin-left: auto;
    padding-inline: 0.85rem;
  }

  .biography-sticky-heading,
  .biography-copy {
    width: 100%;
    max-width: 36rem;
    text-align: center;
  }

  .biography-source-link {
    margin-right: auto;
    margin-left: auto;
  }

  .biography-copy p:first-child {
    font-size: 1.14rem;
  }

  .biography-timeline {
    grid-template-columns: 1fr;
  }

  .biography-milestone {
    min-height: 13rem;
    justify-items: center;
    text-align: center;
  }

  .biography-close h2 {
    font-size: 3.6rem;
  }

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

  .release-card {
    min-height: 28rem;
  }

  .gallery-track {
    display: grid;
    width: auto;
    transform: none !important;
    padding-right: clamp(1.25rem, 4vw, 4.5rem);
  }

  .gallery-frame,
  .gallery-frame:nth-child(2n) {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-frame figcaption {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-section {
    align-items: start;
  }

  .contact-mark,
  .contact-copy,
  .contact-links {
    width: 100%;
    max-width: 32rem;
    margin-right: auto;
    margin-left: auto;
  }

  .contact-mark img {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-links a {
    grid-template-columns: auto minmax(0, 1fr) auto;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .mobile-nav {
    right: 0.7rem;
    left: 0.7rem;
  }

  .hero-content,
  .biography-hero-content {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero-content h1 {
    font-size: clamp(3.2rem, 17vw, 3.75rem);
  }

  .music-intro h2,
  .section-heading h2,
  .gallery-heading h2,
  .biography-sticky-heading h2,
  .contact-copy h2 {
    font-size: 2.55rem;
  }

  .mobile-menu nav strong {
    font-size: 1.12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
