/* =====================================================================
   VELARE — Design System v2  ·  "Operational Intelligence"
   Enterprise-grade dark UI. Navy base · Champagne signal · Azure tech.
   Fraunces (editorial) · Inter (UI) · JetBrains Mono (data/labels)
   ===================================================================== */

:root {
  /* Surfaces */
  --bg:        #05090F;
  --bg-2:      #070D16;
  --surface:   #0A1220;
  --surface-2: #0D1828;
  --elevated:  #10203A;

  /* Lines */
  --line:      rgba(176, 196, 230, 0.10);
  --line-2:    rgba(176, 196, 230, 0.18);
  --line-3:    rgba(176, 196, 230, 0.28);

  /* Text */
  --text:      #EAF1FB;
  --text-2:    #A4B4CC;
  --text-3:    #67788F;

  /* Brand */
  --navy:      #0B2545;
  --gold:      #C8A96A;
  --gold-soft: #E2C98E;
  --azure:     #4D9FFF;
  --azure-2:   #2F6FE0;
  --danger:    #E0654F;
  --ok:        #5BC98F;

  /* Type */
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1200px;
  --r:   16px;
  --r-sm: 10px;
  --r-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
/* Texture: faint grid + vignette */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(47,111,224,0.10), transparent 60%),
    radial-gradient(80% 60% at 100% 0%, rgba(200,169,106,0.06), transparent 55%),
    var(--bg);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 8%, transparent 70%);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: rgba(200,169,106,0.28); color: #fff; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -0.015em; }
p { color: var(--text-2); }
em { font-style: italic; }

.display-em { font-style: italic; color: var(--gold-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); opacity: 0.7; }
.eyebrow.no-line::before { display: none; }

.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--text-2); line-height: 1.55; max-width: 62ch; }
.muted { color: var(--text-3); }
.mono { font-family: var(--mono); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(84px, 11vw, 160px) 0; position: relative; }
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { margin: 20px 0 0; }
.section-head .lead { margin-top: 22px; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
.hairline { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 14px 22px;
  display: inline-flex; align-items: center; gap: 9px; padding: var(--pad);
  border-radius: var(--r-sm); font-weight: 600; font-size: 0.96rem; letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.35s var(--ease); }
.btn:hover svg.arr { transform: translateX(3px); }
.btn-primary { background: var(--gold); color: #1A130A; box-shadow: 0 0 0 1px rgba(200,169,106,0.5), 0 14px 34px -12px rgba(200,169,106,0.6); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost { color: var(--text); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--line-3); background: rgba(255,255,255,0.03); transform: translateY(-2px); }
.btn-whats { background: #1Fae54; color: #04240f; box-shadow: 0 14px 34px -12px rgba(37,211,102,0.6); }
.btn-whats:hover { background: #25D366; transform: translateY(-2px); }
.btn-lg { padding: 17px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; justify-content: center; }

.textlink { display: inline-flex; align-items: center; gap: 7px; color: var(--text); font-weight: 500; font-size: 0.96rem; transition: gap 0.3s var(--ease), color 0.3s; }
.textlink svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.textlink:hover { color: var(--gold); }
.textlink:hover svg { transform: translateX(3px); }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--gold), var(--azure)); transition: width 0.1s linear; }

/* ---------- Header ---------- */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 150; padding: 18px 0; transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s; border-bottom: 1px solid transparent; }
.header.scrolled { padding: 11px 0; background: rgba(5,9,15,0.72); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 34px; height: 34px; }
.brand__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 500; letter-spacing: 0.18em; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { font-size: 0.92rem; font-weight: 500; color: var(--text-2); padding: 8px 14px; border-radius: 8px; transition: color 0.25s, background 0.25s; }
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.header__cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 8px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--text); transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { padding: 188px 0 100px; position: relative; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(110px); z-index: 0; will-change: transform; }
.hero__orb--1 { width: 540px; height: 540px; background: rgba(47,111,224,0.16); top: -120px; right: -100px; }
.hero__orb--2 { width: 460px; height: 460px; background: rgba(200,169,106,0.10); bottom: -180px; left: -120px; }
.hero__inner { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 60px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 12px;
  border-radius: 100px; box-shadow: inset 0 0 0 1px var(--line-2); background: rgba(255,255,255,0.02);
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--text-2); margin-bottom: 30px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(91,201,143,0.18); }
.hero h1 { margin-bottom: 26px; }
.hero h1 .grad { background: linear-gradient(110deg, #fff 20%, var(--gold-soft) 55%, var(--gold) 90%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero__meta-item .n { font-family: var(--mono); font-size: 1.5rem; font-weight: 600; color: var(--text); letter-spacing: -0.02em; }
.hero__meta-item .l { font-size: 0.84rem; color: var(--text-3); margin-top: 2px; }

/* Hero visual — operational flow panel */
.flowpanel { position: relative; border-radius: var(--r-lg); padding: 22px; background: linear-gradient(180deg, var(--surface-2), var(--surface)); box-shadow: inset 0 0 0 1px var(--line-2), 0 40px 80px -40px rgba(0,0,0,0.8); }
.flowpanel__bar { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.flowpanel__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-3); }
.flowpanel__bar span { margin-left: 8px; font-family: var(--mono); font-size: 0.7rem; color: var(--text-3); letter-spacing: 0.08em; }
.flowpanel svg { width: 100%; height: auto; }
.flow-pulse { stroke-dasharray: 6 10; animation: dash 1.6s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -32; } }

