/* ═══════════════════════════════════════════════════════════════
   달빛 DALBIT — design system
   Tokens lifted 1:1 from the bot's own card renderer
   (coin-bridge-bot/src/economy/cardTheme.js — "달빛 밤하늘")
   ═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* cardTheme.js PALETTE */
  --bg-top: #0d1226;
  --bg-bottom: #161d3a;
  --bg-deep: #070b1a;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f6fb;
  --muted: #9aa3b8;
  --faint: #6b7490;
  --gold: #f5d06e;
  --moon: #ffe9b0;
  --lavender: #8b9dff;
  --teal: #5ee6d0;
  --rose: #ff8fa3;
  --amber: #ff9d5c;
  /* brand (discord-brief 01) */
  --brand: #826bc2;
  --brand-2: #9e6bff;
  /* type */
  --sans: 'Pretendard', -apple-system, 'Segoe UI', 'Noto Sans KR', sans-serif;
  --serif: 'Cormorant Garamond', 'Cormorant', 'Playfair Display', Georgia, serif;
  /* geometry */
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --max: 1180px;
  --pad: clamp(20px, 4vw, 48px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 92px; /* fixed nav clearance for anchor jumps */
  overflow-x: clip;
}
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 85% -10%, rgba(130, 107, 194, 0.14), transparent 60%),
    radial-gradient(1000px 700px at -10% 30%, rgba(61, 87, 186, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-top) 34%, var(--bg-bottom) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; color: inherit; }
::selection { background: rgba(245, 208, 110, 0.28); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #2a3355; border-radius: 8px; border: 2px solid var(--bg-deep); }
::-webkit-scrollbar-thumb:hover { background: #3a4570; }

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

/* skip link (keyboard users) */
.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #231a04;
  font-size: 13.5px;
  font-weight: 700;
  transform: translateY(-64px);
  transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: none; }

/* ── night sky canvas ──────────────────────────────────── */
#sky {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* everything above the canvas */
.nav, .hero, main, .ticker, footer { position: relative; z-index: 1; }

/* ── shared layout ─────────────────────────────────────── */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
section { padding-block: clamp(76px, 9vw, 122px); position: relative; }
/* per-section ambient tint — gives each zone its own moonlight */
section::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 460px;
  background: radial-gradient(620px 300px at var(--tint-x, 50%) -70px, var(--tint, transparent), transparent 72%);
  pointer-events: none;
}
#about     { --tint: rgba(158, 107, 255, 0.05); }
#wallet    { --tint: rgba(245, 208, 110, 0.05); }
#cards     { --tint: rgba(139, 157, 255, 0.05); }
#community { --tint: rgba(139, 157, 255, 0.045); --tint-x: 30%; }
#join      { --tint: rgba(94, 230, 208, 0.045); --tint-x: 70%; }
#casino    { --tint: rgba(255, 143, 163, 0.045); --tint-x: 78%; }
#growth    { --tint: rgba(94, 230, 208, 0.04); }
#minecraft { --tint: rgba(94, 230, 208, 0.045); --tint-x: 24%; }
#more      { --tint: rgba(158, 107, 255, 0.045); }
#commands  { --tint: rgba(245, 208, 110, 0.04); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 208, 110, 0.55));
}
.eyebrow::after { transform: scaleX(-1); }

