/* ============================================================
   EARWORM MARKETING — styles.css
   Design system matched exactly to app tokens + UI direction
   ============================================================ */

/* --- 1. Brand tokens ---------------------------------------- */
:root {
  --c-bg0: #140A1D;
  --c-bg1: #1D1029;
  --c-bg2: #281639;
  --c-text: #F8F1FC;
  --c-sub: rgba(248,241,252,.64);
  --c-faint: rgba(248,241,252,.40);
  --c-magenta: #FF4D97;
  --c-cyan: #46E0FF;
  --c-lime: #C8FF4D;
  --c-violet: #A878FF;
  --c-card: rgba(255,255,255,.055);
  --c-card-hi: rgba(255,255,255,.09);
  --c-line: rgba(255,255,255,.10);
  --c-line-hi: rgba(255,255,255,.18);
  --c-on-primary: #2A0716;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 96px;
  --space-9: 128px;
}

/* --- 2. Reset + base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--c-bg0);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Global background glow layer — always z-index:0, content above it */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  animation: glow-drift 12s ease-in-out infinite;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,77,151,.20) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at -10% 50%, rgba(168,120,255,.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 110% 90%, rgba(70,224,255,.07) 0%, transparent 60%);
}
@keyframes glow-drift {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: .85; transform: translateY(20px); }
}

/* All semantic content above glow */
header, main, footer { position: relative; z-index: 1; }

/* --- 3. Layout --------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

section { padding-block: clamp(56px, 8vw, 96px); }

/* --- 4. Type scale ------------------------------------------ */
.hero-headline {
  font: 800 clamp(56px, 9vw, 112px) / .92 var(--font-display);
  letter-spacing: -.04em;
  color: var(--c-text);
  margin-bottom: var(--space-4);
}
.hero-headline span { display: block; }

.section-h2 {
  font: 800 clamp(32px, 4.5vw, 56px) / 1.0 var(--font-display);
  letter-spacing: -.03em;
  color: var(--c-text);
  margin-bottom: var(--space-5);
}

.card-title {
  font: 700 clamp(18px, 2vw, 22px) / 1.2 var(--font-display);
  letter-spacing: -.02em;
  color: var(--c-text);
  margin-bottom: 10px;
}
.card-body {
  font: 400 clamp(15px, 1.4vw, 17px) / 1.6 var(--font-body);
  color: var(--c-sub);
}

.label-cap {
  font: 600 12px / 1 var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-magenta);
  margin-bottom: var(--space-3);
}
.micro-copy {
  font: 400 13px / 1 var(--font-body);
  color: var(--c-faint);
  margin-top: 14px;
}

/* --- 5. Nav ------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(20,10,29,.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled {
  background: rgba(20,10,29,.85);
  border-bottom-color: var(--c-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--c-text);
  font: 800 18px / 1 var(--font-display);
  letter-spacing: -.02em;
}
.mini-wave { flex-shrink: 0; display: block; }

/* --- 6. Buttons --------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--c-magenta);
  color: var(--c-on-primary);
  font: 700 15px / 1 var(--font-body);
  letter-spacing: .01em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(255,77,151,.3), 0 4px 20px rgba(255,77,151,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary:hover {
  background: #FF6AAD;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,77,151,.5), 0 6px 32px rgba(255,77,151,.55), 0 12px 48px rgba(255,77,151,.2);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--c-cyan); outline-offset: 3px; }
.btn-sm  { padding: 10px 20px; font-size: 13px; }
.btn-lg  { padding: 18px 40px; font-size: 17px; }

/* --- 7. Hum-orb (SVG + CSS) --------------------------------- */
.hum-orb {
  position: relative;
  width: 220px;
  height: 220px;
}
.orb-svg {
  width: 100%;
  height: 100%;
  animation: orb-pulse 3.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 20px rgba(255,77,151,.5)); }
  50%       { transform: scale(1.06); filter: drop-shadow(0 0 36px rgba(255,77,151,.75)); }
}

