/* Orbitarr landing page — static HTML/CSS (no Flutter) */

:root {
  /* Single flat page chrome */
  --page-bg: #101014;

  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.48);

  --border: rgba(255, 255, 255, 0.09);
  --border2: rgba(255, 255, 255, 0.16);

  --card: rgba(255, 255, 255, 0.05);
  --card2: rgba(255, 255, 255, 0.07);

  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
  --shadow2: 0 16px 40px rgba(0, 0, 0, 0.4);
  --glow-accent: 0 0 60px rgba(124, 58, 237, 0.18), 0 0 100px rgba(34, 211, 238, 0.08);

  --radius: 20px;
  --radius2: 28px;

  --max: 1160px;
  --gutter: 24px;

  --accentA: #8b5cf6;
  --accentB: #22d3ee;
  --accentC: #34d399;
  --accentD: #fb923c;

  --grad: linear-gradient(125deg, #a78bfa 0%, #22d3ee 45%, #5eead4 100%);
  --grad-subtle: linear-gradient(135deg, rgba(139, 92, 246, 0.45), rgba(34, 211, 238, 0.35));
  --glass: rgba(255, 255, 255, 0.05);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Outfit", var(--font-sans);

  /* Sticky header (~58px) + small gap so in-page links don’t sit under the bar */
  --header-scroll-offset: 4.75rem;
  --tap-min: 44px;
}

@media (max-width: 420px) {
  :root {
    --header-scroll-offset: 5.25rem;
  }
}

@keyframes hero-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  background-color: var(--page-bg);
  scroll-padding-top: calc(var(--header-scroll-offset) + env(safe-area-inset-top, 0px));
  scroll-padding-bottom: env(safe-area-inset-bottom, 0px);
  -webkit-tap-highlight-color: rgba(34, 211, 238, 0.12);
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
html, body { height: 100%; }
body.page {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-color: rgba(255, 255, 255, 0.35); }
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(34, 211, 238, 0.55);
  outline-offset: 3px;
  border-radius: 14px;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
}

p {
  text-wrap: pretty;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--border);
  transform: translateY(-200%);
  transition: transform 150ms ease;
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--page-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header.is-elevated {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}
a.brand--home {
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  outline-offset: 3px;
}
a.brand--home:hover,
a.brand--home:focus-visible {
  text-decoration: none;
}
a.brand--home:focus-visible {
  outline: 2px solid rgba(34, 211, 238, 0.55);
}
.brand__mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  flex: 0 0 auto;
}
.brand__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: transparent;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.brand--small .brand__mark { width: 24px; height: 24px; }

.nav {
  display: flex;
  align-items: center;
  position: relative;
}
.nav__toggle {
  display: none;
  width: var(--tap-min);
  height: var(--tap-min);
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.nav__hamburger {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  position: relative;
  margin: 0 auto;
}
.nav__hamburger::before,
.nav__hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
}
.nav__hamburger::before { top: -6px; }
.nav__hamburger::after { top: 6px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__links a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__links a:not(.button):hover {
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  user-select: none;
}
.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}
.button:active { transform: translateY(0); }
.button--primary {
  border-color: rgba(167, 139, 250, 0.5);
  background: linear-gradient(125deg, #c4b5fd 0%, #67e8f9 52%, #5eead4 100%);
  background-size: 200% auto;
  color: rgba(15, 18, 32, 0.98);
  box-shadow:
    var(--glow-accent),
    0 12px 32px rgba(124, 58, 237, 0.25);
}
.motion-ok .button--primary:hover {
  animation: hero-shimmer 2.5s ease infinite;
}
.button--secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.button--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Sections */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.section--alt {
  background-color: var(--page-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__kicker {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  width: fit-content;
}
.section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.6vw, 40px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.section__head > p:not(.section__kicker) {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 56ch;
  font-size: 16px;
}
.cta__copy .section__kicker { margin-bottom: 10px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Hero */
.hero {
  padding: clamp(48px, 6vw, 88px) 0 40px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5.2vw, 62px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
  color: var(--text);
}
.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  max-width: 56ch;
  line-height: 1.65;
}
.lead strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 18px; }
.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px 0 6px;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none !important;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.badge:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.06); border-color: var(--border2); }
.badge img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.badge--appstore img {
  height: 36px;
  max-width: 150px;
}
/* Play Store badge has built-in vertical whitespace; offset it so the visual height matches App Store */
.badge:not(.badge--appstore) img {
  height: 54px;
  margin: -9px 0;
}
.badge--ghost {
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.18);
}
.badge__text { color: rgba(255, 255, 255, 0.78); font-weight: 650; font-size: 13px; }
.hero__follow {
  margin: 16px 0 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.hero__follow a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}