.h2 {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.028em;
  margin-bottom: 18px;
}
.h2 .accent { color: var(--gold); }
.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.75;
  word-break: keep-all;
}
.section-head { margin-bottom: clamp(36px, 5vw, 58px); }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* ── buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary {
  background: linear-gradient(135deg, #f7d97f, var(--gold) 55%, #e3b84f);
  color: #231a04;
  box-shadow: 0 8px 32px rgba(245, 208, 110, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(245, 208, 110, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(245, 208, 110, 0.4); background: rgba(245, 208, 110, 0.06); }
.btn:active { transform: translateY(0) scale(0.98); }

/* ── nav ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 11, 26, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand .mark { width: 30px; height: 30px; filter: drop-shadow(0 0 10px rgba(255, 233, 176, 0.45)); }
.brand small {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--faint);
  text-transform: uppercase;
  margin-left: 2px;
}
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 9px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 10px;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav-links a.active { color: var(--moon); background: rgba(245, 208, 110, 0.08); }
.nav-links .mobile-cta { display: none; }
.nav-cta { margin-left: 8px; padding: 11px 22px; font-size: 14px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  width: 100%;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.hero-kicker .moon-mark {
  width: 16px; height: 16px;
  flex: none;
  filter: drop-shadow(0 0 7px rgba(245, 208, 110, 0.45));
}
.hero-kicker::after {
  content: '';
  width: 46px; height: 1px;
  background: linear-gradient(90deg, rgba(245, 208, 110, 0.55), transparent);
}
@media (max-width: 560px) {
  .hero-kicker { letter-spacing: 0.15em; gap: 10px; }
  .hero-kicker::after { display: none; }
  .hero-sub { letter-spacing: 0.3em; font-size: 15px; }
}

.hero-title {
  font-size: clamp(58px, 9.5vw, 124px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  background: linear-gradient(168deg, #ffffff 20%, #d9def5 48%, #97a2d8 82%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.hero-title .moon-o { position: relative; display: inline-block; }
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(15px, 1.9vw, 21px);
  font-weight: 500;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  text-indent: 0.1em;
}
.hero-desc {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
  word-break: keep-all;
}
.hero-desc strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.hstat { padding-right: clamp(12px, 1.9vw, 24px); margin-right: clamp(12px, 1.9vw, 24px); border-right: 1px solid var(--line); }
.hstat:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hstat b {
  display: block;
  font-size: clamp(21px, 2.3vw, 27px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1.15;
}
.hstat span { font-size: 12.5px; color: var(--faint); font-weight: 600; white-space: nowrap; }

/* hero visual: avatar in moon orbit */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 420px; }
.moon-disc {
  position: absolute;
  width: clamp(300px, 34vw, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, #fffdf4 0%, #fdf3cd 26%, #f3dfa0 46%, #d9b96c 68%, #b08f47 100%);
  box-shadow:
    0 0 60px rgba(255, 233, 176, 0.35),
    0 0 160px rgba(255, 233, 176, 0.22),
    0 0 320px rgba(245, 208, 110, 0.14);
  animation: moonfloat 9s ease-in-out infinite;
}
.moon-disc::before { /* craters */
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 26%, rgba(176, 143, 71, 0.35) 0 4.5%, transparent 5.5%),
    radial-gradient(circle at 30% 58%, rgba(176, 143, 71, 0.3) 0 7%, transparent 8%),
    radial-gradient(circle at 68% 66%, rgba(176, 143, 71, 0.28) 0 5.5%, transparent 6.5%),
    radial-gradient(circle at 46% 82%, rgba(176, 143, 71, 0.22) 0 3.6%, transparent 4.4%),
    radial-gradient(circle at 80% 44%, rgba(176, 143, 71, 0.24) 0 3%, transparent 3.8%);
}
@keyframes moonfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.orbit-ring {
  position: absolute;
  width: clamp(340px, 38vw, 530px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 233, 176, 0.16);
  animation: spin 46s linear infinite;
}
.orbit-ring.r2 { width: clamp(385px, 43vw, 600px); border-color: rgba(139, 157, 255, 0.12); animation-duration: 70s; animation-direction: reverse; }
.orbit-ring .sat {
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--moon);
  box-shadow: 0 0 12px var(--moon), 0 0 30px rgba(255, 233, 176, 0.6);
}
.orbit-ring.r2 .sat { background: var(--lavender); box-shadow: 0 0 12px var(--lavender), 0 0 30px rgba(139, 157, 255, 0.55); }
@keyframes spin { to { transform: rotate(360deg); } }

.avatar-orb {
  position: relative;
  width: clamp(190px, 21vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 10px;
  background: conic-gradient(from 210deg, #f5d06e, #ffe9b0, #c9a24e, #ffe9b0, #f5d06e);
  box-shadow:
    0 0 50px rgba(245, 208, 110, 0.35),
    0 24px 70px rgba(0, 0, 0, 0.5);
  animation: moonfloat 7s ease-in-out infinite;
}
.avatar-orb img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #e8ecff;
}
.hero-spark {
  position: absolute;
  color: var(--moon);
  opacity: 0.85;
  animation: twinkle 3.4s ease-in-out infinite;
  pointer-events: none;
}
.hero-spark svg { display: block; filter: drop-shadow(0 0 8px rgba(255, 233, 176, 0.8)); }
@keyframes twinkle { 0%, 100% { opacity: 0.25; transform: scale(0.8); } 50% { opacity: 0.95; transform: scale(1.08); } }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 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; } }

