/* ============================================================
   ARBITRUM ECOSYSTEM REWARD — Premium Landing Page
   ============================================================ */

/* 1. DESIGN TOKENS
   ============================================================ */
:root {
  --bg:          #020617;
  --surface-1:   #0B1220;
  --surface-2:   #111827;
  --accent:      #2D6BFF;
  --accent-soft: #5AA0FF;
  --text-1:      #E6EDF7;
  --text-2:      #8FA3BF;
  --border:      rgba(45, 107, 255, 0.12);
  --border-hi:   rgba(45, 107, 255, 0.28);
  --glow-sm:     rgba(45, 107, 255, 0.12);
  --glow-md:     rgba(45, 107, 255, 0.20);
  --glow-lg:     rgba(45, 107, 255, 0.35);
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button { cursor: pointer; font-family: inherit; border: none; background: none; }
a { text-decoration: none; color: inherit; }
img, svg { display: block; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(45, 107, 255, 0.25); border-radius: 99px; }

/* 3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 4. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text-1);
}
.nav-logo-mark { display: flex; }

/* ── Logo PNG ─────────────────────────────────────────────── */
.logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 8px rgba(45,107,255,0.15));
  transition: filter .22s ease;
}
.logo:hover {
  filter: drop-shadow(0 0 12px rgba(45,107,255,0.28));
}
.logo--footer {
  height: 24px;
  opacity: .85;
}

/* ── Notification logo PNG ────────────────────────────────── */
.notification-logo {
  height: 28px;
  width: auto;
  opacity: .95;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  display: block;
}
.nav-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(45,107,255,.07);
  border: 1px solid rgba(45,107,255,.18);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 99px;
  letter-spacing: .01em;
}
.nav-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22d47b;
  box-shadow: 0 0 7px #22d47b;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .55; transform: scale(.75); }
}

/* 5. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 128px 0 96px;
  overflow: hidden;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.hero-orb--main {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(45,107,255,.16) 0%, transparent 68%);
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
}
.hero-orb--left {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(90,160,255,.07) 0%, transparent 70%);
  top: 20%; left: -8%;
}
.hero-orb--right {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(45,107,255,.06) 0%, transparent 70%);
  bottom: 10%; right: -5%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,107,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,107,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 0%, transparent 100%);
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,107,255,.07);
  border: 1px solid rgba(45,107,255,.2);
  color: var(--accent-soft);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 14px 6px 10px;
  border-radius: 99px;
  margin-bottom: 28px;
  letter-spacing: .01em;
}
.hero-headline {
  font-size: clamp(44px, 7.5vw, 84px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.03;
  margin-bottom: 22px;
  background: linear-gradient(140deg, #E6EDF7 0%, #BDD3EE 55%, #5AA0FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 500;
  color: var(--accent-soft);
  letter-spacing: -.015em;
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 15px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.72;
}

/* Hero CTA buttons */
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,18,32,.65);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 28px;
}
.hero-stat-div {
  width: 1px;
  height: 38px;
  background: var(--border);
}
.hero-stat-val {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text-1);
}
.hero-stat-lbl {
  font-size: 11.5px;
  color: var(--text-2);
  letter-spacing: .01em;
}
.live-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d47b;
  box-shadow: 0 0 8px #22d47b;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

/* 6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: transform .18s var(--ease-out-expo),
              box-shadow .18s ease,
              background .18s ease,
              border-color .18s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .18s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.98) !important; }

/* Primary */
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(45,107,255,.4), 0 4px 20px rgba(45,107,255,.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(45,107,255,.5), 0 8px 32px rgba(45,107,255,.40);
}

/* Ghost */
.btn--ghost {
  background: rgba(45,107,255,.08);
  color: var(--text-1);
  border: 1px solid rgba(45,107,255,.2);
}
.btn--ghost:hover {
  background: rgba(45,107,255,.14);
  border-color: rgba(45,107,255,.35);
  transform: translateY(-2px);
}

/* Large variant */
.btn--lg {
  font-size: 15.5px;
  padding: 14px 30px;
  border-radius: var(--r-lg);
}

/* 7. SECTION BASE
   ============================================================ */
.section { padding: 104px 0; position: relative; }
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 15.5px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.72;
}

/* 8. ELIGIBILITY
   ============================================================ */
.eligibility {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(11,18,32,.4) 30%,
    rgba(11,18,32,.4) 70%,
    transparent 100%);
}
.elig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.elig-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color .22s, transform .22s var(--ease-out-expo), box-shadow .22s;
  position: relative;
  overflow: hidden;
}
.elig-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,107,255,.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.elig-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.28), 0 0 0 1px rgba(45,107,255,.12);
}
.elig-card:hover::before { opacity: 1; }
.elig-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(45,107,255,.08);
  border: 1px solid rgba(45,107,255,.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.elig-body { flex: 1; position: relative; }
.elig-body h3 {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 6px;
  color: var(--text-1);
}
.elig-body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.62;
}
.elig-check {
  min-width: 20px;
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-top: 1px;
}

/* 9. DISTRIBUTION
   ============================================================ */
