:root {
  --logo-cyan:#5accf9;
  --logo-blue:#2970f5;
  --logo-violet:#8a38e0;
  --ease-out:cubic-bezier(0.23,1,0.32,1);
  --bg:#edf2f7;
  --text:#202934;
  --muted:#53647a;
  --muted2:#5d6d82;
  --blue:#054ad7;
  --brand:#054ad7;
  --line:#d5dfeb;
  --surface:#fff;
  --radius:16px;
  --max:1200px;
  --red:#8e454d;
  --accent:#8a38e0
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:100px
}
body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased
}
button,input {
  font:inherit
}
button,a,input {
  touch-action:manipulation
}
a {
  color:inherit;
  text-decoration:none
}
button {
  cursor:pointer
}
button:focus-visible,a:focus-visible,input:focus-visible {
  outline:3px solid #248cca;
  outline-offset:4px
}
img {
  max-width:100%;
  display:block
}
h1,h2,h3,p {
  margin-top:0
}
h1,h2,h3 {
  text-wrap:balance
}
p {
  line-height:1.65;
  color:var(--muted)
}
.container {
  width:min(var(--max),calc(100% - 80px));
  margin:auto
}
.skip-link {
  position:fixed;
  top:-60px;
  left:20px;
  z-index:200;
  background:white;
  padding:12px
}
.skip-link:focus {
  top:12px
}
header {
  position:sticky;
  top:0;
  z-index:50;
  background:#edf2f7f5;
  border-bottom:1px solid var(--line)
}
.nav {
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px
}
.brand {
  display:inline-flex;
  gap:12px;
  align-items:center;
  font-size:29px;
  font-weight:800;
  letter-spacing:-1.5px
}
.logo {
  width:40px;
  display:block
}
.logo img {
  width:100%;
  height:46px
}
.menu {
  display:flex;
  gap:28px;
  font-size:14px;
  color:var(--muted);
  font-weight:600
}
.menu a:hover {
  color:var(--blue)
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:14px 22px;
  border-radius:7px;
  border:1px solid var(--line);
  font-size:14px;
  font-weight:700;
  line-height:1.35;
  transition:background .18s,transform .18s
}
.btn:active {
  transform:translateY(1px)
}
.btn-primary {
  background:var(--blue);
  color:white;
  border-color:var(--blue)
}
.btn-primary:hover {
  background:#0236ad
}
.btn-ghost {
  background:white;
  color:var(--blue)
}
.btn-ghost:hover {
  background:#e2eaf4
}
.hero {
  padding:90px 0 84px;
  overflow:hidden
}
.hero-grid {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:54px;
  align-items:center
}
.kicker,.pill {
  font-size:12px;
  letter-spacing:1.8px;
  color:var(--blue);
  font-weight:750;
  line-height:1.5
}
.kicker {
  margin-bottom:24px
}
h1 {
  font-size:clamp(42px,4.65vw,66px);
  line-height:1.04;
  letter-spacing:-3.4px;
  margin-bottom:26px
}
.grad {
  color:var(--blue)
}
.lead {
  font-size:18px;
  line-height:1.65;
  max-width:490px
}
.hero-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px
}

