/* ===== Design tokens (matches the Coinly Android app palette) ===== */
:root {
  --primary: #0EA5A0;
  --accent: #22C55E;
  --brand-dark: #083B35;
  --grad-start: #1FC8B0;
  --grad-end: #083B35;
  --expense-red: #E15B64;
  --income-green: #22C55E;
  --amber: #F2A93B;

  --bg: #F5F6FA;
  --surface: #FFFFFF;
  --surface-variant: #ECEEF5;
  --text-primary: #1B1F2A;
  --text-secondary: #6D6E8A;
  --divider: #E5E7EE;
  --outline: #D6D8E4;

  --primary-container: #D3F5F1;
  --on-primary-container: #0B4A44;

  /* Fixed dark surface for the floating "Backed up to Drive" badge next to the
     real device screenshot - stays dark regardless of the site's own theme. */
  --device-bg: #0E1512;
  --device-surface: #1A2420;
  --device-text: #F2F5F3;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px -12px rgba(8, 59, 53, 0.18);
  --shadow-card: 0 2px 10px rgba(27, 31, 42, 0.06);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0E1613;
    --surface: #14201C;
    --surface-variant: #1B2925;
    --text-primary: #F2F5F4;
    --text-secondary: #9FB0AB;
    --divider: #22322D;
    --outline: #2A3B35;
    --primary-container: #103A35;
    --on-primary-container: #B7EFE7;
    --shadow-card: 0 2px 14px rgba(0, 0, 0, 0.35);
  }
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* The nav is sticky and 80px tall, so a bare anchor jump parked every section heading
     underneath it - "For early testers" landed 44px down behind an 80px bar. This offsets
     every in-page jump by the nav's height plus breathing room. */
  scroll-padding-top: 100px;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.text-gradient {
  background: linear-gradient(90deg, var(--grad-start), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--on-primary-container);
  background: var(--primary-container);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* Attention-grabbing hero badge - fixed dark styling regardless of site theme,
   with a pulsing ring to draw the eye to the waitlist CTA. */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #7CF2C4;
  background: rgba(9, 18, 16, 0.92);
  border: 1.5px solid rgba(74, 222, 178, 0.4);
  padding: 11px 22px;
  border-radius: 999px;
  margin-bottom: 22px;
  animation: badgePulseRing 2.4s cubic-bezier(0.4, 0, 0.5, 1) infinite;
}
.coming-soon-badge .badge-emoji { font-size: 1.05rem; line-height: 1; }

@keyframes badgePulseRing {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 178, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(74, 222, 178, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 178, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-badge { animation: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark {
  background: var(--text-primary);
  color: var(--bg);
  box-shadow: var(--shadow-soft);
}
@media (prefers-color-scheme: dark) {
  .btn-dark { background: var(--primary); color: #052420; }
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--outline);
  color: var(--text-primary);
}
.btn-outline:hover { border-color: var(--primary); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-nav { display: none; }

/* ===== Nav ===== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--divider);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-name { font-weight: 800; font-size: 1.2rem; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--text-secondary); transition: color 0.2s; }
.nav-links a:hover { color: var(--text-primary); }
.btn-nav { display: inline-flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 72px 24px 100px;
  position: relative;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 16px; }
.hero-microcopy { font-size: 0.85rem; color: var(--text-secondary); }

.store-badge-fake {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px dashed var(--outline);
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.store-badge-fake strong { display: block; font-size: 0.95rem; color: var(--text-primary); }
.fake-label { font-size: 0.72rem; }

/* ---- Phone mockup: real device photos, not recreated UI ---- */
.hero-visual { position: relative; display: flex; justify-content: center; }
.glow {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(31,200,176,0.35), transparent 70%);
  filter: blur(10px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
/* Just the real screenshot, status bar already cropped out of the image
   itself, with a small corner radius. No bezel, no fake chrome. */
.phone-frame { position: relative; width: 280px; }
.phone-screen { border-radius: 8px; overflow: hidden; display: block; border: 1px solid rgba(255,255,255,0.14); }
.shot { width: 100%; }
.shot img { width: 100%; height: auto; display: block; }

/* ===== Trust / privacy ===== */
.trust { padding: 60px 24px 90px; }
.trust-head { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.trust-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 12px; letter-spacing: -0.01em; }
.trust-head p { color: var(--text-secondary); font-size: 1.05rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 28px;
}
.trust-icon { font-size: 1.8rem; margin-bottom: 14px; }
.trust-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.trust-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.55; margin: 0; }
.trust-card code { background: var(--surface-variant); padding: 1px 6px; border-radius: 4px; font-size: 0.85em; }

/* ===== Features ===== */
.features { padding: 40px 0 100px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); letter-spacing: -0.01em; margin: 0 0 12px; }
.section-sub { color: var(--text-secondary); font-size: 1.05rem; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--divider);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-num {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}
.feature-text h3 { font-size: 1.7rem; margin: 8px 0 14px; letter-spacing: -0.01em; }
.feature-text p { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.6; margin: 0 0 18px; }
.feature-points li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text-primary);
}
.feature-points li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 800;
}