/* --- 8. iPhone frame ---------------------------------------- */
.iphone-frame {
  position: relative;
  width: clamp(220px, 40vw, 280px);
  background: #1A1A1F;
  border-radius: 52px;
  padding: 14px;
  padding-top: 16px;
  overflow: visible;
  isolation: isolate;
  z-index: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    inset 0 2px 4px rgba(255,255,255,.06),
    0 0 0 1px rgba(0,0,0,.6),
    0 24px 60px rgba(0,0,0,.6),
    0 0 80px rgba(255,77,151,.2),
    0 0 140px rgba(255,77,151,.1);
}
/* Dynamic island */
.iphone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  translate: -50% 0;
  width: 108px;
  height: 34px;
  background: #0A0A0C;
  border-radius: 20px;
  z-index: 2;
}
.iphone-frame .screen {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background: #140A1D;
  aspect-ratio: 390 / 844;
}
.iphone-frame .screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
/* Side buttons */
.iphone-frame::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 100px;
  width: 3px;
  height: 48px;
  background: #2A2A30;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 60px 0 #2A2A30, 0 120px 0 #2A2A30;
}

/* --- 9. Apple Watch frame ----------------------------------- */
.watch-frame {
  position: relative;
  width: clamp(120px, 22vw, 160px);
  background: #1C1C21;
  border-radius: 44px;
  padding: 10px;
  overflow: visible;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.1),
    inset 0 1px 3px rgba(255,255,255,.05),
    0 0 0 1px rgba(0,0,0,.7),
    0 16px 40px rgba(0,0,0,.55),
    0 0 60px rgba(255,77,151,.22),
    0 0 100px rgba(70,224,255,.1);
}
/* Crown */
.watch-frame::before {
  content: '';
  position: absolute;
  right: -5px;
  top: 42px;
  width: 5px;
  height: 28px;
  background: linear-gradient(to right, #2A2A30, #3A3A42);
  border-radius: 0 4px 4px 0;
}
/* Side button */
.watch-frame::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 82px;
  width: 5px;
  height: 14px;
  background: #2A2A30;
  border-radius: 0 3px 3px 0;
}
.watch-frame .screen {
  border-radius: 36px;
  overflow: hidden;
  background: #140A1D;
  aspect-ratio: 396 / 484;
}
.watch-frame .screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- 10. Hero ---------------------------------------------- */
.hero {
  position: relative;
  background: var(--c-bg0);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  min-height: calc(100vh - 64px);
  min-height: calc(100svh - 64px);
  padding-block: var(--space-7);
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-left .hero-headline { margin-top: 0; }
.hero-subhead {
  font: 400 clamp(16px, 1.8vw, 20px) / 1.65 var(--font-body);
  color: var(--c-sub);
  margin-bottom: var(--space-4);
  max-width: 44ch;
}
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Device cluster — positions iPhone (flow, z1), Watch (absolute, z2), orb (absolute, z0) */
.device-cluster {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* Padding accommodates watch overflow on left/top and glow bleed all around */
  padding: 80px 60px 80px 120px;
}

/* Radial glow blob behind the devices */
.device-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(255,77,151,.28) 0%,
    rgba(168,120,255,.15) 45%,
    transparent 70%
  );
  filter: blur(40px);
  border-radius: 50%;
}

/* Live CSS hum-orb in hero (behind iPhone) */
.hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: .7;
}

/* iPhone inside the cluster is in flow */
.device-cluster .iphone-frame {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Watch floating top-left of iPhone */
.hero-watch {
  position: absolute;
  top: 20px;      /* inside 80px top padding, so visible */
  left: 20px;     /* inside 120px left padding, so visible */
  rotate: -8deg;
  z-index: 2;
  width: clamp(120px, 22vw, 150px);
}

/* Gradient mask — bottom of hero fades into The Wedge */
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--c-bg0));
  pointer-events: none;
}