/* ---------- Setores / trust strip ---------- */
.trust { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__inner { display: flex; align-items: center; gap: 18px 40px; flex-wrap: wrap; justify-content: center; }
.trust__label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); }
.trust__item { display: inline-flex; align-items: center; gap: 9px; font-size: 0.96rem; color: var(--text-2); font-weight: 500; }
.trust__item svg { width: 17px; height: 17px; color: var(--gold); }

/* ---------- Antes / Depois (signature) ---------- */
.shift { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.shift__toggle { display: inline-flex; padding: 4px; border-radius: 100px; box-shadow: inset 0 0 0 1px var(--line-2); margin-bottom: 26px; gap: 4px; }
.shift__toggle button { padding: 9px 20px; border-radius: 100px; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--text-3); transition: color 0.3s, background 0.4s var(--ease); }
.shift__toggle button.active { color: #0A0A0A; background: var(--gold); }
.shift__toggle button:first-child.active { background: var(--danger); color: #fff; }
.shift__stage { position: relative; min-height: 392px; }
.shift__panel { position: absolute; inset: 0; opacity: 0; transform: translateY(14px) scale(0.99); transition: opacity 0.5s var(--ease), transform 0.6s var(--ease); pointer-events: none; }
.shift__panel.show { opacity: 1; transform: none; pointer-events: auto; }
.flowcard { border-radius: var(--r-lg); padding: 26px; box-shadow: inset 0 0 0 1px var(--line-2); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.flowcard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.flowcard__tag { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.flow-step { display: flex; align-items: center; gap: 14px; padding: 13px 16px; border-radius: 12px; box-shadow: inset 0 0 0 1px var(--line); margin-bottom: 10px; background: rgba(255,255,255,0.015); }
.flow-step__ic { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flow-step__ic svg { width: 16px; height: 16px; }
.flow-step__t { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.flow-step__s { font-size: 0.8rem; color: var(--text-3); }
.flow-step__badge { margin-left: auto; font-family: var(--mono); font-size: 0.68rem; padding: 4px 9px; border-radius: 6px; }
.is-bad .flow-step__ic { background: rgba(224,101,79,0.12); color: var(--danger); }
.is-bad .flow-step__badge { background: rgba(224,101,79,0.12); color: var(--danger); }
.is-good .flow-step__ic { background: rgba(77,159,255,0.12); color: var(--azure); }
.is-good .flow-step__badge { background: rgba(91,201,143,0.12); color: var(--ok); }
.shift__result { margin-top: 16px; display: flex; gap: 26px; padding-top: 16px; border-top: 1px solid var(--line); }
.shift__result .n { font-family: var(--mono); font-size: 1.3rem; font-weight: 600; }
.shift__result .l { font-size: 0.78rem; color: var(--text-3); }

/* ---------- Statement ---------- */
.statement h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); max-width: 18ch; }
.statement .sub { font-family: var(--mono); color: var(--gold); letter-spacing: 0.04em; }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--r); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); }
.pillar { background: var(--bg-2); padding: 30px 26px 34px; transition: background 0.4s; }
.pillar:hover { background: var(--surface); }
.pillar .ix { font-family: var(--mono); font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; }
.pillar h3 { margin: 16px 0 9px; font-size: 1.18rem; }
.pillar p { font-size: 0.92rem; color: var(--text-2); }

/* ---------- Methodology ---------- */
.method { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
.method__rail { position: sticky; top: 120px; align-self: start; }
.method__steps { position: relative; }
.method__line { position: absolute; left: 19px; top: 14px; bottom: 14px; width: 1px; background: var(--line-2); }
.method__line span { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: linear-gradient(var(--gold), var(--azure)); transition: height 0.2s linear; }
.mstep { position: relative; padding: 0 0 38px 60px; }
.mstep:last-child { padding-bottom: 0; }
.mstep__dot { position: absolute; left: 9px; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--bg); box-shadow: inset 0 0 0 1px var(--line-3); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 0.66rem; color: var(--text-3); transition: 0.4s; z-index: 2; }
.mstep.on .mstep__dot { background: var(--gold); color: #0A0A0A; box-shadow: 0 0 0 5px rgba(200,169,106,0.14); }
.mstep h3 { margin-bottom: 8px; }
.mstep p { font-size: 0.96rem; }
.mstep__meta { margin-top: 12px; display: inline-flex; gap: 8px; font-family: var(--mono); font-size: 0.72rem; color: var(--text-3); letter-spacing: 0.04em; }

/* ---------- Bento (capacidades) ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cell { position: relative; border-radius: var(--r); padding: 28px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; transition: box-shadow 0.4s, transform 0.4s var(--ease); }
.cell::before { content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0; transition: opacity 0.4s; background: radial-gradient(420px circle at var(--mx,50%) var(--my,50%), rgba(200,169,106,0.10), transparent 42%); pointer-events: none; }
.cell:hover { box-shadow: inset 0 0 0 1px var(--line-3); transform: translateY(-3px); }
.cell:hover::before { opacity: 1; }
.cell--lg { grid-column: span 3; }
.cell--md { grid-column: span 3; }
.cell--sm { grid-column: span 2; }
.cell__ic { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 0 1px var(--line-2); color: var(--gold); margin-bottom: 20px; }
.cell__ic svg { width: 21px; height: 21px; stroke-width: 1.5; }
.cell h3 { font-size: 1.16rem; margin-bottom: 9px; }
.cell p { font-size: 0.92rem; color: var(--text-2); }
.cell .tagrow { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.tag { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.04em; color: var(--text-3); padding: 4px 10px; border-radius: 6px; box-shadow: inset 0 0 0 1px var(--line); }

/* ---------- Prova de valor / dashboard ---------- */
.proof { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.metric { padding: 22px; border-radius: var(--r); box-shadow: inset 0 0 0 1px var(--line); background: var(--surface); }
.metric .n { font-family: var(--mono); font-size: 2rem; font-weight: 600; color: var(--text); letter-spacing: -0.02em; }
.metric .n b { color: var(--gold); font-weight: 600; }
.metric .l { font-size: 0.86rem; color: var(--text-3); margin-top: 4px; }
.dash { border-radius: var(--r-lg); padding: 24px; background: linear-gradient(180deg, var(--surface-2), var(--surface)); box-shadow: inset 0 0 0 1px var(--line-2), 0 40px 80px -44px rgba(0,0,0,0.8); }
.dash__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash__top .t { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; color: var(--text-3); text-transform: uppercase; }
.dash__live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 0.7rem; color: var(--ok); }
.dash__live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }
.dash__kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 22px; }
.kpi { padding: 14px; border-radius: 12px; box-shadow: inset 0 0 0 1px var(--line); }
.kpi .v { font-family: var(--mono); font-size: 1.25rem; font-weight: 600; }
.kpi .k { font-size: 0.72rem; color: var(--text-3); margin-top: 2px; }
.dash__chart { display: flex; align-items: flex-end; gap: 9px; height: 120px; padding-top: 8px; }
.bar { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, var(--azure), rgba(47,111,224,0.25)); transform-origin: bottom; animation: grow 1s var(--ease) both; }
.bar.gold { background: linear-gradient(180deg, var(--gold), rgba(200,169,106,0.2)); }
@keyframes grow { from { transform: scaleY(0); } }

