/* ═══════════════════════════════════════════════
   VoiceTranslator — landing page
   Theme: dark "signal" — logo blue (#1453EF) on ink
   ═══════════════════════════════════════════════ */

:root {
  --bg: #07090d;
  --bg-raise: #0c0f15;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #eef2f6;
  --text-dim: #9aa5b1;
  --text-faint: #5c6672;
  --accent: #5b8aff;          /* logo blue, lifted for dark bg */
  --accent-strong: #1453EF;   /* logo blue — solid fills */
  --accent-deep: #0332B0;     /* logo gradient end */
  --accent-dim: rgba(20, 83, 239, 0.16);
  --accent-line: rgba(91, 138, 255, 0.38);
  --blue: #6ea8ff;            /* in-progress */
  --blue-dim: rgba(110, 168, 255, 0.14);
  --font-display: "Clash Display", "Avenir Next", sans-serif;
  --font-body: "General Sans", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;
  --r-ctl: 8px;
  --r-card: 16px;
  --r-panel: 24px;
}

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

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;
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; }

::selection { background: var(--accent-strong); color: #eef2f6; }

/* ── atmosphere ─────────────────────────────── */
.grain {
  position: fixed; inset: -50%; z-index: 999; pointer-events: none;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(10) infinite;
}
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 3%); }
  40% { transform: translate(3%, -2%); }
  60% { transform: translate(-3%, -3%); }
  80% { transform: translate(2%, 2%); }
}

.glow-cursor {
  position: fixed; z-index: 0; pointer-events: none;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 83, 239, 0.08) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  left: 50vw; top: 30vh;
  transition: left 0.35s ease-out, top 0.35s ease-out;
}

/* ── reveal on scroll ───────────────────────── */
/* Animation (not transition) so it never clashes with hover transitions
   on .card/.step; --reveal-delay is set per batch by app.js for stagger. */
.reveal { opacity: 0; }
.reveal.in {
  opacity: 1;
  animation: reveal-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s) backwards;
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(36px) scale(0.96); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0)  scale(1);    filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; }
  .reveal.in { animation: none; }
  .grain { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  padding: 12px 24px; border-radius: var(--r-ctl);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease,
              background 0.2s ease, border-color 0.2s ease;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(110, 168, 255, 0.45); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent-deep));
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22),
              0 1px 2px rgba(0, 0, 0, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22),
              0 8px 32px rgba(20, 83, 239, 0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--panel-strong); border-color: var(--text-faint); }
.btn-ghost:active { background: var(--panel); }

.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* ── nav ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background: rgba(7, 9, 13, 0.6);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(7, 9, 13, 0.85); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; gap: 40px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { display: inline-flex; width: 26px; height: 26px; }
.logo-mark svg { width: 100%; height: 100%; }
/* breathing equalizer bars inside the mark */
.logo-bars rect {
  transform-box: fill-box; transform-origin: center;
  animation: logo-eq 1.4s ease-in-out infinite;
}
.logo-bars rect:nth-child(1) { animation-delay: 0s; }
.logo-bars rect:nth-child(2) { animation-delay: 0.2s; }
.logo-bars rect:nth-child(3) { animation-delay: 0.4s; }
.logo-bars rect:nth-child(4) { animation-delay: 0.6s; }
@keyframes logo-eq {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-bars rect { animation: none; }
}
.logo-text {
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  letter-spacing: -0.02em; color: var(--text);
}
.logo-text em { font-style: normal; color: var(--accent); }
.logo-text.small { font-size: 16px; }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  color: var(--text-dim); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.15s ease;
  border-radius: 4px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(110, 168, 255, 0.45); }

