/* ------------------------------------------------------------------
   LimePanda — site stylesheet
   Brand colors pulled directly from the app screenshots.
------------------------------------------------------------------ */

:root {
  /* Palette */
  --lime: #B8E831;
  --lime-soft: #D9F26F;
  --lime-glow: #E9FA9B;
  --green-deep: #2D4A2B;
  --green-darker: #1F3320;
  --cream: #F7F4EA;
  --cream-soft: #FBF9F1;
  --ink: #0F1410;
  --ink-soft: #2A2F2B;
  --muted: #6B6F6A;
  --line: #E5E0D2;
  --white: #FFFFFF;
  --warning: #D97706;
  --danger: #B91C1C;

  /* Typography */
  --font-display: 'Bricolage Grotesque', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing scale (4pt) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(15, 20, 16, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 20, 16, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 20, 16, 0.12);
  --shadow-lime: 0 12px 32px rgba(184, 232, 49, 0.35);
}

/* Reset + base ----------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

/* Subtle textured background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle at 15% 10%, rgba(184, 232, 49, 0.18), transparent 45%),
                    radial-gradient(circle at 85% 0%, rgba(217, 242, 111, 0.22), transparent 40%);
}

#app { position: relative; z-index: 1; }

/* Typography ------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; letter-spacing: -0.005em; }

p { margin: 0 0 var(--s-4); }
small { font-size: 0.85rem; color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--lime-glow);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-pill);
}

.lime-underline {
  background: linear-gradient(180deg, transparent 65%, var(--lime) 65%);
  padding: 0 4px;
}

/* Layout ----------------------------------------------------------- */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.container-narrow { max-width: 760px; }

section {
  padding: var(--s-16) 0;
}

@media (min-width: 768px) {
  section { padding: var(--s-20) 0; }
}

/* Header ----------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 234, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(229, 224, 210, 0.6);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  background: var(--lime); /* shows through if image is transparent */
}
.brand__mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--green-deep); }
.nav a.is-active { color: var(--green-deep); }

@media (max-width: 640px) {
  .nav { gap: var(--s-4); }
  .nav a { font-size: 0.9rem; }
}

@media (max-width: 420px) {
  .brand { font-size: 1.05rem; gap: var(--s-2); }
  .brand__mark { width: 32px; height: 32px; border-radius: 9px; }
  .nav { gap: var(--s-3); }
  .nav a { font-size: 0.85rem; }
}

/* Buttons ---------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--r-pill);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-deep);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--green-darker);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-lime);
}
.btn--lime:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

/* Store buttons — unified pill style matching site .btn family ---- */

.btn--store {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 22px 10px 18px;
  gap: var(--s-3);
  min-height: 56px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--ink);
}
.btn--store:hover {
  background: var(--green-darker);
  border-color: var(--green-darker);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--store:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.btn--store__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}
.btn--store__icon svg { width: 100%; height: 100%; }

.btn--store__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  text-align: left;
}
.btn--store__top {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.82;
  margin-bottom: 2px;
}
.btn--store__bottom {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.btn--store--lg {
  min-height: 64px;
  padding: 12px 26px 12px 22px;
}
.btn--store--lg .btn--store__icon { width: 30px; height: 30px; }
.btn--store--lg .btn--store__bottom { font-size: 1.2rem; }

.btn--store.btn--store--lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
  box-shadow: var(--shadow-lime);
}
.btn--store.btn--store--lime:hover {
  background: var(--lime-soft);
  border-color: var(--lime-soft);
}

.btn--store.btn--store--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 244, 234, 0.4);
  box-shadow: none;
}
.btn--store.btn--store--outline:hover {
  background: rgba(247, 244, 234, 0.08);
  border-color: var(--cream);
}

.hero__ctas { align-items: center; }
.hero__ctas .btn--ghost {
  min-height: 56px;
  padding: 0 22px;
}

