@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-base: #07090e;
  --border: #1d2633;
  --accent: #1f49ff;
  --text: #e8edf4;
  --text-dim: #94a3b8;
  --muted: #64748b;
  --space: 8px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --nav-height: 64px;
  --layout-max: 1200px;
  --hero-height: min(52vh, 520px);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-base);
  min-height: 100vh;
}

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

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

/* Logo glow */
.logo-glow {
  display: inline-block;
  border-radius: 50%;
  line-height: 0;
  flex-shrink: 0;
  box-shadow:
    0 0 12px rgba(31, 73, 255, 0.55),
    0 0 28px rgba(59, 130, 246, 0.35);
}

.logo-glow img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.logo-glow--sm {
  width: 36px;
  height: 36px;
}

.logo-glow--lg {
  width: 140px;
  height: 140px;
  box-shadow:
    0 0 20px rgba(31, 73, 255, 0.65),
    0 0 40px rgba(59, 130, 246, 0.4);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space);
  z-index: 10000;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
}

.skip-link:focus {
  top: var(--space);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(7, 9, 14, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  margin-right: auto;
}

.site-logo__name {
  line-height: 1.2;
}

.site-logo:hover {
  opacity: 0.85;
}

.header-cta {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #5865f2;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 12px rgba(88, 101, 242, 0.25);
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.2s var(--ease);
}

.header-cta:hover {
  background: #6570f5;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 20px rgba(88, 101, 242, 0.55),
    0 6px 24px rgba(88, 101, 242, 0.4);
}

.header-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(88, 101, 242, 0.35);
}

.site-header__end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.site-auth__link {
  display: block;
  line-height: 0;
  flex-shrink: 0;
  border-radius: 50%;
  transition: transform 0.2s var(--ease);
}

.site-auth__link:hover {
  transform: scale(1.05);
}

.site-auth__pfp {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 12px rgba(31, 73, 255, 0.35),
    0 0 24px rgba(59, 130, 246, 0.15);
  background: #0f141a;
}

.site-auth__link--active .site-auth__pfp {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow:
    0 0 16px rgba(31, 73, 255, 0.55),
    0 0 32px rgba(59, 130, 246, 0.28);
}

.site-auth__pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.site-auth__initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(135deg, #5865f2, #1f49ff);
  color: #fff;
}

/* Home layout */
.page-home main {
  padding-top: var(--nav-height);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero--cropped {
  height: var(--hero-height);
  min-height: 280px;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.15);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 14, 0.4);
  z-index: 1;
}

.hero__brand {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 24px;
}

