/* ========================================================================== */
/* GIONA — static visual system                                               */
/* ========================================================================== */

:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;

  --page-bg-1: #f7f7f8;
  --page-bg-2: #ececef;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-solid: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --text-main: #09090b;
  --text-muted: #3f3f46;
  --text-soft: #52525b;
  --line-soft: rgba(9, 9, 11, 0.10);
  --frame-bg: #09090b;
  --frame-border: #27272a;
  --button-main: #09090b;
  --button-main-text: #ffffff;
  --shadow-heavy: rgba(0, 0, 0, 0.28);
  --shadow-card: rgba(0, 0, 0, 0.22);
  --shadow-cover: rgba(0, 0, 0, 0.35);
  --glow-top: rgba(255, 255, 255, 0.92);
  --hero-overlay: rgba(255, 255, 255, 0.90);
  --spotify: #1ed760;
}

:root[data-theme="dark"] {
  --page-bg-1: #060608;
  --page-bg-2: #15151a;
  --surface: rgba(16, 16, 20, 0.92);
  --surface-solid: #101014;
  --surface-soft: rgba(24, 24, 29, 0.84);
  --text-main: #f7f7f8;
  --text-muted: #d4d4d8;
  --text-soft: #a1a1aa;
  --line-soft: rgba(255, 255, 255, 0.12);
  --frame-bg: #f7f7f8;
  --frame-border: rgba(255, 255, 255, 0.22);
  --button-main: #ffffff;
  --button-main-text: #09090b;
  --shadow-heavy: rgba(0, 0, 0, 0.58);
  --shadow-card: rgba(0, 0, 0, 0.42);
  --shadow-cover: rgba(0, 0, 0, 0.54);
  --glow-top: rgba(255, 255, 255, 0.16);
  --hero-overlay: rgba(9, 9, 11, 0.72);
}

/* Base --------------------------------------------------------------------- */

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--page-bg-2);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--text-main);
  background: var(--page-bg-2);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.site-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 0%, var(--glow-top), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, var(--page-bg-1) 0%, var(--page-bg-2) 100%);
  transition: background 0.28s ease, color 0.28s ease;
}

/* Theme control ------------------------------------------------------------ */

.theme-toggle {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 13px;
  cursor: pointer;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #09090b;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

:root[data-theme="dark"] .theme-toggle {
  background: rgba(16, 16, 20, 0.84);
  color: #f7f7f8;
}

.theme-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(127, 127, 127, 0.14);
}

/* Hero shell --------------------------------------------------------------- */

.app-shell {
  min-height: 100svh;
  padding: 28px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.phone-frame {
  width: min(100%, 390px);
  padding: 8px;
  border: 1px solid var(--frame-border);
  border-radius: 38px;
  background: var(--frame-bg);
  box-shadow: 0 30px 80px var(--shadow-heavy);
}

.phone-screen {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--surface-solid);
  isolation: isolate;
}

.background-layer,
.background-cover,
.background-gradient {
  position: absolute;
  inset: 0;
}

.background-layer {
  z-index: -2;
  overflow: hidden;
}

.background-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  filter: blur(34px);
  opacity: 0.50;
}

.background-gradient {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 5%, var(--hero-overlay), rgba(255, 255, 255, 0) 32%),
    linear-gradient(to bottom, rgba(254, 205, 211, 0.58), rgba(228, 228, 231, 0.42), rgba(39, 39, 42, 0.46));
}

:root[data-theme="dark"] .background-gradient {
  background:
    radial-gradient(circle at 45% 8%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 30%),
    linear-gradient(to bottom, rgba(9, 9, 11, 0.22), rgba(9, 9, 11, 0.54), rgba(9, 9, 11, 0.90));
}

.content-card {
  position: relative;
  z-index: 2;
  padding: 48px 28px 30px;
  text-align: center;
}