@media (max-width: 480px) {
  .btn--store { min-height: 52px; padding: 8px 18px 8px 14px; gap: var(--s-2); }
  .btn--store__icon { width: 22px; height: 22px; }
  .btn--store__top { font-size: 0.62rem; }
  .btn--store__bottom { font-size: 0.95rem; }
  .btn--store--lg { min-height: 58px; padding: 10px 22px 10px 18px; }
  .btn--store--lg .btn--store__bottom { font-size: 1.05rem; }
}

/* Hero ------------------------------------------------------------- */

.hero {
  padding-top: var(--s-12);
  padding-bottom: var(--s-16);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 75% 20%, rgba(184, 232, 49, 0.28), transparent 60%),
    radial-gradient(ellipse 70% 60% at 5% 90%, rgba(217, 242, 111, 0.32), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(45, 74, 43, 0.06), transparent 60%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 20, 16, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 75%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, var(--lime), transparent 65%);
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

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

@media (min-width: 768px) {
  .hero { padding-top: var(--s-16); padding-bottom: var(--s-24); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--s-16);
  }
}

.hero h1 {
  margin-bottom: var(--s-5);
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--green-deep) 0%, #4a7a47 60%, var(--green-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: var(--s-8);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

.hero__stats {
  display: flex;
  gap: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}

.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green-deep);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Phone frame with real screenshot ------------------------------- */

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.phone-frame {
  position: relative;
  width: 280px;
  padding: 8px;
  background: var(--ink);
  border-radius: 44px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: rotate(-3deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}
.phone-frame::before {
  content: '';
  position: absolute;
  inset: -50px;
  background: radial-gradient(circle, rgba(184, 232, 49, 0.55), rgba(184, 232, 49, 0.15) 45%, transparent 70%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}
.phone-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
  z-index: 2;
}
.phone-frame:hover { transform: rotate(0deg) translateY(-4px); }

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 36px;
  background: var(--white); /* prevents flash before image loads */
}

@media (min-width: 1100px) {
  .phone-frame { width: 320px; }
}

/* Floating decorative elements */
.hero__star {
  position: absolute;
  font-size: 2rem;
  opacity: 0.85;
  filter: drop-shadow(0 4px 8px rgba(45, 74, 43, 0.18));
}
.hero__star--1 { top: 8%; right: 12%; color: var(--lime); animation: float 6s ease-in-out infinite; }
.hero__star--2 { top: 62%; left: 2%; color: var(--green-deep); animation: float 4s ease-in-out infinite reverse; }
.hero__star--3 { top: 22%; left: 78%; color: var(--green-deep); animation: float 5s ease-in-out infinite; }
.hero__star--4 { bottom: 8%; right: 22%; color: var(--lime); animation: float 7s ease-in-out infinite reverse; }

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