.hero__title {
  font-size: clamp(22px, 4.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 20ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  color: var(--text);
}

/* L D F C — white border layer + gradient fill on top */
.hero__title-accent {
  position: relative;
  display: inline-block;
}

.hero__title-accent__border {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  color: #ffffff;
  pointer-events: none;
  transform: scale(1.045);
  transform-origin: center center;
}

.hero__title-accent__fill {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    #4a7fd4 0%,
    #2d5a9e 38%,
    #1b315e 72%,
    #081226 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Apply panel */
.apply-panel {
  padding: 56px 24px 72px;
  border-top: 1px solid var(--border);
}

.apply-panel__inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.apply-panel__card {
  width: 100%;
  max-width: 480px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(165deg, #0f141a 0%, #0a0e14 100%);
  text-align: center;
}

.apply-panel__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.apply-panel__text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 240px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 55%, #3c45a5 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 4px 20px rgba(88, 101, 242, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.2s var(--ease),
    filter 0.2s var(--ease);
}

.apply-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  filter: brightness(1.05);
  box-shadow:
    0 0 28px rgba(88, 101, 242, 0.65),
    0 8px 32px rgba(88, 101, 242, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.apply-btn:active {
  transform: translateY(0);
  box-shadow:
    0 2px 14px rgba(88, 101, 242, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.apply-btn__label {
  line-height: 1;
}

.apply-btn__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.apply-btn__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

/* Inner pages (privacy, terms, rules) */
.page-inner {
  padding: calc(var(--nav-height) + 40px) 24px 64px;
}

.page-inner__wrap {
  max-width: 640px;
  margin: 0 auto;
}

.page-inner__back {
  margin-bottom: 24px;
}

.page-inner__back a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}

.page-inner__back a:hover {
  color: var(--text);
}

.page-inner__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.page-inner__updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.page-inner__content {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
}

.page-inner__content h2 {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 10px;
}

.page-inner__content p {
  margin-bottom: 14px;
}

.page-inner__content a {
  color: #7c9eff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-inner__content a:hover {
  color: #a8bcff;
}

.page-inner__wrap--rules {
  max-width: 640px;
}

.page-inner__lead {
  color: var(--text-dim);
  font-size: 16px;
  margin: -20px 0 36px;
}

.rules-pills {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rules-pill {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rules-pill__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  background: #0f141a;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow:
    0 0 14px rgba(31, 73, 255, 0.35),
    0 0 28px rgba(59, 130, 246, 0.15);
  transition: box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}

.rules-pill__text {
  flex: 1;
  margin: 0;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  background: #0f141a;
  border: 1px solid var(--border);
  border-radius: 9999px;
  box-shadow:
    0 0 16px rgba(31, 73, 255, 0.3),
    0 0 32px rgba(59, 130, 246, 0.12);
  transition: box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}

.rules-pill--visible .rules-pill__num,
.rules-pill--visible .rules-pill__text {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow:
    0 0 20px rgba(31, 73, 255, 0.55),
    0 0 40px rgba(59, 130, 246, 0.25),
    inset 0 0 20px rgba(31, 73, 255, 0.06);
}

.rules-pill--locked .rules-pill__num,
.rules-pill--locked .rules-pill__text {
  filter: blur(7px);
  opacity: 0.55;
  user-select: none;
  pointer-events: none;
}

.rules-pills__join {
  margin-top: 28px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.rules-pills__join a {
  color: #7c9eff;
  text-shadow: 0 0 20px rgba(31, 73, 255, 0.5);
  transition: color 0.2s var(--ease), text-shadow 0.25s var(--ease);
}

.rules-pills__join a:hover {
  color: #a8bcff;
  text-shadow: 0 0 28px rgba(31, 73, 255, 0.75);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #0a0e14 0%, #07090e 100%);
  padding: 56px 24px 28px;
}

.site-footer__top {
  max-width: var(--layout-max);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: minmax(200px, 1.2fr) 1fr;
  gap: 48px 32px;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__logo-link {
  display: inline-block;
  line-height: 0;
}

.site-footer__logo-link:hover {
  opacity: 0.9;
}

.site-footer__name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.site-footer__tagline {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 32ch;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #5865f2;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 14px rgba(88, 101, 242, 0.3);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.2s var(--ease);
}

.footer-cta:hover {
  background: #6570f5;
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(88, 101, 242, 0.5),
    0 6px 20px rgba(88, 101, 242, 0.35);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.site-footer__heading {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}

.site-footer__links {
  list-style: none;
}

.site-footer__links li + li {
  margin-top: 10px;
}

.site-footer__links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}

.site-footer__links a:hover {
  color: var(--text);
}

.site-footer__links a[aria-current='page'] {
  color: var(--text);
}

.site-footer__bottom {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer__copy {
  font-size: 13px;
  color: var(--muted);
}

.site-footer__fineprint {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  max-width: 36ch;
}

/* Profile */
.page-inner__wrap--profile {
  max-width: 960px;
}

.profile-dash__notice {
  margin-bottom: 16px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
  background: rgba(31, 73, 255, 0.08);
  border: 1px solid rgba(31, 73, 255, 0.2);
  border-radius: 8px;
}

.profile-dash__notice--warn {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.25);
}

.profile-dash__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  margin-bottom: 20px;
}

.profile-dash__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-dash__card {
  background: #0f141a;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 24px rgba(31, 73, 255, 0.08);
}

.profile-dash__card--main {
  border-left: 3px solid var(--profile-rim, #1f49ff);
}

.profile-dash__identity {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.profile-dash__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--profile-rim, #1f49ff);
}

.profile-dash__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  background: #1a2230;
}

.profile-dash__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.profile-dash__handle {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 2px;
}

.profile-dash__rank-title {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 6px;
  text-transform: capitalize;
}

.profile-dash__rank-pill {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.profile-dash__badges {
  margin-bottom: 20px;
}

.profile-dash__badges-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.profile-dash__badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-badge {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.profile-dash__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.profile-stat {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.profile-stat__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.profile-stat__value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.profile-dash__prestige-id {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.profile-dash__card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.profile-dash__aura-score {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.profile-dash__aura-meta {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.profile-dash__progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}

.profile-dash__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #1f49ff, #3b82f6);
  border-radius: 999px;
}

.profile-dash__progress-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.profile-aura-graph {
  width: 100%;
  height: 48px;
  color: rgba(255, 255, 255, 0.55);
}

.profile-dash__music-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.profile-dash__music-art {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}

.profile-dash__music-art--empty {
  display: block;
}

.profile-dash__music-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.profile-dash__music-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.35;
}

.profile-dash__music-empty {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 12px;
}

.profile-dash__music-footer {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  margin-top: 8px;
}

.profile-status {
  color: var(--text-dim);
  text-align: center;
  padding: 32px 0;
}

.profile-card {
  background: #0f141a;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 0 24px rgba(31, 73, 255, 0.12);
}

.profile-card--center {
  text-align: center;
}

.profile-card--error {
  border-color: rgba(239, 68, 68, 0.35);
}

.profile-card__lead {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.profile-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.profile-switch-account {
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

.profile-switch-account:hover {
  color: var(--text);
}

.profile-card__hero {
  text-align: center;
  margin-bottom: 28px;
}

.logo-glow--profile {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  display: inline-block;
}

.profile-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.profile-card__handle {
  color: var(--text-dim);
  font-size: 15px;
  margin-top: 4px;
}

.profile-meta {
  margin-bottom: 24px;
}

.profile-meta__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.profile-meta__row:last-child {
  border-bottom: none;
}

.profile-meta__row dt {
  color: var(--muted);
}

.profile-meta__row dd {
  color: var(--text);
  text-align: right;
}

.profile-logout {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.profile-logout:hover {
  color: var(--text);
  border-color: var(--text-dim);
}

.profile-login-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__fineprint {
    text-align: left;
  }

  .site-logo__name {
    font-size: 13px;
    max-width: 11em;
  }

  .profile-dash__grid {
    grid-template-columns: 1fr;
  }

  .logo-glow--lg {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .header-cta {
    padding: 8px 14px;
    font-size: 13px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

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

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