.artist-label {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.cover {
  width: 210px;
  height: 210px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px var(--shadow-cover);
}

.content-card h1 {
  margin: 22px 0 0;
  color: var(--text-main);
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.subtitle {
  margin: 7px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.35;
}

/* Streaming / pre-save card ------------------------------------------------ */

.links-card {
  margin-top: 32px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 22px 55px var(--shadow-card);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--surface-solid);
  color: var(--text-main);
  text-align: left;
  transition: transform 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease;
}

button.link-row {
  cursor: pointer;
}

.link-row:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.link-row:active {
  transform: scale(0.985);
}

.link-row:focus-visible,
.theme-toggle:focus-visible,
.dialog-close:focus-visible,
.archive-links a:focus-visible,
.consent-actions button:focus-visible {
  outline: 3px solid rgba(29, 185, 84, 0.38);
  outline-offset: 3px;
}

.link-row.featured {
  border-color: #09090b;
  background: #09090b;
  color: #ffffff;
}

:root[data-theme="dark"] .link-row.featured {
  border-color: #09090b;
  background: #09090b;
  color: #ffffff;
}

.link-left {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.icon-badge {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #ffffff;
  color: var(--spotify);
}

.platform-logo {
  width: 24px;
  height: 24px;
}

.platform-name {
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.platform-action {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  opacity: 0.90;
}

.footer-note {
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 11px;
}

.legal-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 10px;
}

.legal-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Release archive ---------------------------------------------------------- */

.archive-section {
  width: min(calc(100% - 32px), 1080px);
  margin: 28px auto 0;
  padding: 38px;
  border: 1px solid var(--line-soft);
  border-radius: 34px;
  background: var(--surface-soft);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.archive-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.archive-kicker,
.archive-meta {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.archive-kicker {
  margin: 0 0 10px;
}

.archive-count {
  display: inline-grid;
  min-width: 48px;
  min-height: 30px;
  margin: 0;
  padding: 0 10px;
  place-items: center;
  border-radius: 999px;
  background: #09090b;
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.archive-head h2 {
  margin: 0;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.release-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.archive-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.archive-cover-wrap {
  position: relative;
  aspect-ratio: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--surface-soft);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.archive-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-num {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  min-width: 38px;
  min-height: 24px;
  padding: 0 7px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.82);
  color: #ffffff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.archive-info {
  min-width: 0;
  padding: 8px 8px 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.archive-meta {
  margin: 0 0 8px;
}

.archive-info h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.archive-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--surface-solid);
  color: var(--text-main);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.archive-links a:first-child {
  border-color: #09090b;
  background: #09090b;
  color: #ffffff;
}

.archive-links a:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.archive-links a:active {
  transform: scale(0.98);
}

.site-footer {
  width: min(calc(100% - 32px), 1080px);
  margin: 0 auto;
  padding: 26px 4px 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-soft);
  font-size: 10px;
}

.site-footer div {
  display: flex;
  gap: 14px;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Pre-save dialog ---------------------------------------------------------- */

.presave-dialog {
  width: min(calc(100% - 28px), 520px);
  max-height: min(88svh, 760px);
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: var(--text-main);
}

.presave-dialog::backdrop {
  background: rgba(9, 9, 11, 0.58);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.presave-dialog-panel {
  position: relative;
  max-height: min(88svh, 760px);
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: var(--surface-solid);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--text-main);
  font-size: 26px;
  line-height: 1;
}

.dialog-kicker {
  margin: 0 44px 10px 0;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.presave-dialog h2 {
  margin: 0;
  font-size: clamp(34px, 9vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.dialog-copy {
  margin: 12px 0 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.sonikit-embed-wrap {
  width: 100%;
  min-height: 92px;
  overflow: hidden;
  border-radius: 20px;
}

.sonikit-patch {
  width: 100%;
}

/* Consent ------------------------------------------------------------------ */

.consent-banner {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  width: min(calc(100% - 24px), 520px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(9, 9, 11, 0.94);
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.consent-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.35;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.consent-actions button {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.consent-actions .primary {
  border-color: #ffffff;
  background: #ffffff;
  color: #09090b;
}

/* Legal pages -------------------------------------------------------------- */

.legal-shell {
  align-items: flex-start;
  background:
    radial-gradient(circle at 50% 0%, var(--glow-top), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, var(--page-bg-1) 0%, var(--page-bg-2) 100%);
}

.legal-page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 42px 22px 110px;
  color: var(--text-main);
}

.back-link {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-kicker {
  margin: 0 0 10px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.legal-page h1 {
  margin: 0;
  font-size: clamp(34px, 8vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.legal-updated {
  margin: 14px 0 34px;
  color: var(--text-soft);
  font-size: 13px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content section {
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: var(--surface-soft);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.legal-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-panel {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: #09090b;
  color: #ffffff;
}

.consent-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.consent-panel strong {
  color: #ffffff;
}

.consent-actions.inline {
  margin-top: 12px;
}

/* Desktop ------------------------------------------------------------------ */

@media (min-width: 900px) {
  .release-shell {
    padding: 56px 28px;
  }

  .phone-frame {
    width: min(100%, 1080px);
    padding: 10px;
    border-radius: 34px;
  }

  .phone-screen {
    min-height: 640px;
    border-radius: 26px;
  }

  .background-cover {
    transform: scale(1.08);
    filter: blur(44px);
    opacity: 0.42;
  }

  .content-card {
    min-height: 640px;
    padding: 64px clamp(64px, 7vw, 112px);
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(340px, 1fr);
    grid-template-areas:
      "cover artist"
      "cover title"
      "cover subtitle"
      "cover links"
      "cover footer"
      "cover legal";
    column-gap: clamp(42px, 7vw, 96px);
    align-content: center;
    align-items: center;
    text-align: left;
  }

  .artist-label {
    grid-area: artist;
    margin: 0 0 22px;
    font-size: 12px;
  }

  .cover {
    grid-area: cover;
    width: min(36vw, 420px);
    height: min(36vw, 420px);
    margin: 0;
    border-radius: 30px;
    box-shadow: 0 34px 90px var(--shadow-cover);
  }

  .content-card h1 {
    grid-area: title;
    margin: 0;
    max-width: 100%;
    font-size: clamp(68px, 8vw, 116px);
    line-height: 0.82;
    letter-spacing: -0.065em;
  }

  .subtitle {
    grid-area: subtitle;
    margin: 18px 0 0;
    font-size: 18px;
  }

  .links-card {
    grid-area: links;
    width: min(100%, 460px);
    margin-top: 40px;
    padding: 14px;
    border-radius: 28px;
  }

  .link-row {
    min-height: 80px;
    padding: 18px;
    border-radius: 20px;
  }

  .footer-note {
    grid-area: footer;
    margin-top: 26px;
    font-size: 12px;
  }

  .legal-links {
    grid-area: legal;
    justify-self: start;
    margin-top: 12px;
  }
}

/* Tablet ------------------------------------------------------------------- */

@media (max-width: 980px) {
  .release-archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-card {
    grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  }
}

/* Mobile ------------------------------------------------------------------- */

@media (max-width: 520px) {
  .app-shell {
    padding: 0;
  }

  .phone-frame {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .phone-screen {
    min-height: 100svh;
    border-radius: 0;
  }

  .content-card {
    min-height: 100svh;
    padding:
      max(70px, calc(env(safe-area-inset-top) + 52px))
      22px
      max(34px, calc(env(safe-area-inset-bottom) + 22px));
  }

  .artist-label {
    margin-bottom: 34px;
  }

  .cover {
    width: min(58vw, 230px);
    height: min(58vw, 230px);
  }

  .content-card h1 {
    margin-top: 26px;
    font-size: clamp(38px, 11vw, 52px);
  }

  .subtitle {
    margin-top: 9px;
    font-size: 15px;
  }

  .links-card {
    margin-top: 34px;
    padding: 11px;
    border-radius: 24px;
  }

  .link-row {
    min-height: 72px;
  }

  .footer-note {
    margin-top: 24px;
    font-size: 11px;
  }

  .theme-toggle {
    top: max(10px, env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
    min-height: 38px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .archive-section {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 26px 16px 18px;
    border-radius: 28px;
  }

  .archive-head {
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 20px;
  }

  .archive-kicker {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .archive-head h2 {
    font-size: clamp(40px, 13vw, 52px);
  }

  .archive-count {
    min-width: 44px;
    min-height: 28px;
    font-size: 8px;
  }

  .release-archive-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .archive-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 13px;
    padding: 10px;
    border-radius: 24px;
  }

  .archive-cover-wrap {
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  }

  .archive-num {
    top: 7px;
    right: 7px;
    min-width: 32px;
    min-height: 20px;
    font-size: 7px;
  }

  .archive-info {
    padding: 4px 2px 4px 0;
  }

  .archive-meta {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .archive-info h3 {
    font-size: 26px;
  }

  .archive-links {
    gap: 6px;
    margin-top: 13px;
  }

  .archive-links a {
    min-height: 36px;
    padding: 0 10px;
    font-size: 9px;
  }

  .site-footer {
    width: calc(100% - 28px);
    padding: 24px 2px max(38px, calc(env(safe-area-inset-bottom) + 24px));
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .presave-dialog-panel {
    padding: 26px 20px 22px;
    border-radius: 24px;
  }

  .consent-banner {
    bottom: max(10px, env(safe-area-inset-bottom));
    align-items: stretch;
    flex-direction: column;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-actions button {
    flex: 1;
  }

  .legal-page {
    padding: 32px 16px 118px;
  }

  .legal-content section {
    padding: 18px;
    border-radius: 18px;
  }

  .consent-actions.inline {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .archive-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .archive-links a {
    min-height: 34px;
    padding: 0 8px;
    font-size: 8px;
  }
}

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

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