/* Mular: Cluely-inspired layout, teal brand */

:root {
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #14b8a6;
  --primary-soft: rgba(13, 148, 136, 0.12);
  --primary-glow: rgba(13, 148, 136, 0.35);
  --bg: #fafafa;
  --bg-white: #ffffff;
  --border: #e8e8e8;
  --border-light: #f0f0f0;
  --text: #0a0a0a;
  --text-secondary: #525252;
  --text-muted: #737373;
  --warning: #d97706;
  --warning-soft: rgba(217, 119, 6, 0.1);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1080px;
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.narrow { max-width: 640px; }

/* --- Nav --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand img { border-radius: 9px; width: 36px; height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-store {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--text) !important;
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  transition: transform 0.2s, opacity 0.2s !important;
}

.nav-store:hover {
  color: #fff !important;
  transform: scale(1.03);
  opacity: 0.9;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.5;
  animation: pulse-glow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.55; transform: translateX(-50%) scale(1.08); }
}

.hero-inner { position: relative; z-index: 1; }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 auto 20px;
  max-width: 14ch;
}

.shimmer {
  background: linear-gradient(
    110deg,
    var(--primary) 0%,
    var(--primary-light) 25%,
    var(--primary) 50%,
    var(--primary-light) 75%,
    var(--primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 34rem;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}

.hero-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.store-btn:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.store-btn-lg {
  padding: 16px 28px;
  font-size: 1rem;
}

.platform-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: auto;
  max-width: 100%;
}

.platform-row-center {
  margin: 0 auto;
}

.store-btn-platform {
  flex: 0 0 auto;
  justify-content: flex-start;
  text-align: left;
  padding: 8px 12px;
  gap: 8px;
  font-size: 0.8125rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.store-btn-platform svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.store-btn-platform.store-btn-lg {
  padding: 8px 12px;
  font-size: 0.8125rem;
}

.store-btn-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  flex: 0 1 auto;
  min-width: 0;
}

.store-btn-kicker {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.72;
  line-height: 1.2;
}

.store-btn-label {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.platform-pill {
  flex-shrink: 0;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.3;
}

.platform-pill-beta {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.platform-pill-soon {
  background: var(--bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.store-btn-soon {
  background: var(--bg-white);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.store-btn-soon .store-btn-kicker,
.store-btn-soon .store-btn-label {
  color: var(--text-secondary);
}

.store-btn-soon svg {
  opacity: 0.55;
}

.store-btn-soon:hover {
  transform: none;
  box-shadow: none;
}

/* --- Demo stage --- */
.demo-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 0;
}

.demo-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  pointer-events: none;
}

.demo-orbit-a {
  width: 420px;
  height: 420px;
  top: 40px;
  animation: spin 40s linear infinite;
  opacity: 0.4;
}

.demo-orbit-b {
  width: 520px;
  height: 520px;
  top: 0;
  animation: spin 60s linear infinite reverse;
  opacity: 0.25;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.phone {
  background: #1c1c1e;
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 40px 80px -20px rgba(0, 0, 0, 0.35),
    0 0 60px var(--primary-glow);
}

.phone-main { width: 280px; }

.phone-screen {
  background: #fff;
  border-radius: 38px;
  overflow: hidden;
  height: 560px;
  position: relative;
}

.phone-screen::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #1c1c1e;
  border-radius: 20px;
  z-index: 5;
}

.float {
  animation: float 5s ease-in-out infinite;
}

.float-slow {
  animation: float 7s ease-in-out infinite;
}

