/* ============================================================
   FluxAudio — main.css
   Custom design layer on top of Tailwind (CDN).
   Black & gold premium system + per-pack neon accents.
   ============================================================ */

:root {
  --gold: #D2A44A;
  --gold-light: #E9C878;
  --gold-deep: #966D2C;
  --ink: #050505;
  --ink-soft: #0A0A0C;
  --line: rgba(255, 255, 255, 0.06);
  --page-accent: var(--gold);
}

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

html {
  background: var(--ink);
}

body {
  background:
    radial-gradient(1200px 800px at 85% -10%, rgba(210, 164, 74, 0.07), transparent 60%),
    radial-gradient(900px 700px at -10% 30%, rgba(210, 164, 74, 0.04), transparent 55%),
    var(--ink);
  overflow-x: hidden;
}

::selection {
  background: rgba(210, 164, 74, 0.85);
  color: #050505;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0c; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #966d2c, #453114);
  border-radius: 8px;
  border: 2px solid #0a0a0c;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Grain overlay ---------- */

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ---------- Preloader ---------- */

.preloader { display: none; }

html.js .preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #030303;
}

html.js.is-loading { overflow: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 24px rgba(210, 164, 74, 0.45));
}

.preloader-word {
  font-weight: 800;
  letter-spacing: 0.35em;
  font-size: 15px;
  color: #fff;
  text-indent: 0.35em; /* optically center with tracking */
}

.preloader-word span { color: var(--gold); }

.preloader-bar {
  width: 180px;
  height: 1px;
  margin: 22px auto 0;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- Page transition veil ---------- */

.page-veil {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: #030303;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

/* ---------- Navigation ---------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), background-color 0.35s ease,
    border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.is-scrolled {
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.site-nav.is-hidden { transform: translateY(-100%); }

.nav-link {
  position: relative;
  color: #b9b9c0;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-link:hover,
.nav-link.is-active { color: #fff; }

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link-vip { color: var(--gold-light); }
.nav-link-vip:hover { color: #fff; }

.social-icon {
  color: #8b8b95;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-icon:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Burger */

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #e7e7ea;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--gold-light); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--gold-light); }

/* Mobile menu */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background:
    radial-gradient(700px 500px at 80% 0%, rgba(210, 164, 74, 0.10), transparent 60%),
    rgba(3, 3, 3, 0.97);
  display: flex;
  align-items: center;
  visibility: hidden;
  opacity: 0;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0 10vw;
}

.mobile-link {
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f2f2f4;
  line-height: 1.25;
  transition: color 0.25s ease, letter-spacing 0.3s ease;
}

.mobile-link:hover {
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

/* ---------- Currency switcher ---------- */

.currency-switch {
  position: relative;
}

.currency-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #b9b9c0;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.currency-btn:hover,
.currency-switch.is-open .currency-btn {
  color: var(--gold-light);
  border-color: rgba(233, 200, 120, 0.5);
}

.currency-btn svg {
  transition: transform 0.3s ease;
}

.currency-switch.is-open .currency-btn svg {
  transform: rotate(180deg);
}

.currency-symbol {
  color: var(--gold-light);
}

.currency-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  z-index: 130;
  background: linear-gradient(180deg, #101013, #0a0a0c);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.currency-switch.is-open .currency-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #b9b9c0;
  padding: 11px 14px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.currency-option:hover {
  background: rgba(210, 164, 74, 0.08);
  color: #fff;
}

.currency-option.is-active {
  color: var(--gold-light);
  background: rgba(210, 164, 74, 0.1);
}

.currency-option .currency-label {
  margin-left: auto;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #6d6d76;
  text-transform: uppercase;
}

.currency-pill {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #b9b9c0;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.25s ease;
}

.currency-pill.is-active {
  background: linear-gradient(120deg, #b98a38, #e9c878);
  border-color: transparent;
  color: #171004;
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 999px;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease,
    color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.btn-sm { font-size: 11px; padding: 12px 22px; }
.btn-lg { font-size: 13px; padding: 18px 38px; }

.btn-gold {
  color: #171004;
  background: linear-gradient(120deg, #b98a38, #e9c878 45%, #d2a44a);
  box-shadow: 0 4px 24px rgba(210, 164, 74, 0.25);
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-gold:hover { box-shadow: 0 6px 34px rgba(210, 164, 74, 0.45); }
.btn-gold:hover::before { transform: translateX(120%); }

.btn-ghost {
  color: #e7e7ea;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: rgba(233, 200, 120, 0.65);
  color: var(--gold-light);
  background: rgba(210, 164, 74, 0.06);
}

.btn-accent {
  color: #0a0a0c;
  background: linear-gradient(120deg, var(--accent, var(--gold)), var(--accent2, var(--gold-light)));
  box-shadow: 0 4px 26px color-mix(in srgb, var(--accent, var(--gold)) 30%, transparent);
}

/* ---------- Typography helpers ---------- */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.text-gold-gradient {
  background: linear-gradient(100deg, #f9eed2 0%, #e9c878 35%, #b98a38 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.heading-xl {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #fff;
}

/* Hide reveal targets until GSAP takes over (JS only) */
html.js [data-reveal],
html.js [data-split] { visibility: hidden; }

html.no-anim [data-reveal],
html.no-anim [data-split] { visibility: visible !important; }

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Equalizer canvas — spectrum bars rising from the bottom of the hero */
.hero-eq {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: min(46vh, 440px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 45%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 45%);
}

.hero-crown {
  position: absolute;
  z-index: 0;
  right: -8%;
  top: 50%;
  width: min(58vw, 780px);
  transform: translateY(-50%);
  opacity: 0.05;
  filter: saturate(0.9);
  pointer-events: none;
  user-select: none;
}

.hero-bottom-fade {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #6d6d76;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.hero-scroll-hint::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.stat-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(210, 164, 74, 0.4), transparent);
}

/* ---------- Marquee ---------- */

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
  padding: 22px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(210, 164, 74, 0.55);
  white-space: nowrap;
}

.marquee-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(210, 164, 74, 0.8);
  flex-shrink: 0;
}

/* ---------- Product cards ---------- */

.card-pack {
  --accent: var(--gold);
  --accent2: var(--gold-light);
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: linear-gradient(180deg, #101013, #0a0a0c);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease,
    box-shadow 0.45s ease;
}

.card-pack:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow:
    0 24px 60px -18px color-mix(in srgb, var(--accent) 38%, transparent),
    0 2px 0 0 color-mix(in srgb, var(--accent) 30%, transparent) inset;
}

.card-pack-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card-pack-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-pack:hover .card-pack-media img { transform: scale(1.06); }

.card-pack-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 5, 5, 0.9));
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0a0a0c;
  background: linear-gradient(100deg, var(--accent), var(--accent2));
  padding: 7px 14px;
  border-radius: 999px;
}

.card-chip {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 85%, #fff);
}

.card-price {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  color: #fff;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a9aa3;
  transition: color 0.25s ease, gap 0.25s ease;
}

.card-pack:hover .card-cta {
  color: var(--gold-light);
  gap: 14px;
}

/* ---------- Shop filters ---------- */

.filter-pill {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #9a9aa3;
  transition: all 0.3s ease;
}

.filter-pill:hover {
  border-color: rgba(233, 200, 120, 0.5);
  color: #e9c878;
}

.filter-pill.is-active {
  background: linear-gradient(120deg, #b98a38, #e9c878);
  border-color: transparent;
  color: #171004;
  box-shadow: 0 4px 20px rgba(210, 164, 74, 0.3);
}

/* ---------- Product detail ---------- */

.product-art {
  --accent: var(--gold);
  --accent2: var(--gold-light);
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  box-shadow: 0 30px 90px -30px color-mix(in srgb, var(--accent) 45%, transparent);
}

.product-art img {
  display: block;
  width: 100%;
  height: auto;
}

.product-glow {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 22%, transparent), transparent);
  filter: blur(30px);
  pointer-events: none;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #c9c9d1;
  font-size: 0.95rem;
}

.feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent, var(--gold));
}

