/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Share+Tech+Mono&display=swap');

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 20px; }

/* ─── BASE ─── */
body {
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  background: #000 radial-gradient(ellipse at 50% 60%, rgba(80,0,0,0.55) 0%, rgba(0,0,0,1) 70%);
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── CANVAS ─── */
#alice-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ─── SCANLINES ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 6px
  );
  pointer-events: none;
  z-index: 1;
}

/* ════════════════════════════
   NAV
════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 16px 60px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,0,0,0.20);
  gap: 0;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: #ff0000;
  text-decoration: none;
  text-shadow:
    0 0 18px rgba(255,0,0,0.65),
    1px 1px 0 #fff, -1px -1px 0 #fff,
    1px -1px 0 #fff, -1px  1px 0 #fff;
  margin-right: auto;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 28px;
}
.nav-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  letter-spacing: 0.10em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Nav buttons */
.btn-nav-ghost {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 7px 16px;
  border-radius: 2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-nav-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.65); }

.btn-nav-red {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: #bb0000;
  border: 1px solid #ee1111;
  padding: 7px 16px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 0 10px rgba(255,0,0,0.30);
}
.btn-nav-red:hover {
  background: #ee0000;
  box-shadow: 0 0 22px rgba(255,0,0,0.55);
}

/* ── Mobile hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 2px;
  border: 1px solid rgba(255,0,0,0.35);
  background: rgba(180,0,0,0.12);
  position: relative;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ff3333;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.22s ease;
  transform-origin: center;
  box-shadow: 0 0 6px rgba(255,0,0,0.7);
}

/* ══════════════════════════════════════
   EPIC MOBILE MENU — slides from left
══════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: #000;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* vertical red line on left edge */
  border-left: 1px solid rgba(255,0,0,0.35);
  border-right: none;
  padding: 0;
  overflow: hidden;
}

/* Red diagonal slash bg graphic */
.mobile-menu::before {
  content: '';
  position: absolute;
  top: -10%; left: -60px;
  width: 180px; height: 120%;
  background: rgba(255,0,0,0.04);
  transform: skewX(8deg);
  pointer-events: none;
}

/* Glowing right edge */
.mobile-menu::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, #ff0000 30%, #ff0000 70%, transparent 100%);
  box-shadow: 0 0 18px rgba(255,0,0,0.7), 0 0 40px rgba(255,0,0,0.3);
}

/* Backdrop overlay — darkens the rest of screen */
.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Logo inside menu */
.menu-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: #ff0000;
  text-shadow: 0 0 16px rgba(255,0,0,0.7),
    1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
  padding: 0 32px 32px;
  display: block;
  border-bottom: 1px solid rgba(255,0,0,0.12);
  margin-bottom: 8px;
  width: 100%;
}

.mobile-menu a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  padding: 16px 32px;
  width: 100%;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-right: 36px;
  transition: color 0.18s, background 0.18s, padding-left 0.22s, text-shadow 0.18s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.mobile-menu a:last-child { border-bottom: none; }

/* Number tag */
.mobile-menu a::before {
  content: attr(data-num);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.52rem;
  color: rgba(255,0,0,0.50);
  letter-spacing: 0.28em;
  margin-bottom: 3px;
}

/* Arrow indicator */
.mobile-menu a::after {
  content: '‹';
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  font-size: 1.4rem;
  color: rgba(255,0,0,0);
  transition: color 0.2s, transform 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: #fff;
  background: rgba(255,0,0,0.07);
  padding-left: 40px;
  text-shadow: 0 0 16px rgba(255,0,0,0.6);
}
.mobile-menu a:hover::after,
.mobile-menu a:active::after {
  color: rgba(255,0,0,0.8);
  transform: translateY(-50%) translateX(0);
}

/* Slide in from RIGHT */
.mobile-menu.open {
  transform: translateX(0);
}
/* X animation */
.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  box-shadow: 0 0 10px rgba(255,0,0,1);
}
.hamburger.open span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  box-shadow: 0 0 10px rgba(255,0,0,1);
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: block;
  background: transparent;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}


/* Alice background image — fixed to viewport, behind content, above canvas */
.alice-bg-img {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(500px, 90vw);
  height: 100vh;
  object-fit: cover;
  object-position: top center;
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  filter: contrast(1.05) brightness(0.80);
  mask-image: linear-gradient(to bottom, black 20%, black 60%, transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, black 20%, black 60%, transparent 95%);
}

.hero-content {
  position: absolute;
  bottom: max(80px, calc(60px + env(safe-area-inset-bottom)));
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  z-index: 3;
}

.hero-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.70rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  border: 1px solid rgba(255,0,0,0.28);
  padding: 5px 14px;
  border-radius: 2px;
  background: rgba(180,0,0,0.06);
  margin-bottom: 22px;
}