/* ── hero ───────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 32px 0;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 78% 12%, rgba(20, 83, 239, 0.14), transparent 70%),
    radial-gradient(ellipse 45% 40% at 12% 85%, rgba(3, 50, 176, 0.12), transparent 70%);
}
#waveCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.75; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--text-dim); margin-bottom: 24px;
  padding: 6px 14px; border: 1px solid var(--line-strong); border-radius: 100px;
  background: var(--panel-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 138, 255, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(91, 138, 255, 0); }
}

.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(44px, 5.6vw, 76px); line-height: 1.02;
  letter-spacing: -0.03em; margin-bottom: 24px;
}
/* metallic gradient headline treatment */
.hero-title, .section-head h2, .cta h2, .hero-stats strong {
  background: linear-gradient(180deg, #ffffff 30%, rgba(238, 242, 246, 0.5));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.accent-sweep {
  background: linear-gradient(100deg, var(--accent) 20%, #a8c4ff 50%, var(--accent) 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sweep 4s linear infinite;
}
@keyframes sweep { to { background-position: -200% 0; } }

.hero-sub {
  color: var(--text-dim); font-size: 18px; max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; gap: 48px; list-style: none;
}
.hero-stats li { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong {
  font-family: var(--font-display); font-weight: 600; font-size: 28px;
  letter-spacing: -0.02em;
}
.hero-stats span { font-size: 13px; color: var(--text-faint); }

/* ── hero demo window ───────────────────────── */
.hero-demo { position: relative; }
.demo-window {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, rgba(20, 25, 34, 0.92), rgba(12, 15, 21, 0.96));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-panel);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
              0 24px 48px -16px rgba(0, 0, 0, 0.6),
              0 48px 96px -24px rgba(3, 50, 176, 0.25);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.demo-shadow {
  position: absolute; left: 8%; right: 8%; bottom: -32px; height: 60px;
  background: radial-gradient(ellipse, rgba(20, 83, 239, 0.2), transparent 70%);
  filter: blur(12px);
}
.demo-titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px; border-bottom: 1px solid var(--line);
}
.win-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.demo-title { margin-left: 8px; font-size: 13px; color: var(--text-faint); }
.demo-live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--accent);
}
.demo-body { padding: 24px 24px 20px; }

.demo-speaker { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-dim); border: 1px solid var(--accent-line);
  color: var(--accent); font-weight: 600; font-size: 14px;
  transition: background 0.4s ease;
}
.speaker-meta { display: flex; flex-direction: column; }
.speaker-name { font-weight: 500; font-size: 14px; }
.speaker-lang { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); }

