/* =========================================================
   BirdNote — Field Guide design system
   Palette: paper cream · forest green · robin orange · sage
   Type: Fraunces (display serif) · Hanken Grotesk (body)
   ========================================================= */

:root {
  --cream: #F7F3EA;
  --cream-2: #EFE8D8;
  --paper: #FFFDF8;
  --green: #1F4D3A;
  --green-2: #2D6A4F;
  --green-soft: #E4EEE2;
  --sage: #9DB89A;
  --orange: #D9692E;
  --orange-soft: #F6E2D2;
  --gold: #E8B23A;
  --ink: #1A2420;
  --ink-2: #41514A;
  --muted: #6B7A72;
  --line: #E2DAC8;
  --shadow-sm: 0 1px 2px rgba(26,36,32,.06), 0 2px 8px rgba(26,36,32,.05);
  --shadow-md: 0 8px 24px rgba(26,36,32,.10);
  --shadow-lg: 0 24px 60px rgba(26,36,32,.16);
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1140px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green-2); text-decoration: none; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--green); line-height: 1.08; font-weight: 600; letter-spacing: -.01em; margin: 0 0 .4em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { margin: 0 0 1.1em; color: var(--ink-2); }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 1rem;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--ink-2); max-width: 620px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--cream); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: #173d2e; color: #fff; box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--green); border-color: var(--line); }
.btn-ghost:hover { color: var(--green); border-color: var(--green-2); background: var(--paper); }
.btn svg { width: 20px; height: 20px; }

/* Official Apple "Download on the App Store" badge */
.appstore-link {
  display: inline-block; line-height: 0; border-radius: 10px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.appstore-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.appstore-link img { width: 162px; height: 54px; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,243,234,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--green); }
.brand:hover { color: var(--green); }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink-2); font-weight: 600; font-size: .98rem; }
.nav-links a:hover { color: var(--orange); }
.nav-links a.nav-cta { color: var(--cream); padding: 10px 20px; }
.nav-links a.nav-cta:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display:block; width: 24px; height: 2px; background: var(--green); margin: 5px 0; transition: .3s; border-radius:2px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 104px); overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0; z-index:-2;
  background:
    radial-gradient(1100px 520px at 78% -8%, var(--green-soft) 0%, transparent 60%),
    radial-gradient(900px 600px at 6% 110%, var(--orange-soft) 0%, transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--paper); border:1px solid var(--line); border-radius:999px;
  padding: 7px 15px; font-size:.85rem; font-weight:700; color: var(--green-2);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-badge .dot { width:7px; height:7px; border-radius:50%; background: var(--orange); }
