/* Bosscasina – darker luxury conversion */
:root {
  --bg: #050203;
  --surface: #0c0609;
  --card: #11080e;
  --text: #f3e8ec;
  --muted: #8a727c;
  --line: rgba(180, 40, 70, 0.14);
  --crimson: #dc143c;
  --wine: #7f0d2e;
  --gold: #d4b56a;
  --blush: #e85a72;
  --font: Outfit, system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --max: 760px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* FX canvas */
.fx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg__smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: smoke 16s ease-in-out infinite alternate;
}
.bg__smoke--1 {
  width: 520px;
  height: 520px;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(100, 8, 30, 0.22);
}
.bg__smoke--2 {
  width: 420px;
  height: 420px;
  bottom: 10%;
  right: -80px;
  background: rgba(140, 15, 40, 0.1);
  animation-delay: -7s;
}
.bg__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 20%, rgba(90, 10, 28, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 90% 80% at 50% 40%, transparent 0%, rgba(2, 0, 1, 0.92) 100%);
}
@keyframes smoke {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, 30px) scale(1.1); }
}

.header, main, .footer { position: relative; z-index: 1; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px) saturate(1.15);
  background: rgba(5, 2, 3, 0.88);
  border-bottom: 1px solid var(--line);
  animation: drop 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes drop {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.15rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}
.brand img {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}
.brand:hover img { transform: scale(1.06) rotate(-3deg); }
.brand__ring {
  position: absolute;
  left: -5px;
  top: 50%;
  width: calc(2.45rem + 10px);
  height: calc(2.45rem + 10px);
  margin-top: calc(-1.225rem - 5px);
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--crimson), var(--gold), var(--wine), var(--crimson));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  animation: spin 7s linear infinite;
  opacity: 0.75;
}
.brand__text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.brand__text span { color: var(--crimson); font-style: italic; }
.nav {
  display: none;
  gap: 1.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav a {
  position: relative;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transition: width 0.3s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }
@media (min-width: 760px) {
  .nav { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.03em;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn--sm { padding: 0.55rem 1.05rem; font-size: 0.82rem; }
.btn--lg { padding: 0.95rem 1.6rem; font-size: 0.95rem; }
.btn--crimson {
  padding: 0.9rem 1.4rem;
  background: linear-gradient(120deg, var(--wine), var(--crimson) 50%, var(--blush));
  background-size: 180% 180%;
  animation: gradient-flow 4s ease infinite;
  color: #fff;
  box-shadow: 0 12px 36px -10px rgba(225, 29, 72, 0.55);
}
.btn--crimson:hover { filter: brightness(1.1); }
.btn--ghost {
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.btn--ghost:hover { border-color: rgba(225, 29, 72, 0.4); background: rgba(225, 29, 72, 0.08); }
.btn--block {
  width: 100%;
  border-radius: 0.85rem;
  padding: 1.05rem 1.25rem;
  font-size: 0.98rem;
}
.btn--pulse {
  animation: gradient-flow 4s ease infinite, pulse-glow 2.5s ease-in-out infinite;
}
.btn--shine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: swipe 3.5s ease-in-out infinite;
}
.arr { transition: transform 0.25s ease; display: inline-block; }
.btn:hover .arr { transform: translateX(5px); }
@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 12px 32px -10px rgba(225, 29, 72, 0.45); }
  50% { box-shadow: 0 16px 44px -6px rgba(225, 29, 72, 0.75), 0 0 28px rgba(232, 200, 122, 0.15); }
}
@keyframes swipe {
  0%, 50% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Age gate */
body.age-locked { overflow: hidden; }
body.age-locked .header,
body.age-locked main,
body.age-locked .footer,
body.age-locked .bg,
body.age-locked .fx { filter: blur(9px); pointer-events: none; }

.age {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.age[hidden] { display: none !important; }
.age__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(159, 18, 57, 0.25), rgba(0, 0, 0, 0.88));
  backdrop-filter: blur(14px);
}
.age__card {
  position: relative;
  z-index: 1;
  width: min(100%, 22.5rem);
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(165deg, #14080e, #080305);
  border: 1px solid rgba(220, 20, 60, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), 0 0 50px rgba(220, 20, 60, 0.08);
}
.anim-pop { animation: pop 0.55s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes pop {
  from { opacity: 0; transform: translateY(24px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.age__logo {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  margin: 0 auto 0.9rem;
  animation: float 4.5s ease-in-out infinite;
}
.age__badge {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--wine), var(--crimson));
  color: #fff;
  margin-bottom: 0.75rem;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(225, 29, 72, 0); }
}
.age__card h1 {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.age__card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}
.age__card strong { color: var(--crimson); }
.age__card .btn { width: 100%; margin-bottom: 0.5rem; min-height: 2.9rem; }

/* Hero */
.hero {
  padding: 2.5rem 0 3rem;
  text-align: center;
}
.hero__logo-stage {
  position: relative;
  width: 12rem;
  height: 12rem;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
}
.hero__halo {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.35), transparent 70%);
  animation: breathe 3.2s ease-in-out infinite;
}
.hero__orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(232, 200, 122, 0.25);
  animation: spin 18s linear infinite;
}
.hero__orbit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--crimson));
  box-shadow: 0 0 14px rgba(225, 29, 72, 0.7);
}
.hero__logo {
  position: relative;
  z-index: 2;
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(225, 29, 72, 0.4));
  animation: float 5s ease-in-out infinite, logo-glow 3s ease-in-out infinite;
}
.hero__flare {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}
.hero__flare::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -40%;
  width: 35%;
  height: 160%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  animation: swipe 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-11px) rotate(1.5deg); }
}
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 14px 32px rgba(225, 29, 72, 0.35)); }
  50% { filter: drop-shadow(0 20px 50px rgba(232, 200, 122, 0.25)) drop-shadow(0 0 24px rgba(225, 29, 72, 0.4)); }
}
@keyframes breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.5; }
  50% { transform: scale(1.12); opacity: 0.95; }
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5);
  animation: ping 1.6s ease infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.55rem, 7.5vw, 3.85rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 0.95rem;
}
.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 700;
}
.grad {
  background: linear-gradient(115deg, var(--gold), #f0c98a, var(--blush), var(--crimson));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine-text 5s linear infinite;
}
@keyframes shine-text {
  to { background-position: 200% center; }
}
.hero__lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 28rem;
  margin: 0 auto 1.35rem;
  line-height: 1.55;
}
.hero__lead strong { color: var(--text); font-weight: 600; }

