/* ===================================================
   LiftBanana - styles.css
   Dark gym theme · Banana yellow accents
   =================================================== */

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

:root {
  --bg:          #0d0d0d;
  --bg-2:        #131313;
  --bg-3:        #1c1c1c;
  --bg-card:     #181818;
  --yellow:      #F9D72F;
  --yellow-dim:  rgba(249,215,47,0.10);
  --yellow-glow: rgba(249,215,47,0.18);
  --text:        #f0f0ee;
  --text-muted:  #909090;
  --text-faint:  #505050;
  --border:      #242424;
  --border-y:    rgba(249,215,47,0.22);
  --r:           14px;
  --r-sm:        8px;
  --r-lg:        24px;
  --max-w:       1080px;
  --font:        system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.13; letter-spacing: -0.022em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); font-weight: 700; letter-spacing: -0.016em; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-muted); }
a  { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section + .section { border-top: 1px solid var(--border); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  cursor: pointer; border: none; text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.btn-yellow {
  background: var(--yellow); color: #0d0d0d;
  box-shadow: 0 4px 20px rgba(249,215,47,0.28);
}
.btn-yellow:hover { background: #ffe040; color: #0d0d0d; box-shadow: 0 8px 32px rgba(249,215,47,0.42); }

.btn-outline {
  background: transparent; color: var(--yellow);
  border: 1.5px solid var(--border-y);
}
.btn-outline:hover { background: var(--yellow-dim); }

.btn-ghost {
  background: transparent; color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: #404040; }

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

.btn-store {
  background: transparent; color: #fff;
  border-radius: 12px; padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: filter 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.btn-store:hover { filter: brightness(1.22); box-shadow: 0 8px 28px rgba(0,0,0,0.55); }
.btn-store img, .btn-store svg { display: block; height: 44px; width: auto; }

/* ── Navigation ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 60px; gap: 8px;
}
.nav-logo {
  font-weight: 800; font-size: 1.05rem; color: var(--yellow);
  text-decoration: none; flex: 0 0 auto; display: flex; align-items: center; gap: 6px;
  transition: opacity 0.15s;
}
.nav-logo:hover { text-decoration: none; opacity: 0.82; }
.nav-links {
  display: flex; list-style: none; gap: 2px; align-items: center; margin-left: auto;
}
.nav-links a {
  color: var(--text-muted); padding: 6px 12px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-3); text-decoration: none; }
.nav-links .nav-cta { margin-left: 8px; }
.nav-links .btn { color: #0d0d0d; }
.nav-links .btn:hover { background: #ffe040; color: #0d0d0d; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--text);
  font-size: 1.3rem; cursor: pointer; padding: 8px; border-radius: 8px;
  transition: background 0.15s;
}
.nav-toggle:hover { background: var(--bg-3); }
.nav-toggle:focus-visible { outline: 2px solid var(--yellow); }

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg-2); padding: 12px 16px 20px; border-bottom: 1px solid var(--border); gap: 2px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 10px 16px; border-radius: 10px; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 8px; }
  .nav-links .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: block; margin-left: auto; }
}

/* ── Hero ── */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding: 64px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 75% 45%, rgba(249,215,47,0.055) 0%, transparent 65%),
    var(--bg);
  overflow: hidden; position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 40% at 50% 0%, rgba(249,215,47,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero .wrap { display: flex; align-items: center; gap: 56px; width: 100%; position: relative; }
.hero-content { flex: 1 1 auto; max-width: 540px; }
.hero-eyebrow {
  font-size: 0.82rem; font-weight: 700; color: var(--yellow);
  letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content h1 .hl { color: var(--yellow); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.75; max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero-actions-row { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-visual { flex: 0 0 auto; }

/* Phone mockup */
.phone-mockup {
  width: 256px; height: 524px;
  background: #1a1a1a;
  border-radius: 44px;
  border: 2px solid #2e2e2e;
  box-shadow:
    0 0 0 1px #0a0a0a,
    0 48px 96px rgba(0,0,0,0.7),
    0 0 60px var(--yellow-glow);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-mockup::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #0d0d0d; border-radius: 0 0 18px 18px; z-index: 3;
}
.phone-mockup::after {
  content: ''; position: absolute; inset: 0; border-radius: 44px;
  background: linear-gradient(140deg, rgba(255,255,255,0.035) 0%, transparent 50%);
  pointer-events: none; z-index: 4;
}
.phone-screen {
  flex: 1; overflow: hidden; background: #0d0d0d;
  display: flex; align-items: center; justify-content: center;
  padding-top: 28px;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 14px; color: var(--text-faint); font-size: 0.76rem;
  text-align: center; padding: 20px; line-height: 1.5;
}
.phone-placeholder .pp-icon { font-size: 2.8rem; display: block; }
.phone-placeholder strong { color: var(--yellow); font-size: 0.85rem; display: block; margin-bottom: 4px; }

@media (max-width: 860px) {
  .hero .wrap { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { align-items: center; }
  .hero-actions-row { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 200px; height: 410px; border-radius: 36px; }
  .phone-mockup::before { width: 76px; height: 22px; }
}
@media (max-width: 480px) {
  .phone-mockup { width: 168px; height: 344px; border-radius: 30px; }
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0; overflow: hidden;
}
.trust-items {
  display: flex; flex-wrap: wrap; gap: 12px 36px;
  justify-content: center; align-items: center;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--text);
  white-space: nowrap;
}
.trust-item .ti {
  color: var(--yellow); font-size: 1rem; flex-shrink: 0; line-height: 1;
}

/* ── Section header ── */
.section-head { text-align: center; max-width: 600px; margin: 0 auto 52px; }
.section-head h2 { margin-bottom: 12px; }
.section-label {
  display: inline-block; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow);
  background: var(--yellow-dim); border: 1px solid var(--border-y);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 16px;
}

/* ── Feature cards ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--border-y);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px rgba(249,215,47,0.06);
  transform: translateY(-3px);
}
.feat-icon { font-size: 1.9rem; margin-bottom: 14px; display: block; line-height: 1; }
.feature-card h3 { color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; line-height: 1.68; }

/* ── Screenshots ── */
.screenshots-scroll {
  display: flex; gap: 18px; overflow-x: auto;
  padding: 8px 4px 20px; margin: 0 -4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.screenshots-scroll::-webkit-scrollbar { height: 4px; }
.screenshots-scroll::-webkit-scrollbar-track { background: transparent; }
.screenshots-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.screenshot-item { flex: 0 0 auto; scroll-snap-align: start; }

.screenshot-phone {
  width: 196px; height: 400px;
  background: #1a1a1a; border-radius: 34px;
  border: 2px solid #2e2e2e;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.screenshot-phone::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 74px; height: 20px; background: #0d0d0d;
  border-radius: 0 0 14px 14px; z-index: 2;
}
.screenshot-phone img { width: 100%; height: 100%; object-fit: cover; display: block; }
.screenshot-phone .sph-placeholder {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: var(--text-faint); font-size: 0.72rem; text-align: center;
  padding: 32px 16px 16px; background: #0f0f0f; line-height: 1.5;
}
.sph-placeholder .sph-icon { font-size: 1.8rem; color: var(--yellow); opacity: 0.35; display: block; }
.screenshot-label { text-align: center; margin-top: 10px; font-size: 0.78rem; color: var(--text-muted); }
.screenshots-hint { font-size: 0.8rem; color: var(--text-faint); text-align: center; margin-top: 16px; }
.screenshots-hint code { font-family: "SF Mono", "Fira Code", monospace; background: var(--bg-3); padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; color: var(--text-muted); }

/* ── Freemium ── */
.freemium-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 680px) { .freemium-grid { grid-template-columns: 1fr; } }

.plan-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
}
.plan-card.plan-pro {
  border-color: var(--border-y);
  background: linear-gradient(150deg, rgba(249,215,47,0.04) 0%, var(--bg-card) 60%);
}
.plan-header { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.plan-badge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
}
.badge-free { background: rgba(80,200,80,0.12); color: #6fcf6f; border: 1px solid rgba(80,200,80,0.2); }
.badge-pro  { background: var(--yellow-dim); color: var(--yellow); border: 1px solid var(--border-y); }
.plan-title { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.plan-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.plan-features li {
  display: flex; gap: 10px; font-size: 0.91rem; color: var(--text-muted); align-items: flex-start;
}
.pf-check { color: #6fcf6f; flex-shrink: 0; margin-top: 1px; }
.plan-card.plan-pro .pf-check { color: var(--yellow); }
.plan-note {
  margin-top: 24px; font-size: 0.81rem; color: var(--text-faint);
  padding-top: 18px; border-top: 1px solid var(--border); line-height: 1.6;
}

/* ── Privacy cards ── */
.privacy-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.privacy-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px;
}
.privacy-card .pc-icon { font-size: 1.5rem; margin-bottom: 10px; display: block; line-height: 1; }
.privacy-card h3 { font-size: 0.97rem; margin-bottom: 6px; color: var(--text); }
.privacy-card p { font-size: 0.87rem; line-height: 1.6; }

/* ── Final CTA ── */
.final-cta {
  text-align: center; padding: 96px 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(249,215,47,0.06) 0%, transparent 68%);
}
.final-cta h2 { margin-bottom: 12px; }
.final-cta > .wrap > p { margin-bottom: 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }

/* ── Footer ── */
.site-footer {
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; gap: 48px; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap;
}
.footer-brand { max-width: 280px; }
.footer-logo { font-size: 1.05rem; font-weight: 800; color: var(--yellow); display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; }
.footer-links-group { display: flex; flex-direction: column; gap: 8px; }
.footer-links-group a { font-size: 0.86rem; color: var(--text-muted); transition: color 0.15s; }
.footer-links-group a:hover { color: var(--text); text-decoration: none; }
.footer-bottom {
  max-width: var(--max-w); margin: 32px auto 0; padding: 20px 24px 0;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-faint);
}
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--text-muted); text-decoration: none; }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 60px 0 44px; text-align: center;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(249,215,47,0.05) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 12px; }
.page-hero p { font-size: 1.03rem; max-width: 540px; margin: 0 auto; }

/* ── Content (inner pages) ── */
.content-section { padding: 56px 0; }
.content-section + .content-section { border-top: 1px solid var(--border); }
.content-block { max-width: 700px; margin: 0 auto; }
.content-block h2 { color: var(--text); margin-bottom: 16px; }
.content-block h3 { color: var(--text); font-size: 1.03rem; margin: 28px 0 8px; }
.content-block p { margin-bottom: 16px; font-size: 0.94rem; line-height: 1.75; }
.content-block p:last-child { margin-bottom: 0; }
.content-block ul { list-style: none; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.content-block ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }
.content-block ul li::before { content: '-'; color: var(--yellow); flex-shrink: 0; }
.content-block a { color: var(--yellow); }
.content-block a:hover { text-decoration: underline; }
.content-block .section-label { margin-bottom: 14px; }

/* ── Info cards ── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px;
}
.info-card .ic-icon { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.info-card h3 { font-size: 0.97rem; color: var(--text); margin-bottom: 6px; }
.info-card p { font-size: 0.87rem; line-height: 1.6; }

/* ── Accordion / FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  padding: 16px 20px; font-size: 0.95rem; font-weight: 600;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font); transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-3); }
.faq-question:focus-visible { outline: 2px solid var(--yellow); outline-offset: -2px; }
.faq-chevron { transition: transform 0.22s ease; flex-shrink: 0; color: var(--text-muted); font-style: normal; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 18px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.91rem; line-height: 1.7; }
.faq-answer a { color: var(--yellow); }

/* ── Form ── */
.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px; max-width: 640px; margin: 0 auto;
}
@media (max-width: 560px) { .form-card { padding: 24px 20px; } }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.87rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-label .opt { color: var(--text-faint); font-weight: 400; }
.form-control {
  width: 100%; background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text); font-family: var(--font);
  font-size: 0.94rem; padding: 10px 13px; -webkit-appearance: none; appearance: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-control:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(249,215,47,0.11); }
.form-control::placeholder { color: var(--text-faint); }
.form-control option { background: var(--bg-3); }
textarea.form-control { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--yellow); flex-shrink: 0; width: 16px; height: 16px; }
.form-check-label { font-size: 0.87rem; color: var(--text-muted); line-height: 1.55; }
.honeypot { display: none !important; visibility: hidden; }
.form-submit { margin-top: 22px; }
.form-msg { border-radius: var(--r-sm); padding: 12px 16px; font-size: 0.9rem; margin-bottom: 18px; line-height: 1.6; }
.form-msg.success { background: rgba(80,200,80,0.10); border: 1px solid rgba(80,200,80,0.2); color: #6fcf6f; }
.form-msg.error   { background: rgba(200,80,80,0.10); border: 1px solid rgba(200,80,80,0.2); color: #cf7070; }

/* ── Changelog ── */
.changelog-year { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.changelog-entry { margin-bottom: 44px; }
.changelog-version { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.cl-v {
  font-size: 0.97rem; font-weight: 800; background: var(--yellow-dim);
  color: var(--yellow); border: 1px solid var(--border-y);
  border-radius: var(--r-sm); padding: 4px 12px;
}
.cl-date { font-size: 0.83rem; color: var(--text-faint); }
.cl-items { display: flex; flex-direction: column; gap: 7px; }
.cl-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.91rem; color: var(--text-muted);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 11px 15px;
}
.cl-tag {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 2px 7px; border-radius: 4px; flex-shrink: 0; margin-top: 1px;
}
.cl-new    { background: rgba(80,200,80,0.13); color: #6fcf6f; }
.cl-fix    { background: rgba(80,120,200,0.13); color: #7fa0df; }
.cl-change { background: rgba(200,160,80,0.13); color: #dfbf6f; }
.cl-pro    { background: var(--yellow-dim); color: var(--yellow); }

/* ── Donate ── */
.donate-intro { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.donate-intro h2 { margin-bottom: 12px; }
.donate-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.donate-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.donate-card:hover { border-color: var(--border-y); transform: translateY(-2px); }
.donate-card .dc-icon { font-size: 1.8rem; line-height: 1; }
.donate-card h3 { font-size: 1rem; color: var(--text); }
.donate-card p { font-size: 0.88rem; flex: 1; line-height: 1.6; }
.donate-card .btn { margin-top: 4px; justify-content: center; }
.costs-list { display: flex; flex-direction: column; gap: 10px; margin: 0 auto; max-width: 480px; }
.cost-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 14px 18px;
}
.cost-icon { font-size: 1.3rem; flex-shrink: 0; }
.cost-label { font-size: 0.92rem; color: var(--text-muted); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeUp 0.65s ease both; }
.anim-d1 { animation-delay: 0.08s; }
.anim-d2 { animation-delay: 0.17s; }
.anim-d3 { animation-delay: 0.26s; }

/* ── Utilities ── */
.text-yellow { color: var(--yellow); }
.text-center { text-align: center; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.inline-link { color: var(--yellow); font-weight: 500; }
.inline-link:hover { text-decoration: underline; }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.notice {
  background: var(--yellow-dim); border: 1px solid var(--border-y);
  border-radius: var(--r-sm); padding: 14px 18px;
  font-size: 0.9rem; color: var(--text); line-height: 1.65;
}
.notice a { color: var(--yellow); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Hero download button ── */
.hero-dl-btn {
  font-size: 1.05rem; padding: 15px 28px;
  box-shadow: 0 6px 28px rgba(249,215,47,0.35);
}
.hero-dl-btn:hover { box-shadow: 0 10px 40px rgba(249,215,47,0.50); }

/* ── Hero meta line ── */
.hero-meta {
  font-size: 0.8rem; color: var(--text-faint); margin: 0;
  letter-spacing: 0.02em;
}

/* ── Hero demo ── */
.hero-demo { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; }
.hero-visual { display: flex; justify-content: center; width: 100%; }
.phone-mockup { margin-inline: auto; }
#hero-demo-img { object-fit: cover; object-position: center center; }
.demo-footer { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }
.demo-dots { display: flex; gap: 8px; align-items: center; }
.demo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  padding: 0; transition: background 0.2s, transform 0.2s;
}
.demo-dot-active { background: var(--yellow); transform: scale(1.25); }
.demo-caption {
  font-size: 0.82rem; color: var(--text-muted); text-align: center;
  max-width: 220px; line-height: 1.5; margin: 0;
  min-height: 2.5em;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover { border-color: var(--border-y); transform: translateY(-2px); }
.tc-stars { color: var(--yellow); font-size: 0.9rem; letter-spacing: 1px; }
.tc-quote {
  font-size: 0.92rem; color: var(--text); line-height: 1.65;
  font-style: italic; flex: 1; margin: 0;
}
.tc-author { font-size: 0.8rem; color: var(--text-faint); margin: 0; }

/* ── Narrative steps ── */
.narrative-steps { display: flex; flex-direction: column; gap: 72px; }

.narrative-step {
  display: flex; align-items: center; gap: 72px;
}
.narrative-step:nth-child(even) { flex-direction: row-reverse; }

.ns-text { flex: 1; }
.ns-num {
  display: block; font-size: 4.5rem; font-weight: 900; line-height: 1;
  color: rgba(249,215,47,0.18); letter-spacing: -0.04em; margin-bottom: 10px;
}
.ns-text h3 { font-size: 1.4rem; color: var(--text); margin-bottom: 12px; }
.ns-text p { font-size: 0.97rem; line-height: 1.75; max-width: 380px; }

.ns-visual { flex: 0 0 auto; }

@media (max-width: 760px) {
  .narrative-step,
  .narrative-step:nth-child(even) { flex-direction: column; gap: 28px; }
  .ns-visual { order: -1; }
  .ns-text p { max-width: 100%; }
  .narrative-steps { gap: 52px; }
}

@media (max-width: 860px) {
  .hero-visual { width: 100%; justify-content: center; }
  .hero-demo { width: 100%; align-items: center; }
  .phone-mockup { margin-left: auto; margin-right: auto; }
}