.feature-visual { display: flex; justify-content: center; }
.mini-phone { width: 230px; }
.mini-screen { border-radius: 8px; overflow: hidden; display: block; border: 1px solid rgba(255,255,255,0.14); }

.feature-visual.dual { flex-wrap: wrap; gap: 26px; }
.mini-phone-group { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.mini-caption { font-size: 0.8rem; font-weight: 700; color: var(--text-secondary); }
.feature-visual.dual .mini-phone { width: 215px; }
@media (max-width: 520px) {
  .feature-visual.dual { gap: 14px; }
  .feature-visual.dual .mini-phone { width: 150px; }
}

/* ===== Screenshot gallery ===== */
.screens-gallery { padding: 20px 24px 100px; }
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.gallery-grid .mini-phone-group { gap: 10px; }
.gallery-grid .mini-phone { width: 128px; }
.gallery-grid .mini-caption { font-size: 0.72rem; text-align: center; }
@media (max-width: 480px) {
  .gallery-grid { gap: 22px 14px; }
  .gallery-grid .mini-phone { width: 104px; }
}

/* ===== Beta APK ===== */
.beta { padding: 20px 24px 100px; }
.beta-card {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.beta-info h3 { font-size: 1.2rem; margin: 0 0 12px; }
.beta-info p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin: 0 0 12px; }
.beta-info .beta-note { font-size: 0.85rem; margin: 0; }
.beta-download {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--text-primary);
  color: var(--bg);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.18s ease;
}
.beta-download:hover { transform: translateY(-2px); }
.beta-download span { display: flex; flex-direction: column; line-height: 1.3; }
.beta-download small { font-weight: 600; font-size: 0.72rem; opacity: 0.7; }
@media (prefers-color-scheme: dark) {
  .beta-download { background: var(--primary); color: #052420; }
}
@media (max-width: 720px) {
  .beta-card { flex-direction: column; text-align: center; padding: 32px 24px; }
  .beta-download { width: 100%; justify-content: center; }
}

/* ===== Pricing ===== */
.pricing { padding: 40px 24px 100px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-soft);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--text-primary);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
}
.save-badge { background: var(--accent); color: #06280F; }
.price-card h3 { font-size: 1.2rem; margin: 0 0 14px; display: flex; align-items: center; gap: 6px; }
.price-amount { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.price-amount span { font-size: 0.95rem; font-weight: 600; color: var(--text-secondary); }
.price-desc { color: var(--text-secondary); font-size: 0.9rem; margin: 0 0 22px; }
.price-features { margin-bottom: 28px; flex: 1; }
.price-features li { padding-left: 24px; position: relative; margin-bottom: 12px; font-size: 0.9rem; }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }

/* ===== FAQ ===== */
.faq { padding: 40px 24px 110px; max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--divider); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
}
.faq-icon { font-size: 1.3rem; color: var(--primary); transition: transform 0.25s ease; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 24px 22px; }
.faq-a p { margin: 0; color: var(--text-secondary); line-height: 1.6; font-size: 0.95rem; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  padding: 90px 24px;
  color: #fff;
}
.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 12px; letter-spacing: -0.01em; }
.cta-inner p { opacity: 0.85; margin: 0 0 32px; font-size: 1.05rem; }
.waitlist-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.waitlist-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}
.cta-status { margin-top: 16px; font-size: 0.9rem; opacity: 0.9; min-height: 1.2em; }
.cta-status.ok { color: var(--income-green); opacity: 1; font-weight: 600; }
.cta-status.err { color: var(--expense-red); opacity: 1; font-weight: 600; }

/* ===== Footer ===== */
.footer { padding: 60px 24px 30px; border-top: 1px solid var(--divider); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 10px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-secondary); margin: 0 0 14px; }
.footer-col a { display: block; margin-bottom: 10px; font-size: 0.92rem; color: var(--text-primary); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--divider); padding-top: 24px; font-size: 0.85rem; color: var(--text-secondary); }

