/* ============================================================
   VOXEL PRINT — stylesheet
   Paleta extraída da logo:
   cyan #2ba8e8 · azul #5b8cf0 · roxo #7b3fe4 · magenta #c13fbf
   navy #16324f (texto VOXEL) · roxo-print #5e2a86
   ============================================================ */

:root {
  --cyan: #2ba8e8;
  --cyan-light: #3fd0ff;
  --blue: #5b8cf0;
  --purple: #7b3fe4;
  --magenta: #c13fbf;
  --navy: #16324f;
  --print-purple: #5e2a86;

  --grad: linear-gradient(120deg, var(--cyan) 0%, var(--purple) 55%, var(--magenta) 100%);
  --grad-soft: linear-gradient(120deg, rgba(43,168,232,.12), rgba(193,63,217,.12));

  /* light theme */
  --bg: #f6f8fc;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --text: #16213a;
  --muted: #5a6783;
  --border: #e5eaf3;
  --shadow: 0 18px 45px -22px rgba(22,50,79,.35);
  --shadow-sm: 0 8px 24px -16px rgba(22,50,79,.45);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
}

[data-theme="dark"] {
  --bg: #0c1020;
  --bg-alt: #11162a;
  --surface: #161d35;
  --text: #eaf0ff;
  --muted: #9aa6c8;
  --border: #232c49;
  --shadow: 0 22px 55px -25px rgba(0,0,0,.7);
  --shadow-sm: 0 10px 30px -18px rgba(0,0,0,.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background .35s ease, color .35s ease;
  overflow-x: hidden;
}
h1,h2,h3,.brand-name { font-family: 'Sora', sans-serif; line-height: 1.12; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--maxw), 92%); margin-inline: auto; }
.container.narrow { max-width: 820px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .98rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  font-family: 'Sora', sans-serif;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 14px 30px -12px rgba(123,63,228,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(123,63,228,.7); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 1rem; height: 70px; }
.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand-logo { width: 38px; height: 38px; }
.brand-name { font-weight: 700; font-size: 1.25rem; letter-spacing: -.01em; color: var(--navy); }
[data-theme="dark"] .brand-name { color: #eaf0ff; }
.brand-name strong { font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; }
.nav-links a { padding: .55rem .85rem; border-radius: 999px; font-size: .95rem; color: var(--muted); font-weight: 500; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: var(--grad-soft); }
.nav-links .nav-cta { background: var(--grad); color: #fff; font-weight: 600; }
.nav-links .nav-cta:hover { color: #fff; filter: brightness(1.05); }

.theme-toggle, .nav-toggle {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface);
  display: grid; place-items: center; cursor: pointer; color: var(--text);
  transition: border-color .2s, transform .2s;
}
.theme-toggle:hover { border-color: var(--purple); }
.theme-toggle svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle { display: none; flex-direction: column; gap: 4px; }
.nav-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 8vw, 6rem) 0; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 600px; z-index: 0;
  background: radial-gradient(45% 60% at 70% 20%, rgba(43,168,232,.25), transparent 60%),
              radial-gradient(40% 55% at 30% 35%, rgba(193,63,217,.22), transparent 60%);
  filter: blur(10px); pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--purple);
  background: var(--grad-soft); padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -.02em; }
