/* PurePantry — Landing Page Styles
   Brand palette inspired by the app's design system:
   sage, citrus, lavender, cream */

:root {
  --color-bg: #faf8f3;
  --color-bg-2: #f3f0e7;
  --color-ink: #1c1d1a;
  --color-ink-soft: #4a4d46;
  --color-muted: #7b7f76;
  --color-line: rgba(28, 29, 26, 0.08);
  --color-card: #ffffff;
  --color-sage: #7fa37a;
  --color-sage-deep: #3f6a4a;
  --color-citrus: #f6c453;
  --color-lavender: #a89bd9;
  --color-coral: #e98a7a;
  --color-cream: #f3ead7;
  --shadow-sm: 0 1px 2px rgba(28, 29, 26, 0.04), 0 4px 12px rgba(28, 29, 26, 0.04);
  --shadow-md: 0 8px 24px rgba(28, 29, 26, 0.08), 0 2px 6px rgba(28, 29, 26, 0.04);
  --shadow-lg: 0 30px 60px -20px rgba(63, 106, 74, 0.25), 0 12px 30px -10px rgba(28, 29, 26, 0.1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --max: 1200px;
  --gradient-aurora: radial-gradient(60% 60% at 20% 10%, rgba(168, 155, 217, 0.35), transparent 60%),
                     radial-gradient(50% 50% at 80% 20%, rgba(127, 163, 122, 0.30), transparent 60%),
                     radial-gradient(45% 45% at 60% 80%, rgba(246, 196, 83, 0.28), transparent 60%),
                     radial-gradient(55% 55% at 15% 80%, rgba(233, 138, 122, 0.22), transparent 60%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(250, 248, 243, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--color-line);
  background: rgba(250, 248, 243, 0.85);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--color-sage-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-ink);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-line);
}
.btn-ghost:hover { background: #fff; box-shadow: var(--shadow-sm); }
.btn-lg { padding: 14px 26px; font-size: 15px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.aurora {
  position: absolute;
  inset: -10% -10% -10% -10%;
  background: var(--gradient-aurora);
  filter: blur(40px);
  z-index: 0;
  animation: aurora-shift 22s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes aurora-shift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.05); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.02); }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(63, 106, 74, 0.08);
  color: var(--color-sage-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-sage);
  box-shadow: 0 0 0 4px rgba(127, 163, 122, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(127, 163, 122, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(127, 163, 122, 0); }
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 18px 0 16px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--color-sage-deep), var(--color-lavender) 50%, var(--color-citrus));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.hero p.lede {
  font-size: 18px;
  color: var(--color-ink-soft);
  max-width: 540px;
  margin: 0 0 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--color-ink);
  color: #fff;
  border-radius: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.app-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.app-badge svg { width: 22px; height: 22px; }
.app-badge .small { display: block; font-size: 10px; font-weight: 500; opacity: 0.75; line-height: 1; }
.app-badge .big   { display: block; font-size: 16px; font-weight: 700; line-height: 1.2; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  color: var(--color-muted);
  font-size: 13px;
}
.stars { color: var(--color-citrus); letter-spacing: 2px; }

/* phone */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
.phone {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 722 / 1470;
  border-radius: 48px;
  overflow: hidden;
  box-shadow:
    0 0 0 10px #1c1d1a,
    0 30px 80px -20px rgba(63, 106, 74, 0.45),
    0 20px 50px -10px rgba(28, 29, 26, 0.25);
  background: #1c1d1a;
  transform: rotate(-3deg);
  animation: float 6s ease-in-out infinite;
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
@keyframes float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-12px); }
}

.floating-chip {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  animation: float-chip 5s ease-in-out infinite;
}
.floating-chip .icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.chip-1 { top: 12%; left: -10px; animation-delay: 0s; }
.chip-1 .icon { background: rgba(127, 163, 122, 0.18); }
.chip-2 { bottom: 22%; right: -20px; animation-delay: 1.2s; }
.chip-2 .icon { background: rgba(246, 196, 83, 0.22); }
.chip-3 { bottom: 6%; left: 8%; animation-delay: 2s; }
.chip-3 .icon { background: rgba(168, 155, 217, 0.25); }

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

/* ===== Trust / Marquee ===== */
.trust {
  padding: 32px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-bg-2);
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-row span { color: var(--color-ink); }

/* ===== Sections shared ===== */
section { padding: 100px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 12px 0 12px;
  font-weight: 700;
}
.section-head p { color: var(--color-ink-soft); font-size: 18px; margin: 0; }

