/* ============================================================
   OrbitsWell — marketing homepage
   Deep-space theme. Dark-mode-first, light theme via [data-theme].
   ============================================================ */

:root {
  --bg: #05060f;
  --bg-2: #0a0c1d;
  --panel: rgba(20, 24, 48, 0.66);
  --panel-solid: #111530;
  --panel-border: rgba(140, 150, 220, 0.18);
  --text: #eef1ff;
  --text-dim: #aab0d6;
  --text-faint: #767ca6;
  --violet: #8b5cf6;
  --violet-2: #6d28d9;
  --cyan: #22d3ee;
  --amber: #fbbf24;
  --grad-accent: linear-gradient(115deg, #8b5cf6 0%, #22d3ee 100%);
  --grad-star: radial-gradient(circle at 50% 40%, #fde68a, #fbbf24 45%, transparent 70%);
  --ok: #34d399;
  --err: #fb7185;
  --focus: #7dd3fc;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 0 1px rgba(139,92,246,0.25), 0 18px 50px -20px rgba(34,211,238,0.35);
  --maxw: 1140px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

html[data-theme="light"] {
  --bg: #eef0fb;
  --bg-2: #e2e6f7;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-solid: #ffffff;
  --panel-border: rgba(70, 80, 140, 0.18);
  --text: #131630;
  --text-dim: #44496b;
  --text-faint: #6a7094;
  --shadow-glow: 0 0 0 1px rgba(139,92,246,0.2), 0 18px 50px -24px rgba(99,102,241,0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Accessibility helpers ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Starfield background layers ---------- */
.sky { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.sky::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(900px 600px at 80% -5%, rgba(139,92,246,0.30), transparent 60%),
    radial-gradient(700px 500px at 5% 15%, rgba(34,211,238,0.20), transparent 55%),
    radial-gradient(800px 700px at 60% 105%, rgba(251,191,36,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
html[data-theme="light"] .sky::before { opacity: 0.5; }
.stars { position: absolute; inset: -50%; width: 200%; height: 200%; }
.stars span {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: #fff; opacity: 0.7; box-shadow: 0 0 6px 1px rgba(255,255,255,0.5);
  animation: twinkle 4s ease-in-out infinite;
}
html[data-theme="light"] .stars span { background: #5b61a0; box-shadow: none; opacity: 0.35; }
@keyframes twinkle { 0%,100% { opacity: 0.25; } 50% { opacity: 0.9; } }
.parallax-layer { transition: transform 0.2s ease-out; will-change: transform; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { position: relative; }
.section-pad { padding: clamp(56px, 9vw, 120px) 0; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem;
  font-weight: 600; color: var(--cyan); margin: 0 0 14px;
}
.eyebrow.amber { color: var(--amber); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 0.4em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
.lede { font-size: clamp(1.02rem, 2vw, 1.22rem); color: var(--text-dim); }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 48px; }
.section-head.center { text-align: center; }

a { color: var(--cyan); }

/* ---------- Focus visibility (accessibility) ---------- */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 6px;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--panel-solid); color: var(--text); padding: 10px 16px;
  border-radius: 8px; transition: top 0.2s; text-decoration: none;
  border: 1px solid var(--panel-border);
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 600; font-size: 0.96rem;
  padding: 12px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--panel-border); background: var(--panel);
  color: var(--text); text-decoration: none; position: relative;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s, filter 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -12px rgba(139,92,246,0.6); }
.btn:active { transform: translateY(0); filter: brightness(0.95); }
.btn.primary {
  background: var(--grad-accent); color: #0a0a16; border-color: transparent;
}
.btn.primary:hover { box-shadow: 0 12px 36px -10px rgba(34,211,238,0.7); filter: brightness(1.05); }
.btn.ghost { background: transparent; }
.btn.small { padding: 8px 16px; font-size: 0.85rem; }
.btn[disabled], .btn[aria-disabled="true"] {
  opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; pointer-events: none;
}
.btn.is-loading { color: transparent !important; pointer-events: none; }
.btn.is-loading::after {
  content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
.btn.primary.is-loading::after { border-color: rgba(0,0,0,0.3); border-top-color: #0a0a16; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--panel-border); }
.nav { display: flex; align-items: center; gap: 18px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text); text-decoration: none; }
.brand-mark {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-star);
  box-shadow: 0 0 14px 2px rgba(251,191,36,0.6);
  position: relative; flex: none;
}
.brand-mark::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.7); transform: rotate(-18deg);
}
.nav-links { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; padding: 8px 12px; border-radius: 8px; font-size: 0.94rem; font-weight: 500; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--text); background: var(--panel); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 12px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--panel); border: 1px solid var(--panel-border); cursor: pointer; color: var(--text);
  transition: transform 0.15s, box-shadow 0.2s;
}
.icon-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px -10px rgba(139,92,246,0.6); }
.theme-toggle .sun { display: none; }
html[data-theme="light"] .theme-toggle .sun { display: block; }
html[data-theme="light"] .theme-toggle .moon { display: none; }

.hamburger { display: none; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(40px, 7vw, 80px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 .grad { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 22px; }
.trust-line { display: flex; align-items: center; gap: 10px; color: var(--text-faint); font-size: 0.9rem; }
.trust-line .dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); flex: none; }

/* App mockup */
.phone {
  width: min(290px, 78vw); margin: 0 auto; aspect-ratio: 9 / 19;
  border-radius: 38px; padding: 12px;
  background: linear-gradient(160deg, #1b1f3d, #0b0d1f);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow-glow), 0 40px 80px -30px rgba(0,0,0,0.8);
  position: relative;
}
.phone::before { content:""; position:absolute; top:14px; left:50%; transform:translateX(-50%); width:90px; height:18px; background:#05060f; border-radius:0 0 14px 14px; z-index:2; }
.phone-screen {
  width: 100%; height: 100%; border-radius: 28px; overflow: hidden;
  background: radial-gradient(circle at 50% 30%, #2a2f5e, #0a0c1d 70%);
  display: flex; flex-direction: column; padding: 40px 18px 20px; color: #fff; position: relative;
}
.phone-screen.shot { padding: 0; background: #0a0c1d; }
.phone-shot { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-screen .orbit-vis { position:absolute; inset:0; display:grid; place-items:center; opacity:0.9; }
.orbit-vis .ring { position:absolute; border:1px solid rgba(139,92,246,0.35); border-radius:50%; }
.orbit-vis .ring.r1 { width:120px; height:120px; animation: rot 14s linear infinite; }
.orbit-vis .ring.r2 { width:190px; height:190px; animation: rot 22s linear infinite reverse; }
.orbit-vis .ring.r3 { width:260px; height:260px; animation: rot 34s linear infinite; }
.orbit-vis .ring::before { content:""; position:absolute; top:-4px; left:50%; width:9px; height:9px; border-radius:50%; background: var(--cyan); box-shadow:0 0 12px var(--cyan); }
.orbit-vis .ring.r2::before { background: var(--amber); box-shadow:0 0 12px var(--amber); }
.orbit-vis .ring.r3::before { background:#f472b6; box-shadow:0 0 12px #f472b6; }
.orbit-vis .core { width:42px; height:42px; border-radius:50%; background: var(--grad-star); box-shadow:0 0 24px 6px rgba(251,191,36,0.6); }
@keyframes rot { to { transform: rotate(360deg); } }
.phone-hud { position: relative; z-index: 2; margin-top: auto; }
.phone-hud .pill { display:inline-block; font-size:0.66rem; background:rgba(255,255,255,0.1); padding:4px 10px; border-radius:999px; margin-bottom:8px; }
.phone-hud h4 { margin:0 0 4px; font-family:var(--font-display); font-size:1rem; }
.phone-hud p { margin:0; font-size:0.72rem; color:#c9cdf0; }
.streak-bar { display:flex; gap:5px; margin-top:10px; }
.streak-bar i { flex:1; height:6px; border-radius:3px; background:rgba(255,255,255,0.15); }
.streak-bar i.on { background: var(--grad-accent); }

/* ---------- Social proof ---------- */
.proof { border-top: 1px solid var(--panel-border); border-bottom: 1px solid var(--panel-border); }
.proof-inner { display:flex; align-items:center; justify-content:center; gap: clamp(18px,5vw,56px); flex-wrap: wrap; padding: 26px 0; }
.proof p { width:100%; text-align:center; margin:0 0 6px; color:var(--text-faint); font-size:0.78rem; letter-spacing:0.12em; text-transform:uppercase; }
.logo {
  font-family: var(--font-display); font-weight:700; font-size:1.15rem; color: var(--text-dim);
  opacity:0.75; display:inline-flex; align-items:center; gap:7px; filter: grayscale(0.3);
  transition: opacity 0.2s, filter 0.2s;
}
.logo:hover { opacity:1; filter:none; color: var(--text); }
.logo svg { width:18px; height:18px; }

/* ---------- Features ---------- */
.feature-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius);
  padding: 26px; backdrop-filter: blur(8px); position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); border-color: rgba(139,92,246,0.45); }
.card .ic {
  width:46px; height:46px; border-radius:13px; display:grid; place-items:center; margin-bottom:16px;
  background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(34,211,238,0.2));
  border:1px solid var(--panel-border); color: var(--cyan);
}
.card p { color: var(--text-dim); margin: 0; font-size:0.96rem; }

/* ---------- App ecosystem ---------- */
.app-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.app-card {
  display:flex; flex-direction:column; background: var(--panel); border:1px solid var(--panel-border);
  border-radius: var(--radius); padding: 26px; backdrop-filter: blur(8px);
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.25s; text-decoration:none; color: inherit;
}
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); border-color: rgba(139,92,246,0.45); }
.app-card h3 { color: var(--text); }
.app-card p { color: var(--text-dim); margin: 0 0 18px; font-size:0.96rem; }
.app-card .app-meta { margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.app-card .price { font-family: var(--font-display); font-weight:700; color: var(--text); }
.app-card .go { color: var(--cyan); font-weight:600; font-size:0.92rem; }
.app-grid-note { grid-column: 1 / -1; text-align:center; font-size:0.88rem; color: var(--text-dim); margin-top: 4px; }

/* ---------- Focused launch strip ---------- */
.launch-strip {
  padding: clamp(34px, 6vw, 72px) 0;
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
}
.launch-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 191, 36, 0.16), transparent 36%),
    radial-gradient(circle at 88% 0%, rgba(34, 211, 238, 0.14), transparent 40%),
    var(--panel);
  backdrop-filter: blur(8px);
}
.launch-strip h2 {
  margin-bottom: 0.35rem;
}
.launch-strip p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--text-dim);
}
.launch-strip-note {
  font-size: 0.92rem;
  color: var(--text-faint) !important;
}

