:root {
  --ink: #0b1322;
  --ink-2: #111d31;
  --paper: #f6f7f3;
  --white: #ffffff;
  --muted: #607087;
  --line: #dce3e8;
  --blue: #2864ff;
  --blue-soft: #e9efff;
  --teal: #1fb89a;
  --teal-soft: #e5f7f2;
  --coral: #f36c48;
  --amber: #e9a62f;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(11, 19, 34, .10);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 227, 232, .88);
  background: rgba(246, 247, 243, .92);
  backdrop-filter: blur(16px);
}
.nav-shell { min-height: 72px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 850; letter-spacing: -.02em; }
.brand-mark-img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(11,19,34,.28);
}
.nav-links { display: flex; align-items: center; gap: 23px; margin-left: 18px; }
.nav-links a { color: #34435a; text-decoration: none; font-size: 14px; font-weight: 650; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.menu-button { display: none; margin-left: auto; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); cursor: pointer; }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; width: 19px; height: 2px; background: var(--ink); margin: 4px auto; transition: .2s; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(11,19,34,.16); }
.button.secondary { color: var(--ink); background: transparent; }
.button.blue { background: var(--blue); border-color: var(--blue); }
.button.light { background: var(--white); border-color: var(--white); color: var(--ink); }
.button.text { background: transparent; border: 0; color: var(--blue); min-height: auto; padding: 0; }

.hero { padding: 92px 0 74px; overflow: hidden; position: relative; }
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -260px;
  top: -240px;
  background: radial-gradient(circle, rgba(40,100,255,.18), rgba(40,100,255,0) 68%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; margin: 0; }
h1 { font-size: clamp(48px, 6.4vw, 78px); max-width: 860px; }
h2 { font-size: clamp(34px, 4.4vw, 54px); }
h3 { font-size: 24px; }
.hero p { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 38px; color: #536278; font-size: 13px; font-weight: 650; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(31,184,154,.12); }

.product-visual, .terminal, .ops-panel, .hub-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
  overflow: hidden;
}
.product-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(40,100,255,.13), transparent 48%, rgba(31,184,154,.10)); pointer-events: none; }
.visual-top { display: flex; align-items: center; gap: 7px; min-height: 48px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.09); color: #93a3bb; font-size: 11px; }
.visual-top i { width: 7px; height: 7px; border-radius: 50%; background: #47566c; }
.visual-top i:first-child { background: var(--coral); }
.visual-top i:nth-child(2) { background: var(--amber); }
.visual-top i:nth-child(3) { background: var(--teal); }
.visual-body { padding: 22px; position: relative; }
.workflow { display: grid; grid-template-columns: 1fr 36px 1fr; align-items: center; gap: 4px; margin-top: 15px; }
.workflow .node { min-height: 84px; padding: 15px; border: 1px solid rgba(255,255,255,.11); border-radius: 13px; background: rgba(255,255,255,.05); }
.workflow .node b { display: block; font-size: 12px; margin-bottom: 5px; }
.workflow .node small { color: #93a3bb; }
.workflow .arrow { height: 2px; background: var(--teal); position: relative; }
.workflow .arrow::after { content: ""; position: absolute; right: -1px; top: -4px; border-left: 7px solid var(--teal); border-block: 5px solid transparent; }
.event-row { display: grid; grid-template-columns: 58px 1fr auto; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.event-row:last-child { border-bottom: 0; }
.event-row time { color: #657690; }
.status { display: inline-flex; align-items: center; min-height: 25px; padding: 3px 9px; border-radius: 999px; font-size: 10px; font-weight: 850; letter-spacing: .06em; }
.status.pass { color: #62dfbf; background: rgba(31,184,154,.12); }
.status.hold { color: #ffd073; background: rgba(233,166,47,.12); }
.status.block { color: #ff8a70; background: rgba(243,108,72,.12); }

.logo-strip { padding: 25px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.45); }
.logo-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; color: #6b788a; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.stack-strip { padding: 54px 0 58px; border-bottom: 1px solid var(--line); background: #fff; }
.stack-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.stack-heading h2 { max-width: 720px; margin-top: 9px; font-size: clamp(28px, 3.2vw, 42px); }
.stack-heading p { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; }
.stack-groups { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 34px; }
.stack-group { padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: #fbfcfd; }
.stack-label { color: #536278; font-family: ui-monospace, monospace; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.stack-items { display: grid; gap: 8px; margin-top: 14px; }
.stack-item { display: grid; grid-template-columns: 28px 1fr auto; gap: 10px; align-items: center; min-height: 48px; padding: 8px 10px; border: 1px solid #e6eaee; border-radius: 12px; background: #fff; }
.stack-item img { width: 24px; height: 24px; object-fit: contain; }
.stack-item span { font-size: 14px; font-weight: 720; }
.stack-item em { padding: 3px 7px; border-radius: 999px; color: #3d5878; background: #eef3f8; font-family: ui-monospace, monospace; font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.generic-icon { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 7px; color: var(--blue); background: var(--blue-soft); font-size: 15px !important; }
.trademark-note { margin: 15px 0 0; color: #8a97a8; font-size: 11px; }

.section { padding: 96px 0; }
.section.compact { padding: 68px 0; }
.section.dark { color: var(--white); background: var(--ink); }
.section.blue-tint { background: var(--blue-soft); }
.section.teal-tint { background: var(--teal-soft); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 44px; }
.section-heading > div:first-child { max-width: 760px; }
.section-heading p { max-width: 500px; color: var(--muted); margin: 13px 0 0; }
.dark .section-heading p { color: #9bacbf; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 17px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.72); padding: 27px; }
.card h3 { margin-bottom: 11px; }
.card p { color: var(--muted); margin: 0; font-size: 15px; }
.card-link { text-decoration: none; transition: transform .2s, box-shadow .2s; }
.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card { min-height: 290px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.product-card .number { color: var(--blue); font-family: ui-monospace, monospace; font-size: 12px; font-weight: 800; }
.product-card h3 { margin-top: 34px; font-size: 28px; }
.product-card .learn { margin-top: auto; padding-top: 26px; color: var(--blue); font-weight: 750; font-size: 14px; }
.product-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -48px; top: -52px; border-radius: 40px; background: var(--blue-soft); transform: rotate(24deg); }
.product-card.paid-core { border-color: rgba(40,100,255,.42); box-shadow: 0 18px 48px rgba(40,100,255,.10); }
.product-card.paid-core::after { background: linear-gradient(135deg, rgba(40,100,255,.20), rgba(31,184,154,.18)); }

.lifecycle { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; }
.lifecycle.four { grid-template-columns: repeat(4,1fr); }
.stage { position: relative; padding: 25px 20px 25px 24px; border: 1px solid rgba(255,255,255,.12); border-right: 0; }
.stage:first-child { border-radius: 16px 0 0 16px; }
.stage:last-child { border-right: 1px solid rgba(255,255,255,.12); border-radius: 0 16px 16px 0; }
.stage span { display: block; color: var(--teal); font-family: ui-monospace, monospace; font-size: 11px; font-weight: 800; }
.stage b { display: block; margin-top: 16px; font-size: 17px; }
.stage small { display: block; color: #91a2b7; margin-top: 8px; }

.audience-section { background: linear-gradient(180deg, var(--paper), #fff); }
.audience-card { min-height: 330px; }
.audience-card .number { color: var(--blue); font-family: ui-monospace, monospace; font-size: 12px; font-weight: 800; }
.audience-card h3 { margin-top: 28px; font-size: 29px; }
.mini-list { display: grid; gap: 9px; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; color: #44536a; font-size: 14px; }
.mini-list li { position: relative; padding-left: 18px; }
.mini-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.trigger-band { display: grid; grid-template-columns: 180px 1fr; gap: 26px; align-items: center; margin-top: 22px; padding: 25px 28px; border-radius: 18px; color: var(--white); background: var(--ink); }
.trigger-band strong { color: #63dfc0; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.trigger-band span { font-size: clamp(17px, 2vw, 21px); font-weight: 700; letter-spacing: -.02em; }

.run-section { color: var(--white); background: #081120; }
.run-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; align-items: center; }
.run-copy h2 { margin-top: 18px; }
.run-copy > p { color: #9bacbf; font-size: 17px; margin: 22px 0 0; }
.run-legend { display: grid; gap: 0; margin-top: 30px; border-block: 1px solid rgba(255,255,255,.12); }
.run-legend div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.run-legend div:last-child { border-bottom: 0; }
.run-legend b { color: #63dfc0; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.run-legend span { color: #dbe5f2; font-size: 14px; }
.run-copy .simulation-note { font-size: 12px; color: #71839a; }
.run-console { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: #0d192b; box-shadow: 0 28px 80px rgba(0,0,0,.35); }
.run-console .visual-top { justify-content: flex-start; }
.run-id { margin-left: auto; color: #63dfc0; font-family: ui-monospace, monospace; }
.run-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.08); }
.run-summary div { padding: 16px 18px; background: #0d192b; }
.run-summary span, .run-summary strong { display: block; }
.run-summary span { color: #71839a; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.run-summary strong { margin-top: 4px; font-size: 14px; }
.run-timeline { padding: 12px 22px; }
.run-event { display: grid; grid-template-columns: 16px 1fr auto; gap: 13px; align-items: center; min-height: 66px; border-bottom: 1px solid rgba(255,255,255,.07); opacity: .46; transition: opacity .25s, background .25s; }
.run-event:last-child { border-bottom: 0; }
.run-event b, .run-event small { display: block; }
.run-event b { font-size: 14px; }
.run-event small { margin-top: 3px; color: #8292a9; }
.run-event em { color: #71839a; font-family: ui-monospace, monospace; font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .06em; }
.run-dot { width: 9px; height: 9px; border-radius: 50%; border: 2px solid #526178; }
.run-event.active { opacity: 1; }
.run-event.active .run-dot { border-color: var(--amber); background: var(--amber); box-shadow: 0 0 0 5px rgba(233,166,47,.12); }
.run-event.complete { opacity: 1; }
.run-event.complete .run-dot { border-color: var(--teal); background: var(--teal); box-shadow: 0 0 0 5px rgba(31,184,154,.10); }
.run-event.complete em { color: #63dfc0; }
.run-event.held .run-dot { border-color: var(--amber); background: var(--amber); }
.run-event.held em { color: #ffd073; }
.run-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 22px; border-top: 1px solid rgba(255,255,255,.09); background: rgba(0,0,0,.12); }
.run-verdict span, .run-verdict small { display: block; }
.run-verdict span { font-weight: 800; }
.run-verdict small { margin-top: 3px; color: #8292a9; }
.run-console.running [data-run-button] { opacity: .7; pointer-events: none; }

.metric { padding: 26px 0; border-top: 1px solid var(--line); }
.metric b { display: block; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.04em; }
.metric span { color: var(--muted); font-size: 14px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; color: #44536a; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .42em; width: 17px; height: 17px; border-radius: 50%; background: var(--teal-soft); border: 1px solid rgba(31,184,154,.35); }
.check-list li::after { content: ""; position: absolute; left: 6px; top: .67em; width: 5px; height: 3px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }

.quote { padding: 34px; border-left: 4px solid var(--teal); background: rgba(255,255,255,.05); border-radius: 0 18px 18px 0; }
.quote blockquote { margin: 0; font-size: 23px; line-height: 1.45; letter-spacing: -.02em; }
.quote cite { display: block; margin-top: 18px; color: #94a6bb; font-size: 13px; font-style: normal; }

.steps { counter-reset: item; display: grid; gap: 0; border-top: 1px solid var(--line); }
.step { counter-increment: item; display: grid; grid-template-columns: 70px 1fr 1.2fr; gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--line); align-items: start; }
.step::before { content: "0" counter(item); color: var(--blue); font-family: ui-monospace, monospace; font-weight: 800; }
.step h3 { font-size: 21px; }
.step p { margin: 0; color: var(--muted); }

.page-hero { padding: 82px 0 64px; border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 55px; align-items: end; }
.page-hero h1 { margin-top: 15px; font-size: clamp(45px, 6vw, 72px); }
.page-hero p { color: var(--muted); font-size: 19px; max-width: 690px; margin: 22px 0 0; }
.page-hero .hero-actions { margin-top: 28px; }
.product-tag { display: inline-flex; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--white); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.data-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); background: var(--white); border-radius: 16px; overflow: hidden; }
.data-table th, .data-table td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 14px; }
.data-table th { background: var(--ink); color: var(--white); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table td:first-child { font-weight: 750; }

.trust-band { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--white); }
.trust-band > div { padding: 24px; border-right: 1px solid var(--line); }
.trust-band > div:last-child { border-right: 0; }
.trust-band b { display: block; margin-bottom: 7px; }
.trust-band span { color: var(--muted); font-size: 13px; }

.cta { padding: 58px; border-radius: 28px; color: var(--white); background: linear-gradient(135deg, var(--blue), #1742b8); display: flex; justify-content: space-between; align-items: center; gap: 35px; overflow: hidden; position: relative; }
.cta::after { content: ""; position: absolute; width: 240px; height: 240px; right: -60px; bottom: -160px; border-radius: 50%; border: 35px solid rgba(255,255,255,.10); }
.cta h2 { max-width: 700px; font-size: clamp(32px, 4vw, 48px); }
.cta p { margin: 12px 0 0; color: rgba(255,255,255,.78); }
.cta .button { flex: 0 0 auto; position: relative; z-index: 2; }

.site-footer { padding: 56px 0 30px; color: #a8b4c4; background: #07101d; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4,1fr); gap: 40px; }
.footer-grid .brand { color: var(--white); }
.footer-grid h4 { color: var(--white); margin: 0 0 14px; font-size: 13px; }
.footer-grid a { display: block; color: #9baabe; text-decoration: none; font-size: 13px; margin: 9px 0; }
.footer-grid a:hover { color: var(--white); }
.footer-note { max-width: 320px; margin-top: 17px; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.10); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s, transform .55s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-links, .nav-actions .secondary { display: none; }
  .menu-button { display: block; }
  .nav-links.open { position: absolute; display: grid; left: 20px; right: 20px; top: 76px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .hero-grid, .page-hero-grid, .split, .run-grid { grid-template-columns: 1fr; gap: 42px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .stack-groups { grid-template-columns: 1fr; }
  .lifecycle, .lifecycle.four { grid-template-columns: 1fr; }
  .stage, .stage:first-child, .stage:last-child { border: 1px solid rgba(255,255,255,.12); border-bottom: 0; border-radius: 0; }
  .stage:first-child { border-radius: 16px 16px 0 0; }
  .stage:last-child { border-bottom: 1px solid rgba(255,255,255,.12); border-radius: 0 0 16px 16px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2,1fr); }
  .trust-band { grid-template-columns: repeat(2,1fr); }
  .trust-band > div:nth-child(2) { border-right: 0; }
  .trust-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-actions .button { display: none; }
  .hero, .page-hero { padding: 64px 0 54px; }
  h1, .page-hero h1 { font-size: 44px; }
  .section { padding: 72px 0; }
  .section-heading { display: block; }
  .stack-heading { display: block; }
  .stack-heading p { margin-top: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: 1fr; }
  .workflow .arrow { width: 2px; height: 28px; justify-self: center; }
  .workflow .arrow::after { right: -4px; top: auto; bottom: -2px; border-top: 7px solid var(--teal); border-left: 5px solid transparent; border-right: 5px solid transparent; }
  .step { grid-template-columns: 48px 1fr; }
  .step p { grid-column: 2; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-band > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta { padding: 36px 28px; display: block; }
  .cta .button { margin-top: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .data-table { display: block; overflow-x: auto; }
  .trigger-band { grid-template-columns: 1fr; gap: 10px; }
  .run-summary { grid-template-columns: 1fr; }
  .run-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .logo-row span { opacity: 1; transform: none; }
}

/* ---------- Brand: orb mark + ORIVAEL wordmark with blue E (ported from the 2026-09-01 site) ---------- */
.brand-word {
  display: inline-flex;
  align-items: center;
  font-weight: 850;
  font-size: 15px;
  letter-spacing: .16em;
  color: var(--ink, #0b1322);
}
.brand-e {
  display: inline-flex;
  flex-direction: column;
  gap: 2.5px;
  margin: 0 .16em 0 .02em;
  transform: translateY(.5px);
}
.brand-e i {
  display: block;
  width: .66em;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), #1fc1ff);
  box-shadow: 0 0 6px rgba(31,193,255,.45);
}
.site-footer .brand-word, .footer-grid .brand-word { color: #fff; text-shadow: 0 0 16px rgba(90,160,255,.35); }
.footer-grid a.brand { display: inline-flex; margin: 0; }

/* ---------- Logo strip: names fade in one by one once the strip is in view ---------- */
.logo-row span { opacity: 0; transform: translateY(8px); transition: opacity .7s ease, transform .7s ease; }
.logo-row.visible span { opacity: 1; transform: none; }
.logo-row span:nth-child(2) { transition-delay: .22s; }
.logo-row span:nth-child(3) { transition-delay: .44s; }
.logo-row span:nth-child(4) { transition-delay: .66s; }
/* Runtime verdict counter: fixed-width digits so the number does not jitter while counting */
.metric b[data-count-from] { font-variant-numeric: tabular-nums; }
