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

:root {
  --bg: #08060e;
  --bg2: #0e0b18;
  --surface: #13101f;
  --surface2: #1a1628;
  --border: rgba(232, 121, 249, 0.12);
  --border-strong: rgba(232, 121, 249, 0.25);
  --pink: #e879f9;
  --pink-light: #f0abfc;
  --pink-dim: rgba(232, 121, 249, 0.15);
  --pink-glow: rgba(232, 121, 249, 0.08);
  --purple: #a855f7;
  --gold: #f59e0b;
  --text: #f4f0ff;
  --text-dim: #9d90b8;
  --text-muted: #5c5278;
  --radius: 14px;
  --radius-sm: 8px;
  --font: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: transparent;
  transition: background 0.3s, border-bottom 0.3s;
}
.nav.scrolled {
  background: rgba(8, 6, 14, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo { width: 36px; height: 36px; object-fit: contain; }
.nav-name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.01em;
}
.nav-tld {
  color: var(--pink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--pink-dim);
  border: 1px solid var(--border-strong);
  color: var(--pink-light) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s !important;
}
.btn-nav:hover {
  background: rgba(232, 121, 249, 0.22) !important;
  border-color: var(--pink) !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 2rem 80px;
  position: relative;
}
.hero-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.12) 0%, transparent 70%);
  top: 200px; right: -50px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-dim);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  color: var(--pink-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c026d3, #a855f7);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 0 30px rgba(192, 38, 211, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(192, 38, 211, 0.5);
}
.btn-large { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-ghost {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }
.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink-light);
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* TERMINAL */
.hero-visual { animation: fadeUp 0.6s 0.5s ease both; }
.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.1), 0 20px 60px rgba(0,0,0,0.5);
}
.terminal-bar {
  background: var(--surface2);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.t-dot { width: 11px; height: 11px; border-radius: 50%; }
.t-dot.red { background: #ff5f57; }
.t-dot.yellow { background: #febc2e; }
.t-dot.green { background: #28c840; }
.t-title { font-size: 0.75rem; color: var(--text-muted); margin-left: 6px; font-family: 'Courier New', monospace; }
.terminal-body {
  padding: 1.25rem 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.t-line { display: flex; gap: 8px; align-items: baseline; }
.t-dim { color: var(--text-muted); }
.t-green { color: #4ade80; }
.t-pink { color: var(--pink); }
.t-yellow { color: var(--gold); }
.t-appear {
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}
.t-cursor { animation: fadeIn 0.4s 2s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* AC BAR */
.ac-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1.25rem 2rem;
}
.ac-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ac-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ac-list { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.ac-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
}
.ac-chip-gold { border-color: rgba(245, 158, 11, 0.25); }
.ac-chip-dim { color: var(--text-muted); }
.ac-tag {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.7rem;
  margin-left: 2px;
}

/* SECTIONS */
.section { padding: 7rem 2rem; }
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 3rem;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}
.feat-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.feat-large {
  grid-column: span 1;
}
.feat-wide {
  grid-column: span 2;
}
.feat-icon {
  width: 48px; height: 48px;
  background: var(--pink-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 1rem;
}
.feat-card h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.feat-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* HOW IT WORKS */
.howto { background: var(--bg2); }
.steps {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pink-dim);
  border: 1px solid var(--border-strong);
  color: var(--pink);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.step p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; }
.step-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.howto-desc {
  color: var(--text-dim);
  font-size: 1rem;
  margin-top: -2rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

/* PRICING */
.pricing-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -2rem;
  margin-bottom: 2.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.plan-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.plan-featured {
  border-color: rgba(192, 38, 211, 0.4);
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.06) 0%, var(--surface) 60%);
  box-shadow: 0 0 40px rgba(192, 38, 211, 0.12);
}
.plan-featured:hover { border-color: rgba(192, 38, 211, 0.6); }
.plan-faceit {
  border-color: rgba(245, 158, 11, 0.2);
}
.plan-faceit:hover { border-color: rgba(245, 158, 11, 0.4); }
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c026d3, #a855f7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.5rem;
}
.plan-amt {
  font-family: var(--font);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
}
.plan-per {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.plan-savings {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.strike {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.88rem;
}
.save-label {
  background: rgba(232, 121, 249, 0.15);
  color: var(--pink-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}
.plan-faceit-note {
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.plan-header { margin-bottom: 1.5rem; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.check { color: var(--pink); font-weight: 700; }
.check-gold { color: var(--gold); }
.check-dim { color: var(--text-muted); }
.btn-plan {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--surface2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}
.btn-plan:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
  color: var(--pink-light);
}
.btn-plan-featured {
  background: linear-gradient(135deg, #c026d3, #a855f7);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(192, 38, 211, 0.3);
}
.btn-plan-featured:hover {
  background: linear-gradient(135deg, #d946ef, #9333ea);
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 0 30px rgba(192, 38, 211, 0.5);
}
.btn-plan-faceit {
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--gold);
}
.btn-plan-faceit:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* SLOTS */
.slots-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.slots-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
.slots-label { color: var(--text-dim); font-weight: 500; }
.slots-count { color: var(--pink-light); font-weight: 600; }
.slots-track {
  height: 6px;
  background: var(--surface2);
  border-radius: 100px;
  overflow: hidden;
}
.slots-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 100px;
  animation: fillSlots 1.5s 0.5s ease both;
  transform-origin: left;
}
.slots-fill-faceit {
  background: linear-gradient(90deg, #d97706, var(--gold));
}
@keyframes fillSlots {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* FAQ */
.faq-inner { max-width: 720px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--pink-light); }
.faq-arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.7;
  padding-bottom: 1.25rem;
}

/* CTA */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(192, 38, 211, 0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 1.75rem;
}
.cta-logo { width: 70px; height: 70px; object-fit: contain; }
.cta-brand-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}
.cta-brand-name {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.03em;
}
.cta-brand-by {
  font-size: 0.85rem;
  color: var(--pink);
  font-weight: 500;
}
.cta-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.cta-sub {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.cta-domain {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
}
.footer-logo { width: 24px; height: 24px; object-fit: contain; }
.footer-brand-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.footer-brand-by {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-discord {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-discord:hover { color: var(--pink); }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero {
    padding: 100px 1.5rem 60px;
  }
  .features-grid { grid-template-columns: 1fr; }
  .feat-large, .feat-wide { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 2.5rem; }
  .steps { flex-direction: column; align-items: stretch; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .plan-featured { margin-top: 0.5rem; }
}

@media (max-width: 680px) {
  /* Nav */
  .nav { padding: 0 1rem; }
  .nav-inner { height: 60px; }
  .nav-links a:not(.btn-nav) { display: none; }
  .btn-nav { padding: 0.4rem 0.9rem; font-size: 0.82rem; }

  /* Hero */
  .hero {
    padding: 80px 1.25rem 50px;
    text-align: center;
    gap: 2rem;
  }
  .hero-badge { font-size: 0.75rem; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; margin: 0 auto 1.5rem; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-actions .btn-primary { width: 100%; justify-content: center; }
  .hero-stats { justify-content: center; gap: 1.25rem; }
  .stat-num { font-size: 1.2rem; }

  /* Terminal */
  .terminal-body { font-size: 0.75rem; padding: 1rem; gap: 5px; }
  .t-title { font-size: 0.7rem; }

  /* AC bar */
  .ac-bar { padding: 1rem 1.25rem; }
  .ac-inner { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .ac-list { gap: 0.5rem; }
  .ac-chip { font-size: 0.78rem; padding: 0.25rem 0.75rem; }

  /* Sections */
  .section { padding: 4rem 1.25rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 2rem; }

  /* Features */
  .feat-card { padding: 1.25rem; }
  .feat-icon { width: 40px; height: 40px; }

  /* Steps */
  .step { padding: 1.25rem; }
  .howto-desc { font-size: 0.9rem; }

  /* Pricing */
  .plan-card { padding: 1.5rem; }
  .plan-amt { font-size: 2rem; }
  .plan-badge { font-size: 0.7rem; padding: 0.25rem 0.75rem; }
  .slots-bar { padding: 1.25rem; }

  /* FAQ */
  .faq-q { font-size: 0.92rem; }

  /* CTA */
  .cta-brand { flex-direction: column; gap: 8px; }
  .cta-brand-text { text-align: center; }
  .cta-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .btn-large { width: 100%; justify-content: center; padding: 0.85rem 1.5rem; }

  /* Footer */
  .footer { padding: 1.5rem 1.25rem; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 1.7rem; }
  .ac-list { gap: 0.4rem; }
  .hero-stats { gap: 0.75rem; }
  .stat-div { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, .t-appear, .reveal, .slots-fill { animation: none !important; transition: none !important; }
  .t-appear { opacity: 1; }
}