/* Floating ratings card overlay */
.hero__rating-card {
  position: absolute;
  bottom: 8%;
  left: -8px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: floatCard 5s ease-in-out infinite;
}
.hero__rating-card svg { color: #F59E0B; }
.hero__rating-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1;
}
.hero__rating-card__label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.hero__streak-card {
  position: absolute;
  top: 12%;
  right: -10px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: floatCard 5s ease-in-out infinite reverse;
}
.hero__streak-card svg { color: var(--lime); }
.hero__streak-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}
.hero__streak-card__label {
  font-size: 0.7rem;
  color: rgba(247, 244, 234, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

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

@media (max-width: 480px) {
  .hero__rating-card, .hero__streak-card { padding: 10px 12px; }
  .hero__rating-card__num, .hero__streak-card__num { font-size: 0.95rem; }
}

/* Features --------------------------------------------------------- */

.features {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features__head {
  text-align: center;
  margin-bottom: var(--s-12);
}
.features__head .eyebrow { margin-bottom: var(--s-4); }

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}

@media (min-width: 700px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .features__grid { grid-template-columns: repeat(4, 1fr); }
}

.feature {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: var(--s-4);
}
.feature__icon--lime { background: var(--lime); color: var(--green-darker); }
.feature__icon--blue { background: #DBEAFE; color: #1D4ED8; }
.feature__icon--orange { background: #FED7AA; color: #C2410C; }
.feature__icon--purple { background: #E9D5FF; color: #6D28D9; }

.feature h3 { margin-bottom: var(--s-2); }
.feature p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* CTA section ------------------------------------------------------ */

.cta {
  text-align: center;
}
.cta__card {
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: var(--s-16) var(--s-6);
  position: relative;
  overflow: hidden;
}
.cta__card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--lime), transparent 70%);
  opacity: 0.4;
}
.cta__card h2 {
  color: var(--cream);
  margin-bottom: var(--s-3);
  position: relative;
}
.cta__card p {
  color: rgba(247, 244, 234, 0.85);
  max-width: 540px;
  margin: 0 auto var(--s-8);
  position: relative;
}
.cta__buttons {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Generic page wrapper (privacy, support) ------------------------- */

.page {
  padding: var(--s-12) 0 var(--s-20);
}

.page__head {
  margin-bottom: var(--s-10);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid var(--line);
}
.page__head .eyebrow { margin-bottom: var(--s-4); }
.page__head h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: var(--s-3); }
.page__head .updated { color: var(--muted); font-size: 0.9rem; }

.prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.prose h2 {
  font-size: 1.5rem;
  margin-top: var(--s-10);
  margin-bottom: var(--s-3);
  color: var(--ink);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.1rem;
  margin-top: var(--s-6);
  margin-bottom: var(--s-2);
}
.prose p { margin-bottom: var(--s-4); }
.prose ul, .prose ol { margin: 0 0 var(--s-4); padding-left: var(--s-6); }
.prose li { margin-bottom: var(--s-2); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--green-deep); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.prose a:hover { background: var(--lime-glow); }

.callout {
  background: var(--lime-glow);
  border-left: 4px solid var(--green-deep);
  padding: var(--s-5) var(--s-6);
  border-radius: var(--r-md);
  margin: var(--s-6) 0;
}
.callout p:last-child { margin-bottom: 0; }

/* FAQ -------------------------------------------------------------- */

.faq {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-8) 0;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq__item.is-open { box-shadow: var(--shadow-sm); }

.faq__q {
  width: 100%;
  padding: var(--s-5) var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq__q-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lime-glow);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq__item.is-open .faq__q-icon {
  transform: rotate(45deg);
  background: var(--lime);
}
.faq__a {
  padding: 0 var(--s-6) var(--s-5);
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq__a p { margin: 0; }

/* Contact card ---------------------------------------------------- */

.contact-card {
  background: linear-gradient(135deg, var(--lime-glow), var(--cream-soft));
  border: 1px solid var(--lime);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  margin-top: var(--s-12);
  text-align: center;
}
.contact-card h3 { margin-bottom: var(--s-2); }
.contact-card p { color: var(--ink-soft); max-width: 420px; margin: 0 auto var(--s-5); }

/* Footer ----------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(247, 244, 234, 0.75);
  padding: var(--s-12) 0 var(--s-8);
  margin-top: var(--s-16);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
}
@media (min-width: 700px) {
  .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

.site-footer .brand { color: var(--cream); }
.site-footer .brand__mark { background: var(--lime); }

.site-footer__about {
  font-size: 0.95rem;
  max-width: 360px;
  margin-top: var(--s-3);
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  margin-bottom: var(--s-4);
  font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.site-footer a { color: rgba(247, 244, 234, 0.75); transition: color 0.15s ease; }
.site-footer a:hover { color: var(--lime); }

.site-footer__bottom {
  margin-top: var(--s-10);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(247, 244, 234, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 0.85rem;
  color: rgba(247, 244, 234, 0.55);
}

/* Utilities ------------------------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Stagger animations on load ------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s ease forwards;
}
.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }
.fade-in.delay-4 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; animation: none; }
  .hero__star { animation: none; }
  .phone { transform: none; }
}