.lead { font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--muted); margin: 1.2rem 0 1.8rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-stats { list-style: none; display: flex; gap: 2rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-stats strong { display: block; font-family: 'Sora'; font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stats span { font-size: .85rem; color: var(--muted); }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 340px; }
.hero-logo { width: min(360px, 80%); filter: drop-shadow(0 30px 50px rgba(123,63,228,.35)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.float-card {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  padding: .55rem 1rem; border-radius: 999px; font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow-sm); animation: float 6s ease-in-out infinite;
}
.card-a { top: 8%; left: 0%; color: var(--cyan); animation-delay: .4s; }
.card-b { bottom: 14%; right: -2%; color: var(--magenta); animation-delay: 1.2s; }
.card-c { bottom: 0%; left: 8%; color: var(--purple); animation-delay: 2s; }

/* ---------- Section base ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--magenta); display: inline-block; margin-bottom: .7rem;
}
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -.02em; }
.section-head p { color: var(--muted); margin-top: .8rem; }

/* ---------- Sobre ---------- */
.about-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-bottom: 2.5rem; }
.about-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .25s, border-color .25s;
}
.about-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--purple) 45%, var(--border)); }
.about-ico { font-size: 2rem; margin-bottom: .6rem; }
.about-card h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.about-card p { color: var(--muted); font-size: .96rem; }
.diff-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }
.diff-list li {
  display: flex; align-items: center; gap: .5rem; font-weight: 500; font-size: .95rem;
  background: var(--surface); border: 1px solid var(--border); padding: .6rem 1.1rem; border-radius: 999px;
}
.diff-list span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--grad); color: #fff; font-size: .7rem; }

/* ---------- Catálogo / Cards ---------- */
.catalog-search { max-width: 520px; margin: 0 auto 1.4rem; }
.catalog-search input {
  width: 100%; padding: .85rem 1.2rem; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); font-size: 1rem;
}
.catalog-search input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(123,63,228,.12); }

.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 2.2rem; }
.filter {
  font-family: 'Sora'; font-size: .88rem; font-weight: 600; cursor: pointer;
  padding: .55rem 1.1rem; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface); color: var(--muted); transition: .2s;
}
.filter:hover { color: var(--text); border-color: var(--purple); }
.filter.is-active { background: var(--grad); color: #fff; border-color: transparent; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.5rem; }
.product-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s; animation: fadeUp .5s both;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-thumb { aspect-ratio: 4/3; display: grid; place-items: center; font-size: 3.4rem; position: relative; overflow: hidden; }
.product-thumb::after { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: .14; z-index: 1; }
.product-thumb .thumb-ico { position: relative; z-index: 0; }
.product-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.product-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.product-desc { color: var(--muted); font-size: .92rem; flex: 1; }
.product-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin: .9rem 0 1rem; }
.product-meta span { font-size: .76rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; background: var(--grad-soft); color: var(--purple); }
.product-card .btn { width: 100%; justify-content: center; padding: .7rem; font-size: .9rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- Galeria ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1rem; }
.gallery-item {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; border: 1px solid var(--border); display: grid; place-items: center;
  font-size: 3rem; transition: transform .25s; animation: fadeUp .5s both;
}
.gallery-item::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: .85; z-index: 1; }
.gallery-item span { position: relative; z-index: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,.25)); }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.gallery-item .gi-label {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: .6rem .8rem; font-size: .82rem;
  font-weight: 600; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.55));
  opacity: 0; transition: opacity .25s; text-align: left;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item:hover .gi-label { opacity: 1; }
.gallery-item:hover span { transform: scale(1.12); transition: transform .25s; }