/* Conversion stats strip */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  max-width: 26rem;
  margin: 0 auto 1.85rem;
}
.hero__stat {
  padding: 0.75rem 0.4rem;
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 181, 106, 0.12);
  text-align: center;
}
.hero__stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 0.15rem;
}
.hero__stat span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Throne card */
.throne {
  position: relative;
  text-align: left;
  background:
    linear-gradient(165deg, rgba(180, 20, 50, 0.14) 0%, transparent 40%),
    linear-gradient(180deg, #12080d 0%, #0a0407 100%);
  border: 1px solid rgba(220, 20, 60, 0.32);
  border-radius: 1.35rem;
  padding: 1.5rem 1.4rem 1.3rem;
  box-shadow:
    0 28px 60px -18px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 0 60px -20px rgba(220, 20, 60, 0.25);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.throne:hover {
  transform: translateY(-5px);
  box-shadow:
    0 36px 70px -16px rgba(0, 0, 0, 0.8),
    0 0 70px -15px rgba(220, 20, 60, 0.35);
}
.throne__border {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--a, 0deg), transparent 35%, var(--crimson), var(--gold), transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: angle 5s linear infinite;
  pointer-events: none;
}
@property --a {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes angle {
  to { --a: 360deg; }
}
.throne__top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
  position: relative;
}
.throne__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6ee7a8;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(16, 80, 48, 0.35);
  border: 1px solid rgba(110, 231, 168, 0.25);
}
.throne__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: ping 1.6s ease infinite;
}
.throne__logo {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.9rem;
  background: #050203;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  animation: bob 3.5s ease-in-out infinite;
  flex-shrink: 0;
}
.throne__logo img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.throne__tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.throne__top h2 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
}
.throne__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
  position: relative;
}
.throne__value {
  font-family: var(--display);
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(115deg, var(--gold), var(--blush), var(--crimson));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  position: relative;
  animation: shine-text 5s linear infinite;
}
.throne__fs { display: block; font-size: 0.85em; }
.throne__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.throne__perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(220, 20, 60, 0.12);
}
.throne__perk-ico {
  color: var(--gold);
  font-size: 0.65rem;
  line-height: 1.5;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.throne__perks strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.1rem;
}
.throne__perks span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
.throne .btn { position: relative; }
.throne__note {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  position: relative;
}

/* Entrance */
.anim-in {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.28s; }
.d4 { animation-delay: 0.4s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Rules */
.rules { padding: 2.5rem 0 2rem; }
.sec-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.sec-title em {
  font-style: italic;
  color: var(--crimson);
}
.rules__grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .rules__grid { grid-template-columns: repeat(3, 1fr); }
}
.rule {
  background: linear-gradient(180deg, #0e070a 0%, #080406 100%);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.35rem 1.2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}
.rule:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 20, 60, 0.4);
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.6);
}
.rule__n {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.rule h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.rule p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Path */
.path {
  padding: 2rem 0 3.5rem;
  text-align: center;
}
.path__list {
  list-style: none;
  max-width: 26rem;
  margin: 0 auto 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.path__list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(90deg, rgba(220, 20, 60, 0.06), #0a0508 40%);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  border-left: 3px solid var(--crimson);
  color: var(--muted);
  transition: transform 0.25s ease, border-color 0.25s;
}
.path__list li:hover {
  transform: translateX(6px);
  border-color: rgba(225, 29, 72, 0.35);
}
.path__list strong {
  font-family: var(--display);
  color: var(--gold);
  font-size: 1.1rem;
  min-width: 2rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* SEO longform */
.seo {
  padding: 1.5rem 0 3rem;
}
.seo__body {
  text-align: left;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto;
}
.seo__body p { margin-bottom: 0.9rem; }
.seo__body strong { color: var(--text); }
.seo__body h3 {
  font-family: var(--display);
  color: var(--text);
  font-size: 1.25rem;
  margin: 1.25rem 0 0.65rem;
}
.seo__body details {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.75rem 0.95rem;
  margin-bottom: 0.5rem;
  background: #0a0508;
}
.seo__body summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}
.seo__body details[open] summary { color: var(--crimson); margin-bottom: 0.4rem; }
.seo__body details p { margin: 0; font-size: 0.9rem; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer__logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  opacity: 0.9;
}
.footer__name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.footer__legal {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 28rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .anim-in, .reveal { opacity: 1; transform: none; }
}
