/* MacroSpoon landing page — modern SaaS pattern: dark hero + light feature sections. */
:root {
  --bg: #0F0F19;
  --bg-2: #14142B;
  --surface: #1B1B33;
  --border: rgba(255, 255, 255, 0.08);
  --text: #F4F4FB;
  --muted: rgba(244, 244, 251, 0.7);
  --dim: rgba(244, 244, 251, 0.5);

  --gold: #F39C12;
  --gold-2: #F97316;
  --purple: #7C3AED;
  --purple-2: #A855F7;
  --green: #34D399;
  --rose: #F472B6;

  --container: 1200px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #FAFAFB;
  color: #1A1A2E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: 0.85; }
h1, h2, h3, h4 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 25, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--text);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.logo-mark { font-size: 22px; }
.logo-text { letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); opacity: 1; }

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s;
  border: 0;
  font-family: inherit;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-primary {
  background: linear-gradient(135deg, #F39C12 0%, #F97316 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(243, 156, 18, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(243, 156, 18, 0.5); opacity: 1; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
  padding: 60px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 25, 0.55) 0%, rgba(15, 15, 25, 0.95) 100%),
    url("https://images.unsplash.com/photo-1553787434-45e1d245bfbb?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, rgba(124, 58, 237, 0) 70%);
  z-index: 1;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #C4B5FD;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--purple-2);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.8);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
  background: linear-gradient(180deg, #fff 0%, #C4B5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lede {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.55;
}
.lede strong { color: #F39C12; font-weight: 700; }

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-row-center { justify-content: center; }
.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--dim);
  font-size: 13px;
}
.hero-meta strong { color: var(--text); font-weight: 700; }
.hero-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--dim);
  border-radius: 50%;
}

/* Hero phones */
.hero-art {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone {
  width: 280px;
  border-radius: 32px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  background: #000;
}
.phone img { width: 100%; height: auto; }
.phone-back {
  position: absolute;
  top: 50%;
  left: 18%;
  transform: translateY(-58%) rotate(-8deg);
  opacity: 0.65;
}
.phone-front {
  position: relative;
  z-index: 2;
  transform: rotate(3deg);
  box-shadow: 0 40px 80px rgba(124, 58, 237, 0.35), 0 30px 60px rgba(0, 0, 0, 0.55);
}

.floater {
  position: absolute;
  background: rgba(20, 20, 43, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}
.floater-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}
.floater-label { color: var(--dim); font-size: 11px; }
.floater-value { color: var(--text); font-weight: 700; font-size: 14px; }
.floater-protein { top: 10%; left: -5%; }
.floater-scan { bottom: 16%; right: -8%; }

/* Trust strip */
.trust {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 64px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-item {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.trust-item span {
  display: block;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 4px;
}
.trust-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
  background: #FAFAFB;
}
.section-dark {
  background: var(--bg);
  color: var(--text);
}
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.kicker-light { color: #F39C12; }
.kicker-purple { color: var(--purple-2); }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 820px;
  margin-bottom: 16px;
  color: #15152B;
}
.section-title-light { color: var(--text); background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub {
  font-size: 18px;
  color: #4B4B66;
  max-width: 680px;
  margin-bottom: 56px;
}
.section-sub-light { color: var(--muted); }
.testimonial-disclaimer { font-size: 14px; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid #ECECF1;
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 15, 25, 0.08);
  border-color: #DCDCE6;
}
.feature-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #15152B;
}
.feature-card p {
  color: #4B4B66;
  font-size: 15px;
  margin-bottom: 20px;
}
.feature-shot {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid #ECECF1;
  box-shadow: 0 6px 16px rgba(15, 15, 25, 0.06);
  max-height: 360px;
  object-fit: cover;
  object-position: top center;
}
.feature-wide-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-shot-half {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid #ECECF1;
  box-shadow: 0 6px 16px rgba(15, 15, 25, 0.06);
  max-height: 380px;
  object-fit: cover;
  object-position: top center;
}

/* ---------- Steps (How it works) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.step-num {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 60px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--purple-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}
.step h3 {
  color: var(--text);
  font-size: 22px;
  margin-bottom: 10px;
}
.step p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}
.step img {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 360px;
  object-fit: cover;
  object-position: top center;
}

/* ---------- Wellness Highlight ---------- */
.section-wellness {
  background: linear-gradient(180deg, #fff 0%, rgba(124, 58, 237, 0.06) 100%);
}
.wellness-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wellness-bullets {
  list-style: none;
  margin-bottom: 32px;
}
.wellness-bullets li {
  padding: 12px 0;
  font-size: 16px;
  color: #2A2A3F;
  border-bottom: 1px solid #EFEFF5;
  line-height: 1.5;
}
.wellness-bullets li:last-child { border-bottom: 0; }
.wellness-bullets strong { color: var(--purple); }
.wellness-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 580px;
}
.wellness-bg-shot {
  position: absolute;
  width: 80%;
  border-radius: var(--r-lg);
  filter: blur(8px) brightness(0.5);
  opacity: 0.4;
  transform: rotate(-4deg);
}
.wellness-phone-front {
  width: 280px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.35);
}

