/* =========================================================
   Qarasync. Smart book & inventory management.
   Promo landing page. Built per the anti-slop taste skill:
   light theme locked, one accent (amber) on a navy brand base,
   no em-dashes, eyebrow restraint, motivated motion only.
   Vanilla CSS (no build step) so it drops straight into Apache.
   ========================================================= */

:root {
  /* Brand surface. Warm-charcoal monochrome with a single amber pop.
     The logo keeps its own colour; surfaces stay neutral so amber leads. */
  --brand:       #3a3742;   /* graphite, secondary marks on light */
  --brand-deep:  #2a2832;
  --brand-ink:   #1d1b22;   /* warm charcoal, dark panels + footer */
  --brand-soft:  #ececef;   /* light graphite tint */

  /* The single accent. Used identically across the whole page. */
  --accent:      #f59e0b;
  --accent-deep: #d97706;
  --accent-soft: #fdf1d8;

  /* Semantic only. Green appears ONLY on real "matched / in stock" state. */
  --state:       #0e9f6e;
  --state-soft:  #e6f7ef;
  /* WhatsApp brand green appears ONLY on WhatsApp actions. */
  --wa:          #25D366;
  --wa-ink:      #0b3b22;

  /* Neutrals (cool, trust-first) */
  --ink:    #14161d;
  --ink-2:  #3b4252;
  --muted:  #6b7280;
  --line:   #e6e5ea;
  --surface:#ffffff;
  --bg:     #f5f5f7;
  --bg-2:   #ececef;

  /* Shape lock: cards 16, inputs 10, interactive = pill */
  --r-card:  16px;
  --r-input: 10px;
  --r-pill:  999px;

  /* Shadows tinted to the brand hue, never pure black */
  --sh-sm: 0 1px 2px rgba(28,26,35,.07), 0 2px 8px rgba(28,26,35,.06);
  --sh:    0 12px 30px -12px rgba(28,26,35,.24);
  --sh-lg: 0 32px 64px -28px rgba(28,26,35,.36);

  --container: 1200px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  --font-display: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  --font-sans: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 600; }

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

/* Eyebrow. Rationed: used on at most 1 in 3 sections. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  color: var(--brand); margin: 0 0 16px;
}
.eyebrow i { width: 22px; height: 2px; background: var(--accent); border-radius: 2px; display: inline-block; }

.section { padding: 100px 0; position: relative; }
.section-head { max-width: 680px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 14px 0 0; max-width: 60ch; }

/* ---------- Buttons (pill, tactile press) ---------- */
.btn {
  --py: 14px; --px: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--py) var(--px);
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  border-radius: var(--r-pill); border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary { background: var(--accent); color: #3a2606; box-shadow: 0 10px 24px -12px rgba(217,119,6,.8); }
.btn-primary:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(217,119,6,.85); }

.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-deep); transform: translateY(-2px); box-shadow: var(--sh); }