/* ---------- Quote ---------- */
.qband { border-radius: var(--r-lg); padding: clamp(36px, 5vw, 64px); box-shadow: inset 0 0 0 1px var(--line-2); background: var(--surface); position: relative; }
.qband p { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.32; color: var(--text); letter-spacing: -0.01em; }
.qband .who { margin-top: 24px; display: flex; align-items: center; gap: 13px; }
.qband .av { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 600; box-shadow: inset 0 0 0 1px var(--line-2); }
.qband .who b { font-weight: 600; font-size: 0.95rem; }
.qband .who span { font-size: 0.84rem; color: var(--text-3); }

/* ---------- CTA ---------- */
.cta { position: relative; border-radius: var(--r-lg); padding: clamp(48px, 7vw, 96px); text-align: center; overflow: hidden; box-shadow: inset 0 0 0 1px var(--line-2); background: linear-gradient(180deg, var(--surface-2), var(--bg-2)); }
.cta__orb { position: absolute; width: 600px; height: 360px; border-radius: 50%; filter: blur(120px); background: rgba(47,111,224,0.16); top: -160px; left: 50%; transform: translateX(-50%); }
.cta > * { position: relative; z-index: 2; }
.cta h2 { margin-bottom: 18px; }
.cta .lead { margin: 0 auto 36px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 70px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 50px; }
.footer__brand p { font-size: 0.94rem; color: var(--text-3); margin-top: 16px; max-width: 34ch; }
.footer h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; font-weight: 500; }
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 0.94rem; color: var(--text-2); transition: color 0.25s; }
.footer ul a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.78rem; color: var(--text-3); letter-spacing: 0.04em; }