.hero h1 .accent { color: var(--orange); font-style: italic; }
.hero p.lead { margin-top: .4rem; }
.hero-cta { display:flex; flex-wrap:wrap; gap: 14px; margin-top: 30px; align-items:center; }
.hero-note { margin-top: 20px; font-size:.92rem; color: var(--muted); display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.hero-note .stars { color: var(--gold); letter-spacing:1px; }

/* Hero visual — phone mock with soundwave */
.hero-visual { position: relative; display:flex; justify-content:center; }
.phone {
  position: relative; width: 300px; aspect-ratio: 300/620;
  background: var(--paper); border-radius: 44px;
  border: 10px solid #20272b; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.phone-notch { position:absolute; top:0; left:50%; transform:translateX(-50%); width:120px; height:26px; background:#20272b; border-radius:0 0 16px 16px; z-index:3; }
.phone-screen { position:absolute; inset:0; display:flex; flex-direction:column; padding: 44px 22px 22px; text-align:center; }
.phone-screen .ps-title { font-family: var(--font-display); color: var(--green); font-size: 1.15rem; margin-bottom: 4px; }
.phone-screen .ps-sub { font-size:.8rem; color: var(--muted); margin-bottom: auto; }
.phone-bird { margin: 12px auto; width: 150px; height: 150px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-md); border:4px solid var(--paper); }
.phone-result { background: var(--green-soft); border-radius:16px; padding: 14px; margin-top: 12px; text-align:left; }
.phone-result .pr-name { font-family: var(--font-display); color: var(--green); font-weight:600; font-size:1.05rem; }
.phone-result .pr-latin { font-size:.78rem; font-style:italic; color: var(--muted); margin-bottom:8px; }
.pr-bar { height:8px; border-radius:999px; background:#fff; overflow:hidden; }
.pr-bar i { display:block; height:100%; width:0; background: linear-gradient(90deg,var(--green-2),var(--gold)); border-radius:999px; animation: fillbar 2.2s ease forwards .6s; }
.pr-conf { display:flex; justify-content:space-between; font-size:.72rem; color: var(--muted); margin-top:6px; font-weight:600; }
@keyframes fillbar { to { width: 92%; } }

.wave { display:flex; align-items:center; justify-content:center; gap:4px; height:54px; margin: 6px 0 10px; }
.wave span { width:5px; height:20px; border-radius:999px; background: var(--green-2); animation: wave 1.1s ease-in-out infinite; }
.wave span:nth-child(1){height:18px}.wave span:nth-child(2){height:34px}.wave span:nth-child(3){height:26px}.wave span:nth-child(4){height:44px}.wave span:nth-child(5){height:22px}.wave span:nth-child(6){height:38px}.wave span:nth-child(7){height:30px}.wave span:nth-child(8){height:46px}.wave span:nth-child(9){height:24px}.wave span:nth-child(10){height:36px}.wave span:nth-child(11){height:20px}.wave span:nth-child(12){height:32px}
.wave span:nth-child(odd){ background: var(--gold); }
@keyframes wave { 0%,100%{height:12px} 50%{height:46px} }
.wave span:nth-child(1){animation-delay:0s}.wave span:nth-child(2){animation-delay:.1s}.wave span:nth-child(3){animation-delay:.2s}.wave span:nth-child(4){animation-delay:.3s}.wave span:nth-child(5){animation-delay:.15s}.wave span:nth-child(6){animation-delay:.25s}.wave span:nth-child(7){animation-delay:.05s}.wave span:nth-child(8){animation-delay:.35s}.wave span:nth-child(9){animation-delay:.2s}.wave span:nth-child(10){animation-delay:.1s}.wave span:nth-child(11){animation-delay:.3s}.wave span:nth-child(12){animation-delay:.18s}

.hero-float {
  position:absolute; background: var(--paper); border:1px solid var(--line);
  border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow-md); font-size:.85rem; font-weight:700; color: var(--green);
  display:flex; align-items:center; gap:8px;
}
.hero-float.f1 { top: 8%; left: -6%; animation: float 5s ease-in-out infinite; }
.hero-float.f2 { bottom: 12%; right: -4%; animation: float 6s ease-in-out infinite .5s; }
.hero-float .pin { width:26px;height:26px;border-radius:8px;background:var(--green-soft);display:grid;place-items:center;color:var(--green-2); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ---------- Trust bar ---------- */
.trustbar { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background: var(--paper); }
.trustbar .wrap { display:flex; flex-wrap:wrap; gap: 18px 56px; justify-content:space-between; align-items:center; padding-top:26px; padding-bottom:26px; }
.trust-item { display:flex; flex-direction:column; }
.trust-item b { font-family: var(--font-display); font-size: 1.9rem; color: var(--green); line-height:1; }
.trust-item span { font-size:.85rem; color: var(--muted); margin-top:4px; }

/* ---------- Feature cards ---------- */
.grid-3 { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display:grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.card {
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ic { width:52px; height:52px; border-radius:14px; background: var(--green-soft); display:grid; place-items:center; color: var(--green-2); margin-bottom:18px; }
.card .ic svg { width:26px; height:26px; }
.card h3 { font-size: 1.25rem; margin-bottom:.35em; }
.card p { font-size: .98rem; margin:0; }

/* ---------- How it works ---------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 30px; counter-reset: step; }
.step { position:relative; padding-top: 8px; }
.step .num {
  width:46px;height:46px;border-radius:50%;background:var(--green);color:var(--cream);
  font-family:var(--font-display); font-size:1.3rem; font-weight:600; display:grid;place-items:center; margin-bottom:16px;
}
.step h3 { font-size:1.25rem; }
.step p { font-size:.98rem; }

/* ---------- Showcase split ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.split.rev .split-media { order: 2; }
.split-media { position:relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width:100%; aspect-ratio: 4/3.4; object-fit:cover; }
.split-media .tag {
  position:absolute; left: 18px; bottom: 18px; background: rgba(255,253,248,.94);
  border-radius:12px; padding:10px 14px; box-shadow: var(--shadow-md); font-size:.85rem; font-weight:700; color:var(--green);
  display:flex; align-items:center; gap:8px;
}
.checklist { list-style:none; padding:0; margin: 20px 0 0; }
.checklist li { display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; color: var(--ink-2); font-size:1.02rem; }
.checklist li .ck { flex:0 0 auto; width:24px; height:24px; border-radius:50%; background: var(--green-soft); color:var(--green-2); display:grid; place-items:center; margin-top:2px; }
.checklist li .ck svg{width:14px;height:14px;}

/* ---------- Explore birds gallery ---------- */
.birdgrid { display:grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.birdcard { position:relative; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); aspect-ratio: 1/1; }
.birdcard img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.birdcard:hover img { transform: scale(1.07); }
.birdcard .cap {
  position:absolute; inset:auto 0 0 0; padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(26,36,32,.78));
  color:#fff; font-weight:700; font-size:.95rem;
}
.birdcard .cap em { display:block; font-style:italic; font-weight:400; font-size:.78rem; opacity:.85; }

/* ---------- Comparison table ---------- */
.cmp { background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); }
.cmp table { width:100%; border-collapse: collapse; }
.cmp th, .cmp td { padding: 16px 18px; text-align:left; border-bottom:1px solid var(--line); font-size:.98rem; }
.cmp thead th { background: var(--green); color: var(--cream); font-family: var(--font-display); font-weight:600; }
.cmp thead th.hl { background: var(--green-2); }
.cmp tbody td:first-child { font-weight:700; color: var(--ink); }
.cmp tbody tr:last-child td { border-bottom:0; }
.cmp .yes { color: var(--green-2); font-weight:700; }
.cmp .no { color: #B6533A; }
.cmp td.col-us { background: var(--green-soft); font-weight:600; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius);
  padding: 4px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  cursor:pointer; list-style:none; padding: 18px 0; font-weight:700; color: var(--green);
  font-size:1.08rem; display:flex; justify-content:space-between; align-items:center; gap:16px; font-family: var(--font-display);
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary .chev { flex:0 0 auto; transition: transform .25s ease; color: var(--orange); font-size:1.4rem; line-height:1; }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq details p { padding-bottom: 18px; margin:0; font-size:1rem; }

/* ---------- CTA band ---------- */
.cta-band { position:relative; overflow:hidden; background: var(--green); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(40px,6vw,72px); text-align:center; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 300px at 80% 0%, rgba(232,178,58,.22), transparent 60%), radial-gradient(600px 300px at 10% 120%, rgba(217,105,46,.25), transparent 60%); }
.cta-band > * { position:relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(247,243,234,.85); max-width: 540px; margin: 0 auto 28px; }
.cta-band .cta-row { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,243,234,.72); padding: 64px 0 32px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand { display:flex; align-items:center; gap:11px; font-family:var(--font-display); font-size:1.3rem; color:#fff; margin-bottom:14px; }
.footer-brand img { width:36px;height:36px;border-radius:10px; }
.site-footer p { color: rgba(247,243,234,.6); font-size:.95rem; }
.footer-col h4 { color:#fff; font-family: var(--font-body); font-size:.82rem; text-transform:uppercase; letter-spacing:.14em; margin-bottom:16px; }
.footer-col a { display:block; color: rgba(247,243,234,.72); margin-bottom:10px; font-size:.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top:1px solid rgba(247,243,234,.12); margin-top:44px; padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.85rem; color: rgba(247,243,234,.5); }

/* ---------- Section header helper ---------- */
.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-head.center { margin-left:auto; margin-right:auto; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform:none; }

/* =========================================================
   BLOG
   ========================================================= */
.blog-hero { padding: clamp(56px,7vw,96px) 0 0; }
.post-meta { display:flex; flex-wrap:wrap; align-items:center; gap:14px; color: var(--muted); font-size:.9rem; font-weight:600; margin-bottom:18px; }
.pill { background: var(--green-soft); color: var(--green-2); padding:4px 12px; border-radius:999px; font-size:.78rem; font-weight:700; }
.breadcrumb { font-size:.85rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }

.article { max-width: 760px; margin: 0 auto; }
.article-hero-img { width:100%; aspect-ratio: 16/8; object-fit:cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin: 8px 0 14px; }
.figcap, .article-credit { font-size:.82rem; color: var(--muted); text-align:center; margin-bottom: 30px; }
.article h1 { font-size: clamp(2.1rem,4.5vw,3.2rem); margin-bottom:.3em; }
.article h2 { font-size: clamp(1.5rem,3vw,2.1rem); margin-top: 1.6em; }
.article h3 { font-size: 1.3rem; margin-top: 1.4em; }
.article p { font-size: 1.12rem; line-height: 1.78; color: #2C3A33; }
.article ul, .article ol { font-size: 1.12rem; line-height: 1.78; color:#2C3A33; padding-left: 1.3em; margin-bottom: 1.4em; }
.article li { margin-bottom: .55em; }
.article a { color: var(--green-2); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--sage); }
.article a:hover { color: var(--orange); text-decoration-color: var(--orange); }
.article blockquote { margin: 1.6em 0; padding: 6px 24px; border-left: 4px solid var(--gold); background: var(--paper); border-radius: 0 12px 12px 0; font-style: italic; color: var(--ink-2); }
.article img { border-radius: var(--radius); margin: 1.4em 0 .5em; box-shadow: var(--shadow-sm); }
.lede { font-size: 1.28rem !important; color: var(--ink-2) !important; font-family: var(--font-body); }
.toc { background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin: 12px 0 36px; }
.toc strong { font-family: var(--font-display); color: var(--green); display:block; margin-bottom:10px; }
.toc ol { font-size: 1rem !important; margin:0; }
.toc li { margin-bottom: 6px; }

.keyfact { background: var(--green-soft); border-radius: var(--radius); padding: 22px 26px; margin: 1.6em 0; }
.keyfact strong { color: var(--green); }

.inline-cta {
  display:flex; gap:20px; align-items:center; flex-wrap:wrap; justify-content:space-between;
  background: var(--green); color: var(--cream); border-radius: var(--radius-lg);
  padding: 26px 30px; margin: 2.4em 0;
}
.inline-cta .ic-txt h3 { color:#fff; margin-bottom:4px; }
.inline-cta .ic-txt p { color: rgba(247,243,234,.82); margin:0; font-size:.98rem; }

.species-table { width:100%; border-collapse:collapse; margin: 1.4em 0; font-size: 1rem; }
.species-table th, .species-table td { border:1px solid var(--line); padding: 12px 14px; text-align:left; }
.species-table thead th { background: var(--green-soft); color: var(--green); font-weight:700; }
.species-table tbody td:first-child { font-weight:700; color: var(--ink); }

.related { border-top:1px solid var(--line); margin-top: 56px; padding-top: 40px; }
.related h2 { font-size: 1.6rem; }
.post-card {
  display:block; background: var(--paper); border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; height:100%;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card img { aspect-ratio: 16/9; object-fit:cover; width:100%; }
.post-card .pc-body { padding: 20px 22px 24px; }
.post-card .pc-body .pill { margin-bottom:12px; display:inline-block; }
.post-card h3 { font-size: 1.18rem; color: var(--green); margin: 4px 0 8px; }
.post-card p { font-size:.95rem; margin:0; color: var(--muted); }

/* Featured post (blog hub) */
.feat-post { display:grid; grid-template-columns: 1.1fr .9fr; gap:0; background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); margin-bottom: 48px; }
.feat-post img { height:100%; width:100%; object-fit:cover; min-height: 320px; }
.feat-post .fp-body { padding: 40px; display:flex; flex-direction:column; justify-content:center; }
.feat-post h2 { font-size: clamp(1.6rem,3vw,2.3rem); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .split, .feat-post { grid-template-columns: 1fr; gap: 32px; }
  .split.rev .split-media { order: 0; }
  .grid-3, .steps { grid-template-columns: 1fr 1fr; }
  .birdgrid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feat-post img { min-height: 240px; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .nav-links { position: fixed; inset: 72px 0 auto 0; background: var(--cream); flex-direction: column; align-items:flex-start; gap: 0; padding: 12px 24px 24px; border-bottom:1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-150%); transition: transform .3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; width:100%; border-bottom:1px solid var(--line); }
  .nav-links .nav-cta { margin-top: 12px; }
  .nav-toggle { display:block; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .birdgrid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap:28px; }
  .trustbar .wrap { gap: 22px 32px; }
  .cmp { overflow-x:auto; }
  .article p, .article ul, .article ol { font-size: 1.06rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity:1; transform:none; }
}