/* ── command ticker ────────────────────────────────────── */
.ticker {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  overflow: hidden;
  padding-block: 17px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 90s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-inline: 20px;
  font-size: 14px;
  color: var(--faint);
  white-space: nowrap;
  font-weight: 600;
}
.ticker-item b { color: var(--muted); font-weight: 700; }
.ticker-item::after { content: '║'; color: rgba(245, 208, 110, 0.3); margin-left: 20px; font-weight: 400; }

/* ── panels & cards ────────────────────────────────────── */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  backdrop-filter: blur(6px);
}

/* wallet section */
.wallet-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}
.feature-list { display: grid; gap: 26px; margin-top: 40px; }
.feature {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
}
.feature .ic {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(245, 208, 110, 0.14), rgba(245, 208, 110, 0.04));
  border: 1px solid rgba(245, 208, 110, 0.22);
  color: var(--gold);
}
.feature .ic svg { width: 21px; height: 21px; }
.feature h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 5px; letter-spacing: -0.015em; }
.feature p { font-size: 15px; color: var(--muted); line-height: 1.7; word-break: keep-all; }
.feature p code, .inline-cmd {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92em;
  color: var(--moon);
  background: rgba(255, 233, 176, 0.09);
  border: 1px solid rgba(255, 233, 176, 0.16);
  padding: 1.5px 8px;
  border-radius: 8px;
  white-space: nowrap;
}

/* tilt card (real bot renders) */
.tilt {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.tilt img {
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.tilt .shine {
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.13), transparent 42%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.tilt:hover .shine { opacity: 1; }
.card-float { animation: cardfloat 8s ease-in-out infinite; }
@keyframes cardfloat { 0%, 100% { transform: translateY(0) rotate(0.001deg); } 50% { transform: translateY(-12px) rotate(0.001deg); } }

.wallet-visual { position: relative; overflow: clip; overflow-clip-margin: 40px; min-width: 0; }
.wallet-grid > div { min-width: 0; }
.wallet-visual .glow {
  position: absolute;
  inset: -8% -12%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(245, 208, 110, 0.12), transparent 70%);
  pointer-events: none;
}
.link-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 70px; }
.link-step {
  padding: 26px 24px;
  border-radius: var(--r-md);
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.link-step:hover { transform: translateY(-4px); border-color: rgba(245, 208, 110, 0.3); }
.link-step .n {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.link-step h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 7px; letter-spacing: -0.01em; }
.link-step p { font-size: 14px; color: var(--muted); line-height: 1.65; word-break: keep-all; }

/* ── gallery ───────────────────────────────────────────── */
.gallery-wrap { position: relative; }
.gallery {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 30px var(--pad) 44px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.gallery.dragging { scroll-snap-type: none; cursor: grabbing; }
.gallery.dragging .gallery-item { pointer-events: none; }
.gallery::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 min(560px, 82vw);
  scroll-snap-align: center;
}
.gallery-item figure { margin: 0; }
.gallery-item figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
  padding-inline: 6px;
}
.gallery-item figcaption b { font-size: 15.5px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.gallery-item figcaption span { font-size: 13.5px; color: var(--faint); }
.gallery-nav { display: flex; gap: 10px; justify-content: center; margin-top: 4px; }
.gallery-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all 0.3s var(--ease);
  background: rgba(255, 255, 255, 0.03);
}
.gallery-btn:hover { color: var(--gold); border-color: rgba(245, 208, 110, 0.45); transform: translateY(-2px); }
.gallery-btn svg { width: 18px; height: 18px; }

/* ── casino ────────────────────────────────────────────── */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.game {
  padding: 30px 26px;
  border-radius: var(--r-md);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s;
  position: relative;
  overflow: hidden;
}
.game::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 208, 110, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.game:hover { transform: translateY(-5px); border-color: rgba(245, 208, 110, 0.28); background: var(--panel-strong); }
.game:hover::before { opacity: 1; }
.game .ic {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(160deg, rgba(139, 157, 255, 0.16), rgba(139, 157, 255, 0.04));
  border: 1px solid rgba(139, 157, 255, 0.24);
  color: var(--lavender);
}
.game .ic svg { width: 23px; height: 23px; }
.game h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.02em; }
.game .odds {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  display: block;
}
.game p { font-size: 13.8px; color: var(--muted); line-height: 1.65; word-break: keep-all; }
.casino-show {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
  align-items: stretch;
}
.casino-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.note-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 13.8px;
  font-weight: 600;
  color: var(--muted);
}
.note-chip svg { width: 15px; height: 15px; color: var(--teal); flex: none; }

