:root {
  color-scheme: dark;
  --bg: #060c16;
  --bg-soft: #091321;
  --surface: #0d192a;
  --surface-raised: #122137;
  --surface-soft: #101d30;
  --line: #263d5c;
  --line-strong: #36577f;
  --text: #edf5ff;
  --muted: #a7bad3;
  --muted-strong: #c3d2e6;
  --brand: #70a8ff;
  --brand-strong: #438cff;
  --mint: #55e6bf;
  --ok: #4cdda9;
  --warn: #f8c96c;
  --danger: #ff7e87;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 28px 80px rgba(0, 5, 14, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 7% 4%, rgba(67, 140, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 93% 18%, rgba(85, 230, 191, 0.12), transparent 28rem),
    linear-gradient(180deg, #060c16 0%, #091321 52%, #060c16 100%);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(112, 168, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 168, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--warn);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.6rem 0.9rem;
  transform: translateY(-150%);
  border-radius: 8px;
  color: #07101d;
  background: var(--warn);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2.5rem), 820px);
  margin-inline: auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(54, 87, 127, 0.5);
  background: rgba(6, 12, 22, 0.86);
  backdrop-filter: blur(16px);
}

.nav-inner {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links > a:not(.btn) {
  padding: 0.55rem 0.65rem;
  border-radius: 9px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-links > a:not(.btn):hover,
.nav-links > a[aria-current="page"] {
  color: var(--text);
  background: rgba(112, 168, 255, 0.09);
}

.nav-links .btn {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.68rem 1rem;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #06121f;
  background: linear-gradient(135deg, #6da8ff 0%, #55e6bf 100%);
  box-shadow: 0 12px 34px rgba(67, 140, 255, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 15px 42px rgba(67, 140, 255, 0.34);
}

.btn-secondary {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(13, 25, 42, 0.78);
}

.btn-secondary:hover {
  border-color: var(--brand);
  background: rgba(18, 33, 55, 0.95);
}

.text-link {
  color: var(--brand);
  font-weight: 600;
  text-underline-offset: 0.2em;
}

.text-link:hover {
  color: #a9cbff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.36rem 0.7rem;
  border: 1px solid #35577f;
  border-radius: 999px;
  color: #c6dcff;
  background: rgba(20, 41, 68, 0.68);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(85, 230, 191, 0.12);
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 15ch;
  font-size: clamp(2.45rem, 5.3vw, 4.7rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.hero {
  padding: clamp(4.4rem, 9vw, 7.5rem) 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.hero .lead,
.page-hero .lead {
  max-width: 60ch;
  margin: 1.35rem 0 1.65rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted-strong);
  background: rgba(9, 19, 33, 0.72);
  font-size: 0.78rem;
}

.proof-chip::before {
  color: var(--ok);
  content: "✓";
  font-weight: 800;
}

.app-window {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(10, 20, 35, 0.95);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  background: rgba(18, 33, 55, 0.86);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.window-dots {
  display: flex;
  gap: 0.32rem;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a5476;
}

.architecture {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.arch-zone {
  position: relative;
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(12, 26, 44, 0.75);
}

.arch-zone.private {
  border-style: dashed;
  border-color: #47709b;
  background: linear-gradient(145deg, rgba(24, 47, 67, 0.78), rgba(12, 28, 46, 0.78));
}

.arch-zone-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arch-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
  align-items: center;
  gap: 0.35rem;
}

.arch-arrow {
  color: #7096c7;
  font-size: 0.92rem;
  text-align: center;
}

.arch-node {
  min-width: 0;
  padding: 0.62rem 0.7rem;
  border: 1px solid #2a4668;
  border-radius: 10px;
  color: var(--text);
  background: #101f34;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.74rem;
}

.arch-node small {
  display: block;
  overflow: hidden;
  margin-top: 0.14rem;
  color: var(--muted);
  font-family: "IBM Plex Sans", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arch-node.monitor {
  border-color: #376aa8;
  background: rgba(39, 87, 142, 0.3);
}

.arch-targets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.arch-target {
  padding: 0.52rem;
  border: 1px solid #2a4668;
  border-radius: 9px;
  color: var(--muted-strong);
  background: rgba(9, 21, 36, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
}

.arch-target span,
.health {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(76, 221, 169, 0.1);
}

.dot.down {
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 126, 135, 0.11);
}

.insight {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(248, 201, 108, 0.35);
  border-radius: 11px;
  color: #fce3aa;
  background: rgba(88, 63, 20, 0.22);
  font-size: 0.78rem;
  line-height: 1.5;
}

.insight strong {
  color: #fff1c7;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-tight {
  padding: 3.25rem 0;
}

.section-alt {
  border-block: 1px solid rgba(38, 61, 92, 0.72);
  background: rgba(6, 14, 25, 0.58);
}

.section-head {
  max-width: 740px;
  margin: 0 auto 2.35rem;
  text-align: center;
}

.section-head.left {
  margin-inline: 0;
  text-align: left;
}

.section-kicker {
  margin: 0 0 0.45rem;
  color: var(--mint);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-copy {
  max-width: 65ch;
  margin: 0.85rem auto 0;
  color: var(--muted);
  line-height: 1.72;
}

.section-head.left .section-copy {
  margin-inline: 0;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.difference-card,
.feature-card,
.step-card,
.price-card,
.source-card,
.plain-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(16, 31, 51, 0.93), rgba(9, 20, 35, 0.9));
}

.difference-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.difference-card.stackeye {
  border-color: #3c6ea3;
  background:
    radial-gradient(circle at 90% 0%, rgba(85, 230, 191, 0.1), transparent 18rem),
    linear-gradient(150deg, rgba(18, 39, 63, 0.98), rgba(9, 21, 36, 0.94));
}

.card-label {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.difference-card p,
.feature-card p,
.step-card p,
.plain-card p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.42rem;
  margin: 1.2rem 0;
  color: var(--muted-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
}

.path span:not(.path-arrow) {
  padding: 0.38rem 0.52rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 30, 0.72);
}

.path .path-arrow {
  color: var(--brand);
}

.honest-note {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--muted-strong) !important;
  font-size: 0.83rem !important;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
}

.feature-number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid #3c6292;
  border-radius: 9px;
  color: #c9ddff;
  background: rgba(44, 91, 149, 0.25);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-list,
.check-list,
.source-list {
  display: grid;
  gap: 0.52rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--mint);
  content: "→";
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.product-copy .section-copy {
  margin-inline: 0;
}

.product-note {
  margin-top: 1rem;
  padding: 0.8rem 0.9rem;
  border-left: 3px solid var(--mint);
  color: var(--muted-strong);
  background: rgba(85, 230, 191, 0.06);
  font-size: 0.83rem;
}

.ui-shell {
  padding: 0.85rem;
}

.ui-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(6, 16, 28, 0.75);
}

.ui-tab {
  flex: 1;
  padding: 0.42rem;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.ui-tab.active {
  color: var(--text);
  background: #1b3556;
}

.ui-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid #2c5d51;
  border-radius: 10px;
  color: #b8f5df;
  background: rgba(34, 105, 82, 0.15);
  font-size: 0.75rem;
}

.monitor-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.monitor-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(80px, 0.55fr) minmax(90px, 0.7fr);
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.75rem;
}

.monitor-row:last-child {
  border-bottom: 0;
}

.monitor-row.header {
  color: var(--muted);
  background: rgba(19, 35, 58, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.monitor-name {
  min-width: 0;
}

.monitor-name strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.monitor-name small {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.42rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(9, 20, 34, 0.75);
  font-size: 0.65rem;
  white-space: nowrap;
}

.badge.ok {
  border-color: rgba(76, 221, 169, 0.32);
  color: #a9f3d4;
}

.badge.down {
  border-color: rgba(255, 126, 135, 0.36);
  color: #ffc2c7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  padding: 1.3rem;
}

.step-index {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--brand);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.comparison-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #3d648f;
  border-radius: 22px;
  background:
    radial-gradient(circle at 96% 10%, rgba(85, 230, 191, 0.14), transparent 17rem),
    linear-gradient(145deg, rgba(21, 43, 70, 0.96), rgba(10, 23, 39, 0.95));
  box-shadow: var(--shadow);
}

.comparison-callout p {
  max-width: 66ch;
  margin-top: 0.65rem;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.25rem;
}

.price-card.featured {
  border-color: #4d80b7;
  box-shadow: 0 18px 48px rgba(31, 86, 145, 0.22);
}

.price-label {
  color: var(--muted-strong);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.price {
  margin-top: 0.55rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.price small {
  color: var(--muted);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
}

.price-card .feature-list {
  flex: 1;
  margin-bottom: 1.2rem;
}

.plan-badge {
  position: absolute;
  top: 0;
  right: 1rem;
  padding: 0.24rem 0.52rem;
  transform: translateY(-50%);
  border-radius: 999px;
  color: #06121f;
  background: var(--mint);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-note {
  max-width: 76ch;
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.trust-block {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.not-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.not-list li {
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted-strong);
  background: rgba(9, 20, 35, 0.68);
  font-size: 0.88rem;
}

.not-list strong {
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(11, 24, 41, 0.82);
}

.faq-list summary {
  position: relative;
  padding: 1rem 3rem 1rem 1.1rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  transform: translateY(-50%);
  color: var(--brand);
  content: "+";
  font-size: 1.3rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.final-cta {
  padding: clamp(2rem, 5vw, 3.2rem);
  border: 1px solid #3f6997;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(67, 140, 255, 0.2), transparent 22rem),
    linear-gradient(145deg, rgba(19, 40, 66, 0.98), rgba(10, 22, 38, 0.97));
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 58ch;
  margin: 0.75rem auto 1.2rem;
  color: var(--muted);
}

.page-hero {
  padding: clamp(4rem, 8vw, 6.5rem) 0 3.5rem;
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 5vw, 4.1rem);
}

.page-hero.center {
  text-align: center;
}

.page-hero.center h1,
.page-hero.center .lead {
  margin-inline: auto;
}

.breadcrumb {
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--brand);
}

.method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 2rem;
}

.install-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #08111f;
}

.install-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  background: #101d30;
}

.install-tabs span {
  padding: 0.55rem 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.install-tabs .active {
  color: var(--text);
  box-shadow: inset 0 -2px var(--brand);
}

.install-code {
  overflow-x: auto;
  margin: 0;
  padding: 1rem;
  color: #c1dbff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.74rem;
  line-height: 1.65;
  white-space: pre;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.check-type {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(12, 25, 42, 0.82);
}

.check-type code {
  color: var(--mint);
  font-size: 0.79rem;
}

.check-type p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.table-hint {
  display: none;
  margin: -0.45rem 0 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(9, 20, 35, 0.82);
  font-size: 0.86rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.comparison-table th {
  color: var(--text);
  background: #122039;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  width: 25%;
  color: var(--muted-strong);
  font-weight: 600;
}

.comparison-table td:nth-child(2) {
  background: rgba(67, 140, 255, 0.045);
}

.yes {
  color: #acf2d7;
}

.qualified {
  color: #ffe1a3;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.plain-card {
  padding: 1.4rem;
}

.source-list li {
  color: var(--muted);
  font-size: 0.86rem;
}

.source-list a {
  color: var(--brand);
  overflow-wrap: anywhere;
}

.as-of {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(4, 10, 18, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 2rem;
}

.footer-copy {
  max-width: 38ch;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-group strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
}

.footer-group a {
  display: block;
  width: fit-content;
  margin: 0.32rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-group a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(38, 61, 92, 0.75);
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-legal a {
  text-decoration: none;
}

@media (max-width: 1000px) {
  .hero-grid,
  .product-layout,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-grid .app-window {
    width: min(100%, 720px);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 0.65rem;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    background: #0a1525;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a:not(.btn) {
    padding: 0.72rem 0.75rem;
  }

  .nav-links .btn {
    margin: 0.35rem 0 0;
  }

  .difference-grid,
  .feature-grid,
  .trust-block,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .comparison-callout {
    grid-template-columns: 1fr;
  }

  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-hint {
    display: block;
  }
}

@media (max-width: 580px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.35rem), var(--max));
  }

  .hero {
    padding-top: 3.6rem;
  }

  .hero-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .proof-row {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-chip {
    width: 100%;
  }

  .arch-line {
    grid-template-columns: 1fr;
  }

  .arch-arrow {
    transform: rotate(90deg);
  }

  .arch-targets,
  .pricing-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .monitor-row {
    grid-template-columns: minmax(0, 1.35fr) 72px 78px;
    gap: 0.35rem;
    padding-inline: 0.55rem;
    font-size: 0.69rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