.hero-top { display: flex; flex-direction: column; align-items: center; }

.hero-title {
  font-weight: 900;
  /* 7.5vw * 10 chars * 1.06 = 252px on 320px phone — safely fits */
  font-size: clamp(1.6rem, 7.5vw, 6.5rem);
  letter-spacing: 0.06em;
  padding-right: 0.06em;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  color: #ff0000;
  text-shadow:
    1px  1px 0 #fff,
   -1px -1px 0 #fff,
    1px -1px 0 #fff,
   -1px  1px 0 #fff,
    0 0 50px rgba(255,0,0,0.50),
    0 0 100px rgba(255,0,0,0.18);
  line-height: 1.05;
  margin-bottom: 10px;
}

.hero-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: clamp(0.78rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.10em;
  min-height: 1.6em;
  margin-bottom: 14px;
}
.hero-sub::after {
  content: '|';
  color: #ff0000;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-desc {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.40);
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 38px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.btn-primary {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  background: #bb0000;
  border: 1px solid #ee2222;
  padding: 13px 30px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
  box-shadow: 0 0 18px rgba(255,0,0,0.38);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #ee0000;
  box-shadow: 0 0 36px rgba(255,0,0,0.65);
  transform: translateY(-1px);
}

.btn-outline {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.70);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  padding: 13px 30px;
  border-radius: 2px;
  text-decoration: none;
  transition: color 0.22s, border-color 0.22s, background 0.22s;
  white-space: nowrap;
}
.btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.05);
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255,0,0,0.22);
  padding: 12px 20px;
  background: rgba(160,0,0,0.07);
  min-width: 96px;
  transition: border-color 0.22s, background 0.22s;
}
.stat:hover {
  border-color: rgba(255,0,0,0.55);
  background: rgba(160,0,0,0.15);
}
.stat-n {
  font-size: 1.75rem;
  font-weight: 900;
  color: #ff0000;
  text-shadow: 0 0 18px rgba(255,0,0,0.75);
  line-height: 1;
}
.stat-l {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 5px;
  text-align: center;
}

/* ════════════════════════════
   SECTIONS
════════════════════════════ */
.section {
  position: relative;
  z-index: 3;
  padding: 72px 60px;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(6px);
}
.section-dark {
  background: rgba(8,0,0,0.58);
}

.section-inner {
  max-width: 980px;
  margin: 0 auto;
}

/* Section label */
.label {
  display: block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: rgba(255,0,0,0.65);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Section headings */
.section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.07em;
  color: #ff0000;
  text-shadow:
    1px  1px 0 #fff,
   -1px -1px 0 #fff,
    1px -1px 0 #fff,
   -1px  1px 0 #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-lead {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.02rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.95;
  max-width: 740px;
  margin-bottom: 36px;
}
.section-lead em {
  color: #00e5ff;
  font-style: normal;
  text-shadow: 0 0 10px rgba(0,230,255,0.55);
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid rgba(255,0,0,0.18);
  padding: 26px 22px;
  background: rgba(8,0,0,0.45);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease,
              border-color 0.25s, background 0.25s;
}
.card.visible { opacity: 1; transform: translateY(0); }
.card:hover {
  border-color: rgba(255,0,0,0.50);
  background: rgba(22,0,0,0.58);
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,0,0,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.card-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  color: rgba(255,0,0,0.45);
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}
.card p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.85;
}

/* ── Problems list ── */
.problems-list { display: flex; flex-direction: column; }

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,0,0,0.10);
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}
.problem-item.visible { opacity: 1; transform: translateX(0); }
.problem-item:last-child { border-bottom: none; }

.problem-icon {
  font-size: 1.1rem;
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255,0,0,0.65);
  flex-shrink: 0;
  flex-grow: 0;
  width: 24px;
  line-height: 1.6;
  margin-top: 1px;
}
.problem-item .problem-body { flex: 1; min-width: 0; }
.problem-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 5px;
}
.problem-item p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.85;
}

/* ── Differentiators ── */
.diff-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(255,0,0,0.13);
background: rgba(8,0,0,0.38);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.96rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.52s ease, transform 0.52s ease,
              border-color 0.22s, background 0.22s, color 0.22s;
}
.diff-item.visible { opacity: 1; transform: translateY(0); }
.diff-item:hover {
  border-color: rgba(255,0,0,0.42);
  background: rgba(22,0,0,0.48);
  color: rgba(255,255,255,0.82);
}

.diff-check {
  color: #ff0000;
  font-size: 0.95rem;
  text-shadow: 0 0 8px rgba(255,0,0,0.65);
  flex-shrink: 0;
}