/* ---------- WhatsApp float ---------- */
.whats-float { position: fixed; bottom: 24px; right: 24px; z-index: 120; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 34px -8px rgba(37,211,102,0.5); transition: transform 0.3s var(--ease); }
.whats-float:hover { transform: scale(1.07); }
.whats-float svg { width: 29px; height: 29px; fill: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-2), transform 0.8s var(--ease-2); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-2), transform 0.7s var(--ease-2); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(2) { transition-delay: 0.07s; }
[data-stagger].in > *:nth-child(3) { transition-delay: 0.14s; }
[data-stagger].in > *:nth-child(4) { transition-delay: 0.21s; }
[data-stagger].in > *:nth-child(5) { transition-delay: 0.28s; }
[data-stagger].in > *:nth-child(6) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
  .reveal, [data-stagger] > * { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid, .shift, .method, .proof { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { order: -1; }
  .method__rail { position: static; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cell--lg, .cell--md, .cell--sm { grid-column: span 2; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav, .header__cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: rgba(7,13,22,0.97); backdrop-filter: blur(16px); padding: 16px; gap: 4px; border-bottom: 1px solid var(--line); }
  .nav.open a { padding: 13px 16px; }
  .hero { padding: 150px 0 80px; }
  .pillars, .bento, .metrics, .dash__kpis { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; }
  .shift__result { flex-wrap: wrap; gap: 16px; }
}
