/* ───────────────────────────────────────────────────────────
 * Geek Tools To-Do — landing page styles
 *
 * Visual goals:
 *  • Match the app's dark palette so sign-up → app feels seamless.
 *  • Mobile-first responsive; everything reflows at 760px.
 *  • Static + tiny: no framework, no icon font, all SVG inline,
 *    one external CSS file, minimal JS.
 * ─────────────────────────────────────────────────────────── */

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

:root {
  /* Surfaces (darker = further back) */
  --bg:           #0a0d14;
  --surface-1:   #0f1117;
  --surface-2:   #14161f;
  --surface-3:   #1a1d2a;
  --border:      #1e2130;
  --border-2:    #2d3148;

  /* Text */
  --text:        #e2e8f0;
  --text-dim:    #94a3b8;
  --text-dimmer: #64748b;

  /* Accents — same family as the app's ambient orbs */
  --blue:    #3b82f6;
  --purple:  #a78bfa;
  --orange:  #fb923c;
  --green:   #10b981;
  --cyan:    #22d3ee;
  --pink:    #f472b6;
  --amber:   #f59e0b;
  --red:     #f87171;

  /* Layout */
  --max-w:        1180px;
  --max-w-narrow: 760px;
  --radius:       14px;
  --radius-sm:    8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: var(--max-w-narrow); }

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(59,130,246,0.32);
}
.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(59,130,246,0.42);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { background: var(--surface-2); border-color: #3d4360; }

.btn-lg { padding: 0.85rem 1.4rem; font-size: 1rem; border-radius: 12px; }
.btn-xl { padding: 1rem 1.8rem; font-size: 1.08rem; border-radius: 14px; }
.btn-block { width: 100%; }

/* ─────────── Top nav ─────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,13,20,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 700; letter-spacing: 0.2px;
  color: var(--text);
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-name { font-size: 0.98rem; }

.nav-links {
  display: flex; align-items: center; gap: 1.6rem;
  margin-left: 1rem;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  margin-left: auto;
  display: flex; align-items: center; gap: 0.55rem;
}

/* Language switcher */
.lang-wrap { position: relative; }
.lang-btn {
  background: var(--surface-2); border: 1px solid var(--border-2);
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.lang-btn:hover { background: var(--surface-3); color: var(--text); }
.lang-btn svg { width: 14px; height: 14px; }
.lang-menu {
  display: none;
  position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 160px;
  background: var(--surface-1);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  padding: 4px;
  z-index: 60;
}
.lang-menu.show { display: block; }
.lang-menu button {
  display: flex; align-items: center; gap: 0.6rem;
  width: 100%; padding: 0.55rem 0.7rem;
  background: transparent; border: none; color: var(--text-dim);
  cursor: pointer; border-radius: 6px;
  font-size: 0.86rem; text-align: left;
  transition: background 0.12s, color 0.12s;
}
.lang-menu button:hover { background: var(--surface-2); color: var(--text); }
.lang-menu button.active { color: var(--text); background: var(--surface-2); }
.lang-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 18px;
  background: var(--surface-3); color: var(--text-dim);
  border-radius: 4px;
  font-size: 0.66rem; font-weight: 700;
  flex-shrink: 0;
}

.nav-burger {
  display: none;
  width: 38px; height: 38px;
  background: transparent; border: 1px solid var(--border-2);
  color: var(--text); border-radius: 8px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 16px; height: 2px;
  background: currentColor;
  border-radius: 1px;
}

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.orb-a { width: 460px; height: 460px; background: var(--blue);   opacity: 0.22; top: -160px; left: -120px; }
.orb-b { width: 540px; height: 540px; background: var(--purple); opacity: 0.20; bottom: -220px; right: -200px; }
.orb-c { width: 600px; height: 600px; background: var(--blue);   opacity: 0.18; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero-eyebrow {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.25);
  color: #93c5fd;
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 1.2rem;
}
.hero-headline {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.hero-headline span { display: block; }
.grad-text {
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 60%, var(--pink) 110%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.13rem;
  color: var(--text-dim);
  margin-bottom: 1.8rem;
  max-width: 540px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-bottom: 2rem;
}
.hero-trust {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 1rem 1.3rem;
  font-size: 0.88rem; color: var(--text-dim);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-dot {
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 6px rgba(16,185,129,0.55);
}

/* ── App preview (faux browser frame with a mini app inside) ── */
.hero-visual {
  position: relative;
  z-index: 1;
  perspective: 1400px;
}
.app-frame {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
  transform: rotate(0.5deg);
}
.app-frame-bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 0.85rem;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
}
.app-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.app-dot-r { background: #ef4444; }
.app-dot-y { background: #f59e0b; }
.app-dot-g { background: #10b981; }
.app-frame-url {
  margin-left: 0.6rem;
  flex: 1;
  font-size: 0.74rem; color: var(--text-dimmer);
  background: var(--surface-2);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  text-align: center;
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
}
.app-frame-body { padding: 1.1rem; }

.app-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.9rem;
  font-size: 0.78rem; font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.6px;
}
.app-streak {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--orange);
  font-size: 0.72rem; font-weight: 700;
  text-transform: none; letter-spacing: 0;
  background: rgba(251,146,60,0.10);
  border: 1px solid rgba(251,146,60,0.25);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.app-streak svg { width: 12px; height: 12px; }

.app-task {
  display: flex; align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.app-task:last-of-type { margin-bottom: 0; }

.app-check {
  width: 20px; height: 20px;
  border: 1.5px solid #475569;
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
}
.app-check.checked {
  background: var(--green);
  border-color: var(--green);
}
.app-check.checked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.2l3 3 6-7' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/70% no-repeat;
}
.app-check.sm { width: 14px; height: 14px; border-radius: 3px; border-width: 1.2px; }
.app-check.sm.checked::after { background-size: 76%; }
.app-checks { display: flex; gap: 4px; flex-shrink: 0; }

.app-title {
  flex: 1;
  color: var(--text);
  font-weight: 500;
  min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.app-title.strike { color: var(--text-dim); text-decoration: line-through; }
.app-times {
  color: var(--text-dimmer);
  font-weight: 600;
  font-size: 0.82rem;
}

.app-pill {
  flex-shrink: 0;
  font-size: 0.66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  background: rgba(96,165,250,0.10);
  color: #93c5fd;
  border: 1px solid rgba(96,165,250,0.20);
}
.app-pill.warn {
  background: rgba(251,191,36,0.10);
  color: #fbbf24;
  border-color: rgba(251,191,36,0.22);
}

.app-motivation {
  margin-top: 0.9rem;
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  background: rgba(167,139,250,0.08);
  border: 1px solid rgba(167,139,250,0.18);
  border-radius: 10px;
  font-size: 0.85rem;
  color: #c4b5fd;
}
.app-emoji { font-size: 1.05rem; }

/* ─────────── Sections ─────────── */
.section { padding: 5rem 0; position: relative; }
.section-tint { background: var(--surface-1); }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: rgba(167,139,250,0.10);
  border: 1px solid rgba(167,139,250,0.22);
  color: #c4b5fd;
  border-radius: 999px;
  font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 0.9rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 0.7rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
}

/* ─────────── Features grid ─────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.feature {
  padding: 1.6rem 1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.18s ease, border-color 0.18s, background 0.18s;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
  background: var(--surface-3);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 22px; height: 22px; }
.icon-orange { background: rgba(251,146,60,0.12);  color: var(--orange); }
.icon-blue   { background: rgba(59,130,246,0.12);  color: #93c5fd; }
.icon-purple { background: rgba(167,139,250,0.12); color: #c4b5fd; }
.icon-green  { background: rgba(16,185,129,0.12);  color: #6ee7b7; }
.icon-cyan   { background: rgba(34,211,238,0.12);  color: #67e8f9; }
.icon-pink   { background: rgba(244,114,182,0.12); color: #f9a8d4; }

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.feature-body {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─────────── How it works ─────────── */
.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: how;
}
.how-step {
  position: relative;
  padding: 2rem 1.6rem 1.6rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.how-num {
  position: absolute;
  top: -22px; left: 1.6rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px rgba(59,130,246,0.4);
}
.how-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0.4rem;
}
.how-step-body {
  font-size: 0.92rem;
  color: var(--text-dim);
}

/* ─────────── Pricing ─────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}
.price-card {
  padding: 2rem 1.8rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  gap: 1.4rem;
}
.price-card.price-free {
  border-color: rgba(59,130,246,0.35);
  background: linear-gradient(180deg, rgba(59,130,246,0.06), var(--surface-2) 60%);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.18), 0 20px 50px rgba(59,130,246,0.10);
}
.price-card-head { text-align: center; }
.price-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: rgba(16,185,129,0.12);
  color: #6ee7b7;
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 999px;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 0.8rem;
}
.price-tag.tag-soon {
  background: rgba(167,139,250,0.12);
  color: #c4b5fd;
  border-color: rgba(167,139,250,0.28);
}
.price-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-tba {
  background: none;
  -webkit-text-fill-color: var(--text-dim);
  color: var(--text-dim);
  font-size: 1.5rem;
}
.price-per {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 600;
  -webkit-text-fill-color: var(--text-dim);
}
.price-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.price-features li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.price-features li::before {
  content: '';
  position: absolute; left: 0; top: 0.32rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.2l3 3 6-7' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/60% no-repeat;
}
.price-features-soon li::before {
  background: var(--purple) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.2l3 3 6-7' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/60% no-repeat;
  opacity: 0.85;
}

/* ─────────── FAQ ─────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  transition: border-color 0.18s;
}
.faq-item[open] { border-color: var(--border-2); }
.faq-item summary {
  list-style: none;
  padding: 1.1rem 1.3rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s, color 0.18s;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--text); }
.faq-item p {
  padding: 0 1.3rem 1.2rem;
  color: var(--text-dim);
  font-size: 0.94rem;
}

/* ─────────── Final CTA ─────────── */
.cta-final {
  position: relative;
  text-align: center;
  padding: 5.5rem 1.5rem;
  overflow: hidden;
}
.cta-final > .container { position: relative; z-index: 1; }
.cta-headline {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0.9rem;
}
.cta-sub {
  font-size: 1.08rem;
  color: var(--text-dim);
  margin-bottom: 1.8rem;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}
.cta-fine {
  margin-top: 0.9rem;
  color: var(--text-dimmer);
  font-size: 0.85rem;
}

/* ─────────── Footer ─────────── */
.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  background: var(--surface-1);
}
.footer-inner {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--text-dim);
  font-size: 0.92rem;
}
.footer-links {
  display: flex; gap: 1.4rem;
  margin-left: auto;
}
.footer-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  flex-basis: 100%;
  margin-top: 0.6rem;
  color: var(--text-dimmer);
  font-size: 0.78rem;
}

/* ─────────── Responsive ─────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav.menu-open + .nav-mobile { display: block; }
  .nav-mobile {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0; z-index: 49;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
  }
  .nav-mobile a {
    display: block;
    padding: 0.7rem 0;
    color: var(--text);
    font-size: 1rem; font-weight: 600;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile a:last-child { border-bottom: 0; }

  .feature-grid    { grid-template-columns: repeat(2, 1fr); }
  .how-steps       { grid-template-columns: 1fr; gap: 1.2rem; }
  .pricing-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .lang-btn span { display: none; }

  .hero { padding: 2.5rem 0 3.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { max-width: none; }
  .hero-headline span { display: inline; }
  .hero-headline { font-size: clamp(2rem, 7vw, 2.6rem); }

  .section { padding: 3.5rem 0; }
  .section-head { margin-bottom: 2.2rem; }

  .feature-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { margin-left: 0; }
}

/* Reduced motion: kill the orb drift + tilt. */
@media (prefers-reduced-motion: reduce) {
  .app-frame { transform: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
