/* ═══════════════════════════════════════════
   HexaRust — CSS
   Palette : #080a0d (bg) · #C8521A (rust) · #E8DDD4 (text)
═══════════════════════════════════════════ */

:root {
  --rust:        #C8521A;
  --rust-lt:     #E86A2A;
  --rust-glow:   rgba(200, 82, 26, 0.45);
  --rust-subtle: rgba(200, 82, 26, 0.12);
  --bg:          #080a0d;
  --bg2:         #0e100d;
  --bg3:         #13150f;
  --card:        rgba(20, 16, 12, 0.85);
  --border:      rgba(200, 82, 26, 0.18);
  --text:        #E8DDD4;
  --text-m:      #8a7a6e;
  --text-d:      #4a3a2e;
  --font-h:      'Rajdhani', sans-serif;
  --font-b:      'Exo 2', sans-serif;
  --r:           6px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ════════════════════════════ LOADER ════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.loader-hex-ring svg {
  width: 120px; height: auto;
  animation: loaderSpin 2s linear infinite;
}
.lhex { stroke: var(--rust); }
.lhex-1 { stroke-width: 1.2; animation: loaderPulse 1.4s ease-in-out infinite; }
.lhex-2 { stroke-width: .8; animation: loaderPulse 1.4s ease-in-out .2s infinite; }
.lhex-3 { stroke-width: .5; animation: loaderPulse 1.4s ease-in-out .4s infinite; }

.loader-wordmark {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .35em;
  color: var(--rust);
  animation: loaderFade 1.4s ease-in-out infinite alternate;
}

@keyframes loaderSpin   { to { transform: rotate(360deg); } }
@keyframes loaderPulse  { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes loaderFade   { from { opacity: .4; } to { opacity: 1; } }

/* ════════════════════════════ NAVBAR ════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8, 10, 13, 0.92);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-color: var(--border);
  box-shadow: 0 2px 40px rgba(0,0,0,.6);
}

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 16px 24px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo-word {
  font-family: var(--font-h);
  font-weight: 700; font-size: 1.15rem;
  letter-spacing: .08em;
  color: var(--text);
}
.nav-logo-word em { font-style: normal; color: var(--rust); }

.nav-links {
  display: flex; gap: 4px; margin-left: auto;
}
.nav-links a {
  font-family: var(--font-h);
  font-weight: 600; font-size: .9rem;
  letter-spacing: .06em;
  color: var(--text-m);
  padding: 6px 14px;
  border-radius: var(--r);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--rust-subtle); }

.btn-discord {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-h);
  font-weight: 700; font-size: .88rem;
  letter-spacing: .08em;
  color: var(--text);
  background: var(--rust);
  padding: 8px 18px;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.btn-discord svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-discord:hover {
  background: var(--rust-lt);
  box-shadow: 0 0 20px var(--rust-glow);
  transform: translateY(-1px);
}

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8,10,13,.97);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  padding: 8px 0 20px;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-h);
  font-weight: 600; font-size: 1rem;
  color: var(--text-m);
  padding: 12px 24px;
  transition: color var(--transition), background var(--transition);
}
.mobile-menu a:hover { color: var(--text); background: var(--rust-subtle); }
.mobile-menu .mobile-discord {
  margin: 12px 24px 0;
  background: var(--rust);
  color: var(--text);
  border-radius: var(--r);
  text-align: center;
  padding: 12px 24px;
}
.mobile-menu.open { display: flex; }

@media (max-width: 860px) {
  .nav-links, .btn-discord { display: none; }
  .nav-burger { display: flex; }
}

/* ════════════════════════════ HERO ══════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}

#hexCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
}

.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, transparent 40%, var(--bg) 100%),
              radial-gradient(ellipse 60% 40% at 50% 0%, transparent 60%, rgba(0,0,0,.5) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 28px;
  max-width: 720px;
}

/* Logo hero */
.hero-logo-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, var(--rust-glow), transparent 70%);
  animation: logoPulse 3s ease-in-out infinite;
  pointer-events: none;
}
.hero-logo-img {
  width: min(320px, 72vw);
  height: auto;
  filter: drop-shadow(0 0 40px var(--rust-glow)) drop-shadow(0 0 80px rgba(200,82,26,.2));
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,100% { opacity: .6; transform: scale(.95); }
  50%      { opacity: 1;  transform: scale(1.05); }
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--text-m);
  text-transform: uppercase;
  min-height: 2em;
}
.typewriter-cursor {
  display: inline-block;
  color: var(--rust);
  animation: blink .7s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Pills */
.hero-pills {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.hero-pill {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-h);
  font-weight: 700; font-size: .82rem;
  letter-spacing: .12em;
  color: var(--rust-lt);
  background: rgba(200, 82, 26, .1);
  border: 1px solid rgba(200, 82, 26, .3);
  padding: 6px 14px;
  border-radius: 40px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.hero-pill svg { width: 14px; height: 14px; }

/* CTA */
.hero-cta {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-h);
  font-weight: 700; font-size: 1rem;
  letter-spacing: .08em;
  color: #fff;
  background: var(--rust);
  padding: 14px 28px;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 60%);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--rust-lt);
  box-shadow: 0 0 30px var(--rust-glow), 0 8px 25px rgba(0,0,0,.4);
  transform: translateY(-2px);
}
.btn-large { font-size: 1.15rem; padding: 18px 38px; }