/* ── growth (level bands) ──────────────────────────────── */
.bands {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 54px 0 70px;
}
.band {
  position: relative;
  border-radius: var(--r-md);
  padding: 26px 20px 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.band:hover { transform: translateY(-5px); }
.band::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--band-c);
  box-shadow: 0 0 18px var(--band-c);
}
.band .lv {
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--faint);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.band .name { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--band-c); margin-bottom: 6px; }
.band .en {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.growth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 860px;
  margin-inline: auto;
}
.growth-card { padding: 28px 26px; }
.growth-card h3 { font-size: 17px; font-weight: 700; margin: 18px 0 7px; letter-spacing: -0.01em; }
.growth-card p { font-size: 14.2px; color: var(--muted); line-height: 1.68; word-break: keep-all; }
.growth-card .ic {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(94, 230, 208, 0.14), rgba(94, 230, 208, 0.03));
  border: 1px solid rgba(94, 230, 208, 0.22);
  color: var(--teal);
}
.growth-card .ic svg { width: 21px; height: 21px; }

/* ── minecraft ─────────────────────────────────────────── */
.mc-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 14px 20px;
  max-width: 560px;
  border: 1px solid rgba(245, 208, 110, 0.28);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(245, 208, 110, 0.07), rgba(245, 208, 110, 0.015));
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  word-break: keep-all;
}
.mc-status b { color: var(--moon); font-weight: 700; }
.mc-status .dot {
  width: 9px; height: 9px;
  margin-top: 6px;
  flex: none;
  border-radius: 50%;
  background: #f5d06e;
  box-shadow: 0 0 10px 1px rgba(245, 208, 110, 0.5);
  animation: mc-pulse 2.4s var(--ease) infinite;
}
@keyframes mc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 208, 110, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(245, 208, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 208, 110, 0); }
}
.servers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 680px;
  margin: 0 auto 44px;
}
.server {
  padding: 32px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.server:hover { transform: translateY(-5px); border-color: rgba(139, 157, 255, 0.35); }
.server .phase {
  display: block;
  width: 34px; height: 34px;
  margin-bottom: 22px;
}
.server .phase svg {
  width: 100%; height: 100%;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 233, 176, 0.35));
}
.server h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.server .sub {
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.server p { font-size: 14.2px; color: var(--muted); line-height: 1.68; word-break: keep-all; }
.server .cmd {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lavender);
  background: rgba(139, 157, 255, 0.09);
  border: 1px solid rgba(139, 157, 255, 0.2);
  padding: 5px 12px;
  border-radius: 9px;
}

.bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 40px clamp(24px, 4vw, 54px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  margin-bottom: 44px;
}
.bridge-node { text-align: center; }
.bridge-node .bubble {
  width: 76px; height: 76px;
  margin: 0 auto 14px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line-strong);
}
.bridge-node .bubble svg { width: 34px; height: 34px; }
.bridge-node.mid .bubble {
  border-radius: 50%;
  background: conic-gradient(from 210deg, rgba(245, 208, 110, 0.25), rgba(255, 233, 176, 0.4), rgba(245, 208, 110, 0.25));
  border-color: rgba(245, 208, 110, 0.5);
  box-shadow: 0 0 34px rgba(245, 208, 110, 0.25);
}
.bridge-node h3 { font-size: 15.5px; font-weight: 700; }
.bridge-node span { font-size: 12.5px; color: var(--faint); }
.bridge-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 90px;
}
.bridge-link .line {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  background-size: 32px 2px;
  animation: dash 1.2s linear infinite;
  opacity: 0.7;
}
.bridge-link.rev .line { animation-direction: reverse; }
@keyframes dash { to { background-position: 32px 0; } }
.bridge-link span { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

.mc-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.mc-feat {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--panel);
  align-items: flex-start;
}
.mc-feat .ic {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(255, 143, 163, 0.13), rgba(255, 143, 163, 0.03));
  border: 1px solid rgba(255, 143, 163, 0.22);
  color: var(--rose);
}
.mc-feat .ic svg { width: 19px; height: 19px; }
.mc-feat h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.mc-feat p { font-size: 13.8px; color: var(--muted); line-height: 1.6; word-break: keep-all; }