/* ---------- Como funciona ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; counter-reset: s; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.4rem 1.6rem; text-align: center; box-shadow: var(--shadow-sm);
}
.step-ico { font-size: 2.2rem; margin-bottom: .6rem; }
.step-num { font-family: 'Sora'; font-weight: 800; font-size: .9rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h3 { font-size: 1.1rem; margin: .3rem 0 .4rem; }
.step p { color: var(--muted); font-size: .92rem; }
.step:not(:last-child)::after { content: "→"; position: absolute; right: -1rem; top: 50%; transform: translateY(-50%); color: var(--purple); font-size: 1.3rem; z-index: 2; }

/* ---------- Materiais ---------- */
.material-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.6rem; max-width: 860px; margin-inline: auto; }
.material-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.material-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--grad); }
.material-card header { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.material-card h3 { font-size: 1.5rem; }
.tag { font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 999px; color: #fff; }
.tag-cyan { background: var(--cyan); }
.tag-purple { background: var(--purple); }
.material-card p { color: var(--muted); font-size: .96rem; }
.material-card ul { list-style: none; margin-top: 1rem; display: grid; gap: .4rem; font-size: .92rem; }

/* ---------- Depoimentos ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.stars { color: #f5a623; letter-spacing: 2px; margin-bottom: .8rem; }
.testi-card blockquote { font-size: .98rem; color: var(--text); margin-bottom: 1.2rem; }
.testi-card figcaption { display: flex; align-items: center; gap: .7rem; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-family: 'Sora'; background: var(--c, var(--purple)); }
.testi-card figcaption strong { display: block; font-size: .95rem; }
.testi-card figcaption small { color: var(--muted); font-size: .82rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 1.3rem; transition: border-color .2s; }
.faq details[open] { border-color: color-mix(in srgb, var(--purple) 40%, var(--border)); }
.faq summary { cursor: pointer; font-weight: 600; font-family: 'Sora'; padding: 1.1rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--purple); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 1.1rem; font-size: .96rem; }
.faq a { color: var(--purple); font-weight: 600; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: .88rem; font-weight: 600; }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-family: inherit; font-size: .96rem; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(123,63,228,.12); }
.field input[type=file] { padding: .6rem; cursor: pointer; }
.hint { color: var(--muted); font-size: .8rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .4rem; }
.form-feedback { font-size: .92rem; font-weight: 600; min-height: 1.2em; }
.form-feedback.ok { color: #1f9d55; }
.form-feedback.err { color: #d6336c; }

.contact-side { background: var(--grad); border-radius: var(--radius); padding: 2rem; color: #fff; box-shadow: var(--shadow); }
.contact-side h3 { margin-bottom: 1.2rem; }
.contact-line { display: flex; flex-direction: column; background: rgba(255,255,255,.14); border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin-bottom: .8rem; font-weight: 600; transition: background .2s, transform .2s; }
.contact-line:hover { background: rgba(255,255,255,.24); transform: translateX(4px); }
.contact-line .ci { font-size: 1.1rem; }
.contact-line small { font-weight: 400; opacity: .85; font-size: .82rem; }
.side-note { margin-top: 1.2rem; font-size: .85rem; opacity: .9; line-height: 1.7; }

/* ---------- Instagram ---------- */
.insta-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: center; }
.insta-inner .btn { margin-top: 1.4rem; }
.insta-feed { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; }
.insta-feed a { aspect-ratio: 1; border-radius: var(--radius-sm); display: grid; place-items: center; font-size: 2rem; position: relative; overflow: hidden; transition: transform .25s; }
.insta-feed a::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: .85; }
.insta-feed a span { position: relative; z-index: 1; }
.insta-feed a:hover { transform: scale(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding-top: 3rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; gap: .9rem; align-items: flex-start; max-width: 340px; }
.footer-brand .brand-logo { width: 44px; height: 44px; }
.footer-brand p { color: var(--muted); font-size: .9rem; margin-top: .3rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; align-content: flex-start; }
.footer-links a { color: var(--muted); font-size: .95rem; transition: color .2s; }
.footer-links a:hover { color: var(--purple); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.4rem 0; color: var(--muted); }

/* ---------- WhatsApp float ---------- */
.whats-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37,211,102,.6);
  transition: transform .2s; animation: pulse 2.4s infinite;
}
.whats-float:hover { transform: scale(1.08); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 80; background: rgba(8,10,20,.88); display: none; place-items: center; backdrop-filter: blur(6px); }
.lightbox.open { display: grid; }
.lightbox-content { font-size: clamp(7rem, 30vw, 16rem); filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); animation: fadeUp .3s; }
.lightbox-content img { max-width: 86vw; max-height: 84vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,.15); color: #fff; font-size: 1.3rem; cursor: pointer; }
.lightbox-close:hover { background: rgba(255,255,255,.3); }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-visual { order: 1; min-height: 280px; }
  .lead { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step::after { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .insta-inner { grid-template-columns: 1fr; text-align: center; }
  .insta-feed { max-width: 420px; margin-inline: auto; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 1rem;
    gap: .3rem; transform: translateY(-150%); transition: transform .3s ease; z-index: 40;
  }
  .nav-links.open { transform: translateY(0); box-shadow: var(--shadow); }
  .nav-links a { padding: .8rem 1rem; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .material-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