/* ---------- How it works ---------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; counter-reset: step; }
.step { text-align:center; padding: 10px; position: relative; }
.step .num {
  width:56px; height:56px; margin:0 auto 16px; border-radius:50%; display:grid; place-items:center;
  font-family:var(--font-display); font-weight:700; font-size:1.4rem;
  background: var(--panel); border:1px solid var(--panel-border); color: var(--text);
  box-shadow: var(--shadow-glow);
}
.step:not(:last-child)::after {
  content:""; position:absolute; top:28px; left:60%; width:80%; height:2px;
  background: linear-gradient(90deg, var(--violet), transparent);
}
.step p { color: var(--text-dim); font-size:0.95rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--panel-border); }
.faq-item h3 { margin: 0; }
.faq-q {
  width:100%; text-align:left; background:none; border:none; cursor:pointer; color: var(--text);
  font-family: var(--font-display); font-size:1.08rem; font-weight:600;
  padding: 20px 4px; display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq-q .chev { flex:none; transition: transform 0.25s; color: var(--cyan); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { overflow:hidden; max-height:0; transition: max-height 0.3s ease; }
.faq-a > div { padding: 0 4px 20px; color: var(--text-dim); }

/* ---------- Final CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, rgba(139,92,246,0.18), rgba(34,211,238,0.14));
  border:1px solid var(--panel-border); border-radius: 28px; padding: clamp(36px,6vw,64px);
  text-align:center; max-width: 880px; margin: 0 auto; position: relative; overflow: hidden;
}
.cta-band::before { content:""; position:absolute; inset:0; background: var(--grad-star); opacity:0.06; }
.cta-actions { justify-content: center; position: relative; z-index: 1; }

/* ---------- Forms ---------- */
.signup-form { display:flex; gap:10px; max-width: 460px; margin: 24px auto 0; flex-wrap:wrap; justify-content:center; }
.field { flex:1; min-width: 220px; text-align:left; position: relative; }
.field input {
  width:100%; font: inherit; padding: 13px 16px; border-radius: var(--radius-sm);
  background: var(--panel-solid); border:1px solid var(--panel-border); color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder { color: var(--text-faint); }
.field input:focus { outline:none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(139,92,246,0.3); }
.field.valid input { border-color: var(--ok); box-shadow: 0 0 0 3px rgba(52,211,153,0.22); }
.field.error input { border-color: var(--err); box-shadow: 0 0 0 3px rgba(251,113,133,0.25); }
.field-msg { font-size:0.8rem; margin: 6px 2px 0; min-height: 1em; display:block; }
.field.error .field-msg { color: var(--err); }
.field.valid .field-msg { color: var(--ok); }
.form-note { font-size:0.78rem; color: var(--text-faint); margin-top: 14px; }

/* error banner */
.banner {
  display:none; align-items:center; gap:10px; justify-content:center;
  background: rgba(251,113,133,0.14); border:1px solid rgba(251,113,133,0.4); color: var(--err);
  padding:12px 16px; border-radius: var(--radius-sm); margin: 0 auto 18px; max-width:460px; font-size:0.9rem;
}
.banner.show { display:flex; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--panel-border); padding: 56px 0 30px; margin-top: 40px; }
.footer-grid { display:grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 32px; }
.footer h4 { font-family: var(--font-body); font-size:0.78rem; text-transform:uppercase; letter-spacing:0.12em; color: var(--text-faint); margin:0 0 14px; }
.footer ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer a { color: var(--text-dim); text-decoration:none; font-size:0.92rem; }
.footer a:hover { color: var(--text); }
.footer .blurb { color: var(--text-dim); font-size:0.92rem; max-width: 260px; }
.footer .brand + .blurb { margin-top: 14px; }
.news-form { display:flex; gap:8px; margin-top:12px; }
.news-form input { flex:1; min-width:0; padding:10px 12px; border-radius: 8px; background: var(--panel-solid); border:1px solid var(--panel-border); color: var(--text); font: inherit; }
.news-form input:focus { outline:none; border-color: var(--violet); box-shadow:0 0 0 3px rgba(139,92,246,0.3); }
.socials { display:flex; gap:10px; margin-top:18px; }
.socials a { width:38px; height:38px; }
.legal-row { display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; margin-top: 44px; padding-top: 22px; border-top:1px solid var(--panel-border); color: var(--text-faint); font-size:0.85rem; }
.legal-row nav { display:flex; gap:18px; flex-wrap:wrap; }
.legal-row a { color: var(--text-faint); text-decoration:none; }
.legal-row a:hover { color: var(--text); }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; right: 18px; bottom: 18px; z-index: 300; display:flex; flex-direction:column; gap:10px; }
.toast {
  display:flex; align-items:center; gap:12px; background: var(--panel-solid);
  border:1px solid var(--panel-border); border-left: 4px solid var(--ok);
  padding: 14px 18px; border-radius: 12px; box-shadow: 0 18px 50px -20px rgba(0,0,0,0.7);
  max-width: 340px; transform: translateX(120%); opacity:0; transition: transform 0.35s, opacity 0.35s;
}
.toast.show { transform: translateX(0); opacity:1; }
.toast.err { border-left-color: var(--err); }
.toast .t-ic { color: var(--ok); flex:none; } .toast.err .t-ic { color: var(--err); }
.toast b { display:block; font-size:0.92rem; } .toast p { margin:0; font-size:0.82rem; color: var(--text-dim); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity:0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity:1; transform:none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .feature-grid, .steps, .app-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display:none; }
}
@media (max-width: 720px) {
  .nav-links, .nav-actions .desktop-cta { display:none; }
  .hamburger { display:inline-flex; margin-left:auto; }
  .nav-actions { margin-left: 8px; }
  .mobile-menu {
    position: fixed; inset: 0 0 0 auto; width: min(300px, 84vw); z-index: 150;
    background: var(--panel-solid); border-left:1px solid var(--panel-border);
    transform: translateX(100%); transition: transform 0.3s ease;
    display:flex; flex-direction:column; padding: 78px 22px 22px; gap: 6px;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { color: var(--text); text-decoration:none; padding: 14px 8px; border-radius:10px; font-weight:600; border-bottom:1px solid var(--panel-border); }
  .mobile-menu .btn { margin-top: 14px; }
  .menu-backdrop { position: fixed; inset:0; background: rgba(0,0,0,0.55); z-index:140; opacity:0; pointer-events:none; transition: opacity 0.3s; }
  .menu-backdrop.open { opacity:1; pointer-events:auto; }
}
@media (max-width: 560px) {
  .feature-grid, .steps, .footer-grid, .app-grid { grid-template-columns: 1fr; }
  .launch-strip-inner { grid-template-columns: 1fr; }
  .legal-row { justify-content:center; text-align:center; }
}
@media (min-width: 721px) { .mobile-menu, .menu-backdrop { display:none; } }