.dist-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.dist-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,107,255,.03) 0%, transparent 50%);
  pointer-events: none;
}
.dist-card {
  flex: 1;
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
}
.dist-card--featured {
  background: rgba(45,107,255,.04);
  border-left: 1px solid var(--border);
}
.dist-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 80%, rgba(45,107,255,.1) 0%, transparent 100%);
  pointer-events: none;
}
.dist-icon {
  width: 52px; height: 52px;
  background: rgba(45,107,255,.08);
  border: 1px solid rgba(45,107,255,.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.dist-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-2);
}
.dist-numbers {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.045em;
  color: var(--text-1);
}
.dist-numbers--accent {
  background: linear-gradient(135deg, var(--text-1) 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dist-dash {
  font-size: 22px;
  color: var(--text-2);
  font-weight: 300;
  -webkit-text-fill-color: var(--text-2);
}
.dist-sub {
  font-size: 13px;
  color: var(--text-2);
}
.dist-token-pill {
  background: rgba(45,107,255,.12);
  border: 1px solid rgba(45,107,255,.25);
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 99px;
  margin-top: 2px;
}
.dist-sep {
  width: 1px;
  background: var(--border);
  margin: 32px 0;
}

/* 10. HOW IT WORKS
   ============================================================ */
.how {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(11,18,32,.3) 20%,
    rgba(11,18,32,.3) 80%,
    transparent 100%);
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}
.step {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  transition: border-color .22s, transform .22s var(--ease-out-expo), box-shadow .22s;
  position: relative;
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.step:hover::after { opacity: .6; }
.step:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.32), 0 0 0 1px rgba(45,107,255,.1);
}
.step-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 64px;
  padding-left: 16px;
  padding-right: 16px;
  opacity: .6;
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  opacity: .7;
  margin-bottom: 18px;
}
.step-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(45,107,255,.07);
  border: 1px solid rgba(45,107,255,.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.022em;
  margin-bottom: 10px;
  color: var(--text-1);
}
.step-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
}

/* 11. TRUST
   ============================================================ */
.trust { padding: 64px 0 80px; }
.trust-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.trust-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 100%, rgba(45,107,255,.07) 0%, transparent 100%);
  pointer-events: none;
}
.trust-icon-wrap {
  width: 66px; height: 66px;
  background: rgba(45,107,255,.07);
  border: 1px solid rgba(45,107,255,.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}
.trust-text {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 28px;
  position: relative;
}
.trust-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.trust-pill {
  background: rgba(45,107,255,.07);
  border: 1px solid rgba(45,107,255,.15);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 99px;
}

/* 12. CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(45,107,255,.14) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(64px);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 14px 0 18px;
}
.cta-desc {
  font-size: 15.5px;
  color: var(--text-2);
  margin-bottom: 36px;
}
.cta-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-2);
  opacity: .6;
  letter-spacing: .01em;
}

/* 13. FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text-1);
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 13.5px;
  color: var(--text-2);
  transition: color .16s;
}
.footer-nav a:hover { color: var(--text-1); }
.footer-copy {
  font-size: 12px;
  color: var(--text-2);
  opacity: .55;
}

/* 14. NOTIFICATIONS
   ============================================================ */
.notif-container {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.notif {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(9, 15, 28, 0.94);
  border: 1px solid rgba(45,107,255,.25);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 8px 32px rgba(0,0,0,.55),
    0 0 0 1px rgba(45,107,255,.06),
    inset 0 1px 0 rgba(255,255,255,.04);
  min-width: 284px;
  max-width: 340px;
  pointer-events: auto;
  will-change: transform, opacity;
  /* Initial (hidden) state */
  transform: translateX(-24px);
  opacity: 0;
  transition:
    transform .38s var(--ease-out-expo),
    opacity .28s ease;
}
.notif.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.notif.is-hiding {
  transform: translateX(-14px) scale(.97);
  opacity: 0;
  transition: transform .24s ease, opacity .22s ease;
}
.notif-icon-wrap {
  width: 36px; height: 36px; min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 6px rgba(45,107,255,0.18));
}
.notif-body { flex: 1; min-width: 0; }
.notif-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--accent-soft);
  margin-bottom: 3px;
}
.notif-amount {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text-1);
}
.notif-address {
  font-size: 11.5px;
  color: var(--text-2);
  margin-top: 2px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  opacity: .8;
}

/* 15. SCROLL-TRIGGER ANIMATIONS
   ============================================================ */
.card-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .52s ease, transform .52s var(--ease-out-expo);
}
.card-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animations */
.anim-up {
  opacity: 0;
  transform: translateY(20px);
  animation: anim-fade-up .65s var(--ease-out-expo) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes anim-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* 16. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .step-arrow {
    display: flex;
    justify-content: center;
    padding: 0;
    transform: rotate(90deg);
  }
  .elig-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 104px 0 64px; min-height: auto; }
  .section-head { margin-bottom: 40px; }

  /* Stats bar stacks on mobile */
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px;
  }
  .hero-stat { padding: 0; }
  .hero-stat-div { width: 64px; height: 1px; }

  /* Distribution cards stack */
  .dist-wrap { flex-direction: column; }
  .dist-sep { width: 80%; height: 1px; margin: 0 auto; }
  .dist-card { padding: 36px 28px; }
  .dist-card--featured { border-left: none; border-top: 1px solid var(--border); }
  .dist-numbers { font-size: 28px; }

  /* Trust card */
  .trust-card { padding: 36px 24px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* Nav */
  .nav-badge { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-headline { letter-spacing: -.035em; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* ── MOBILE NOTIFICATIONS (top center) ─── */
@media (max-width: 640px) {
  .notif-container {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 78px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 380px;
    align-items: stretch;
  }
  .notif {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    /* Mobile enter from top */
    transform: translateY(-20px);
  }
  .notif.is-visible { transform: translateY(0); }
  .notif.is-hiding {
    transform: translateY(-12px) scale(.97);
  }
}