/* ── more features bento ───────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bento-item {
  padding: 24px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.bento-item:hover { transform: translateY(-4px); border-color: var(--line-strong); background: var(--panel-strong); }
.bento-item .ic { color: var(--lavender); margin-bottom: 16px; display: block; }
.bento-item .ic svg { width: 22px; height: 22px; }
.bento-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; letter-spacing: -0.01em; }
.bento-item p { font-size: 13.2px; color: var(--muted); line-height: 1.6; word-break: keep-all; }

/* ── command directory ─────────────────────────────────── */
.dir-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.dir-search {
  position: relative;
  flex: 1 1 300px;
  max-width: 430px;
}
.dir-search svg {
  position: absolute;
  left: 17px; top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  color: var(--faint);
  pointer-events: none;
}
.dir-search input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.dir-search input::placeholder { color: var(--faint); }
.dir-search input:focus { border-color: rgba(245, 208, 110, 0.5); box-shadow: 0 0 0 4px rgba(245, 208, 110, 0.09); }
.dir-search kbd {
  position: absolute;
  right: 15px; top: 50%;
  transform: translateY(-50%);
  min-width: 24px; height: 24px;
  padding-inline: 6px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--faint);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  pointer-events: none;
}
.dir-count { font-size: 13.5px; color: var(--faint); font-weight: 600; margin-left: auto; }
.dir-count b { color: var(--gold); font-weight: 800; }
.dir-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.chip {
  padding: 9px 17px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--line-strong); }
.chip.on {
  background: linear-gradient(135deg, rgba(245, 208, 110, 0.18), rgba(245, 208, 110, 0.08));
  border-color: rgba(245, 208, 110, 0.45);
  color: var(--moon);
}
.dir-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 26px; }
.cmd-row {
  display: grid;
  grid-template-columns: minmax(108px, auto) 1fr;
  gap: 6px 16px;
  padding: 15px 18px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s;
  align-items: baseline;
}
.cmd-row:hover { background: var(--panel); border-color: var(--line); }
.cmd-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--moon);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.cmd-name::before { content: '/'; color: var(--faint); font-weight: 600; margin-right: 1px; }
.cmd-badges { display: inline-flex; gap: 6px; margin-left: 8px; vertical-align: middle; }
.cmd-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.cmd-badge.admin { color: var(--rose); background: rgba(255, 143, 163, 0.1); border: 1px solid rgba(255, 143, 163, 0.22); }
.cmd-badge.sub { color: var(--lavender); background: rgba(139, 157, 255, 0.09); border: 1px solid rgba(139, 157, 255, 0.2); }
.cmd-desc { font-size: 13.8px; color: var(--muted); line-height: 1.6; word-break: keep-all; grid-column: 2; }
.cmd-row .cmd-name { grid-row: 1; grid-column: 1; }
.cmd-row .cmd-head { display: contents; }
.dir-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  color: var(--faint);
  font-size: 15px;
}
.dir-empty b { color: var(--moon); }

/* ── final cta / footer ────────────────────────────────── */
.final {
  text-align: center;
  padding-block: clamp(110px, 14vw, 190px);
  position: relative;
  overflow: hidden;
}
.final .moon-half {
  position: absolute;
  left: 50%;
  bottom: -38vw;
  transform: translateX(-50%);
  width: 76vw;
  max-width: 1000px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 18%, #fffdf4 0%, #f7e7b4 30%, #e0c179 58%, #a8874a 100%);
  box-shadow: 0 -30px 120px rgba(255, 233, 176, 0.25), 0 -60px 260px rgba(245, 208, 110, 0.18);
  pointer-events: none;
}
.final p { position: relative; }
.final-content {
  position: relative;
  isolation: isolate;
  max-width: 780px;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 4vw, 56px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 11, 26, 0.58);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}