/* --- 11. The Wedge ------------------------------------------ */
.wedge {
  position: relative;
  background: var(--c-bg0);
  overflow: hidden;
  padding-block: clamp(48px, 8vw, 80px);
}
.wedge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 640px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(255,77,151,.30) 0%, transparent 70%);
  filter: blur(64px);
  pointer-events: none;
}
.wedge-inner {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.wedge-text {
  font: 800 clamp(24px, 4vw, 44px) / 1.2 var(--font-display);
  letter-spacing: -.02em;
  color: var(--c-text);
}
.wedge-brand { color: var(--c-magenta); }

/* --- 12. How it works --------------------------------------- */
.how-section { background: var(--c-bg1); }

.steps-list {
  position: relative;
  list-style: none;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
/* Connector line */
.steps-list::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 72px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255,77,151,.3), transparent);
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-3);
  align-items: start;
}
.step-num {
  font: 800 clamp(40px, 5vw, 72px) / 1 var(--font-display);
  letter-spacing: -.04em;
  color: var(--c-magenta);
  text-shadow: 0 0 24px rgba(255,77,151,.4);
}
.step-title {
  font: 700 clamp(18px, 2vw, 22px) / 1.2 var(--font-display);
  letter-spacing: -.02em;
  color: var(--c-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-desc {
  font: 400 clamp(15px, 1.4vw, 17px) / 1.6 var(--font-body);
  color: var(--c-sub);
}
.step-orb-glyph {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 0;
}

/* --- 13. Features ------------------------------------------- */
.features-section { background: var(--c-bg0); }

.features-grid {
  display: grid;
  /* 4 cards → balanced 2×2 on desktop/tablet (no lone orphan card) */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.feature-card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
/* Glass top sheen */
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0 0 50% 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.05), transparent);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}
.feature-card:hover {
  border-color: var(--c-line-hi);
  box-shadow: 0 0 0 1px rgba(255,77,151,.15), 0 8px 40px rgba(255,77,151,.08);
}
.card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}
/* Per-card icon accent colours */
.card-icon--magenta { background: rgba(255,77,151,.15); }
.card-icon--cyan    { background: rgba(70,224,255,.15); }
.card-icon--violet  { background: rgba(168,120,255,.15); }
.card-icon--lime    { background: rgba(200,255,77,.15); }

/* --- 14. Apple Watch spotlight ------------------------------ */
.watch-section { background: var(--c-bg2); }

.watch-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-7);
  align-items: center;
}
.watch-device-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.watch-spotlight-frame {
  width: clamp(160px, 24vw, 220px);
  animation: watch-breathe 4s ease-in-out infinite;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    inset 0 1px 3px rgba(255,255,255,.06),
    0 0 0 1px rgba(0,0,0,.7),
    0 20px 60px rgba(0,0,0,.6),
    0 0 80px rgba(255,77,151,.32),
    0 0 160px rgba(70,224,255,.18),
    0 0 240px rgba(255,77,151,.10);
}
@keyframes watch-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.02); }
}
.watch-copy { max-width: 480px; }
.watch-copy .section-h2 { margin-bottom: var(--space-3); }
.watch-body {
  font: 400 clamp(15px, 1.4vw, 17px) / 1.6 var(--font-body);
  color: var(--c-sub);
  margin-bottom: var(--space-4);
}

/* --- 15. Screenshot showcase -------------------------------- */
.screenshots-section { background: var(--c-bg0); }

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  align-items: end;
}
.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
/* Smaller frames for the showcase row */
.screenshot-item .iphone-frame {
  width: min(200px, 28vw);
}
/* Middle frame raised (arc effect) */
.screenshot-raised {
  transform: translateY(-32px);
}
.screenshot-cap {
  font: 600 12px / 1 var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-faint);
  text-align: center;
}

/* --- 16. FAQ ------------------------------------------------ */
.faq-section { background: var(--c-bg1); }

.faq-list { max-width: 720px; }

.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font: 600 16px / 1.3 var(--font-body);
  color: var(--c-text);
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--c-magenta);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer {
  padding: 0 0 20px;
  font: 400 15px / 1.65 var(--font-body);
  color: var(--c-sub);
}
.faq-answer a {
  color: var(--c-magenta);
  text-decoration-color: rgba(255,77,151,.45);
  text-underline-offset: 2px;
}
.faq-answer a:hover { text-decoration-color: var(--c-magenta); }

/* --- 17. Final CTA ------------------------------------------ */
.final-cta {
  position: relative;
  background: var(--c-bg0);
  overflow: hidden;
  text-align: center;
}
.final-cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(255,77,151,.22) 0%,
    rgba(168,120,255,.12) 50%,
    transparent 75%
  );
  filter: blur(48px);
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  max-width: 640px;
  margin-inline: auto;
}
.final-cta-inner .hero-headline { margin-bottom: 0; }