.btn-pulse::after {
  content: '';
  position: absolute; inset: -3px;
  border: 2px solid var(--rust);
  border-radius: calc(var(--r) + 3px);
  opacity: 0;
  animation: pulseRing 2.5s ease-out infinite;
}
@keyframes pulseRing {
  0%   { opacity: .8; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.25); }
}

.btn-ghost {
  font-family: var(--font-h);
  font-weight: 600; font-size: .95rem;
  letter-spacing: .06em;
  color: var(--text-m);
  padding: 14px 20px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--rust);
  background: var(--rust-subtle);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid var(--text-m);
  border-radius: 11px;
  display: flex; justify-content: center; padding-top: 6px;
  opacity: .5;
  animation: scrollFade 2s ease-in-out infinite;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--rust);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel { 0%,100% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(8px); opacity: 0; } }
@keyframes scrollFade  { 0%,100% { opacity: .5; } 50% { opacity: .9; } }

/* ════════════════════════════ TICKER ════ */
.ticker-wrap {
  overflow: hidden;
  background: rgba(200, 82, 26, .08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.ticker-track {
  display: flex; gap: 0; width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-h);
  font-weight: 600; font-size: .82rem;
  letter-spacing: .1em;
  color: var(--rust-lt);
  white-space: nowrap;
  padding: 0 28px;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ════════════════════════════ SECTIONS ══ */
.section-container {
  max-width: 1200px; margin: 0 auto;
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-desc {
  max-width: 560px; margin: 16px auto 0;
  color: var(--text-m); font-size: 1rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rust);
  background: var(--rust-subtle);
  border: 1px solid rgba(200,82,26,.25);
  padding: 4px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}
.section-title em {
  font-style: normal;
  color: var(--rust);
}

/* ════════════════════════════ ABOUT ═════ */
#about { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-text .section-title { text-align: left; }
.about-text .section-eyebrow { margin-bottom: 12px; }

.about-text p {
  color: var(--text-m); font-size: .97rem; margin-top: 16px;
  line-height: 1.75;
}

.about-vals {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 32px;
}
.aval {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-h);
  font-weight: 600; font-size: .92rem;
  letter-spacing: .04em;
  color: var(--text);
}
.aval svg {
  width: 18px; height: 18px;
  color: var(--rust); flex-shrink: 0;
}

/* Banner showcase */
.about-visual { position: relative; }
.banner-showcase {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0,0,0,.5), 0 0 0 1px rgba(200,82,26,.08);
}
.banner-img {
  width: 100%; height: auto;
  display: block;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,10,13,.1) 0%,
    transparent 40%,
    rgba(8,10,13,.05) 100%
  );
  pointer-events: none;
}

/* ════════════════════════════ FEATURES ══ */
#features {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg3) 100%);
  position: relative;
}
#features::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(200,82,26,.04), transparent);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rust), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feat-card:hover {
  border-color: rgba(200,82,26,.4);
  box-shadow: 0 0 40px rgba(200,82,26,.1), 0 8px 30px rgba(0,0,0,.3);
  transform: translateY(-4px);
}
.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 44px; height: 44px;
  background: var(--rust-subtle);
  border: 1px solid rgba(200,82,26,.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--rust);
  transition: background var(--transition), box-shadow var(--transition);
}
.feat-icon svg { width: 22px; height: 22px; }
.feat-card:hover .feat-icon {
  background: rgba(200,82,26,.2);
  box-shadow: 0 0 14px rgba(200,82,26,.3);
}

.feat-badge {
  font-family: var(--font-h);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em;
  color: var(--rust);
  background: var(--rust-subtle);
  border: 1px solid rgba(200,82,26,.2);
  padding: 2px 10px;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 10px;
}

.feat-card h3 {
  font-family: var(--font-h);
  font-size: 1.2rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.feat-card p { color: var(--text-m); font-size: .9rem; line-height: 1.7; }

/* ════════════════════════════ SCHEDULE ══ */
#schedule {
  background: linear-gradient(180deg, var(--bg3) 0%, var(--bg2) 100%);
}

.schedule-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 900px) { .schedule-wrap { grid-template-columns: 1fr; gap: 48px; } }