/* ===== Feelings interactive ===== */
.feelings {
  background: #fff;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.feeling-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.feeling {
  background: var(--color-bg-2);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
}
.feeling:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: var(--shadow-md);
  border-color: var(--color-line);
}
.feeling .emoji { font-size: 32px; line-height: 1; display: block; margin-bottom: 10px; transition: transform 0.3s ease; }
.feeling:hover .emoji { transform: scale(1.15) rotate(-6deg); }
.feeling .label { font-size: 13px; font-weight: 600; color: var(--color-ink); }
.feeling.active { background: var(--color-sage-deep); color: #fff; }
.feeling.active .label { color: #fff; }

.feeling-result {
  margin-top: 32px;
  background: var(--color-bg-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  transition: background 0.4s ease;
}
.feeling-result .big-emoji { font-size: 56px; }
.feeling-result h3 { margin: 0 0 6px; font-size: 22px; }
.feeling-result p { margin: 0; color: var(--color-ink-soft); }
.food-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.food-chip {
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--color-line);
  animation: pop-in 0.4s ease both;
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(6px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent, transparent);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature .ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(127, 163, 122, 0.15);
  color: var(--color-sage-deep);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.feature.lavender .ico { background: rgba(168, 155, 217, 0.18); color: #6c5fbf; }
.feature.citrus .ico  { background: rgba(246, 196, 83, 0.22); color: #b78415; }
.feature.coral .ico   { background: rgba(233, 138, 122, 0.2);  color: #b95846; }
.feature h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--color-ink-soft); font-size: 15px; }

/* ===== Screenshots showcase ===== */
.showcase {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
}
.shot-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-end;
  margin-top: 40px;
  flex-wrap: wrap;
}
.shot {
  width: 240px;
  aspect-ratio: 722 / 1470;
  border-radius: 36px;
  overflow: hidden;
  background: #1c1d1a;
  box-shadow: 0 0 0 8px #1c1d1a, var(--shadow-lg);
  transition: transform 0.4s ease;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot:nth-child(1) { transform: translateY(20px) rotate(-4deg); }
.shot:nth-child(2) { transform: translateY(-10px) rotate(0deg); z-index: 2; }
.shot:nth-child(3) { transform: translateY(20px) rotate(4deg); }
.shot-row:hover .shot { transform: translateY(0) rotate(0); }
.shot:hover { transform: translateY(-12px) rotate(0) scale(1.02) !important; }

/* ===== Protein ring demo ===== */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.metric {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.metric .num {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--color-sage-deep), var(--color-lavender));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric .lbl { color: var(--color-muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== Pricing ===== */
.pricing { background: #fff; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.price-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(63, 106, 74, 0.3);
}
.price-card.featured {
  background: linear-gradient(160deg, #2a3d2f 0%, #1c2a20 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.price-card.featured .price-meta,
.price-card.featured ul li { color: rgba(255,255,255,0.78); }
.price-tag {
  position: absolute;
  top: -10px; right: 24px;
  background: var(--color-citrus);
  color: #2a1f00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-card h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; }
.price-card .price { font-size: 44px; letter-spacing: -0.02em; font-weight: 700; line-height: 1; }
.price-card .price small { font-size: 16px; font-weight: 500; color: var(--color-muted); }
.price-card.featured .price small { color: rgba(255,255,255,0.6); }
.price-card .price-meta { margin: 6px 0 22px; font-size: 13px; color: var(--color-muted); }
.price-card ul { padding: 0; margin: 0 0 24px; list-style: none; }
.price-card ul li {
  padding: 8px 0;
  border-top: 1px solid var(--color-line);
  font-size: 14px;
  color: var(--color-ink-soft);
  display: flex; gap: 10px; align-items: center;
}
.price-card.featured ul li { border-top-color: rgba(255,255,255,0.1); }
.price-card ul li::before {
  content: '';
  width: 16px; height: 16px;
  background: rgba(127, 163, 122, 0.2);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%233f6a4a' d='M6.5 11L3 7.5l1-1L6.5 9 12 3.5l1 1z'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.price-card.featured ul li::before {
  background-color: rgba(255,255,255,0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%23f6c453' d='M6.5 11L3 7.5l1-1L6.5 9 12 3.5l1 1z'/></svg>");
}
.price-card .btn { width: 100%; justify-content: center; }
.price-card.featured .btn { background: var(--color-citrus); color: #2a1f00; }

/* ===== Mission ===== */
.mission {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 80% 20%, rgba(168, 155, 217, 0.18), transparent 70%),
              radial-gradient(50% 50% at 10% 80%, rgba(127, 163, 122, 0.20), transparent 70%);
  pointer-events: none;
}
.mission .container { position: relative; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mission blockquote {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.signature {
  margin-top: 24px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--color-ink-soft);
}
.signature .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage), var(--color-lavender));
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
}

/* ===== CTA ===== */
.cta {
  background: var(--color-ink);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-xl);
  padding: 80px 32px;
  margin: 80px auto;
  max-width: calc(var(--max) - 48px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(168, 155, 217, 0.4), transparent 70%),
              radial-gradient(50% 60% at 50% 100%, rgba(127, 163, 122, 0.5), transparent 70%);
  opacity: 0.7;
  animation: aurora-shift 18s ease-in-out infinite alternate;
}
.cta .container { position: relative; }
.cta .eyebrow { background: rgba(255,255,255,0.1); color: #f6c453; }
.cta h2 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 16px 0 14px;
}
.cta p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 560px; margin: 0 auto 28px; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--color-line);
  padding: 48px 0 36px;
  background: var(--color-bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin: 0 0 14px;
}
.footer ul { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer a { color: var(--color-ink-soft); font-size: 14px; transition: color 0.2s ease; }
.footer a:hover { color: var(--color-sage-deep); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--color-line);
  padding-top: 24px;
  color: var(--color-muted); font-size: 13px;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-stagger.visible > * { opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.38s; }

/* ===== Protein ring ===== */
.ring-wrap { position: relative; display: inline-block; }
.ring-wrap svg { transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(127, 163, 122, 0.15); stroke-width: 12; }
.ring-bar {
  fill: none;
  stroke: url(#ringGradient);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ring-wrap.animate .ring-bar { stroke-dashoffset: 110; }
.ring-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center;
}
.ring-label .grams { font-size: 38px; font-weight: 700; letter-spacing: -0.02em; }
.ring-label .of { color: var(--color-muted); font-size: 13px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid, .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid, .price-grid { grid-template-columns: 1fr; }
  .feeling-grid { grid-template-columns: repeat(3, 1fr); }
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.btn) { display: none; }
  section { padding: 72px 0; }
  .cta { padding: 56px 24px; margin: 56px 16px; border-radius: var(--radius-lg); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }
}

/* ===== Reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
