/* ═══════════════════════════════════════════════════════════
   slatt.life — Global Design Tokens & Base Styles
   Red-black-gray theme with glassmorphism
   Combined bleed + greed aesthetic
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* ── surfaces (ultra-dark, greed-inspired) ── */
  --void:       #050505;
  --s0:         #0a0a0a;
  --s1:         #0e0e0e;
  --s2:         #141414;
  --s3:         #1a1a1a;
  --s4:         #202020;

  /* ── accent (red) ── */
  --signal:     #dc2626;
  --signal-dim: rgba(220,38,38,.10);
  --signal-glow:rgba(220,38,38,.25);
  --signal-soft:#ef4444;
  --alive:      #22c55e;
  --alive-dim:  rgba(34,197,94,.10);
  --danger:     #ef4444;
  --warn:       #f59e0b;

  /* ── ink ── */
  --ink:        #f5f5f5;
  --ink-2:      #a3a3a3;
  --ink-3:      #737373;
  --ink-4:      #404040;

  /* ── borders ── */
  --border:     rgba(255,255,255,.05);
  --border-h:   rgba(255,255,255,.10);
  --border-a:   rgba(220,38,38,.20);

  /* ── radius ── */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 100px;

  /* ── easing ── */
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --ease-snap: cubic-bezier(.2,.9,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  /* ── glass ── */
  --glass-bg:  rgba(14,14,14,.65);
  --glass-blur: blur(24px) saturate(1.3);

  /* ── fonts ── */
  --font-sans:  'Satoshi', 'Inter', -apple-system, sans-serif;
  --font-display:'Satoshi', 'Inter', sans-serif;
  --font-mono:  'Geist Mono', 'Fira Code', monospace;
}

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