.float-slow.delay {
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.demo-tab {
  padding: 8px 18px;
  border: none;
  background: transparent;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
}

.demo-tab.active {
  background: var(--bg-white);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.demo-tab:hover:not(.active) {
  color: var(--text-secondary);
}

/* In-phone UI */
.app-ui {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  padding: 48px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: screen-in 0.4s ease;
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.app-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ui-hero {
  background: var(--primary);
  border-radius: 16px;
  padding: 18px;
  color: #fff;
  margin-bottom: 14px;
}

.ui-hero-label {
  font-size: 10px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ui-hero-amount {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 4px 0;
}

.ui-hero-meta { font-size: 10px; opacity: 0.85; }

.ui-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  margin-top: 14px;
  overflow: hidden;
}

.ui-progress-fill {
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: 2px;
  animation: progress-fill 2s ease forwards 0.5s;
}

@keyframes progress-fill {
  to { width: 68%; }
}

.ui-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  flex: 1;
}

.ui-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 11px;
  border-bottom: 1px solid var(--border-light);
}

.ui-row:last-child { border-bottom: none; }
.ui-row span:first-child { color: var(--text-muted); }
.ui-row span:last-child { font-weight: 700; }

.ui-tabbar {
  display: flex;
  justify-content: space-around;
  padding: 12px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  font-size: 9px;
  color: var(--text-muted);
}

.ui-tabbar .on { color: var(--primary); font-weight: 700; }

.ui-savings {
  background: var(--primary);
  border-radius: 14px;
  padding: 16px;
  color: #fff;
  margin-bottom: 12px;
}

.ui-savings-amt { font-size: 24px; font-weight: 800; }
.ui-savings-meta { font-size: 10px; opacity: 0.85; }

.ui-title { font-size: 17px; font-weight: 800; margin: 0 0 4px; }
.ui-sub { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; }

.ui-pills {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pill {
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.pill-want { background: var(--warning-soft); color: var(--warning); }
.pill-verdict { color: var(--warning); font-weight: 800; text-transform: uppercase; font-size: 10px; }

.ui-hours-big {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.04em;
  margin: 8px 0 2px;
}

.ui-hours-sub {
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.ui-insight {
  background: #f8fafa;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  font-size: 10px;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.45;
}

.ui-cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 11px;
  margin-top: 12px;
}

.ui-timer {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
  margin: 20px 0 8px;
}

.ui-timer-sub {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}

.ui-shift-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-top: 12px;
}

/* --- Dividers --- */
.hr-wrap { padding: 0; }
.hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.section-h {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 48px;
  line-height: 1.15;
}

.section-p {
  color: var(--text-secondary);
  margin: -32px 0 32px;
}

/* Flow blocks */
.flow-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.flow-block:last-child { margin-bottom: 0; }

.flow-reverse .flow-copy { order: 2; }
.flow-reverse .flow-visual { order: 1; }

.flow-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.flow-copy h3 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}

.flow-copy p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
  font-size: 0.9375rem;
}

.flow-copy strong { color: var(--text); font-weight: 600; }

/* Mini phones in flow */
.mini-phone {
  width: 200px;
  margin-inline: auto;
  background: #1c1c1e;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.mini-screen {
  background: #fff;
  border-radius: 26px;
  padding: 24px 16px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mini-hero {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.mini-hero span { font-size: 18px; }

.mini-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

.mini-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
}

.mini-bar-fill {
  height: 100%;
  width: 65%;
  background: var(--primary);
  border-radius: 2px;
  animation: progress-fill 2s ease infinite alternate;
}

.mini-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mini-pills .pill-want {
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--warning-soft);
  color: var(--warning);
  font-weight: 700;
}

.mini-pills .pill-wait {
  font-size: 9px;
  font-weight: 800;
  color: var(--warning);
  text-transform: uppercase;
}

.mini-hours {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mini-timer {
  font-size: 28px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.mini-earned {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

/* Stats */
.stats-section { background: var(--bg); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-n {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
}

.stat-l {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-d {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Pricing */
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  background: var(--bg-white);
  transition: transform 0.25s, box-shadow 0.25s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--primary-soft) 0%, var(--bg-white) 100%);
  position: relative;
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: var(--bg-white);
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--primary);
}

.price-amt {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 4px;
}

.price-amt span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item summary {
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.25s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  animation: faq-open 0.3s ease;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA final */
.cta-final {
  text-align: center;
  padding-bottom: 100px;
}

.cta-h {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.cta-p {
  color: var(--text-secondary);
  margin: 0 0 28px;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-cols {
  display: flex;
  gap: 64px;
}

.footer-cols h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.footer-cols a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-cols a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* --- Legal pages (keep compatible) --- */
.page-hero {
  padding: calc(var(--nav-h) + 48px) 0 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.page-hero p { margin: 0; color: var(--text-muted); }

.legal-content {
  padding: 48px 0 80px;
  max-width: 640px;
}

.legal-content h2 { font-size: 1.15rem; margin: 32px 0 12px; }
.legal-content h3 { font-size: 1rem; margin: 24px 0 8px; }
.legal-content p, .legal-content li { color: var(--text-secondary); line-height: 1.7; }
.legal-content ul { padding-left: 1.25rem; }
.legal-content .updated { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 32px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 640px; }
.faq-list .faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  background: var(--bg-white);
}
.faq-list .faq-item h3 { margin: 0 0 8px; font-size: 1rem; }
.faq-list .faq-item p { margin: 0; color: var(--text-secondary); font-size: 0.9375rem; }

.contact-box {
  background: var(--primary-soft);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}

.section-lead {
  color: var(--text-secondary);
  max-width: 36rem;
  margin-bottom: 32px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
  }

  .nav-links.open { display: flex; }
  .nav-links li { padding: 8px 0; }
  .menu-toggle { display: block; }

  .flow-block,
  .flow-reverse .flow-copy,
  .flow-reverse .flow-visual {
    grid-template-columns: 1fr;
    order: unset;
  }

  .flow-visual { order: -1; }

  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
  .footer-cols { flex-wrap: wrap; gap: 32px; }

  .phone-main { width: 250px; }
  .phone-screen { height: 500px; }

  .demo-orbit-a { width: 320px; height: 320px; }
  .demo-orbit-b { width: 380px; height: 380px; }

  .platform-row {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