.cta-center { text-align: center; }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  position: relative;
  z-index: 3;
  padding: 38px 60px;
  background: rgba(0,0,0,0.82);
  border-top: 1px solid rgba(255,0,0,0.18);
}
.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-logo {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: #ff0000;
  text-shadow: 0 0 12px rgba(255,0,0,0.45);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.80); }
.footer-copy {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.06em;
}


/* Menu close button */
.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,0,0,0.12);
  border: 1px solid rgba(255,0,0,0.45);
  color: #ff4444;
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 10;
  flex-shrink: 0;
}
.menu-close:hover,
.menu-close:active {
  background: rgba(255,0,0,0.28);
  color: #fff;
  box-shadow: 0 0 16px rgba(255,0,0,0.55);
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .nav { padding: 14px 32px; }
}

@media (max-width: 860px) {
  .nav { padding: 14px 24px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex !important; }
  .mobile-menu { display: flex; }
  /* Mobile hero — compact block at very bottom */
  .hero-top { display: flex; flex-direction: column; align-items: center; margin-bottom: 8px; }
  .hero-stats { display: none; }
  .hero-badge { display: none; }
  .hero-bottom { gap: 10px; }
  .hero-content {
    bottom: max(100px, calc(80px + env(safe-area-inset-bottom)));
  }
  .btn-primary, .btn-outline {
    width: 88vw;
    max-width: 340px;
    text-align: center;
    padding: 16px;
    font-size: 0.9rem;
  }


  .hero { padding: 90px 20px 60px; }
  .hero-content { width: 100%; max-width: 100%; bottom: 16px; }
  .hero-title {
    font-size: 7.5vw;
    letter-spacing: 0.06em;
    padding-right: 0.06em;
    white-space: nowrap;
    margin-bottom: 4px;
  }
  .hero-badge { font-size: 0.62rem; letter-spacing: 0.18em; padding: 5px 10px; }
  .hero-desc { display: none; }
  .hero-ctas { gap: 10px; margin-bottom: 16px; }
  .btn-primary, .btn-outline { padding: 12px 22px; font-size: 0.74rem; }
  .hero-stats { gap: 8px; justify-content: center; }
  .stat { padding: 10px 12px; min-width: 72px; }
  .stat-n { font-size: 1.4rem; }
  .stat-l { font-size: 0.52rem; }

  .section { padding: 56px 20px; }
  .section-inner { max-width: 100%; }
  .section h2 { font-size: 1.4rem; }
  .section-lead { font-size: 0.82rem; }
  .card-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card { padding: 18px 16px; }
  .problem-item { gap: 14px; padding: 20px 0; }
  .diff-item { padding: 13px 16px; font-size: 0.78rem; }

  .footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 7.5vw;
    letter-spacing: 0.04em;
    padding-right: 0.04em;
    white-space: nowrap;
  }
  .hero-badge { display: none; }
  .hero-sub { font-size: 0.75rem; }
  .hero-desc { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-outline {
    width: 100%; max-width: 260px;
    text-align: center; padding: 12px 16px;
  }
  .hero-stats { gap: 6px; }
  .stat { min-width: 64px; padding: 8px 10px; }
  .stat-n { font-size: 1.25rem; }
  .stat-l { font-size: 0.50rem; letter-spacing: 0.10em; }
  .card-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 16px; }
  .section h2 { font-size: 1.2rem; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 0.60rem; }
}

/* ════════════════════════════
   MOBILE MENU ANIMATIONS
   (scoped inside mobile breakpoint intent)
════════════════════════════ */
/* Staggered item entrance — only fires when checkbox checked */
.mobile-menu.open .menu-brand {
  animation: menuItemIn 0.35s ease 0.05s both;
}
.mobile-menu.open a:nth-child(2) { animation: menuItemIn 0.35s ease 0.10s both; }
.mobile-menu.open a:nth-child(3) { animation: menuItemIn 0.35s ease 0.15s both; }
.mobile-menu.open a:nth-child(4) { animation: menuItemIn 0.35s ease 0.20s both; }
.mobile-menu.open a:nth-child(5) { animation: menuItemIn 0.35s ease 0.25s both; }
.mobile-menu.open a:nth-child(6) { animation: menuItemIn 0.35s ease 0.30s both; }
.mobile-menu.open a:nth-child(7) { animation: menuItemIn 0.35s ease 0.35s both; }

@keyframes menuItemIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scan sweep on open */
.mobile-menu.open::before {
  animation: menuScan 0.55s ease 0.08s forwards;
}
@keyframes menuScan {
  0%   { top: -10%; opacity: 0.7; }
  100% { top: 110%; opacity: 0; }
}

/* Hero bottom block — auto margin pushes to very bottom */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero-desc { display: none !important; }

@media (max-width: 860px) {
  .hero-sub {
    font-size: 0.72rem;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
  }
}