.hero-downloads {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
  margin:18px 0 0
}
.platform-link {
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:39px;
  padding:7px 13px;
  border:1px solid #cbd9e8;
  border-radius:999px;
  color:#526277;
  background:#f8fbff;
  font-size:14px;
  font-weight:800;
  letter-spacing:-.2px;
  box-shadow:0 8px 22px #163b6208;
  transition:transform .18s var(--ease-out),border-color .18s var(--ease-out),background .18s var(--ease-out),color .18s var(--ease-out)
}
.platform-link:hover {
  transform:translateY(-1px);
  border-color:#b8c9dc;
  color:var(--text);
  background:#fff
}
.platform-link svg,
.platform-link img {
  display:block;
  width:21px;
  height:21px;
  flex:0 0 21px;
  object-fit:contain
}
.trust-row {
  display:flex;
  flex-wrap:wrap;
  gap:10px 20px;
  margin-top:28px;
  font-size:11px;
  line-height:1.5;
  color:var(--muted)
}
.trust-row span {
  border-left:2px solid #b6cae2;
  padding-left:8px
}
.hero-visual {
  background:linear-gradient(135deg,#2970f5,#054ad7 65%,#6116be);
  padding:38px 22px;
  border-radius:18px;
  min-width:0
}
.product-shell {
  background:white;
  border-radius:12px;
  box-shadow:0 20px 35px #163b6230;
  overflow:hidden;
  font-size:11px
}
.browser-top {
  padding:13px 16px;
  background:#f8fafc;
  border-bottom:1px solid var(--line);
  display:flex;
  gap:20px;
  align-items:center;
  color:var(--muted);
  font-size:10px
}
.dots {
  display:flex;
  gap:5px
}
.dot {
  width:7px;
  height:7px;
  border-radius:50%;
  background:#e08a93
}
.dot:nth-child(2) {
  background:#e5bc63
}
.dot:nth-child(3) {
  background:#7db99a
}
.app {
  display:grid;
  grid-template-columns:108px 1fr;
  min-height:360px
}
.sidebar {
  padding:21px 10px;
  border-right:1px solid var(--line)
}
.side-title {
  font-size:14px;
  font-weight:800;
  margin-bottom:20px
}
.side-item {
  display:flex;
  align-items:center;
  gap:6px;
  padding:9px 6px;
  color:var(--muted);
  font-size:10px
}
.side-item svg {
  width:12px;
  height:12px
}
.side-item.active {
  background:#e7eff9;
  color:var(--blue);
  border-radius:4px
}
.mainpanel {
  padding:22px 15px
}
.panel-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
  gap:8px
}
.panel-heading small,.next-task small {
  font-size:8px;
  letter-spacing:1px;
  color:var(--muted)
}
.panel-heading h3 {
  font-size:16px;
  letter-spacing:-.5px;
  margin:6px 0 0
}
.kpi-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:6px
}
.kpi {
  padding:12px 8px;
  background:#edf2f7;
  border-radius:5px
}
.kpi small {
  font-size:8px;
  color:var(--muted)
}
.kpi b {
  display:block;
  font-size:23px;
  margin-top:8px;
  color:var(--blue);
  letter-spacing:-1px
}
.pipeline {
  margin-top:14px
}
.lead-card {
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 0;
  border-bottom:1px solid var(--line)
}
.avatar {
  border-radius:50%;
  background:#e1eaf5;
  color:var(--blue);
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  flex-shrink:0;
  font-weight:700
}
.lead-card strong {
  font-size:10px;
  display:block
}
.lead-card span {
  font-size:8px;
  display:block;
  color:var(--muted);
  margin-top:4px
}
.tag {
  margin-left:auto;
  font-size:8px;
  padding:4px 7px;
  border-radius:10px;
  background:#e8eff7;
  color:var(--blue);
  white-space:nowrap
}
.next-task {
  padding:12px;
  background:#f3f6fa;
  margin-top:14px;
  border-left:2px solid var(--blue)
}
.next-task strong,.next-task span {
  display:block;
  font-size:9px;
  margin-top:6px
}
.next-task span {
  color:var(--muted)
}
.demo-caption {
  font-size:8px;
  margin:12px 0 0;
  text-align:center
}
.section {
  padding:88px 0;
  border-top:1px solid var(--line)
}
.section-header {
  margin-bottom:42px;
  max-width:790px
}
.section-header h2 {
  font-size:clamp(30px,3.3vw,46px);
  line-height:1.12;
  letter-spacing:-1.8px;
  margin:17px 0 20px
}
.section-header p {
  font-size:17px;
  max-width:710px;
  margin-bottom:0
}
.center {
  margin-left:auto;
  margin-right:auto;
  text-align:center
}
.grid-2,.calc {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px
}
.grid-3 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px
}
.grid-4 {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0
}
.card {
  padding:26px 0;
  background:transparent
}
.card h3 {
  font-size:21px;
  line-height:1.3;
  letter-spacing:-.5px;
  margin-bottom:12px
}
.card p {
  font-size:14px;
  margin-bottom:0
}
.icon {
  color:var(--blue);
  margin-bottom:20px
}
.icon svg {
  width:25px;
  height:25px;
  stroke-width:1.7
}
.card ul,.price-card ul {
  padding-left:18px;
  line-height:1.9;
  color:var(--muted);
  font-size:14px
}
.module {
  padding:30px 24px;
  border-top:1px solid var(--line)
}
.module h3 {
  font-size:19px
}
.module p {
  font-size:14px
}
.module:nth-child(4n+1) {
  padding-left:0
}
.systems-strip {
  background:white;
  border:1px solid var(--line);
  border-radius:14px;
  padding:32px
}
.systems-row {
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:12px
}
.sys {
  display:flex;
  flex-direction:column;
  gap:9px;
  text-align:center;
  align-items:center;
  font-size:11px
}
.sys>span:last-child {
  color:var(--muted)
}
.sys-icon {
  color:var(--blue);
  margin-bottom:6px
}
.sys-icon svg {
  width:23px;
  height:23px
}
.arrow-down {
  text-align:center;
  color:var(--muted);
  font-size:12px;
  padding:28px 0 18px
}
.one-platform {
  text-align:center;
  color:var(--blue);
  background:var(--bg);
  padding:20px;
  font-weight:700;
  font-size:16px
}
.one-platform span {
  font-weight:400
}
.demo-tabs {
  display:flex;
  gap:8px;
  margin-bottom:20px;
  flex-wrap:wrap
}
.demo-tabs button {
  padding:13px 22px;
  border:1px solid var(--line);
  color:var(--blue);
  background:transparent;
  border-radius:6px;
  font-weight:700;
  font-size:13px
}
.demo-tabs button[aria-pressed=true] {
  background:var(--blue);
  color:white;
  border-color:var(--blue)
}
.demo-tabs button:hover {
  border-color:var(--blue)
}
.extension-frame {
  margin:0;
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  background:white
}
.extension-frame img {
  width:auto;
  height:100%
}
.extension-frame figcaption {
  padding:18px 24px;
  color:var(--blue);
  font-size:14px
}
.extension-note {
  font-size:12px;
  margin:16px 0 0;
  max-width:800px
}