/* ── light mode overrides ── */
[data-theme="light"] {
  --void:       #f8f8f8;
  --s0:         #ffffff;
  --s1:         #f3f3f3;
  --s2:         #e8e8e8;
  --s3:         #dedede;
  --s4:         #d0d0d0;
  --ink:        #111111;
  --ink-2:      #555555;
  --ink-3:      #888888;
  --ink-4:      #bbbbbb;
  --border:     rgba(0,0,0,.08);
  --border-h:   rgba(0,0,0,.14);
  --border-a:   rgba(220,38,38,.25);
  --glass-bg:   rgba(255,255,255,.70);
}
[data-theme="light"] ::selection { background: rgba(220,38,38,.2); color: #111; }
[data-theme="light"] ::-webkit-scrollbar-track { background: #f0f0f0; }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: #ccc; }
[data-theme="light"] .bg-grain { opacity: 0.01; }
[data-theme="light"] .bg-vignette { background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, var(--void) 100%); }
[data-theme="light"] .bg-glow { background: radial-gradient(circle 600px at 50% 0%, rgba(220,38,38,.06) 0%, transparent 70%); }
[data-theme="light"] .navbar-pill { background: rgba(255,255,255,.75); }
[data-theme="light"] .discord-profile { background: #ffffff; border-color: rgba(0,0,0,.1); box-shadow: 0 4px 24px rgba(0,0,0,.08); }
[data-theme="light"] .discord-banner { background: linear-gradient(135deg, #fce4e4 0%, #fdd 50%, #fce4e4 100%); }
[data-theme="light"] .discord-avatar { border-color: #ffffff; }
[data-theme="light"] .discord-name { color: #111; }
[data-theme="light"] .discord-activity { background: rgba(220,38,38,.05); }
[data-theme="light"] .commands-toolbar { background: rgba(248,248,248,.9); }
[data-theme="light"] .feature-card, [data-theme="light"] .stat-card, [data-theme="light"] .yako-stat, [data-theme="light"] .yako-feature, [data-theme="light"] .platform-card { background: #fff; border-color: rgba(0,0,0,.08); }
[data-theme="light"] .faq-item { background: #fff; border-color: rgba(0,0,0,.08); }
[data-theme="light"] .cta-section { background: rgba(255,255,255,.8); }
[data-theme="light"] .footer { background: #fff; border-top: 1px solid rgba(0,0,0,.06); }
[data-theme="light"] .security-banner { background: rgba(220,38,38,.04); border-color: rgba(220,38,38,.12); }
[data-theme="light"] .marquee-guild { background: #fff; border-color: rgba(0,0,0,.08); }

/* ── theme toggle button ── */
.theme-toggle {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--ink-2);
  cursor: pointer;
  font-size: 1rem;
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
  margin-left: 8px;
}
.theme-toggle:hover { background: var(--s2); color: var(--ink); border-color: var(--border-h); }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--void);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: var(--signal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--signal-soft); }

img { max-width: 100%; display: block; }

::selection { background: rgba(220,38,38,.3); color: #fff; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--s3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--s4); }

/* ── background layers ── */
.bg-grain {
  position: fixed; inset: 0; z-index: 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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.bg-vignette {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, var(--void) 100%);
}

.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle 600px at 50% 0%, rgba(220,38,38,.04) 0%, transparent 70%);
}

/* ── container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 900px; }
.container-wide { max-width: 1400px; }

/* ── glass card ── */
.glass {
  background: rgba(14,14,14,.5);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}

.glass-hover {
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
}

.glass-hover:hover {
  border-color: var(--border-h);
  background: rgba(14,14,14,.7);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,.05);
}

/* ── navbar (floating pill) ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .4s var(--ease-out);
}

.navbar.scrolled { padding: 8px 0; }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-pill {
  display: flex;
  align-items: center;
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 8px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  padding: 6px 16px;
  white-space: nowrap;
}

.navbar-brand .brand-icon { font-size: 1rem; color: var(--signal); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.navbar-links a {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s, background .2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--ink);
  background: rgba(255,255,255,.06);
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: var(--signal);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  transition: all .2s var(--ease-snap);
  margin-left: 4px;
}

.navbar-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  color: #fff;
  box-shadow: 0 6px 20px var(--signal-glow);
}

.navbar-toggle {
  display: none;
  background: none; border: none; color: var(--ink); cursor: pointer;
  font-size: 1.25rem; padding: 8px;
}

/* ── buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-xl);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all .2s var(--ease-snap);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--signal);
  color: #fff;
  box-shadow: 0 4px 16px var(--signal-glow);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { filter: brightness(1.1); color: #fff; box-shadow: 0 8px 32px var(--signal-glow); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-h);
}
.btn-outline:hover { background: rgba(255,255,255,.04); color: var(--ink); border-color: rgba(255,255,255,.15); }

.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--ink-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: var(--ink); }

.btn-discord {
  background: #5865f2;
  color: #fff;
}
.btn-discord:hover { filter: brightness(1.1); color: #fff; box-shadow: 0 4px 16px rgba(88,101,242,.3); }

/* ── section ── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--signal);
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
}
.section-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--signal), transparent);
  opacity: .4;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.03em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 600px;
  line-height: 1.7;
}

/* ── gradient text ── */
.gradient-text {
  background: linear-gradient(180deg, #fff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-accent {
  background: linear-gradient(135deg, var(--signal) 0%, #f87171 50%, var(--signal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── stats grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--r-xl);
  background: var(--s1);
  border: 1px solid var(--border);
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  border-color: var(--signal);
  transform: translateY(-4px);
  box-shadow: 0 0 30px var(--signal-dim), inset 0 1px 0 rgba(255,255,255,.05);
}
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, var(--signal-dim) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.stat-card:hover::after { opacity: 1; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ink);
}

.stat-value .unit { font-size: 1.5rem; color: var(--signal); }

.stat-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-3);
  margin-top: 4px;
}

/* ── feature cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 32px;
  border-radius: var(--r-xl);
  background: var(--s1);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease-out);
}

.feature-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,.05), 0 24px 48px -12px rgba(0,0,0,.4);
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--signal-dim) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }

.feature-card .icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--signal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--signal);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.feature-card p {
  color: var(--ink-2);
  font-size: .9rem;
  line-height: 1.6;
}

/* ── footer ── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--s0);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: .85rem;
  color: var(--ink-3);
  transition: color .2s;
}

.footer-links a:hover { color: var(--ink); }

.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--ink-4);
}

/* ── hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content { max-width: 640px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: var(--alive-dim);
  border: 1px solid rgba(34,197,94,.15);
  font-size: .8rem;
  font-weight: 500;
  color: var(--alive);
  margin-bottom: 24px;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--alive);
  animation: pulse-alive 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -.03em;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── status dot ── */
.status-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.status-dot.online { background: var(--alive); box-shadow: 0 0 8px var(--alive); }
.status-dot.offline { background: var(--ink-4); }

/* ── divider ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.badge-red { background: var(--signal-dim); color: var(--signal); border: 1px solid var(--border-a); }
.badge-green { background: var(--alive-dim); color: var(--alive); border: 1px solid rgba(34,197,94,.2); }
.badge-gray { background: rgba(255,255,255,.04); color: var(--ink-3); border: 1px solid var(--border); }

/* ── FAQ accordion ── */
.faq-item {
  border-radius: var(--r-md);
  background: var(--s1);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover, .faq-item.open { border-color: var(--border-h); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; border: none; background: none;
  color: var(--ink); font-size: .95rem; font-weight: 600; font-family: var(--font-sans);
  cursor: pointer; text-align: left;
}
.faq-icon {
  font-size: 1.2rem; color: var(--ink-3);
  transition: transform .3s var(--ease-out);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--signal); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease-out), padding .35s;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }
.faq-a p { color: var(--ink-2); font-size: .9rem; line-height: 1.6; }
.faq-a code { background: var(--signal-dim); padding: 1px 6px; border-radius: 3px; font-family: var(--font-mono); font-size: .85rem; }

/* ── loading screen ── */
.site-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--void);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s, visibility .4s;
}
.site-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--signal);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── animations ── */
@keyframes pulse-alive {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--signal-glow); }
  50% { box-shadow: 0 0 40px var(--signal-glow), 0 0 60px rgba(220,38,38,.1); }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) forwards;
}

.anim-fade-in {
  opacity: 0;
  animation: fadeIn .5s var(--ease-out) forwards;
}

.anim-scale-in {
  opacity: 0;
  animation: scaleIn .5s var(--ease-out) forwards;
}

.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .3s; }
.anim-delay-4 { animation-delay: .4s; }
.anim-delay-5 { animation-delay: .5s; }
.anim-delay-6 { animation-delay: .6s; }
.anim-delay-7 { animation-delay: .7s; }
.anim-delay-8 { animation-delay: .8s; }

/* ── scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: .05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: .1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: .15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: .2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: .25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: .3s; }

/* ── hover micro-interactions ── */
.hover-lift { transition: transform .3s var(--ease-out); }
.hover-lift:hover { transform: translateY(-4px); }

.hover-glow { transition: box-shadow .3s; }
.hover-glow:hover { box-shadow: 0 0 24px var(--signal-glow); }

/* ── responsive ── */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-toggle { display: block; }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px; right: 16px;
    background: var(--s1);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 12px;
    gap: 4px;
    animation: slideDown .3s var(--ease-out);
  }
  .navbar-pill { padding: 4px 6px; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-title { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 60px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}