.hero__follow a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(139, 92, 246, 0.55);
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 6px;
}
.hero__stats dt {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 18px;
}
.hero__stats dd {
  margin: 4px 0 0;
  color: var(--muted2);
  font-size: 13px;
}
.fineprint {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.hero__visual {
  position: relative;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  max-width: min(400px, 100%);
  margin-left: auto;
  margin-right: 0;
}
.screenshot {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.28);
  height: auto;
  max-height: min(520px, 70vh);
  object-fit: contain;
}

/* Ensure <picture> doesn't introduce inline gaps on mobile */
.hero__visual picture {
  display: block;
}
/* Grid + cards */
.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  position: relative;
  padding: 22px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 8px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0.85;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 12px 36px rgba(0, 0, 0, 0.24);
}
.card h3 { margin: 0 0 8px; font-size: 16px; letter-spacing: -0.02em; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.features__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  width: fit-content;
}
.card--spotlight {
  padding: clamp(24px, 4vw, 34px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}
.card--spotlight::before {
  opacity: 0.75;
  height: 1px;
}
.card--spotlight h3 {
  margin: 0 0 10px;
  font-size: clamp(19px, 2.4vw, 24px);
  letter-spacing: -0.03em;
}
.card--spotlight p {
  max-width: 78ch;
  font-size: 15px;
  line-height: 1.62;
}

.quote {
  padding: 24px 22px;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.quote:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
}
.quote blockquote {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
}
.quote figcaption { margin: 0; color: var(--muted2); font-size: 13px; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}
.checklist li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: radial-gradient(10px 10px at 30% 35%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.14) 55%, transparent 60%),
    linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(34, 211, 238, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.14);
  flex: 0 0 auto;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(8, 12, 18, 0.92);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}
.checklist--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.services__group {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 8px 24px rgba(0, 0, 0, 0.14);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.services__group:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}
.services__group h3 {
  margin: 0 0 12px;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.chip:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.compat {
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 10px 28px rgba(0, 0, 0, 0.16);
}
.compat h3 { margin: 0 0 14px; letter-spacing: -0.02em; font-size: 17px; }

/* CTA Support */
.cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: stretch;
}
.cta__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.cta__copy p { margin: 0 0 14px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.support__instagram {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--muted);
}
.support__instagram a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}
.support__instagram a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(139, 92, 246, 0.55);
}
.social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.social__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: var(--tap-min);
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  text-decoration: none !important;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.social__link svg {
  display: block;
  flex: 0 0 auto;
}
.social__link span {
  line-height: 1;
}
.social__link:hover { background: rgba(255, 255, 255, 0.06); transform: translateY(-1px); }
.social__link[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }
.cta__panel {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}
.cta__panelInner {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 14, 0.75);
  padding: 20px;
  height: 100%;
}
.cta__label { margin: 0 0 10px; color: rgba(255, 255, 255, 0.78); font-weight: 650; }
.mini { margin: 0; padding-left: 18px; color: rgba(255, 255, 255, 0.64); font-size: 13px; }

/* Footer */
.footer {
  padding: 40px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background-color: var(--page-bg);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}
.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__links a { color: var(--muted); font-size: 14px; font-weight: 550; }

/* Responsive */
@media (max-width: 980px) {
  body.page {
    padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: min(460px, 100%);
    padding: 14px;
  }
  .grid--3 { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
  .checklist--two { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 28px; }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer__links {
    flex-direction: column;
    gap: 0;
  }
  .footer__links a {
    display: inline-flex;
    align-items: center;
    min-height: var(--tap-min);
    padding: 10px 0;
    margin: -4px 0;
  }

  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__links {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    max-height: min(70vh, calc(100vh - 5rem));
    max-height: min(70vh, calc(100dvh - 5rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    min-width: 240px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: var(--page-bg);
    box-shadow: var(--shadow2), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(.button) {
    display: flex;
    align-items: center;
    min-height: var(--tap-min);
    padding: 12px 14px;
    border-radius: 14px;
  }
  .nav__links a:not(.button):hover { background: rgba(255, 255, 255, 0.08); }
  .nav__links .button {
    margin-top: 6px;
    justify-content: center;
    min-height: var(--tap-min);
  }
}

@media (max-width: 768px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cta-row .button {
    width: 100%;
    justify-content: center;
    min-height: var(--tap-min);
  }

  .badges .badge {
    min-height: var(--tap-min);
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
  .button:hover { transform: none; }
  .skip-link { transition: none; }
  .motion-ok .button--primary:hover {
    animation: none;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .card:hover,
  .quote:hover,
  .services__group:hover {
    transform: none;
  }
}