/* ---------- Showcase strip ---------- */
.shots-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.shots-strip img {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .3s ease;
  object-fit: cover;
  aspect-ratio: 390 / 844;
}
.shots-strip img:hover {
  transform: translateY(-6px) scale(1.03);
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
}
.price-card {
  background: #fff;
  border: 1px solid #ECECF1;
  border-radius: var(--r-lg);
  padding: 36px;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 15, 25, 0.08);
}
.price-card-premium {
  background: linear-gradient(180deg, #fff 0%, rgba(124, 58, 237, 0.05) 100%);
  border-color: rgba(124, 58, 237, 0.25);
  position: relative;
  overflow: hidden;
}
.price-card-premium::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.price-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(243, 156, 18, 0.12);
  color: var(--gold);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.price-eyebrow-premium {
  background: rgba(124, 58, 237, 0.14);
  color: var(--purple);
}
.price-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: 44px;
  color: #15152B;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.price-num small {
  font-size: 16px;
  font-weight: 600;
  color: #6F6F87;
  margin-left: 8px;
}
.price-tag {
  color: #4B4B66;
  font-size: 15px;
  margin-bottom: 24px;
}
.price-list {
  list-style: none;
  margin-bottom: 28px;
}
.price-list li {
  padding: 9px 0;
  color: #2A2A3F;
  font-size: 14.5px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 32px;
}
.quote {
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}
.quote-by {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.quote-by strong { color: var(--text); }
.quote-by span { color: var(--dim); }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--purple-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.faq-container { max-width: 800px; }
.faq-item {
  background: #fff;
  border: 1px solid #ECECF1;
  border-radius: var(--r-md);
  padding: 0;
  margin-bottom: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: rgba(243, 156, 18, 0.45);
  box-shadow: 0 6px 18px rgba(15, 15, 25, 0.04);
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  color: #15152B;
  list-style: none;
  position: relative;
  user-select: none;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 24px 22px;
  color: #4B4B66;
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.cta-final {
  position: relative;
  padding: 100px 0;
  background: var(--bg);
  color: var(--text);
  text-align: center;
  overflow: hidden;
}
.cta-final .hero-glow {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.25) 0%, transparent 70%);
}
.cta-final-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.cta-final h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 0%, #C4B5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-final p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
}
.store-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  color: var(--text);
  transition: background .2s;
}
.store-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}
.store-badge small {
  display: block;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.02em;
}
.store-badge strong {
  font-size: 16px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* ---------- Footer ---------- */
.footer {
  background: #08080F;
  color: var(--text);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.logo-footer { margin-bottom: 12px; }
.footer p {
  color: var(--dim);
  font-size: 13px;
  max-width: 280px;
  line-height: 1.6;
}
.footer h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #nav-cta { display: none; }
  .nav-inner.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero { padding: 40px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 24px; }
  .hero-art { height: 480px; }
  .phone { width: 240px; }
  .floater-protein { left: 0; }
  .floater-scan { right: 0; }
  .trust { grid-template-columns: repeat(2, 1fr); padding-top: 40px; margin-top: 40px; }

  .section { padding: 64px 0; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .feature-wide-row { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; gap: 20px; }
  .step-num { font-size: 48px; }

  .wellness-grid { grid-template-columns: 1fr; gap: 48px; }
  .wellness-phone { height: 480px; }

  .shots-strip { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav-inner { padding: 12px 18px; gap: 12px; }
  .lede { font-size: 17px; }
  .btn { padding: 11px 18px; font-size: 14px; }
  .btn-lg { padding: 14px 26px; font-size: 15px; }
  .hero-art { height: 420px; }
  .phone { width: 200px; }
  .phone-back { display: none; }
  .floater { padding: 8px 12px; }
  .floater-value { font-size: 12px; }
  .floater-protein { top: 0; left: -8px; }
  .floater-scan { bottom: 8px; right: -8px; }
  .trust { grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 32px; margin-top: 32px; }
  .trust-item span { font-size: 18px; }
  .section { padding: 56px 0; }
  .feature-card, .step, .quote-card, .price-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-final { padding: 64px 0; }
  .shots-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Reduce-motion users */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