.voicebars { margin-left: auto; display: flex; align-items: center; gap: 3px; height: 22px; }
.voicebars span {
  width: 3px; border-radius: 2px; background: var(--accent); height: 100%;
  animation: voice 0.9s ease-in-out infinite;
  transform-origin: center;
}
.voicebars span:nth-child(1) { animation-delay: 0.00s; }
.voicebars span:nth-child(2) { animation-delay: 0.15s; }
.voicebars span:nth-child(3) { animation-delay: 0.30s; }
.voicebars span:nth-child(4) { animation-delay: 0.45s; }
.voicebars span:nth-child(5) { animation-delay: 0.60s; }
@keyframes voice {
  0%, 100% { transform: scaleY(0.25); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

.demo-sub { display: flex; flex-direction: column; gap: 12px; min-height: 132px; }
.sub-original {
  font-size: 15px; color: var(--text-dim); line-height: 1.5; min-height: 46px;
}
.caret {
  display: inline-block; width: 2px; height: 1em; margin-left: 2px;
  background: var(--text-dim); vertical-align: text-bottom;
  animation: blink 0.9s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.sub-translated {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 17px; font-weight: 500; line-height: 1.5; color: var(--text);
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  border-radius: 12px; padding: 12px 16px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  min-height: 52px;
}
.sub-translated.show { opacity: 1; transform: none; }
.sub-tag {
  flex-shrink: 0;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--accent); border: 1px solid var(--accent-line); border-radius: 4px;
  padding: 2px 6px; margin-top: 3px;
}
.demo-footer {
  display: flex; justify-content: space-between;
  padding: 12px 20px; border-top: 1px solid var(--line);
  color: var(--text-faint);
}

/* ── demo platform badge ────────────────────── */
.demo-badge {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  width: fit-content;
  margin: 28px auto 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}
.demo-badge:hover { opacity: 0.85; }
.demo-badge-text { white-space: nowrap; }

/* ── ticker ─────────────────────────────────── */
.ticker {
  position: relative; z-index: 2; margin-top: 72px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.ticker-track {
  display: flex; align-items: center; gap: 28px; width: max-content;
  padding: 16px 0;
  animation: ticker-scroll 36s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--font-display); font-weight: 500; font-size: 16px;
  color: var(--text-faint); white-space: nowrap;
  transition: color 0.2s ease;
}
.ticker:hover .ticker-track span { color: var(--text-dim); }
.ticker-track i { color: var(--accent); font-style: normal; font-size: 12px; opacity: 0.7; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

/* ── works with ─────────────────────────────── */
.workswith { text-align: center; padding: 72px 32px 24px; }
.workswith-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 20px;
}
.workswith-row {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.platform {
  font-family: var(--font-display); font-weight: 500; font-size: 16px;
  color: var(--text-dim); padding: 10px 20px;
  border: 1px solid var(--line); border-radius: 100px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.platform:hover { color: var(--text); border-color: var(--accent-line); transform: translateY(-2px); }
.platform.soon { color: var(--text-faint); border-style: dashed; }

/* ── sections ───────────────────────────────── */
.section {
  max-width: 1200px; margin: 0 auto; padding: 120px 32px;
}
.section-head { margin-bottom: 64px; }
.kicker {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  color: var(--text-faint); margin-bottom: 16px;
}
.kicker::before {
  content: ""; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.06; letter-spacing: -0.025em;
}
.section-head h2 em { font-style: normal; color: var(--accent); }
.section-sub { color: var(--text-dim); font-size: 17px; margin-top: 16px; max-width: 460px; }

/* ── feature cards ──────────────────────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  will-change: transform;
}
.card:hover {
  border-color: var(--accent-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07),
              0 16px 48px -16px rgba(20, 83, 239, 0.28);
}
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-dim); color: var(--accent);
  margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 21px;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.card p { color: var(--text-dim); font-size: 15px; margin-bottom: 20px; }
.card-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.card-tag.done { color: var(--accent); background: var(--accent-dim); border: 1px solid var(--accent-line); }

/* ── steps ──────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  list-style: none; counter-reset: step;
}
.step {
  position: relative; padding: 32px;
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.step:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.step-num {
  display: inline-block; color: var(--accent); font-size: 13px;
  margin-bottom: 40px;
  padding: 4px 10px; border: 1px solid var(--accent-line); border-radius: 6px;
  background: var(--accent-dim);
}
.step h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.step p { color: var(--text-dim); font-size: 15px; }

/* ── roadmap ────────────────────────────────── */
.roadmap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.road-item {
  padding: 28px;
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: linear-gradient(180deg, var(--panel), transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.road-item:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.road-status {
  display: inline-block; margin-bottom: 16px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.road-status.doing { color: var(--blue); background: var(--blue-dim); border: 1px solid rgba(110, 168, 255, 0.35); }
.road-status.planned { color: var(--text-faint); background: var(--panel-strong); border: 1px solid var(--line-strong); }
.road-item h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.road-item p { color: var(--text-dim); font-size: 14px; }

/* ── CTA ────────────────────────────────────── */
.cta {
  position: relative; text-align: center; padding: 140px 32px;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 60%, rgba(20, 83, 239, 0.13), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 4.6vw, 60px); line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta p { color: var(--text-dim); font-size: 18px; margin-bottom: 36px; }
.cta-note { margin-top: 24px; color: var(--text-faint); }

/* ── footer ─────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 32px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 8px; }
.footer-logo { display: block; border-radius: 5px; }
.footer-copy { color: var(--text-faint); font-size: 13px; }

/* ── responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 120px; }
  .feature-grid, .roadmap { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { padding: 104px 20px 0; min-height: auto; }
  .section { padding: 80px 20px; }
  .feature-grid, .roadmap { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta { padding: 96px 20px; }
  .footer-inner { flex-direction: column; }
  .glow-cursor { display: none; }
}
