:root{
  --color-ink:#f6f8fb;
  --color-bg:#070b12;
  --color-bg-soft:#0b111c;
  --color-surface:#101722;
  --color-surface-raised:#151e2b;
  --color-surface-muted:#1a2432;
  --color-line:#253244;
  --color-line-strong:#34445a;
  --color-muted:#9aa5b6;
  --color-soft:#cad1dc;
  --color-accent:#2563eb;
  --color-accent-strong:#1d4ed8;
  --color-accent-ink:#f8fbff;
  --color-logo:#5eead4;
  --color-logo-ink:#061015;
  --color-success:#46a371;
  --color-warning:#d6a84f;
  --color-danger:#d85b5b;
  --color-neutral:#657284;
  --color-success-ink:#bfe8d3;
  --color-success-bg:rgb(70 163 113 / .12);
  --color-accent-soft-ink:#dbeafe;
  --color-accent-bg:rgb(37 99 235 / .14);
  --color-warning-ink:#f0d28e;
  --color-warning-bg:rgb(214 168 79 / .12);
  --color-danger-ink:#f2b5b5;
  --color-danger-bg:rgb(216 91 91 / .12);
  --color-neutral-ink:#d4dae3;
  --shadow-1:0 1px 2px rgb(0 0 0 / .30);
  --shadow-2:0 8px 24px rgb(0 0 0 / .35);
  --shadow-panel:var(--shadow-2);
  --shadow-soft:var(--shadow-1);
  --radius-sm:6px;
  --radius-md:8px;
  --radius-lg:10px;
  --radius-xl:12px;
  --container:min(1180px,calc(100% - clamp(32px,7vw,96px)));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--color-bg);
  color:var(--color-ink);
  font-family:Inter,system-ui,sans-serif;
  font-feature-settings:"ss01" on,"cv05" on;
  overflow-x:hidden;
}
::selection{background:rgb(37 99 235 / .28);color:var(--color-ink)}
a{color:inherit;text-decoration:none}
button,a,input{font:inherit}
.wrap{width:var(--container);margin-inline:auto}
.mono,.amount,.code{font-variant-numeric:tabular-nums}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--color-accent);
  background:var(--color-accent);
  color:var(--color-accent-ink);
  border-radius:var(--radius-sm);
  padding:10px 14px;
  font-size:13px;
  font-weight:600;
  min-height:40px;
  transition:background-color .14s ease-out,border-color .14s ease-out,color .14s ease-out,opacity .14s ease-out,transform .14s ease-out;
}
.btn:focus-visible,.nav a:focus-visible,.ghost:focus-visible{
  outline:2px solid var(--color-accent);
  outline-offset:2px;
}
.btn:hover{background:var(--color-accent-strong);border-color:var(--color-accent-strong)}
.btn:active,.ghost:active{transform:scale(.98)}
.ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--color-line-strong);
  color:var(--color-soft);
  background:rgb(255 255 255 / .02);
  border-radius:var(--radius-sm);
  padding:10px 14px;
  font-size:13px;
  font-weight:500;
  min-height:40px;
  transition:background-color .14s ease-out,border-color .14s ease-out,color .14s ease-out,opacity .14s ease-out,transform .14s ease-out;
}
.ghost:hover{background:rgb(255 255 255 / .045);border-color:var(--color-line-strong);color:var(--color-ink)}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:24px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:17px;
  font-weight:700;
  letter-spacing:-.02em;
}
.brand-mark{
  width:24px;
  height:24px;
  border-radius:8px;
  background:var(--color-logo-ink);
  border:1px solid rgb(94 234 212 / .34);
  color:var(--color-logo);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.brand-mark svg{width:18px;height:18px;display:block}
.brand-word{display:inline-flex;align-items:baseline;gap:0;color:var(--color-ink)}
.brand-word span{color:var(--color-soft)}
.brand .brand-mark{color:var(--color-logo)}
.links{display:flex;align-items:center;gap:22px}
.links a:not(.btn){font-size:13px;color:var(--color-muted);font-weight:500}
.links a:not(.btn):hover{color:var(--color-ink)}
.hero{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);
  align-items:center;
  gap:clamp(40px,6vw,76px);
  padding:clamp(54px,7vw,92px) 0 clamp(36px,5vw,58px);
}
.hero::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:18%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgb(37 50 68 / .68),transparent);
  opacity:.58;
  pointer-events:none;
}
.hero>*{position:relative}
.eyebrow{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--color-line);
  background:rgb(255 255 255 / .025);
  color:var(--color-soft);
  border-radius:999px;
  padding:7px 10px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero .eyebrow{
  display:block;
  border:0;
  background:transparent;
  border-radius:0;
  padding:0;
  color:var(--color-accent-soft-ink);
}
h1{
  max-width:760px;
  margin:18px 0 22px;
  font-size:clamp(38px,4.6vw,56px);
  line-height:1.04;
  letter-spacing:-.03em;
  font-weight:700;
}
h1 .accent{color:var(--color-accent-soft-ink)}
.hero-copy{
  max-width:690px;
  color:var(--color-soft);
  font-size:clamp(16px,1.45vw,19px);
  line-height:1.72;
  margin:0;
}
.hero-actions{display:flex;align-items:flex-start;gap:18px;flex-wrap:wrap;margin-top:28px}
.primary-action{display:grid;gap:7px}
.btn svg{width:14px;height:14px;margin-left:8px;stroke-width:1.9}
.click-trigger{margin:0;color:var(--color-muted);font-size:11px;line-height:1.35}
.hero-secondary{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  color:var(--color-accent-soft-ink);
  font-size:13px;
  font-weight:600;
  text-decoration:none;
}
.hero-secondary:hover{text-decoration:underline;text-underline-offset:4px}
.trust-statement{
  margin-top:34px;
  max-width:680px;
  border-left:3px solid var(--color-accent);
  padding-left:18px;
  color:var(--color-soft);
  line-height:1.65;
  font-size:14px;
}
.product-frame{
  background:var(--color-surface);
  border:1px solid var(--color-line);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-panel);
  overflow:hidden;
}
.frame-chrome{
  height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  border-bottom:1px solid var(--color-line);
  color:var(--color-muted);
  font-size:12px;
}
.chrome-dots{display:flex;gap:7px}
.chrome-dots span{width:8px;height:8px;border-radius:50%;background:var(--color-line-strong)}
.chrome-dots span:nth-child(1){background:#7f3c3f}
.chrome-dots span:nth-child(2){background:#8b6a2d}
.chrome-dots span:nth-child(3){background:#3e7658}
.frame-body{padding:18px}
.chat-illustration{
  display:grid;
  gap:13px;
}
.chat-bubble{
  max-width:86%;
  border:0;
  border-radius:0;
  padding:4px 0;
  background:transparent;
  color:var(--color-soft);
  font-size:13px;
  line-height:1.5;
}
.chat-bubble.user{
  justify-self:end;
  background:var(--color-surface-muted);
  color:var(--color-ink);
  border-radius:var(--radius-lg);
  border-bottom-right-radius:6px;
  padding:11px 13px;
  box-shadow:var(--shadow-1);
}
.chat-bubble.assistant{justify-self:start}
.chat-bubble strong{display:block;color:var(--color-ink);margin-bottom:4px;font-size:12px}
.chat-bubble .hint{display:block;color:var(--color-muted);font-size:12px;margin-top:5px}
.assistant-id{display:inline-flex;align-items:center;gap:7px;color:var(--color-soft);font-size:12px;font-weight:550;margin-bottom:8px}
.assistant-avatar{width:20px;height:20px;border:1px solid rgb(94 234 212 / .34);border-radius:999px;background:var(--color-surface);color:var(--color-logo);display:inline-flex;align-items:center;justify-content:center}
.assistant-avatar svg{width:14px;height:14px;display:block}
.mock-msg{display:grid;gap:8px}
.mock-msg.assistant{justify-items:start}
.mock-body{color:var(--color-ink);font-size:13px;line-height:1.55}
.mock-mini-table{
  min-width:280px;
  width:min(100%,360px);
  border-top:1px solid var(--color-line);
  border-bottom:1px solid var(--color-line);
  border-collapse:collapse;
  margin-top:2px;
}
.mock-mini-table th{
  padding:8px 0;
  color:var(--color-muted);
  font-size:10.5px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-align:left;
  border-bottom:1px solid var(--color-line);
}
.mock-mini-table td{
  padding:8px 0;
  border-top:1px solid rgb(37 50 68 / .72);
  color:var(--color-soft);
  font-size:12px;
}
.mock-mini-table tbody tr:first-child td{border-top:0}
.mock-mini-table th:last-child,.mock-mini-table td:last-child{text-align:right;font-variant-numeric:tabular-nums}
.mock-mini-table tr.total td{color:var(--color-accent-soft-ink);font-weight:600}
.mock-attachment{
  width:min(100%,360px);
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  border-top:1px solid var(--color-line);
  padding-top:12px;
  margin-top:2px;
}
.file-summary{display:grid;grid-template-columns:30px minmax(0,1fr);column-gap:10px;align-items:center;min-width:0}
.file-glyph{width:28px;height:28px;border:1px solid var(--color-line);border-radius:var(--radius-sm);background:var(--color-bg-soft);color:var(--color-muted);display:inline-flex;align-items:center;justify-content:center}
.file-glyph svg{width:16px;height:16px;stroke-width:1.5}
.file-summary strong{display:block;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:13px;font-weight:550}
.file-summary span{display:block;color:var(--color-muted);font-size:11px;margin-top:3px}
.mock-download{display:inline-flex;align-items:center;gap:7px;color:var(--color-accent);font-size:12px;font-weight:500}
.mock-download svg{width:14px;height:14px;stroke-width:1.8}
.chat-progress{
  border:1px solid var(--color-line);
  border-radius:var(--radius-lg);
  background:var(--color-bg-soft);
  padding:14px;
}
.progress-title{
  display:flex;
  justify-content:space-between;
  gap:10px;
  color:var(--color-muted);
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.07em;
  margin-bottom:12px;
}
.progress-steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}
.progress-step{
  border:1px solid var(--color-line);
  border-radius:var(--radius-md);
  background:rgb(255 255 255 / .025);
  padding:10px;
  min-height:76px;
}
.progress-step span{display:block;color:var(--color-muted);font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.07em}
.progress-step b{display:block;margin-top:8px;font-size:12px;color:var(--color-ink)}
.typing{
  display:inline-flex;
  gap:4px;
  margin-left:4px;
  vertical-align:middle;
}
.typing span{
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--color-logo);
  animation:typingPulse 1.2s ease-in-out infinite;
}
.typing span:nth-child(2){animation-delay:.15s}
.typing span:nth-child(3){animation-delay:.3s}
@keyframes typingPulse{
  0%,80%,100%{opacity:.28;transform:translateY(0)}
  40%{opacity:1;transform:translateY(-3px)}
}
.proof-strip{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  border-top:1px solid var(--color-line);
  border-bottom:1px solid var(--color-line);
  margin-bottom:clamp(42px,6vw,74px);
}
.proof-stat{
  padding:26px 28px 26px 0;
  border-right:1px solid var(--color-line);
}
.proof-stat + .proof-stat{padding-left:28px}
.proof-stat:last-child{border-right:0}
.proof-value{display:block;font-size:clamp(26px,2.2vw,32px);font-weight:600;letter-spacing:-.02em;line-height:1.1;font-variant-numeric:tabular-nums;color:var(--color-ink)}
.proof-label{display:block;margin-top:8px;max-width:26ch;color:var(--color-muted);font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;line-height:1.35}
.preview-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  margin-bottom:16px;
}
.preview-head h2{
  margin:0;
  font-size:19px;
  letter-spacing:-.02em;
  font-weight:600;
}
.preview-head p{margin:4px 0 0;color:var(--color-muted);font-size:12px}
.status-pill{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:5px 8px;
  font-size:11px;
  font-weight:600;
  white-space:nowrap;
  border:1px solid var(--color-line);
  background:rgb(255 255 255 / .035);
  color:var(--color-soft);
}
.status-pill.validado{border-color:rgb(70 163 113 / .38);background:var(--color-success-bg);color:var(--color-success-ink)}
.status-pill.regra{border-color:rgb(37 99 235 / .38);background:var(--color-accent-bg);color:var(--color-accent-soft-ink)}
.status-pill.baixa{border-color:rgb(214 168 79 / .48);background:var(--color-warning-bg);color:var(--color-warning-ink)}
.status-pill.revisar{border-color:rgb(216 91 91 / .48);background:var(--color-danger-bg);color:var(--color-danger-ink)}
.status-pill.processando{border-color:rgb(101 114 132 / .44);background:rgb(101 114 132 / .14);color:var(--color-neutral-ink)}
.status-pill.duplicado{border-color:rgb(101 114 132 / .38);background:rgb(101 114 132 / .12);color:var(--color-soft)}
.product-table{border:1px solid var(--color-line);border-radius:var(--radius-lg);overflow:hidden}
.table-row{
  display:grid;
  grid-template-columns:1fr .75fr .65fr .72fr;
  gap:12px;
  padding:12px;
  align-items:center;
  border-top:1px solid var(--color-line);
  font-size:12px;
}
.table-row:first-child{border-top:0}
.table-row.header{
  background:rgb(255 255 255 / .035);
  color:var(--color-muted);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.07em;
  font-size:10px;
}
.table-row strong{display:block;font-size:13px}
.table-row small{display:block;margin-top:3px;color:var(--color-muted)}
.trace-card{
  margin-top:14px;
  border:1px solid var(--color-line);
  border-radius:var(--radius-lg);
  padding:14px;
  background:var(--color-bg-soft);
}
.trace-title{font-size:11px;font-weight:600;color:var(--color-muted);letter-spacing:.08em;text-transform:uppercase;margin-bottom:12px}
.trace-flow{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px}
.trace-step{border:1px solid var(--color-line);border-radius:var(--radius-md);padding:10px;background:rgb(255 255 255 / .025)}
.trace-step span{display:block;color:var(--color-muted);font-size:10px;text-transform:uppercase;letter-spacing:.08em;font-weight:600}
.trace-step b{display:block;margin-top:5px;font-size:12px}
.audit-entry{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  color:var(--color-muted);
  font-size:12px;
  border-top:1px solid var(--color-line);
  padding-top:12px;
}
.section{padding:clamp(58px,8vw,104px) 0}
.section.light{
  background:var(--color-bg-soft);
  color:var(--color-ink);
}
.section.light .lead,.section.light .muted,.section.light p{color:var(--color-soft)}
.section-head{display:grid;grid-template-columns:minmax(0,.9fr) minmax(320px,.65fr);gap:clamp(28px,5vw,70px);align-items:end;margin-bottom:32px}
.section h2{
  margin:0;
  font-size:clamp(32px,4vw,44px);
  line-height:1.08;
  letter-spacing:-.02em;
  font-weight:600;
}
.lead{margin:0;color:var(--color-soft);line-height:1.72;font-size:15px}
.product-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:18px;align-items:stretch}
.panel{
  border:1px solid var(--color-line);
  background:var(--color-surface);
  border-radius:var(--radius-xl);
  padding:20px;
  box-shadow:var(--shadow-soft);
}
.section.light .panel{
  background:var(--color-surface);
  border-color:var(--color-line);
  box-shadow:var(--shadow-soft);
}
.panel h3{margin:0 0 14px;font-size:18px;letter-spacing:-.02em;font-weight:600}
.invoice-list{display:grid;gap:8px}
.invoice-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  border:1px solid var(--color-line);
  border-radius:var(--radius-md);
  padding:12px;
}
.invoice-row b{display:block;font-size:13px}
.invoice-row span{display:block;margin-top:4px;color:var(--color-muted);font-size:12px}
.amount{font-weight:600}
.architecture{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
  align-items:stretch;
}
.layer{
  position:relative;
  min-height:148px;
  border:1px solid var(--color-line);
  background:var(--color-surface);
  border-radius:var(--radius-lg);
  padding:16px;
}
.layer:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-10px;
  top:50%;
  width:10px;
  height:1px;
  background:var(--color-line-strong);
}
.layer-number{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;border:1px solid var(--color-line-strong);border-radius:999px;font-size:11px;color:var(--color-muted);font-weight:600;margin-bottom:14px;font-variant-numeric:tabular-nums}
.layer strong{display:block;font-size:15px;margin-bottom:8px}
.layer p{margin:0;color:var(--color-muted);font-size:12px;line-height:1.55}
.ecosystem{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:26px;
  align-items:center;
}
.constellation{
  min-height:360px;
  border:1px solid var(--color-line);
  border-radius:var(--radius-xl);
  background:var(--color-surface);
  position:relative;
  overflow:hidden;
  padding:16px;
}
.ecosystem-bullets{display:grid;gap:8px;margin:18px 0 0;padding:0;list-style:none}
.ecosystem-bullets li{display:flex;align-items:center;gap:9px;color:var(--color-soft);font-size:13px}
.ecosystem-bullets li::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--color-accent)}
.ecosystem-map{width:100%;height:100%;min-height:320px;display:block}
.map-line{fill:none;stroke:var(--color-line-strong);stroke-width:1.2;stroke-linecap:round;stroke-dasharray:1;stroke-dashoffset:1;opacity:0;marker-end:url(#eco-arrow)}
.map-arrow-head{fill:none;stroke:var(--color-line-strong);stroke-width:1.4;stroke-linecap:round;stroke-linejoin:round}
.map-node{opacity:0;transform-box:fill-box;transform-origin:center;transform:scale(.96)}
.map-node{color:var(--color-soft)}
.map-node rect{fill:var(--color-bg-soft);stroke:var(--color-line-strong);stroke-width:1}
.map-node text{fill:currentColor;font-size:12px;font-weight:500;dominant-baseline:middle}
.map-node .node-label{text-anchor:start}
.map-node .node-icon{fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.map-node .node-icon-fill{fill:currentColor;stroke:none}
.map-node.center{color:var(--color-ink)}
.map-node.center rect{fill:var(--color-bg-soft);stroke:var(--color-accent);stroke-width:1.2}
.map-node.center text{fill:var(--color-ink);font-weight:650;font-size:15px;letter-spacing:-.02em}
.map-node.center .node-icon{stroke:var(--color-logo);stroke-width:2.4}
.map-pulse{fill:var(--color-accent);opacity:0}
.ecosystem.visible .map-line{animation:map-draw .62s ease-out forwards}
.ecosystem.visible .map-node{animation:map-node-in .28s ease-out forwards}
.ecosystem.visible .map-line:nth-of-type(2){animation-delay:.08s}
.ecosystem.visible .map-line:nth-of-type(3){animation-delay:.16s}
.ecosystem.visible .map-line:nth-of-type(4){animation-delay:.24s}
.ecosystem.visible .map-line:nth-of-type(5){animation-delay:.32s}
.ecosystem.visible .map-line:nth-of-type(6){animation-delay:.40s}
.ecosystem.visible .map-node.n1{animation-delay:.56s}
.ecosystem.visible .map-node.n2{animation-delay:.64s}
.ecosystem.visible .map-node.n3{animation-delay:.72s}
.ecosystem.visible .map-node.n4{animation-delay:.80s}
.ecosystem.visible .map-node.n5{animation-delay:.88s}
.ecosystem.visible .map-node.n6{animation-delay:.96s}
.ecosystem.visible .map-node.center{animation-delay:1.04s}
.ecosystem.visible .map-node.center rect{animation:center-breathe 4s ease-in-out 1.25s infinite}
.ecosystem-list{display:none}
.reform-card{
  display:grid;
  grid-template-columns:minmax(0,.75fr) minmax(360px,1fr);
  gap:24px;
  align-items:stretch;
}
.metric-stack{display:grid;gap:10px}
.metric{
  display:flex;
  justify-content:space-between;
  gap:16px;
  border-bottom:1px solid var(--color-line);
  padding:12px 0;
}
.metric span{color:var(--color-muted);font-size:12px}
.metric b{font-variant-numeric:tabular-nums}
.steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.step{border:1px solid var(--color-line);background:var(--color-surface);border-radius:var(--radius-lg);padding:18px}
.step .code{display:inline-flex;width:24px;height:24px;align-items:center;justify-content:center;border:1px solid var(--color-line-strong);border-radius:999px;color:var(--color-soft);font-size:11px;font-weight:600;margin-bottom:18px}
.step strong{display:block;font-size:14px;margin-bottom:8px}
.step p{margin:0;color:var(--color-muted);font-size:12px;line-height:1.58}
.cta{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
  border:1px solid var(--color-line);
  background:var(--color-surface-raised);
  border-radius:var(--radius-xl);
  padding:clamp(24px,4vw,38px);
  margin-bottom:64px;
}
.cta h2{margin:0;font-size:clamp(26px,3vw,32px);letter-spacing:-.02em;font-weight:600}
.cta p{margin:9px 0 0;color:var(--color-soft);line-height:1.65;max-width:660px}
footer{
  border-top:1px solid var(--color-line);
  color:var(--color-muted);
  padding:26px 0 42px;
  font-size:12px;
  line-height:1.6;
}
[data-reveal]{opacity:0;transform:translateY(12px);transition:opacity .34s ease-out,transform .34s ease-out}
[data-reveal].visible{opacity:1;transform:translateY(0)}
[data-stagger]>*{opacity:0;transform:translateY(12px);transition:opacity .34s ease-out,transform .34s ease-out}
[data-stagger].visible>*{opacity:1;transform:translateY(0)}
[data-stagger].visible>*:nth-child(2){transition-delay:.05s}
[data-stagger].visible>*:nth-child(3){transition-delay:.10s}
[data-stagger].visible>*:nth-child(4){transition-delay:.15s}
[data-stagger].visible>*:nth-child(5){transition-delay:.20s}
@keyframes map-draw{
  0%{opacity:0}
  30%{opacity:.82}
  100%{stroke-dashoffset:0;opacity:.82}
}
@keyframes map-node-in{
  to{opacity:1;transform:scale(1)}
}
@keyframes center-breathe{
  0%,100%{opacity:.9}
  50%{opacity:1}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  [data-reveal],[data-stagger]>*{opacity:1;transform:none;transition:none}
  .map-line{stroke-dashoffset:0;opacity:.82}
  .map-node{opacity:1;transform:none}
  .map-pulse{display:none}
}
@media(max-width:1060px){
  .hero,.product-grid,.ecosystem,.reform-card{grid-template-columns:1fr}
  .architecture{grid-template-columns:1fr 1fr}
  .layer:not(:last-child)::after{display:none}
  .section-head{grid-template-columns:1fr}
}
@media(max-width:760px){
  .wrap{width:min(100% - 28px,640px)}
  .links a:not(.btn){display:none}
  .hero{padding-top:32px}
  .hero-actions,.cta{display:block}
  .hero-actions a,.cta .btn{width:100%;margin-top:10px}
  .primary-action{width:100%}
  .hero-secondary{justify-content:flex-start}
  .proof-strip{grid-template-columns:1fr 1fr;margin-bottom:48px}
  .proof-stat{padding:16px 14px 16px 0}
  .proof-stat + .proof-stat{padding-left:14px}
  .proof-stat:nth-child(odd){padding-left:0}
  .proof-stat:nth-child(2){border-right:0}
  .proof-stat:nth-child(n+3){border-top:1px solid var(--color-line)}
  .mock-mini-table,.mock-attachment{width:100%;min-width:0}
  .product-frame{border-radius:var(--radius-lg)}
  .table-row{grid-template-columns:1fr}
  .trace-flow,.architecture,.steps{grid-template-columns:1fr}
  .section{padding:52px 0}
  .section h2{font-size:34px}
  .preview-head,.audit-entry{display:block}
  .preview-head .status-pill{margin-top:12px}
  .constellation{min-height:0;padding:14px}
  .ecosystem-map{display:none}
  .ecosystem-list{display:grid;gap:8px}
  .ecosystem-list span{display:grid;grid-template-columns:16px 1fr;align-items:center;gap:10px;border:1px solid var(--color-line);border-radius:var(--radius-sm);padding:9px 11px;color:var(--color-soft);font-size:12px}
  .ecosystem-list svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
  .ecosystem-list .center{background:transparent;border-color:rgb(37 99 235 / .58);color:var(--color-accent-soft-ink);font-weight:600}
  .ecosystem-list .center svg{stroke:currentColor;stroke-width:2.4}
}