.final h2 {
  font-size: clamp(38px, 6.4vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 20px;
  background: linear-gradient(170deg, #fff 30%, #c6cdf0 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final p { color: var(--muted); font-size: clamp(15.5px, 1.7vw, 18px); margin-bottom: 44px; word-break: keep-all; }
.final .btn { padding: 18px 40px; font-size: 16.5px; }
.invite-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--faint);
  letter-spacing: 0.02em;
}
.final .invite-note { color: #aab1c5; }
.invite-note b { color: var(--muted); font-weight: 700; }

footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 60px;
  background: rgba(7, 11, 26, 0.5);
}
.foot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.foot-brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 16px; }
.foot-brand .mark { width: 26px; height: 26px; }
.foot-brand small { display: block; font-weight: 600; font-size: 12px; color: var(--faint); margin-top: 2px; }
.foot-links { display: flex; gap: 22px; font-size: 13.5px; color: var(--muted); font-weight: 600; }
.foot-links a:hover { color: var(--gold); }
.foot-legal { width: 100%; font-size: 12.3px; color: var(--faint); line-height: 1.7; }
.foot-legal b { color: var(--muted); }

/* ── reveal (JS-gated: content stays visible without JS) ── */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ── divider ───────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(245, 208, 110, 0.5);
  padding-block: 8px;
}
.divider::before, .divider::after {
  content: '';
  height: 1px;
  width: min(180px, 26vw);
  background: linear-gradient(90deg, transparent, rgba(245, 208, 110, 0.3));
}
.divider::after { transform: scaleX(-1); }
.divider svg { width: 14px; height: 14px; }

/* ── community: about / interests / join ───────────────── */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
#about .growth-grid { max-width: 920px; }

.onboard-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.onboard-steps .link-step { padding: 26px 22px; }

.rules {
  padding: clamp(28px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
}
.rules-head h3 {
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.rules-head p { font-size: 14.2px; color: var(--muted); line-height: 1.7; word-break: keep-all; }
.rule-list { list-style: none; display: grid; }
.rule-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  word-break: keep-all;
}
.rule-list li:first-child { padding-top: 0; }
.rule-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.rule-list .rn {
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
}

/* ── responsive ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bands { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav.open {
    background: rgba(7, 11, 26, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: var(--line);
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--pad);
    right: var(--pad);
    flex-direction: column;
    gap: 2px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--line-strong);
    background: rgba(9, 13, 28, 0.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav.open .nav-links { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: 13px 16px; font-size: 15.5px; }
  .nav-links .mobile-cta {
    display: block;
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, #f7d97f, var(--gold) 55%, #e3b84f);
    color: #231a04;
  }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 64px; align-items: flex-start; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .hero-copy { min-width: 0; }
  .hero-visual { order: -1; min-height: 320px; }
  .wallet-grid { grid-template-columns: 1fr; }
  .wallet-visual { max-width: 620px; }
  .casino-show { grid-template-columns: 1fr; }
  .servers { grid-template-columns: 1fr; }
  .mc-features { grid-template-columns: 1fr; }
  .link-steps { grid-template-columns: 1fr; }
  .bridge { grid-template-columns: 1fr; gap: 22px; padding: 34px 26px; }
  .bridge-link { transform: rotate(90deg); min-width: 0; width: 60px; margin-inline: auto; }
  .bridge-link span { display: none; }
  .dir-list { grid-template-columns: 1fr; }
  .onboard-steps { grid-template-columns: repeat(2, 1fr); }
  .rules { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bands { grid-template-columns: repeat(2, 1fr); }
  .band:last-child { grid-column: 1 / -1; }
  .growth-grid { grid-template-columns: 1fr; }
  .casino-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
  .hstat { border-right: 0; padding-right: 0; margin-right: 0; flex: 1 1 40%; }
  .hero-visual { min-height: 280px; }
  .moon-disc { width: clamp(230px, 62vw, 290px); }
  .orbit-ring { width: clamp(270px, 74vw, 340px); }
  .orbit-ring.r2 { width: clamp(310px, 84vw, 390px); }
  .avatar-orb { width: clamp(150px, 44vw, 195px); }
  .hero-desc { max-width: 320px; word-break: keep-all; overflow-wrap: anywhere; }
  .hero-sub { max-width: 320px; font-size: 13px; letter-spacing: 0.16em; }
  .cmd-row { grid-template-columns: 1fr; gap: 4px; }
  .cmd-row .cmd-name, .cmd-desc { grid-column: 1; }
  .dir-search kbd { display: none; }
  .onboard-steps { grid-template-columns: 1fr; }
}

/* ── reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .js .reveal, .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}