/* ===== Reveal animation ===== */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .trust-grid { grid-template-columns: 1fr; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; text-align: center; }
  .feature-row .feature-text, .feature-row.reverse .feature-text { order: 1; }
  .feature-row .feature-visual, .feature-row.reverse .feature-visual { order: 2; }
  .feature-points { text-align: left; display: inline-block; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .phone-frame { width: 230px; }
  .glow { width: 300px; height: 300px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--surface);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--divider);
  }
  .waitlist-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================================
   Motion layer
   Everything below is presentation only - the page is fully usable and fully
   legible with all of it disabled, which is exactly what the reduced-motion
   block at the end does.
   ============================================================================ */

/* Mobile nav is shorter than the desktop one, so the anchor offset follows it. */
@media (max-width: 860px) {
  html { scroll-padding-top: 84px; }
}

/* ---- Reading progress ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 200;
  pointer-events: none;
}

/* ---- Nav: lifts off the page once you've scrolled past the hero ---- */
.nav-wrap { transition: box-shadow 0.3s ease, background-color 0.3s ease; }
.nav-wrap.scrolled {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

/* ---- Nav links: underline follows both hover and the section you're reading ---- */
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text-primary); }

/* ---- Reveals: a little softer, and staggered where things sit side by side ---- */
.reveal {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.09s; }
.trust-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.18s; }

/* Gallery tiles cascade instead of all thirteen appearing at once. */
.js .gallery-grid .mini-phone-group {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-grid.in-view .mini-phone-group { opacity: 1; transform: none; }
.gallery-grid.in-view .mini-phone-group:nth-child(1)  { transition-delay: 0.00s; }
.gallery-grid.in-view .mini-phone-group:nth-child(2)  { transition-delay: 0.04s; }
.gallery-grid.in-view .mini-phone-group:nth-child(3)  { transition-delay: 0.08s; }
.gallery-grid.in-view .mini-phone-group:nth-child(4)  { transition-delay: 0.12s; }
.gallery-grid.in-view .mini-phone-group:nth-child(5)  { transition-delay: 0.16s; }
.gallery-grid.in-view .mini-phone-group:nth-child(6)  { transition-delay: 0.20s; }
.gallery-grid.in-view .mini-phone-group:nth-child(7)  { transition-delay: 0.24s; }
.gallery-grid.in-view .mini-phone-group:nth-child(8)  { transition-delay: 0.28s; }
.gallery-grid.in-view .mini-phone-group:nth-child(9)  { transition-delay: 0.32s; }
.gallery-grid.in-view .mini-phone-group:nth-child(10) { transition-delay: 0.36s; }
.gallery-grid.in-view .mini-phone-group:nth-child(11) { transition-delay: 0.40s; }
.gallery-grid.in-view .mini-phone-group:nth-child(12) { transition-delay: 0.44s; }
.gallery-grid.in-view .mini-phone-group:nth-child(13) { transition-delay: 0.48s; }
.gallery-grid.in-view .mini-phone-group:nth-child(14) { transition-delay: 0.52s; }

/* Feature rows converge: copy from its own side, phones from theirs. */
.js .feature-row .feature-text,
.js .feature-row .feature-visual {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.08s;
}
.feature-row .feature-text { transform: translateX(-22px); }
.feature-row .feature-visual { transform: translateX(22px); }
.feature-row.reverse .feature-text { transform: translateX(22px); }
.feature-row.reverse .feature-visual { transform: translateX(-22px); }
.feature-row.in-view .feature-text,
.feature-row.in-view .feature-visual { opacity: 1; transform: none; }

/* ---- Hover: everything clickable or card-like answers back ---- */
.trust-card, .price-card, .faq-item {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease, box-shadow 0.28s ease;
}
.trust-card:hover, .price-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--primary) 45%, transparent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}
.mini-phone { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.mini-phone-group:hover .mini-phone { transform: translateY(-5px); }
.btn { transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* The hero phone breathes, very slightly, so the fold isn't dead still. */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-visual .phone-frame { animation: heroFloat 7s ease-in-out infinite; }

/* ---- One switch turns all of it off ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .gallery-grid .mini-phone-group,
  .feature-row .feature-text,
  .feature-row .feature-visual {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-visual .phone-frame { animation: none; }
  .scroll-progress { display: none; }
  .trust-card:hover, .price-card:hover, .mini-phone-group:hover .mini-phone, .btn:hover {
    transform: none;
  }
}
