:root {
  --bg: #000000;
  --bg-soft: #070a12;
  --bg-card: #0c111c;
  --ink: #f4f7fb;
  --ink-dim: #8b95a8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --blue: #3aa0ff;
  --blue-hot: #7ec8ff;
  --blue-deep: #1a6fd4;
  --violet: #8b5cf6;
  --grad: linear-gradient(135deg, #3aa0ff 0%, #6d7dff 48%, #8b5cf6 100%);
  --green: #34d399;
  --amber: #fbbf24;
  --red: #f87171;
  --font: "Space Grotesk", "Segoe UI", sans-serif;
  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 1rem;
  --header-h: 4.35rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 80;
}

.skip:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.shell {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-hot);
}

.kicker-glow {
  text-shadow: 0 0 24px rgba(58, 160, 255, 0.45);
}

/* ── Header ─────────────────────────────────────────── */

.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.85rem 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

body.is-scrolled .top,
body.nav-open .top {
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(0.8);
  -webkit-backdrop-filter: blur(18px) saturate(0.8);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

body.nav-open .top {
  background: rgba(0, 0, 0, 0.55);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  body.is-scrolled .top,
  body.nav-open .top {
    background: rgba(0, 0, 0, 0.55);
  }
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-brand img {
  height: 22px;
  width: auto;
}

.top-login {
  display: none;
  color: var(--ink);
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 0.6rem;
}

.top-login:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.nav-scrim {
  display: none;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-mark {
  display: none;
}

.top-nav a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color 0.2s ease;
}

.top-nav a:not(.btn):hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  margin: 0.22rem auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Buttons ────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.65rem;
  padding: 0.8rem 1.35rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.95rem 1.55rem;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--grad);
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(58, 160, 255, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--blue-hot);
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

/* ── Hero ───────────────────────────────────────────── */

.hero {
  position: relative;
  isolation: isolate;
  padding: calc(3.5rem + var(--header-h)) 0 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(58, 160, 255, 0.22), transparent 58%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(139, 92, 246, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(26, 111, 212, 0.12), transparent 50%),
    linear-gradient(180deg, #000 0%, #05070c 55%, #000 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  opacity: 0.45;
  animation: grid-drift 28s linear infinite;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  text-align: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-lead,
.lead {
  margin: 1.1rem auto 0;
  max-width: 40rem;
  font-size: 1.08rem;
  color: var(--ink-dim);
}

.lead-wide {
  max-width: 46rem;
  margin-left: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.os-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.os-row li {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.03);
}

/* ── Product stage ──────────────────────────────────── */

.stage-wrap {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 1.5rem));
  margin: 3rem auto 0;
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.stage {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 1.15rem;
  background: rgba(8, 12, 20, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.stage-glow {
  position: absolute;
  inset: auto 10% -40% 10%;
  height: 60%;
  background: radial-gradient(circle, rgba(58, 160, 255, 0.22), transparent 65%);
  pointer-events: none;
}

.stage-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-dim);
}

.stage-dots {
  display: flex;
  gap: 0.35rem;
}

.stage-dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #3a3f4a;
}

.stage-dots span:nth-child(1) { background: #ff5f57; }
.stage-dots span:nth-child(2) { background: #febc2e; }
.stage-dots span:nth-child(3) { background: #28c840; }

.stage-url {
  flex: 1;
  text-align: center;
  opacity: 0.8;
}

.stage-live {
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-live::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.stage-tabs {
  display: flex;
  gap: 0.35rem;
  padding: 0.7rem 0.8rem 0;
}

.stage-tabs button {
  border: 0;
  background: transparent;
  color: var(--ink-dim);
  padding: 0.45rem 0.8rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
}

.stage-tabs button.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.stage-panel {
  display: none;
  padding: 0;
}

.stage-panel.is-active {
  display: flex;
  flex-direction: column;
}

.stage-panel.is-active .ox {
  flex: 1 1 auto;
}

.ui-app {
  display: grid;
  grid-template-columns: 11rem 1fr;
  min-height: 20rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  overflow: hidden;
  background: #080c14;
}

.ui-side {
  padding: 1rem 0.8rem;
  border-right: 1px solid var(--line);
  background: #05080f;
}

.ui-side-label {
  margin: 0 0 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.ui-nav {
  display: block;
  padding: 0.4rem 0.55rem;
  border-radius: 0.45rem;
  font-size: 0.8rem;
  color: var(--ink-dim);
}

.ui-nav.is-on {
  color: var(--ink);
  background: rgba(58, 160, 255, 0.12);
}

.ui-main {
  padding: 0.85rem;
}

.ui-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  color: var(--ink-dim);
}

.ui-search {
  opacity: 0.7;
}

.ui-row {
  display: grid;
  grid-template-columns: 0.7rem 1fr 7.5rem auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.ui-row div strong {
  display: block;
}

.ui-row div em {
  font-style: normal;
  color: var(--ink-dim);
  font-size: 0.72rem;
}

.ui-row.dim {
  opacity: 0.55;
}

.ui-row.warn {
  background: rgba(248, 113, 113, 0.06);
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4b5563;
}

.dot.on {
  background: var(--green);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.7);
}

.ui-metric {
  position: relative;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--ink-dim);
}

.ui-metric i,
.ui-metric [data-bar] {
  display: block;
  height: 3px;
  margin-top: 0.3rem;
  width: 40%;
  border-radius: 99px;
  background: var(--blue);
}

.ui-metric.hot {
  color: var(--red);
}

.ui-metric.hot i {
  background: var(--red);
}

.ui-chip {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(58, 160, 255, 0.16);
  color: var(--blue-hot);
}

.ui-chip.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink-dim);
}

.ui-chip.warn {
  background: rgba(248, 113, 113, 0.16);
  color: #fecaca;
}

.session-frame {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  overflow: hidden;
  min-height: 20rem;
}

.session-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.65rem 0.9rem;
  background: #0b1220;
  font-size: 0.8rem;
}

.session-actions {
  display: flex;
  gap: 0.4rem;
}

.session-actions span {
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 0.7rem;
}

.session-actions .is-on {
  color: #fff;
  background: rgba(58, 160, 255, 0.25);
  border-color: transparent;
}

.session-desk {
  position: relative;
  min-height: 17rem;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(2, 6, 23, 0.55)),
    radial-gradient(circle at 20% 20%, rgba(58, 160, 255, 0.2), transparent 40%),
    #1a2744;
}