/* --- 18. Footer -------------------------------------------- */
.footer {
  background: var(--c-bg0);
  border-top: 1px solid var(--c-line);
  padding-block: var(--space-5);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.footer-wordmark { font-size: 16px; }
.footer-tagline {
  font: 400 14px / 1 var(--font-body);
  color: var(--c-faint);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font: 400 14px / 1 var(--font-body);
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--c-faint);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--c-text); }
.footer-copy { color: var(--c-faint); }

/* --- 19. Scroll-reveal -------------------------------------- */
/* Gated behind .reveal-on (added by JS). With JS off/slow/failed, content stays
   VISIBLE — it's never hidden behind a script that might not run. app.js also has
   a safety timeout that reveals anything still hidden. */
.reveal-on [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-on [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- 20. Privacy page --------------------------------------- */
.privacy-page {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
  padding-block: var(--space-7) var(--space-9);
}
.privacy-page h1 {
  font: 800 clamp(32px, 5vw, 48px) / 1.1 var(--font-display);
  letter-spacing: -.03em;
  color: var(--c-text);
  margin-bottom: var(--space-2);
}
.privacy-page .privacy-date {
  font: 400 14px / 1 var(--font-body);
  color: var(--c-faint);
  margin-bottom: var(--space-6);
}
.privacy-page h2 {
  font: 700 clamp(18px, 2.5vw, 22px) / 1.2 var(--font-display);
  letter-spacing: -.02em;
  color: var(--c-text);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}
.privacy-page p,
.privacy-page li {
  font: 400 16px / 1.7 var(--font-body);
  color: var(--c-sub);
}
.privacy-page ul,
.privacy-page ol {
  margin-left: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}
.privacy-page p { margin-bottom: var(--space-3); }
.privacy-page strong { color: var(--c-text); font-weight: 600; }
.privacy-page a { color: var(--c-magenta); text-underline-offset: 2px; }
.privacy-page a:hover { opacity: .8; }
.privacy-page hr {
  border: none;
  border-top: 1px solid var(--c-line);
  margin-block: var(--space-5);
}
.privacy-note {
  font: 400 13px / 1.6 var(--font-body);
  color: var(--c-faint);
  font-style: italic;
}
.privacy-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 600 14px / 1 var(--font-body);
  color: var(--c-faint);
  text-decoration: none;
  margin-bottom: var(--space-6);
  transition: color .15s;
}
.privacy-nav-back:hover { color: var(--c-text); }

/* --- 21. Responsive ----------------------------------------- */

/* Tablet: 768–1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: var(--space-6);
  }
  .hero-right { justify-content: flex-start; }
  .watch-inner { grid-template-columns: auto 1fr; }
  .screenshots-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile: < 768px */
@media (max-width: 767px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: var(--space-6) var(--space-7);
    text-align: center;
  }
  .hero-left { align-items: center; }
  .hero-left .hero-subhead { max-width: unset; }

  .hero-right {
    margin-top: var(--space-3);
  }
  .device-cluster {
    transform: scale(.85);
    transform-origin: center top;
    padding: 72px 40px 80px 96px;
  }
  /* Watch repositions to bottom-left on mobile */
  .hero-watch {
    top: auto;
    bottom: 16px;
    left: 8px;
  }
  .iphone-frame {
    width: min(240px, 68vw);
  }

  .watch-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-5);
  }
  .watch-copy { max-width: unset; }
  .watch-copy .section-h2 { margin-bottom: var(--space-3); }
  .watch-device-wrap { justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .screenshots-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: var(--space-5);
  }
  .screenshot-item .iphone-frame { width: min(220px, 64vw); }
  .screenshot-raised { transform: translateY(0); }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links { justify-content: center; }
}

/* --- 22. Reduced motion ------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .orb-svg {
    animation: none;
    filter: drop-shadow(0 0 24px rgba(255,77,151,.55));
  }
  .btn-primary { transition: none; }
  .btn-primary:hover { transform: none; }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