/* ---------- Sample preview player ---------- */

.sample-player {
  --accent: var(--gold);
  --accent2: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  background: linear-gradient(180deg, #0e0e11, #08080a);
  box-shadow: 0 14px 44px -18px color-mix(in srgb, var(--accent) 30%, transparent);
}

.player-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #0a0a0c;
  background: linear-gradient(130deg, var(--accent), var(--accent2));
  box-shadow: 0 4px 22px color-mix(in srgb, var(--accent) 40%, transparent);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.player-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 30px color-mix(in srgb, var(--accent) 55%, transparent);
}

.player-btn .icon-play { margin-left: 2px; }
.player-btn .icon-pause { display: none; }

.sample-player.is-playing .icon-play { display: none; }
.sample-player.is-playing .icon-pause { display: block; }

.player-body {
  flex: 1;
  min-width: 0;
}

.player-label {
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 80%, #fff);
}

.player-time {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #8b8b95;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.player-wave {
  display: block;
  width: 100%;
  height: 44px;
}

.player-track {
  position: relative;
  height: 14px;
  margin-top: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.player-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.player-progress {
  position: relative;
  height: 3px;
  width: 0%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent) 60%, transparent);
}

.player-progress::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 8px color-mix(in srgb, var(--accent) 80%, transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sample-player.is-playing .player-progress::after,
.player-track:hover .player-progress::after { opacity: 1; }

/* ---------- VIP section ---------- */

.vip-card-wrap {
  position: relative;
  perspective: 1200px;
}

.vip-card-wrap img {
  border-radius: 20px;
  border: 1px solid rgba(233, 200, 120, 0.35);
  box-shadow:
    0 40px 120px -30px rgba(210, 164, 74, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
}

.vip-glow {
  position: absolute;
  inset: -15%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(210, 164, 74, 0.28), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

/* ---------- Category tiles ---------- */

.hub-tile {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0e0e11, #08080a);
  padding: 38px 32px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease;
}

.hub-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 164, 74, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hub-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 164, 74, 0.35);
}

.hub-tile:hover::before { opacity: 1; }

.hub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  color: var(--gold-light);
  background: rgba(210, 164, 74, 0.08);
  border: 1px solid rgba(210, 164, 74, 0.25);
  margin-bottom: 22px;
}

/* ---------- Checkout / notices ---------- */

.notice-gold {
  border: 1px solid rgba(210, 164, 74, 0.35);
  background: linear-gradient(180deg, rgba(210, 164, 74, 0.08), rgba(210, 164, 74, 0.02));
  border-radius: 16px;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: #040404;
}

.footer-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(closest-side, rgba(210, 164, 74, 0.07), transparent);
  pointer-events: none;
}

.footer-heading {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-link {
  color: #9a9aa3;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-link:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal],
  html.js [data-split] { visibility: visible; }

  .hero-scroll-hint::after { animation: none; }

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