.calc {
  gap:24px
}
.calc-box {
  padding:32px;
  background:white;
  border:1px solid var(--line);
  border-radius:14px
}
.calc-box h3 {
  letter-spacing:-1px
}
.calc-box p {
  font-size:14px
}
.slider-row {
  margin-top:26px
}
.slider-row label {
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:13px;
  color:var(--muted)
}
.slider-row strong {
  color:var(--blue);
  font-variant-numeric:tabular-nums
}
.slider-row input {
  width:100%;
  margin:16px 0 0;
  accent-color:var(--blue)
}
.saving {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:24px
}
.saving-card {
  padding:18px;
  background:var(--bg);
  border-radius:6px
}
.saving-card small {
  color:var(--muted);
  font-size:11px
}
.saving-card b {
  display:block;
  margin-top:10px;
  font-size:26px;
  color:var(--blue);
  letter-spacing:-1px
}
.pricing {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:26px;
  align-items:start
}
.price-card {
  border:1px solid var(--line);
  padding:34px;
  border-radius:14px;
  background:white
}
.price-card.featured {
  border:2px solid var(--blue)
}
.price-name {
  font-size:23px;
  font-weight:700;
  color:var(--blue)
}
.price-desc {
  font-size:14px;
  margin-top:18px
}
.price {
  font-size:44px;
  letter-spacing:-2px;
  font-weight:750;
  margin:24px 0 6px
}
.price small {
  font-size:14px;
  letter-spacing:0;
  color:var(--muted)
}
.unlimited-list {
  padding:20px;
  background:var(--bg);
  border-radius:6px;
  margin-top:24px
}
.unlimited-list strong {
  font-size:13px;
  color:var(--blue)
}
.unlimited-list ul {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5px 16px;
  margin-bottom:0;
  list-style:none;
  padding:0
}
.price-note {
  font-size:12px;
  line-height:1.7;
  margin-top:18px
}
.setup {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:28px 0;
  margin-top:22px
}
.setup p {
  max-width:780px;
  font-size:14px;
  margin:10px 0 0
}
.setup>div:last-child {
  white-space:nowrap;
  color:var(--blue)
}
.compare-table {
  border:1px solid var(--line);
  border-radius:12px;
  overflow:auto;
  background:white
}
table {
  width:100%;
  border-collapse:collapse;
  text-align:left;
  font-size:14px;
  line-height:1.5
}
th,td {
  padding:18px 22px;
  border-bottom:1px solid var(--line)
}
th {
  background:#e4edf6;
  color:var(--blue)
}
td {
  color:var(--muted)
}
td strong {
  color:var(--text)
}
tr:last-child td {
  border-bottom:0
}
.yes {
  color:var(--blue)
}
.no {
  color:var(--red)
}
.steps {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  counter-reset:steps
}
.step {
  border-top:2px solid #b6cbe2;
  padding-top:24px
}
.step:before {
  counter-increment:steps;
  content:'0' counter(steps);
  display:block;
  color:var(--blue);
  font-size:14px;
  font-weight:700;
  margin-bottom:24px
}
.step h3 {
  font-size:20px;
  letter-spacing:-.5px
}
.step p {
  font-size:14px
}
.faq {
  max-width:880px;
  margin:auto
}
.faq-item {
  border-bottom:1px solid var(--line)
}
.faq-q {
  background:none;
  border:0;
  width:100%;
  padding:24px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  text-align:left;
  color:var(--text);
  font-size:17px;
  font-weight:600
}
.faq-q span {
  color:var(--blue);
  font-size:24px
}
.faq-a {
  height:0;
  overflow:hidden;
  opacity:0;
  transition:height 240ms var(--ease-out),opacity 200ms var(--ease-out);
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
  max-width:800px
}
.faq-item.open .faq-a {
  height:auto;
  opacity:1
}
.faq-a-content { padding-bottom:24px; }
.faq-q span { transition:transform 200ms var(--ease-out); color:var(--logo-violet); }
.faq-item.open .faq-q span { transform:rotate(45deg); }
footer {
  padding:36px 0 100px;
  border-top:1px solid var(--line)
}
.footer-row {
  display:flex;
  justify-content:space-between;
  gap:40px;
  align-items:center
}
.footer-meta {
  font-size:12px;
  color:var(--muted);
  text-align:right;
  line-height:1.7
}
.footer-links {
  display:flex;
  gap:20px;
  justify-content:flex-end;
  margin-top:12px
}
.footer-links a:hover {
  text-decoration:underline
}
.qual-chat-button {
  background:var(--blue);
  color:white;
  box-shadow:0 8px 24px #27456825;
  border-radius:8px;
  font-size:13px;
  min-height:48px
}
.qual-chat {
  background:white;
  border-color:var(--line);
  border-radius:12px;
  box-shadow:0 16px 50px #26476c30;
  max-height:calc(100dvh - 115px);
  overflow:auto;
  visibility:hidden
}
.qual-chat.open {
  visibility:visible
}
.qual-chat__head {
  background:var(--bg)
}
.qual-chat__bubble,.qual-chat__field,.qual-chat__option {
  background:#f6f8fb;
  border-color:var(--line);
  border-radius:7px
}
.qual-chat__bar {
  background:var(--blue)
}
.qual-chat__progress {
  background:var(--bg)
}
.qual-chat__option.is-selected {
  border-color:var(--blue);
  background:#e5edf7
}
.qual-chat__close {
  background:#dfe8f3
}
.qual-chat__close svg {
  width:20px
}
.qual-chat__actions .btn {
  min-width:0
}
.qual-chat__field:focus-visible {
  outline:2px solid var(--blue)
}
@media(min-width:1500px) {
  .hero {
    padding:110px 0
  }
  .hero-visual {
    padding:48px 24px
  }
}
@media(max-width:1050px) {
  .container {
    width:calc(100% - 48px)
  }
  .menu {
    gap:18px
  }
  .hero-grid {
    gap:28px;
    grid-template-columns:1fr 1fr
  }
  h1 {
    font-size:49px
  }
  .hero-visual {
    padding:24px 12px
  }
  .sidebar {
    display:none
  }
  .app {
    grid-template-columns:1fr
  }
  .grid-4 {
    grid-template-columns:1fr 1fr
  }
  .module:nth-child(odd) {
    padding-left:0
  }
  .systems-row {
    grid-template-columns:repeat(4,1fr);
    gap:24px
  }
  .steps {
    grid-template-columns:1fr 1fr
  }
  .pricing {
    grid-template-columns:1fr 1fr
  }
  .price-card {
    padding:24px
  }
  .price {
    font-size:38px
  }
  .calc-box {
    padding:24px
  }
  .saving-card {
    padding:12px
  }
}
@media(max-width:760px) {
  html {
    scroll-padding-top:90px
  }
  .container {
    width:calc(100% - 36px)
  }
  .nav {
    height:76px;
    gap:12px
  }
  .brand {
    font-size:24px;
    gap:8px
  }
  .logo {
    width:32px
  }
  .menu {
    display:none
  }
  .nav .btn {
    font-size:11px;
    padding:11px 13px;
    min-height:42px
  }
  .hero {
    padding:48px 0
  }
  .hero-grid {
    grid-template-columns:1fr;
    gap:38px
  }
  h1 {
    font-size:49px;
    letter-spacing:-2.6px
  }
  .lead {
    font-size:17px
  }
  .kicker {
    font-size:10px;
    letter-spacing:1.5px;
    margin-bottom:20px
  }
  .hero-actions .btn {
    padding:13px 17px
  }
  .trust-row {
    font-size:10px
  }
  .hero-visual {
    padding:24px 16px
  }
  .mainpanel {
    padding:20px 16px
  }
  .panel-heading h3 {
    font-size:18px
  }
  .kpi small {
    font-size:9px
  }
  .lead-card strong {
    font-size:11px
  }
  .lead-card span {
    font-size:9px
  }
  .section {
    padding:58px 0
  }
  .section-header {
    margin-bottom:30px
  }
  .section-header h2 {
    font-size:34px;
    letter-spacing:-1.4px
  }
  .section-header p {
    font-size:15px
  }
  .center {
    text-align:left
  }
  .grid-2,.grid-3,.calc,.pricing {
    grid-template-columns:1fr;
    gap:20px
  }
  .grid-3 .card {
    border-top:1px solid var(--line);
    padding:22px 0
  }
  .card h3 {
    font-size:20px
  }
  .grid-4 {
    gap:0 18px
  }
  .module,.module:nth-child(4n+1) {
    padding:24px 0
  }
  .module h3 {
    font-size:18px
  }
  .module p {
    font-size:13px
  }
  .systems-strip {
    padding:24px 14px
  }
  .systems-row {
    grid-template-columns:repeat(2,1fr)
  }
  .one-platform {
    font-size:14px;
    line-height:1.6
  }
  .demo-tabs {
    display:grid;
    grid-template-columns:1fr 1fr
  }
  .demo-tabs button {
    padding:12px;
    font-size:12px
  }
  .extension-frame {
    overflow-x:auto
  }
  .extension-frame img {
    min-width:680px;
    max-width:none;
    width:100%
  }
  .extension-frame figcaption {
    position:sticky;
    left:0;
    max-width:calc(100vw - 40px);
    font-size:12px;
    padding:16px
  }
  .extension-note {
    font-size:11px
  }
  .calc-box h3 {
    font-size:26px!important
  }
  .price-card {
    padding:25px
  }
  .price {
    font-size:42px
  }
  .setup {
    display:block
  }
  .setup>div:last-child {
    margin-top:18px
  }
  .steps {
    gap:26px 18px
  }
  .step h3 {
    font-size:18px
  }
  .step p {
    font-size:13px
  }
  th,td {
    padding:14px 12px;
    font-size:12px
  }
  .compare-table table {
    min-width:520px
  }
  .faq-q {
    font-size:15px
  }
  .footer-row {
    align-items:flex-start;
    flex-direction:column;
    gap:24px
  }
  .footer-meta {
    text-align:left
  }
  .footer-links {
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:16px
  }
  .qual-chat {
    right:12px;
    bottom:76px;
    width:calc(100vw - 24px)
  }
  .qual-chat-button {
    right:12px;
    bottom:14px
  }
  .qual-chat__body {
    padding:14px
  }
  .qual-chat__head {
    padding:14px
  }
  .qual-chat__option {
    padding:10px;
    font-size:13px
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*:before,*:after {
    transition:none!important;
    animation:none!important
  }
}
@media(max-width:760px) {
  .extension-frame {
    overflow:hidden
  }
  .extension-frame img {
    width:100%;
    min-width:0;
    height:430px;
    object-fit:cover;
    object-position:right top
  }
  .extension-frame figcaption {
    position:static;
    max-width:none
  }
  .extension-note:before {
    content:'Use as abas para explorar os recursos. ';
    font-weight:700
  }
}
@media(max-width:760px) {
  h1 {
    font-size:44px;
    letter-spacing:-2.4px
  }
  .hero-actions {
    gap:10px
  }
  .hero-actions .btn {
    font-size:13px;
    padding:13px 14px
  }
}

/* Brand accents: keep the reading surfaces quiet. */
.card,.sys,.step { --detail:var(--logo-blue); }
.card:nth-child(3n+2),.sys:nth-child(3n+2),.step:nth-child(3n+2) { --detail:var(--logo-violet); }
.card:nth-child(3n),.sys:nth-child(3n),.step:nth-child(3n) { --detail:#2d97e9; }
.icon,.sys-icon,.step:before { color:var(--detail); }
.icon { display:grid; place-items:center; width:44px; height:44px; border-radius:12px; background:color-mix(in srgb,var(--detail) 8%,white); }
.step { border-top-color:color-mix(in srgb,var(--detail) 35%,var(--line)); }
.trust-row span:first-child { border-color:var(--logo-cyan); }
.trust-row span:nth-child(2) { border-color:var(--logo-blue); }
.trust-row span:nth-child(3) { border-color:var(--logo-violet); }
.product-shell { border-bottom:3px solid transparent; background:linear-gradient(white,white) padding-box,linear-gradient(90deg,var(--logo-cyan),var(--logo-blue),var(--logo-violet)) border-box; }
.next-task { border-left-color:var(--logo-violet); }
.side-item.active svg { color:var(--logo-blue); }
.kicker:before { content:''; display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--logo-cyan); margin-right:10px; }
.demo-tabs button[aria-pressed=true] { box-shadow:inset 0 -3px var(--logo-cyan); }
.qual-chat-button svg { color:var(--logo-cyan); }
.qual-chat__bar { background:linear-gradient(90deg,var(--logo-cyan),var(--logo-blue),var(--logo-violet)); transition:none; }
.reveal.motion-ready { opacity:0; transform:translateY(16px); transition:opacity 500ms var(--ease-out),transform 500ms var(--ease-out); }
.reveal.motion-ready.visible { opacity:1; transform:none; }
.grid-3 .motion-ready:nth-child(2),.grid-4 .motion-ready:nth-child(2),.steps .motion-ready:nth-child(2) { transition-delay:50ms; }
.grid-3 .motion-ready:nth-child(3),.grid-4 .motion-ready:nth-child(3),.steps .motion-ready:nth-child(3) { transition-delay:100ms; }
.grid-4 .motion-ready:nth-child(4),.steps .motion-ready:nth-child(4) { transition-delay:150ms; }
.btn { transition:transform 150ms var(--ease-out),background 150ms ease; }
.demo-tabs button { transition:background 180ms ease,color 180ms ease,border-color 180ms ease; }
.qual-chat { transform-origin:bottom right; transition:opacity 240ms var(--ease-out),transform 240ms var(--ease-out),visibility 0s 240ms; }
.qual-chat.open { transition-delay:0s; }
@media(hover:hover) and (pointer:fine) {
  .btn:hover { transform:translateY(-2px); }
  .btn:active { transform:translateY(1px); }
}
@media(prefers-reduced-motion:reduce) {
  .reveal.motion-ready { opacity:1; transform:none; }
  .btn:hover,.btn:active,.qual-chat,.qual-chat.open { transform:none; }
}

.grad { color:#6116be; }
.kicker,.pill { color:#054ad7; }

/* The header mark assembles once; other logo instances stay static.
   Geometry and paint order come from assets/unitymob-icon.svg. */
#header .logo-assembly { display:block; width:100%; height:46px; overflow:visible; }
@media(prefers-reduced-motion:no-preference) {
  #header .logo-assembly path {
    animation:logo-assemble 800ms var(--ease-out) var(--piece-delay) both;
  }
  @keyframes logo-assemble {
    from { opacity:0; transform:translate(var(--piece-x),var(--piece-y)); }
    to { opacity:1; transform:translate(0,0); }
  }
}