.schedule-info .section-title { text-align: left; }
.schedule-info .section-eyebrow { margin-bottom: 12px; }
.schedule-info > p { color: var(--text-m); margin-top: 16px; line-height: 1.75; }

.wipe-details { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.wipe-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.wipe-hex {
  font-size: 1.2rem; color: var(--rust);
  margin-top: 2px; flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--rust-glow));
}
.wipe-item div { display: flex; flex-direction: column; gap: 2px; }
.wipe-item strong { font-family: var(--font-h); font-size: .95rem; color: var(--text); }
.wipe-item span { font-size: .88rem; color: var(--text-m); }

/* Countdown */
.schedule-countdown { position: relative; }

.countdown-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
  position: relative; z-index: 1;
  box-shadow: 0 0 60px rgba(0,0,0,.4);
}

.cd-label {
  font-family: var(--font-h);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .18em;
  color: var(--text-m);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cd-timer {
  display: flex; align-items: center; gap: 8px; justify-content: center;
}
.cd-block {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 64px;
}
.cd-block span {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
  text-shadow: 0 0 20px var(--rust-glow);
}
.cd-block em {
  font-family: var(--font-b);
  font-style: normal;
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--text-d);
  text-transform: uppercase;
}
.cd-colon {
  font-family: var(--font-h);
  font-size: 2rem; font-weight: 700;
  color: var(--text-d);
  padding-bottom: 20px;
  animation: colonBlink .9s step-end infinite;
}
@keyframes colonBlink { 50% { opacity: .2; } }

.cd-note {
  font-size: .78rem; color: var(--text-d);
  margin-top: 24px;
  letter-spacing: .06em;
}

.cd-hex-deco {
  position: absolute; top: 50%; right: -60px;
  transform: translateY(-50%);
  width: 200px; opacity: .5;
  pointer-events: none;
  animation: hexRot 20s linear infinite;
}
@keyframes hexRot { to { transform: translateY(-50%) rotate(360deg); } }

/* ════════════════════════════ COMMUNITY ═ */
#community {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.community-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 0;
}
@media (max-width: 800px) { .community-grid { grid-template-columns: 1fr; } }

.comm-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.comm-card:hover {
  border-color: rgba(200,82,26,.35);
  transform: translateY(-4px);
}

.comm-num {
  font-family: var(--font-h);
  font-size: 3.5rem; font-weight: 700;
  color: rgba(200,82,26,.12);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.comm-card:hover .comm-num { color: rgba(200,82,26,.2); }

.comm-card h3 {
  font-family: var(--font-h);
  font-size: 1.25rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.comm-card p { color: var(--text-m); font-size: .9rem; line-height: 1.7; }

/* ════════════════════════════ CTA ═══════ */
#discord-cta {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
  background: var(--bg);
}
#ctaCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.cta-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
}

.cta-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 24px;
  max-width: 640px;
}

.cta-logo-wrap { position: relative; }
.cta-logo-img {
  width: min(200px, 50vw);
  height: auto;
  filter: drop-shadow(0 0 40px var(--rust-glow)) drop-shadow(0 0 80px rgba(200,82,26,.15));
  animation: logoFloat 5s ease-in-out .5s infinite;
}

.cta-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; line-height: 1.1;
  color: var(--text);
}
.cta-title em { font-style: normal; color: var(--rust); }

.cta-sub { color: var(--text-m); font-size: 1rem; line-height: 1.7; }

.cta-domain {
  font-family: var(--font-h);
  font-size: .82rem; letter-spacing: .18em;
  color: var(--text-d);
  text-transform: uppercase;
}

/* ════════════════════════════ FOOTER ════ */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
}
.footer-logo { width: 30px; height: 30px; object-fit: contain; }
.footer-brand span {
  font-family: var(--font-h);
  font-weight: 700; font-size: 1rem;
  letter-spacing: .1em;
  color: var(--text-m);
}
.footer-brand em { font-style: normal; color: var(--rust); }
#footer p { font-size: .82rem; color: var(--text-d); }
.footer-legal { font-size: .75rem !important; }

/* ════════════════════════════ ANIMATIONS ═ */
/* Scroll-reveal base states */
.reveal-fade   { opacity: 0; transform: none;          transition: opacity .7s ease, transform .7s ease; }
.reveal-left   { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right  { opacity: 0; transform: translateX(40px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-up     { opacity: 0; transform: translateY(30px);  transition: opacity .7s var(--transition); }
.reveal-scale  { opacity: 0; transform: scale(.85);    transition: opacity .8s ease, transform .8s ease; }

.reveal-fade.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible,
.reveal-scale.visible {
  opacity: 1; transform: none;
}

/* Delay utility for staggered cards */
.reveal-up   { transition-delay: var(--delay, 0s); }