.btn-outline { background: transparent; color: var(--brand); border-color: #d2d0d8; }
.btn-outline:hover { border-color: var(--brand); background: var(--brand-soft); transform: translateY(-2px); }

.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

.btn-wa { background: var(--wa); color: var(--wa-ink); }
.btn-wa:hover { filter: brightness(.96); transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(37,211,102,.8); }

.btn-lg { --py: 16px; --px: 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav-sentinel { position: absolute; top: 0; height: 1px; width: 1px; }
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,246,250,.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(28,26,35,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.brand { display: flex; align-items: center; }
.brand img { height: 88px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: .95rem; transition: color .15s; }
.nav-links a:hover { color: var(--accent-deep); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--brand); font-size: .95rem; }
.nav-phone svg { width: 17px; height: 17px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: .25s var(--ease); }

/* ---------- Hero (asymmetric split, light) ---------- */
.hero { padding: 70px 0 84px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(520px 360px at 92% 0%, var(--accent-soft), transparent 65%),
    radial-gradient(620px 460px at 4% 60%, #e8e7ee, transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); font-weight: 800; margin-bottom: 22px; }
.hero h1 .mark { color: var(--accent-deep); }
.hero-sub { font-size: 1.18rem; color: var(--ink-2); max-width: 33ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual: real photo on a panel + one honest "matched" chip */
.hero-visual { position: relative; }
.photo-panel {
  position: relative; border-radius: 24px; padding: 30px 26px 0;
  background: linear-gradient(160deg, var(--brand) 0%, #f6f5f9 100%);
  box-shadow: var(--sh-lg); overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end; justify-content: center;
}
.photo-panel::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(102, 101, 101, 0.55), transparent 70%); top: -60px; right: -60px; }
.photo-panel img { position: relative; z-index: 1; max-height: 360px; width: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.25)); }
.chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px;
  background: #fff; border-radius: 14px; padding: 12px 15px; box-shadow: var(--sh);
}
.chip .dot { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; color: #fff; }
.chip .dot.green { background: var(--state); }
.chip .dot.amber { background: var(--accent); color: #3a2606; }
.chip b { font-size: .9rem; line-height: 1.1; }
.chip small { display: block; color: var(--muted); font-size: .74rem; font-weight: 500; }
.chip-1 { top: 26px; left: -18px; }
.chip-2 { bottom: 26px; right: -16px; }

/* ---------- Value band (under hero) ---------- */
.value { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 30px 0; }
.value-item { display: flex; align-items: center; gap: 14px; }
.value-item .vic { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; flex: none; }
.value-item .vic svg { width: 22px; height: 22px; }
.value-item b { display: block; font-size: 1rem; }
.value-item span { color: var(--muted); font-size: .9rem; }

/* ---------- Scanner (signature): numbered flow + preview ---------- */
.scanner { background: var(--bg); }
.scanner-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.flow { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.flow-step { display: flex; gap: 18px; padding-bottom: 26px; position: relative; }
.flow-step:last-child { padding-bottom: 0; }
.flow-step::before { content: ""; position: absolute; left: 21px; top: 46px; bottom: 2px; width: 2px; background: linear-gradient(180deg, #d8d6de, transparent); }
.flow-step:last-child::before { display: none; }
.flow-num { width: 44px; height: 44px; border-radius: 13px; flex: none; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; background: #fff; color: var(--brand); border: 1.5px solid var(--line); box-shadow: var(--sh-sm); z-index: 1; }
.flow-step.lead .flow-num { background: var(--accent); color: #3a2606; border-color: transparent; }
.flow-body h4 { font-size: 1.14rem; margin-bottom: 4px; font-weight: 600; }
.flow-body p { color: var(--muted); margin: 0; font-size: .96rem; }

/* faithful scanner preview (stand-in for a real screenshot for now) */
.preview { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--sh-lg); overflow: hidden; }
.preview-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: #f1f4f9; border-bottom: 1px solid var(--line); }
.preview-bar i { width: 11px; height: 11px; border-radius: 50%; background: #cbd5e1; }
.preview-bar span { margin-left: 8px; font-size: .74rem; color: var(--muted); font-weight: 600; }
.preview-body { padding: 20px; }
.preview-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.preview-head .pic { width: 42px; height: 42px; border-radius: 11px; background: var(--accent); color: #3a2606; display: grid; place-items: center; flex: none; }
.preview-head b { font-size: 1rem; } .preview-head small { display: block; color: var(--muted); font-size: .78rem; font-weight: 500; }
.match { display: flex; align-items: center; gap: 12px; background: var(--state-soft); border: 1px solid #bdead4; border-radius: 11px; padding: 11px 14px; margin-bottom: 9px; }
.match .ck { width: 22px; height: 22px; border-radius: 50%; background: var(--state); color: #fff; display: grid; place-items: center; flex: none; }
.match .mt { flex: 1; } .match .mt b { font-size: .88rem; } .match .mt small { display: block; color: var(--muted); font-size: .74rem; font-weight: 500; }
.match .pr { font-weight: 700; color: var(--brand); font-size: .92rem; }
.preview-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--line); }
.preview-foot small { color: var(--muted); font-size: .76rem; display: block; } .preview-foot b { font-size: 1.35rem; color: var(--ink); }

/* ---------- Bento features ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cell { border-radius: var(--r-card); padding: 28px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--sh-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.cell:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.cell .cic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; flex: none; }
.cell .cic svg { width: 25px; height: 25px; }
.cell h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 7px; }
.cell p { color: var(--muted); font-size: .95rem; margin: 0; }
.cell .tagline { margin-top: auto; padding-top: 14px; font-weight: 600; color: var(--brand); font-size: .88rem; display: inline-flex; align-items: center; gap: 7px; }

/* lead cell (scanner) spans two columns, navy, carries a mini preview + mascot */
.cell-lead { grid-column: span 2; background: linear-gradient(155deg, var(--brand) 0%, var(--brand-ink) 100%); color: #fff; border-color: transparent; flex-direction: row; align-items: center; gap: 26px; }
.cell-lead .lead-copy { flex: 1; }
.cell-lead .cic { background: var(--accent); color: #3a2606; }
.cell-lead h3 { font-size: 1.5rem; }
.cell-lead p { color: rgba(255,255,255,.82); font-size: 1rem; }
.cell-lead .mini { width: 220px; flex: none; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 13px; padding: 14px; }
.cell-lead .mini .mrow { display: flex; align-items: center; gap: 9px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .8rem; }
.cell-lead .mini .mrow:last-child { border-bottom: 0; }
.cell-lead .mini .mrow .mk { width: 18px; height: 18px; border-radius: 50%; background: var(--state); color: #fff; display: grid; place-items: center; flex: none; }
.cell-lead .mini .mrow span { color: rgba(255,255,255,.9); }

.cic.b-amber { background: var(--accent-soft); color: var(--accent-deep); }
.cic.b-brand { background: var(--brand-soft); color: var(--brand); }

/* a photo cell with a real image */
.cell-photo { padding: 0; border: 0; }
.cell-photo .ph { position: relative; height: 100%; min-height: 220px; background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%); display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.cell-photo .ph img { max-height: 200px; width: auto; filter: drop-shadow(0 14px 20px rgba(0,0,0,.22)); }
.cell-photo .cap { position: absolute; top: 18px; left: 20px; right: 20px; color: #fff; }
.cell-photo .cap b { font-size: 1.1rem; font-weight: 600; display: block; }
.cell-photo .cap span { font-size: .85rem; color: rgba(255,255,255,.85); }

/* ---------- Outcomes (no cards, divided columns) ---------- */
.outcomes { background: var(--surface); border-top: 1px solid var(--line); }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.outcome { padding: 8px 34px; border-left: 1px solid var(--line); }
.outcome:first-child { border-left: 0; padding-left: 0; }
.outcome .ohead { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; color: var(--ink); }
.outcome p { color: var(--muted); font-size: .98rem; margin: 0; }
.outcome .oic { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 16px; }
.outcome .oic svg { width: 21px; height: 21px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px 28px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; position: relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.plan:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.plan.featured { border: 1.5px solid var(--brand); box-shadow: var(--sh); }
.plan .badge { position: absolute; top: -12px; left: 28px; background: var(--accent); color: #3a2606; font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: var(--r-pill); }
.plan h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.plan .ptag { color: var(--muted); font-size: .92rem; margin-bottom: 20px; min-height: 2.6em; }
.plan .price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--ink); line-height: 1; }
.plan .price-note { font-size: .85rem; color: var(--brand); font-weight: 600; margin: 8px 0 22px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan ul li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--ink-2); }
.plan ul li svg { width: 19px; height: 19px; color: var(--accent-deep); flex: none; margin-top: 2px; }
.plan ul li.off { color: #aeb6c2; } .plan ul li.off svg { color: #d3d9e2; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 4px; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-size: 1.2rem; transition: transform .25s var(--ease), background .25s var(--ease), color .25s; }
.faq-item.open .faq-q .pm { background: var(--brand); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 4px 24px; margin: 0; color: var(--muted); max-width: 70ch; }

/* ---------- Final CTA (navy panel contained on light page) ---------- */
.cta-panel { position: relative; background: linear-gradient(155deg, var(--brand) 0%, var(--brand-ink) 100%); color: #fff; border-radius: 24px; padding: 64px 50px; text-align: center; overflow: hidden; box-shadow: var(--sh-lg); }
.cta-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(440px 280px at 16% 18%, rgba(245,158,11,.28), transparent 62%), radial-gradient(460px 300px at 86% 88%, rgba(255,255,255,.12), transparent 60%); }
.cta-panel > * { position: relative; }
.cta-panel h2 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; margin-bottom: 14px; }
.cta-panel p { font-size: 1.14rem; color: rgba(255,255,255,.85); max-width: 56ch; margin: 0 auto 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-call { margin-top: 26px; font-size: 1.4rem; font-family: var(--font-display); font-weight: 700; }
.cta-call a { color: #fff; border-bottom: 3px solid var(--accent); padding-bottom: 2px; }
.cta-sub { margin-top: 10px; font-size: .92rem; color: rgba(255,255,255,.7); }

/* ---------- Footer ---------- */
.footer { background: var(--brand-ink); color: rgba(255,255,255,.72); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand { display: inline-flex; background: #fff; padding: 12px 18px; border-radius: 14px; margin-bottom: 18px; box-shadow: var(--sh-sm); }
.footer .brand img { height: 50px; width: auto; }
.footer p { font-size: .92rem; max-width: 320px; color: rgba(255,255,255,.66); }
.footer h5 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,.7); font-size: .93rem; transition: color .15s; }
.footer ul a:hover { color: var(--accent); }
.foot-contact a { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; margin-bottom: 12px; }
.foot-contact a svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.55); }

/* ---------- Floating WhatsApp (no infinite loop) ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(37,211,102,.7); transition: transform .2s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Scroll reveal (motivated: storytelling/hierarchy) ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; } .reveal.d3 { transition-delay: .21s; } .reveal.d4 { transition-delay: .28s; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .nav-phone { display: none; }
}
@media (max-width: 940px) {
  .hero-grid, .scanner-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 0 70px; }
  .scanner-grid .preview { order: -1; }
  .bento { grid-template-columns: 1fr 1fr; }
  .cell-lead { grid-column: span 2; }
  .value-grid { grid-template-columns: 1fr; gap: 18px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome { border-left: 0; border-top: 1px solid var(--line); padding: 26px 0; }
  .outcome:first-child { padding-top: 0; border-top: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* nav collapses to hamburger */
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; position: absolute; top: 100px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 2px; background: var(--surface); padding: 14px 24px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--sh); }
  .nav.open .nav-links a { padding: 11px 0; width: 100%; border-bottom: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .section { padding: 70px 0; }
  .bento { grid-template-columns: 1fr; }
  .cell-lead { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .cell-lead .mini { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-panel { padding: 48px 24px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .chip-1 { left: 8px; } .chip-2 { right: 8px; }
}

/* ---------- Reduced motion (mandatory) ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