.desk-taskbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.7rem;
  background: rgba(15, 23, 42, 0.88);
  font-size: 0.72rem;
}

.desk-start {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 0.2rem;
  background: var(--grad);
}

.desk-clock {
  margin-left: auto;
}

.desk-window {
  position: absolute;
  left: 8%;
  top: 12%;
  width: min(28rem, 78%);
  border-radius: 0.5rem;
  overflow: hidden;
  background: #0b0f18;
  border: 1px solid var(--line-strong);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.desk-window header {
  padding: 0.4rem 0.7rem;
  font-size: 0.72rem;
  background: #121826;
}

.desk-window pre {
  margin: 0;
  padding: 0.8rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #d1fae5;
  white-space: pre-wrap;
}

.session-cursor {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px 10px 10px;
  background: #fff;
  top: 38%;
  left: 42%;
  animation: cursor-travel 5.5s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.session-note {
  position: absolute;
  left: 1rem;
  bottom: 2.4rem;
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}

.patch-board,
.flow {
  padding: 1rem 0.6rem 0.4rem;
}

.patch-score {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ring {
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, #0b1220 58%, transparent 59%),
    conic-gradient(#34d399 0 96%, rgba(255, 255, 255, 0.08) 96% 100%);
}

.ring span {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
}

.patch-score h3 {
  margin: 0;
  font-size: 1.6rem;
}

.patch-score p {
  margin: 0.2rem 0 0;
  color: var(--ink-dim);
  font-size: 0.88rem;
}

.patch-os {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.patch-os > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr 2.5rem;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.82rem;
}

.patch-os .bar,
.util-bars span {
  display: block;
  height: 0.38rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.patch-os i,
.util-bars i {
  display: block;
  height: 100%;
  background: var(--grad);
}

.patch-os em {
  font-style: normal;
  color: var(--ink-dim);
  text-align: right;
}

.patch-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.patch-policy li {
  font-size: 0.72rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-dim);
}

.flow {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.flow-node {
  width: min(28rem, 100%);
  text-align: center;
  padding: 0.7rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  background: #0b1220;
  font-size: 0.88rem;
  font-weight: 600;
}

.flow-node.if { border-color: rgba(58, 160, 255, 0.45); }
.flow-node.act { border-color: rgba(139, 92, 246, 0.45); }
.flow-node.check { border-color: rgba(251, 191, 36, 0.4); }
.flow-node.yes { border-color: rgba(52, 211, 153, 0.45); }
.flow-node.no { border-color: rgba(248, 113, 113, 0.45); }

.flow-join {
  width: 1px;
  height: 0.7rem;
  background: var(--line-strong);
}

.flow-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  width: min(36rem, 100%);
}

.flow-meta {
  margin: 0.6rem 0 0;
  color: var(--ink-dim);
  font-size: 0.78rem;
}

/* ── Marquee / sections ─────────────────────────────── */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 0.85rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-size: 0.82rem;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding: 5.5rem 0;
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.section-dim {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: end;
}

.split h2,
.feature-copy h2,
.center-copy h2,
.trio h2,
.page h1,
.band h2,
.cta-inner h2,
.faq h2,
.price-aside h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  letter-spacing: -0.028em;
  line-height: 1.12;
}

.split-lead,
.feature-copy p,
.center-copy p,
.trio p,
.price-aside > p,
.faq p,
.feature-note {
  color: var(--ink-dim);
  font-size: 1.05rem;
}

.center-copy {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.compare-col {
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.compare-col.hot {
  border-color: rgba(58, 160, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(58, 160, 255, 0.08) inset, 0 16px 40px rgba(58, 160, 255, 0.08);
}

.compare-col h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.compare-col.muted h3 {
  color: var(--ink-dim);
}

.compare-col ul,
.check-list,
.mini-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.compare-col li,
.check-list li,
.mini-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-dim);
}

.compare-col.hot li {
  color: var(--ink);
}

.compare-col li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 1px;
  background: var(--blue);
}

.compare-col.muted li::before {
  background: #4b5563;
}

.mini-points {
  margin-top: 1.35rem;
}

.mini-points strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: stretch;
}

.feature-row.invert {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature-row.invert .feature-copy {
  order: 2;
}

.vdi-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.vdi-card {
  padding: 1.1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: var(--bg-card);
  min-height: 6.5rem;
}

.vdi-card b {
  display: block;
  margin-bottom: 0.35rem;
}

.vdi-card span {
  color: var(--ink-dim);
  font-size: 0.8rem;
}

.vdi-card.vdi { border-color: rgba(139, 92, 246, 0.35); }
.vdi-card.app { border-color: rgba(16, 185, 129, 0.35); }
.vdi-card.url { border-color: rgba(58, 160, 255, 0.35); }

.util-card,
.grade-card {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.util-card header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.util-card header em {
  display: block;
  font-style: normal;
  color: var(--ink-dim);
  font-size: 0.8rem;
}

.util-bars {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.55rem 0.7rem;
  align-items: center;
  font-size: 0.8rem;
}

.util-bars .hot i {
  background: linear-gradient(90deg, #f97316, #f87171);
}

.util-actions {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.util-actions span {
  font-size: 0.72rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.45rem;
  border: 1px solid var(--line);
  color: var(--ink-dim);
}

.grade-word {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-size: 3rem;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grade-sub {
  margin: 0;
}

.grade-legend {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  color: var(--ink-dim);
  font-size: 0.85rem;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.template-grid article {
  padding: 1rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--bg-card);
}

.template-grid h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}

.template-grid p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.8rem;
}

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trio article {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--bg-card);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  padding: 1.25rem 1.1rem;
  border-top: 1px solid rgba(58, 160, 255, 0.35);
}

.steps span {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--blue-hot);
  margin-bottom: 0.6rem;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  color: var(--ink-dim);
}

/* ── Free band / CTA / footer ───────────────────────── */

.band {
  position: relative;
  padding: 5.5rem 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(58, 160, 255, 0.12), transparent 55%),
    var(--bg-soft);
}

.band-lead {
  margin: 1.1rem 0 0;
  max-width: 32rem;
  color: var(--ink-dim);
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.stat {
  padding: 1.8rem 0 0;
  border-right: 1px solid var(--line);
}

.stat:not(:first-child) {
  padding-left: 2rem;
}

.stat:last-child {
  border-right: 0;
}

.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  background: linear-gradient(180deg, #fff 30%, var(--blue-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  display: block;
  margin-top: 0.7rem;
  color: var(--ink-dim);
}

.band .btn {
  margin-top: 2.2rem;
}

.cta-band {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(139, 92, 246, 0.16), transparent 60%),
    #000;
}

.cta-inner {
  text-align: center;
}

.cta-inner p {
  color: var(--ink-dim);
  margin: 0.9rem auto 0;
  max-width: 32rem;
}

.cta-inner .hero-actions {
  margin-top: 1.5rem;
}

.foot {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.5rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 2rem;
}

.foot-brand img {
  height: 18px;
  width: auto;
  opacity: 0.9;
  margin-bottom: 0.85rem;
}

.foot-brand p,
.foot-bottom p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.88rem;
}

.foot-heading {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.foot-grid a {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--ink-dim);
}

.foot-grid a:hover {
  color: var(--ink);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.to-top {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 1.25rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  color: #7b8494;
  background: #08090d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

.to-top:hover {
  color: #cbd5e1;
  background: #05060a;
  border-color: rgba(255, 255, 255, 0.1);
}

.to-top:focus-visible {
  outline: 2px solid rgba(148, 163, 184, 0.55);
  outline-offset: 3px;
}

/* ── Inner pages ────────────────────────────────────── */

.page {
  padding: calc(3.5rem + var(--header-h)) 0 2rem;
  min-height: 40vh;
}

.page-hero {
  padding-bottom: 0;
}

.page-narrow {
  width: min(440px, calc(100% - 2rem));
  margin-inline: auto;
}

.price-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.price-card {
  padding: 1.8rem;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.price-card-featured {
  border-color: rgba(58, 160, 255, 0.4);
  box-shadow: 0 20px 60px rgba(58, 160, 255, 0.12);
}

.amount {
  font-family: var(--display);
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-dim);
  margin-left: 0.3rem;
}

.price-note {
  color: var(--ink-dim);
  margin: 0.6rem 0 1.2rem;
}

.price-card .check-list {
  margin-top: 1.4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.faq-grid article {
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--bg-card);
}

.faq-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.feature-blocks {
  display: grid;
  gap: 1rem;
}

.feature-block {
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--bg-card);
}

.sign-mark {
  width: 72px;
  margin-bottom: 1.1rem;
}

.muted-link {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-dim);
}

.muted-link a {
  color: var(--blue-hot);
  font-weight: 600;
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  padding: 0.85rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes grid-drift {
  from { transform: translateY(0); }
  to { transform: translateY(72px); }
}

/* ── Optanik product chrome ─────────────────────────── */

.ox {
  display: grid;
  grid-template-columns: 1fr;
  background:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(59, 130, 246, 0.1), transparent),
    #070b14;
  color: #f1f5f9;
  font-size: 0.78rem;
}

.stage .ox {
  min-height: 38rem;
  align-items: stretch;
}

.stage .ox-table {
  display: flex;
  flex-direction: column;
}

.stage .ox-tr {
  flex: 1 1 auto;
}

.stage .ox-tpl {
  flex: 1 1 auto;
  align-content: stretch;
}

.stage .ox-tpl article {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ox:has(.ox-side) {
  grid-template-columns: 11.5rem 1fr;
}

.ox-embed {
  min-height: 24rem;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  overflow: visible;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.feature-visual {
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.feature-visual .ox,
.feature-visual .ox-embed {
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  height: 100%;
}

.feature-visual .ox-main {
  height: 100%;
  min-height: 0;
}

.feature-visual .ox-grid {
  flex: 1 1 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  min-height: 0;
}

.feature-visual .ox-card {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.9rem 0.8rem 0.75rem;
}

.feature-visual .ox-card em {
  white-space: normal;
}

.feature-visual .ox-card-ico {
  height: 2.4rem;
}

.feature-visual .ox-ico {
  width: 1.85rem;
  height: 1.85rem;
}

.feature-visual .ox-table {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.feature-visual .ox-tr {
  flex: 1 1 auto;
  min-height: 2.5rem;
}

.feature-visual .ox-donuts {
  flex: 1 1 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  min-height: 0;
}

.feature-visual .ox-donuts > div {
  place-content: center;
}

.feature-visual .ox-donut {
  width: 8rem;
  height: 8rem;
}

.ox-wide {
  margin-top: 0.5rem;
}

.ox-side {
  padding: 0.9rem 0.7rem;
  background: #01040d;
  border-right: 1px solid rgba(148, 163, 184, 0.12);
}

.ox-phone-menu,
.ox-phone-tools {
  display: none;
}

.ox-hint {
  display: none;
}

.ox-report {
  margin-top: 0.65rem;
  padding: 0.85rem 1rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.85rem;
  background: #0e1424;
}

.ox-report-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.ox-report-head strong {
  display: block;
  font-size: 0.95rem;
}

.ox-report-head em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  color: #94a3b8;
  font-size: 0.68rem;
}

.ox-wide .ox-stats {
  grid-template-columns: repeat(3, 1fr);
}

.ox-wide .ox-donuts {
  grid-template-columns: repeat(2, 1fr);
}

.ox-wide .ox-donuts > div {
  grid-template-columns: auto 1fr;
  justify-items: start;
  text-align: left;
  align-items: center;
  padding: 0.85rem 1rem;
}

.ox-brand img {
  height: 14px;
  width: auto;
  margin-bottom: 0.75rem;
}

.ox-user {
  margin: 0 0 0.85rem;
  font-size: 0.62rem;
  color: #94a3b8;
  line-height: 1.35;
}

.ox-user b {
  display: block;
  color: #e2e8f0;
  font-weight: 600;
}

.ox-sec {
  margin: 0.7rem 0 0.3rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.ox-link {
  display: block;
  padding: 0.32rem 0.5rem;
  border-radius: 0.4rem;
  color: #94a3b8;
  font-size: 0.72rem;
}

.ox-link.is-on {
  color: #fff;
  background: rgba(59, 130, 246, 0.22);
}

.ox-main {
  padding: 0.85rem 1rem 1.25rem;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ox-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.ox-head h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.ox-head p {
  margin: 0.2rem 0 0;
  color: #94a3b8;
  font-size: 0.75rem;
}

.ox-meta {
  color: #60a5fa !important;
  font-weight: 600;
}

.ox-head-actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.ox-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.ox-btn.ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: none;
  color: #cbd5e1;
}

.ox-pills {
  display: flex;
  gap: 0.35rem;
  margin: 0.75rem 0 0.5rem;
}

.ox-pills span {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 600;
}

.ox-pills .is-on {
  background: #3b82f6;
  color: #fff;
}

.ox-cat {
  margin: 0.85rem 0 0.45rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  flex-shrink: 0;
}

.ox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.ox-card {
  position: relative;
  padding: 0.55rem 0.6rem 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: #121a2e;
  text-align: center;
  min-height: 8.4rem;
}

.ox-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ox-st {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.58rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ox-st i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #64748b;
}

.ox-st.on {
  color: #34d399;
}

.ox-st.on i {
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
}

.ox-box {
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0.15rem;
}

.ox-card-ico {
  display: grid;
  place-items: center;
  height: 2.15rem;
  margin: 0.4rem 0 0.25rem;
}

.ox-ico {
  display: inline-block;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.ox-ico svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ox-card-ico .ox-ico {
  width: 1.85rem;
  height: 1.85rem;
}

.ox-ico-chrome {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #4285f4 0 30%, #fff 31% 36%, transparent 37%),
    conic-gradient(from -90deg, #ea4335 0 120deg, #fbbc05 120deg 240deg, #34a853 240deg 360deg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ox-card strong {
  display: block;
  font-size: 0.78rem;
}

.ox-card em {
  display: block;
  font-style: normal;
  color: #94a3b8;
  font-size: 0.62rem;
  margin: 0.1rem 0 0.45rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ox-open {
  display: inline-flex;
  padding: 0.22rem 0.9rem;
  border-radius: 0.45rem;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
}

.ox-kind {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.58rem;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ox-alert {
  margin: 0.65rem 0;
  padding: 0.4rem 0.65rem;
  border-radius: 0.45rem;
  background: rgba(127, 29, 29, 0.45);
  color: #fecaca;
  font-size: 0.72rem;
}

.ox-table {
  display: grid;
  gap: 0;
  flex: 1;
}

.ox-tr {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr 0.8fr 0.5fr 0.5fr 0.5fr;
  gap: 0.4rem;
  align-items: center;
  padding: 0.42rem 0.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.ox-table.compact .ox-tr {
  grid-template-columns: 1.4fr 1fr 0.8fr 0.55fr;
}

.ox-tr.hd {
  border-top: 0;
  color: #64748b;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ox-tr.hot {
  background: rgba(248, 113, 113, 0.06);
}

.ox-tr.dim {
  opacity: 0.55;
}

.ox-tr .ox-ico {
  width: 0.85rem;
  height: 0.85rem;
  margin-right: 0.35rem;
  vertical-align: -2px;
}

.ox-pill {
  display: inline-flex;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ox-pill.on {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
}

.ox-pill.off {
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
}

.crit {
  color: #f87171;
  font-weight: 700;
}

.ox-overview {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 0.7rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.85rem;
  background: #0e1424;
  flex-shrink: 0;
}

.ox-k {
  margin: 0 0 0.2rem;
  font-weight: 600;
}

.ox-overview p {
  margin: 0;
  color: #94a3b8;
}

.ox-big {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fb923c;
  line-height: 1;
  text-align: right;
}

.ox-big small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0;
}

.ox-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.ox-stats > div {
  padding: 0.55rem 0.65rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: #0e1424;
}

.ox-stats b {
  display: block;
  font-size: 1.15rem;
}

.ox-stats span {
  color: #94a3b8;
  font-size: 0.68rem;
}

.ox-donuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.7rem;
}

.ox-donuts > div,
.ox-success {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.5rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: #0e1424;
  text-align: center;
}

.ox-donuts p,
.ox-success p {
  margin: 0;
}

.ox-donuts b {
  display: block;
}

.ox-donuts span {
  color: #94a3b8;
  font-size: 0.68rem;
}

.ox-leg {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  margin-top: 0.18rem;
  color: #94a3b8;
  font-size: 0.68rem;
}

.ox-leg i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #64748b;
  flex-shrink: 0;
}

.ox-leg i.lg-ok { background: #10b981; }
.ox-leg i.lg-warn { background: #f59e0b; }
.ox-leg i.lg-bad { background: #ef4444; }
.ox-leg i.lg-win { background: #3b82f6; }
.ox-leg i.lg-lin { background: #f59e0b; }
.ox-leg i.lg-mac { background: #8b5cf6; }

.ox-donut {
  display: grid;
  place-items: center;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  color: #f8fafc;
  font-size: 0.72rem;
  font-weight: 700;
}

.ox-donut span {
  color: #f8fafc;
  font-size: 0.72rem;
  font-weight: 700;
}

.d-comp {
  background:
    radial-gradient(#0e1424 58%, transparent 59%),
    conic-gradient(#10b981 0 95%, #f59e0b 95% 100%);
}

.d-known {
  background:
    radial-gradient(#0e1424 58%, transparent 59%),
    conic-gradient(#3b82f6 0 96%, #ef4444 96% 100%);
}

.d-os {
  background:
    radial-gradient(#0e1424 58%, transparent 59%),
    conic-gradient(#3b82f6 0 29%, #f59e0b 29% 95%, #8b5cf6 95% 100%);
}

.d-ok {
  display: grid;
  place-items: center;
  background:
    radial-gradient(#0e1424 58%, transparent 59%),
    conic-gradient(#10b981 0 100%, #10b981 100%);
}

.d-ok span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.d-online {
  background:
    radial-gradient(#0e1424 58%, transparent 59%),
    conic-gradient(#10b981 0 90%, #334155 90% 100%);
}

.d-health {
  background:
    radial-gradient(#0e1424 58%, transparent 59%),
    conic-gradient(#10b981 0 62%, #f59e0b 62% 100%);
}

.ox-auto-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  margin-top: 0.7rem;
}

.ox-auto-copy {
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: #0e1424;
}

.ox-auto-copy h4 {
  margin: 0 0 0.35rem;
}

.ox-auto-copy p {
  margin: 0;
  color: #94a3b8;
}

.ox-tpl {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
}

.ox-tpl article {
  padding: 0.55rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: #121a2e;
}

.ox-tpl b {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.7rem;
}

.ox-tpl .tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ox-tpl-go {
  display: none;
}

@media (min-width: 721px) {
  .stage .ox-donuts,
  .stage .ox-tpl,
  .stage .ox-success {
    flex: none;
    align-content: start;
  }

  .stage .ox-donuts {
    gap: 0.55rem;
    margin-top: 0.65rem;
  }

  .stage .ox-donuts > div {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
    gap: 0.7rem 0.85rem;
    padding: 0.65rem 0.8rem;
  }

  .stage .ox-donuts p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
  }

  .stage .ox-donuts b {
    margin-bottom: 0.2rem;
    font-size: 0.76rem;
    color: #f8fafc;
  }

  .stage .ox-donut {
    width: 4.35rem;
    height: 4.35rem;
  }

  .stage .ox-donut span {
    font-size: 0.66rem;
  }

  .stage .ox-auto-top {
    align-items: stretch;
  }

  .stage .ox-auto-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.7rem 0.9rem;
  }

  .stage .ox-success {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem;
  }

  .stage .ox-success .ox-donut {
    width: 3.35rem;
    height: 3.35rem;
  }

  .stage .ox-success .ox-donut span {
    font-size: 0.58rem;
  }

  .stage .ox-success p {
    color: #94a3b8;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .stage .ox-tpl {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-top: 0.4rem;
  }

  .stage .ox-tpl article {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-content: unset;
    gap: 0.65rem;
    padding: 0.42rem 0.65rem;
  }

  .stage .ox-tpl b {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 600;
  }

  .stage .ox-tpl-go {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.5rem;
    border-radius: 0.38rem;
    border: 1px solid rgba(96, 165, 250, 0.32);
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
    font-size: 0.64rem;
    font-weight: 600;
  }

  .stage .ox-desk-fill.ox-table {
    flex: 1 1 auto;
    min-height: 0;
    margin-top: 0.15rem;
  }

  .stage .ox-auto-list .ox-auto-row {
    padding: 0.48rem 0.7rem;
  }
}

.tag.health { color: #34d399; }
.tag.av { color: #fb923c; }
.tag.svc { color: #a78bfa; }
.tag.patch { color: #f87171; }

.ox-auto-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: #0e1424;
}

.ox-auto-row strong {
  display: block;
}

.ox-auto-row em {
  font-style: normal;
  color: #94a3b8;
  font-size: 0.68rem;
}

.ox-auto-list {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

.ox-auto-list .ox-auto-row {
  margin-top: 0;
}

.ox-phone-only {
  display: none;
}

.ox-search {
  padding: 0.4rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #64748b;
  min-width: 10rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes cursor-travel {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(90px, 28px); }
  70% { transform: translate(30px, 64px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg::after,
  .marquee-track,
  .session-cursor,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  .to-top {
    transition: none;
  }

  .top-nav,
  .nav-scrim {
    transition: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  body.is-scrolled .top,
  body.nav-open .top {
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 980px) {
  .split,
  .compare,
  .feature-row,
  .feature-row.invert,
  .trio,
  .steps,
  .price-layout,
  .faq-grid,
  .foot-grid,
  .ui-app {
    grid-template-columns: 1fr;
  }

  .feature-row.invert .feature-copy {
    order: 0;
  }

  .template-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ox {
    grid-template-columns: 1fr;
  }

  .ox-side {
    display: none;
  }

  .ox-grid,
  .ox-donuts,
  .ox-stats,
  .ox-tpl,
  .ox-auto-top {
    grid-template-columns: 1fr 1fr;
  }

  .ox-wide .ox-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .ox-wide .ox-donuts {
    grid-template-columns: 1fr 1fr;
  }

  .ox-tr {
    grid-template-columns: 1.2fr 1fr 0.7fr;
  }

  .ox-tr > span:nth-child(n+4) {
    display: none;
  }

  .ox-table.compact .ox-tr {
    grid-template-columns: 1.3fr 1fr 0.8fr 0.55fr;
  }

  .ox-table.compact .ox-tr > span:nth-child(n+4) {
    display: revert;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:not(:first-child) {
    border-right: 0;
    padding: 1.4rem 0 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(1180px, calc(100% - 1.4rem));
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
    z-index: 1;
  }

  .top {
    z-index: 60;
  }

  body.nav-open .top {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  body.nav-open .top-login,
  body.nav-open .top-brand {
    visibility: hidden;
  }

  body.nav-open .nav-toggle {
    pointer-events: auto;
  }

  .top-inner {
    display: grid;
    grid-template-columns: 2.5rem 1fr 2.5rem;
    align-items: center;
    gap: 0.5rem;
  }

  .top-login {
    display: grid;
  }

  .top-brand {
    justify-self: center;
  }

  .nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 50;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
  }

  body.nav-open .nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .top-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 55;
    width: min(19.5rem, 84vw);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 0.9rem) 1.35rem 2rem;
    background: #000;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 24px 0 60px rgba(0, 0, 0, 0.55);
    transform: translateX(-105%);
    visibility: hidden;
    transition: transform 0.32s ease, visibility 0.32s ease;
  }

  body.nav-open .top-nav {
    transform: none;
    visibility: visible;
  }

  .nav-mark {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.15rem 0 1rem;
    margin: 0 0 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-mark img {
    display: block;
    width: min(12.5rem, 86%);
    height: auto;
  }

  .top-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .top-nav a.nav-mark {
    padding: 0.15rem 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .top-nav .btn {
    margin-top: 1.15rem;
    width: 100%;
  }

  .ui-row {
    grid-template-columns: 0.7rem 1fr auto;
  }

  .ui-metric {
    display: none;
  }

  .flow-split {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
  }

  .ox-desk-fill {
    display: none !important;
  }

  .ox-phone-only {
    display: flex;
  }

  .stage {
    border-radius: 1rem;
  }

  .stage .ox,
  .ox-wide {
    min-height: 0;
  }

  .ox:has(.ox-side) {
    grid-template-columns: 1fr;
  }

  .ox-side {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.55rem 0.8rem;
    background: #050814;
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  }

  .ox-phone-menu {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.55rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 0.4rem;
    color: #e2e8f0;
    font-size: 0.72rem;
    font-weight: 600;
  }

  .ox-phone-tools {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #e2e8f0;
  }

  .ox-bell,
  .ox-exit {
    position: relative;
    display: grid;
    place-items: center;
    width: 1.45rem;
    height: 1.45rem;
    border: 0;
    background: transparent;
    color: inherit;
  }

  .ox-bell svg,
  .ox-exit svg {
    display: block;
    width: 1.35rem;
    height: 1.35rem;
  }

  .ox-bell i {
    position: absolute;
    top: -0.28rem;
    right: -0.38rem;
    min-width: 0.95rem;
    height: 0.95rem;
    padding: 0 0.18rem;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.58rem;
    font-style: normal;
    font-weight: 700;
    line-height: 0.95rem;
    text-align: center;
    box-shadow: 0 0 0 1.5px #050814;
  }

  .ox-brand {
    flex: 1;
    text-align: center;
  }

  .ox-brand img {
    height: 15px;
    margin: 0 auto;
  }

  .ox-user,
  .ox-sec,
  .ox-link {
    display: none;
  }

  .ox-main {
    padding: 0.7rem 0.75rem 1rem;
  }

  .ox-head {
    display: contents;
  }

  .ox-head-copy {
    order: 0;
  }

  .ox-head-copy h3 {
    font-size: 1.55rem;
  }

  .ox-pills {
    order: 1;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin: 0.55rem -0.15rem 0.35rem;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

  .ox-pills::-webkit-scrollbar {
    display: none;
  }

  .ox-pills span {
    flex: 0 0 auto;
  }

  .ox-hint {
    display: block;
    order: 2;
    margin: 0.15rem 0 0;
    color: #94a3b8;
    font-size: 0.68rem;
  }

  .ox-main > .ox-head-actions {
    order: 3;
    width: 100%;
    justify-content: flex-end;
    margin: 0.35rem 0 0.15rem;
  }

  .ox-cat,
  .stage .ox-grid,
  .ox-report,
  .ox-alert,
  .ox-table,
  .ox-overview,
  .ox-stats,
  .ox-donuts,
  .ox-auto-top,
  .ox-tpl,
  .ox-auto-row {
    order: 4;
  }

  .ox-cat {
    color: #f87171;
    letter-spacing: 0.08em;
  }

  .stage .ox-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .stage .ox-card {
    min-height: 0;
    padding: 0.4rem 0.35rem 0.4rem;
  }

  .stage .ox-card strong {
    font-size: 0.68rem;
  }

  .stage .ox-card em {
    font-size: 0.52rem;
    white-space: nowrap;
  }

  .stage .ox-open {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.28rem 0.2rem;
    font-size: 0.62rem;
  }

  .ox-report {
    order: 4;
    padding: 0.7rem 0.65rem 0.75rem;
  }

  .ox-report-head {
    flex-wrap: wrap;
  }

  .ox-wide .ox-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .ox-wide .ox-stats > div {
    padding: 0.45rem 0.35rem;
    text-align: center;
  }

  .ox-wide .ox-stats b {
    font-size: 1rem;
  }

  .ox-wide .ox-stats span {
    font-size: 0.52rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .ox-wide .ox-donuts {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .ox-wide .ox-donuts > div {
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
    padding: 0.7rem 0.75rem;
  }

  .ox-wide .ox-donut {
    width: 5.4rem;
    height: 5.4rem;
  }
}
