/* ==========================================================================
   Jompom — WordPress maintenance
   Visual language: instrumentation. The page furniture is the product —
   status chips, uptime bars, tabular readouts, event logs. Monospace is
   used because these are actual measurements, not for decoration.
   ========================================================================== */

:root{
  /* ground — cool neutrals, biased toward the accent rather than dead grey */
  --paper:      #F5F7F9;
  --surface:    #FFFFFF;
  --ink:        #0F151A;
  --ink-2:      #3B4650;
  --muted:      #6B7885;
  --line:       #E1E6EA;
  --line-soft:  #EDF0F3;

  /* the console: one dark ground, used once, where the monitoring lives */
  --console:    #0D1318;
  --console-2:  #151E26;
  --console-ink:#E8EEF3;
  --console-mut:#7E8D9A;
  --console-line: rgba(232,238,243,.13);

  /* accent — refined from the existing brand cyan so it passes on white */
  --cyan:        #1189CE;
  --cyan-deep:   #0B6CA3;
  --cyan-bright: #43BAFF;
  --cyan-wash:   #E8F4FB;

  /* semantic — deliberately separate from the accent */
  --ok:   #17855C;
  --warn: #B37A0F;
  --crit: #C0392F;

  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;
  --sans: "Archivo", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --pad: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --maxw: 1400px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video{ display: block; max-width: 100%; }
figure, blockquote{ margin: 0; }   /* UA default (1em 40px) broke the dial row once — never again */
a{ color: inherit; text-decoration: none; }

::selection{ background: var(--cyan); color: #fff; }

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

/* ---------- type roles ---------- */

.label{
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

h1, h2, h3{ margin: 0; letter-spacing: -.022em; line-height: 1.06; text-wrap: balance; }

/* Display voice: Archivo Black — same superfamily as the body face, so the
   page gets a loud, distinctive register without importing a stranger. */
h1, h2{
  font-family: "Archivo Black", var(--sans);
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: 1.05;
}
/* Floor tuned to the widest real headline word ("Straightforward") fitting a
   320px viewport in Archivo Black — 2.55rem clipped it by 21px. */
h1{ font-size: clamp(2.35rem, 6.4vw, 5.4rem); }
h2{ font-size: clamp(1.8rem, 3.8vw, 3rem); }
h3{ font-size: clamp(1.15rem, 1.9vw, 1.5rem); font-weight: 600; line-height: 1.2; }

p{ margin: 0 0 18px; }
.lead{ font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: var(--ink-2); max-width: 58ch; }

.num{ font-variant-numeric: tabular-nums; }

/* ---------- shell ---------- */

.wrap{ max-width: var(--maxw); margin: 0 auto; }
.section{ padding: clamp(64px, 10vh, 128px) var(--pad); }
.section--surface{ background: var(--surface); }

.sec-head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(28px, 4vh, 48px);
}
.sec-head .label{ flex: none; }
.sec-head .bar{ flex: 1; height: 1px; background: var(--line); }

/* ==========================================================================
   Status chip — the live signal, reused across the page
   ========================================================================== */

.chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
  color: var(--ink-2);
}
.chip i{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  flex: none;
  position: relative;
}
.chip i::after{
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--ok);
  opacity: 0;
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping{
  0%   { transform: scale(.6); opacity: .9; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}
.chip--dark{ background: transparent; border-color: var(--console-line); color: var(--console-mut); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-head{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px var(--pad);
  background: rgba(245,247,249,0);
  transition: transform .45s var(--ease), background-color .45s var(--ease),
              border-color .45s var(--ease), padding .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head.is-solid{
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-top: 11px;
  padding-bottom: 11px;
}
.site-head.is-hidden{ transform: translateY(-100%); }

.brand{ display: flex; align-items: baseline; gap: 2px; font-weight: 700; font-size: 20px; letter-spacing: -.03em; }
.brand b{ color: var(--cyan); font-weight: 700; }

.nav{ display: flex; align-items: center; gap: 26px; }
.nav a{
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"]{ color: var(--ink); }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  transition: background-color .3s var(--ease), gap .3s var(--ease), color .3s var(--ease);
  cursor: pointer;
}
.btn:hover{ background: var(--cyan); border-color: var(--cyan); gap: 15px; }
.btn--ghost{ background: transparent; color: var(--ink); }
.btn--ghost:hover{ background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--cyan{ background: var(--cyan); border-color: var(--cyan); }
.btn--cyan:hover{ background: var(--ink); border-color: var(--ink); }

.nav-toggle{ display: none; background: none; border: 1px solid var(--line); color: var(--ink);
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 14px; cursor: pointer; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero{
  padding: clamp(120px, 17vh, 190px) var(--pad) clamp(48px, 7vh, 84px);
  position: relative;
  overflow: hidden;
}
.hero::before{
  /* faint monitoring grid — the page's own instrument ground */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 65% at 60% 0%, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero .wrap{ position: relative; }

.hero h1{ margin: 20px 0 22px; max-width: 17ch; }
.hero .lead{ margin-bottom: 30px; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* live metric strip */
.metrics{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(44px, 7vh, 76px);
}
.metric{ background: var(--surface); padding: 20px; }
.metric b{
  display: block;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.metric span{
  display: block;
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   Risk / statement
   ========================================================================== */

.split{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.risks{ display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.risk{
  background: var(--paper);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: baseline;
}
.risk .sev{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border: 1px solid currentColor;
  justify-self: start;
}
.risk--crit .sev{ color: var(--crit); }
.risk--warn .sev{ color: var(--warn); }
.risk p{ margin: 0; font-size: 15px; color: var(--ink-2); }
.risk strong{ color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Services — sticky panel + index
   ========================================================================== */

.svc-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 60px);
  align-items: start;
}

/* On mobile this drops below the list rather than disappearing — hiding it
   would leave small screens with service names and no descriptions at all. */
.svc-panel{
  order: 2;
  background: var(--console);
  color: var(--console-ink);
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
}
.svc-card{
  display: none;
  animation: cardIn .55s var(--ease-out);
}
.svc-card.is-active{ display: block; }
@keyframes cardIn{ from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform:none; } }

.svc-card h3{ color: #fff; margin-bottom: 14px; }
.svc-card p{ color: var(--console-mut); font-size: 14.5px; }
.svc-card ul{ list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 1px; background: var(--console-line); }
.svc-card li{
  background: var(--console);
  padding: 11px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--console-ink);
}
.svc-card li span{ color: var(--ok); }

.svc{
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  padding: clamp(18px, 2.2vw, 26px) 0;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
.svc:last-of-type{ border-bottom: 1px solid var(--line); }
.svc-top{ display: flex; align-items: baseline; gap: 16px; }
.svc-no{ font-family: var(--mono); font-size: 11px; color: var(--muted); width: 26px; flex: none; }
.svc-name{
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -.02em;
  transition: transform .5s var(--ease-out), color .35s var(--ease);
}
.svc-price{ margin-left: auto; font-family: var(--mono); font-size: 12px; color: var(--muted); flex: none; }
.svc:hover .svc-name, .svc.is-active .svc-name{ transform: translateX(10px); color: var(--cyan); }
.svc-desc{ padding-left: 42px; font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ==========================================================================
   Console — the one dark section
   ========================================================================== */

.console{
  background: var(--console);
  color: var(--console-ink);
  padding: clamp(64px, 10vh, 120px) var(--pad);
}
.console .label{ color: var(--console-mut); }
.console .sec-head .bar{ background: var(--console-line); }
.console h2{ color: #fff; max-width: 20ch; }
.console .lead{ color: var(--console-mut); }

.console-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--console-line);
  border: 1px solid var(--console-line);
  margin-top: clamp(32px, 5vh, 56px);
}
.panel{ background: var(--console); padding: 24px; }
.panel-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.panel-head h3{ font-size: 13px; font-family: var(--mono); font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--console-mut); }
.panel-val{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums; color: #fff; line-height: 1; }
.panel-val em{ font-style: normal; font-size: .42em; color: var(--console-mut); margin-left: 4px; }

/* uptime bars — 30 day strip */
.uptime{ display: flex; gap: 3px; align-items: flex-end; height: 58px; margin-top: 18px; }
.uptime i{
  flex: 1;
  background: var(--ok);
  height: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .7s var(--ease-out);
}
.is-in .uptime i{ transform: scaleY(1); }
.uptime i.dip{ background: var(--warn); height: 62%; }
.uptime-foot{ display: flex; justify-content: space-between; margin-top: 10px; }

/* event log */
.log{ list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--console-line); }
.log li{
  background: var(--console);
  padding: 11px 0;
  display: grid;
  grid-template-columns: 78px 62px 1fr;
  gap: 12px;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--console-ink);
}
.log time{ color: var(--console-mut); font-variant-numeric: tabular-nums; }
.log .tag{ font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.log .ok{ color: var(--ok); }
.log .warn{ color: var(--warn); }
.log .info{ color: var(--cyan-bright); }

/* speed dials */
.dials{ display: flex; gap: 26px; align-items: center; margin-top: 14px; flex-wrap: wrap; }
/* margin:0 is load-bearing: the UA default figure margin (1em 40px) added
   160px to this row, forced a wrap, and left the arrow pointing at nothing */
.dial{ margin: 0; text-align: center; }
.dial svg{ width: 92px; height: 92px; transform: rotate(-90deg); }
.dial circle{ fill: none; stroke-width: 7; }
.dial .track{ stroke: var(--console-line); }
.dial .arc{
  stroke: var(--crit);
  stroke-linecap: round;
  stroke-dasharray: 245;
  stroke-dashoffset: 245;
  transition: stroke-dashoffset 1.4s var(--ease-out);
}
.dial--after .arc{ stroke: var(--ok); }
.dial figcaption{ font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--console-mut); margin-top: 8px; }
.dial-val{ font-family: var(--sans); font-size: 20px; font-weight: 700; fill: #fff;
  transform: rotate(90deg); transform-origin: center; }
.dial-arrow{ font-family: var(--mono); font-size: 20px; color: var(--console-mut); }

/* ==========================================================================
   Steps — a real sequence, so it earns its numbers
   ========================================================================== */

.steps{ display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step{ background: var(--surface); padding: 28px 0; }
.step .n{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  display: block;
  margin-bottom: 16px;
  letter-spacing: .1em;
}
.step h3{ margin-bottom: 10px; }
.step p{ margin: 0; color: var(--ink-2); font-size: 15px; max-width: 40ch; }

/* ==========================================================================
   Plans
   ========================================================================== */

.toggle{
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 3px;
  margin-bottom: clamp(26px, 4vh, 44px);
}
.toggle button{
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.toggle button.is-on{ background: var(--ink); color: #fff; }

.plans{ display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line);
  border: 1px solid var(--line); }
.plan{ background: var(--surface); padding: 28px 24px; display: flex; flex-direction: column; }
.plan--pop{ background: var(--cyan-wash); }
.plan-top{ display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.plan h3{ font-size: 16px; font-weight: 600; }
.plan-flag{ font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--cyan); padding: 3px 8px; }
.plan-price{ font-size: clamp(2.1rem, 3.6vw, 2.9rem); font-weight: 700; letter-spacing: -.035em;
  line-height: 1; font-variant-numeric: tabular-nums; }
.plan-price em{ font-style: normal; font-size: .34em; font-weight: 500; color: var(--muted); margin-left: 5px; }
.plan-note{ font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin: 10px 0 22px; }
.plan ul{ list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 9px; }
.plan li{ font-size: 14px; color: var(--ink-2); display: flex; gap: 9px; align-items: baseline; }
.plan li::before{ content: "→"; color: var(--cyan); font-family: var(--mono); font-size: 12px; flex: none; }
.plan .btn{ margin-top: auto; justify-content: center; }

/* comparison matrix */
.matrix-scroll{ overflow-x: auto; border: 1px solid var(--line); background: var(--surface); }
table.matrix{ width: 100%; border-collapse: collapse; min-width: 620px; }
table.matrix th, table.matrix td{
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  font-size: 14px;
}
table.matrix thead th{
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--surface);
}
table.matrix tbody th{ font-weight: 500; color: var(--ink-2); }
table.matrix td{ text-align: center; font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); }
table.matrix td.yes{ color: var(--ok); }
table.matrix td.no{ color: var(--line); }
table.matrix tbody tr:hover{ background: var(--paper); }

/* one-off services */
.oneoffs{ display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line);
  border: 1px solid var(--line); }
.oneoff{ background: var(--surface); padding: 28px 24px; }
.oneoff .plan-price{ font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin: 12px 0 16px; }

/* ==========================================================================
   Marquee + CTA + footer
   ========================================================================== */

.clients{ padding: clamp(40px, 6vh, 68px) 0; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); overflow: hidden; background: var(--surface); }
.clients .label{ padding: 0 var(--pad); margin-bottom: 24px; display: block; }
/* Three identical sets, shifted by exactly one set (-100/3%). Two sets is the
   usual trick, but one set is ~1530px wide — on a display wider than that a
   gap opens at the wrap. Three sets keep it covered past 3000px. */
.marquee{ display: flex; width: max-content; animation: marquee 52s linear infinite; }
.clients:hover .marquee{ animation-play-state: paused; }
@keyframes marquee{ to{ transform: translateX(-33.3333%); } }
.marquee-set{ display: flex; align-items: center; flex: none; }

/* Stack logos. Monochrome by default so the bar reads as a single inventory
   rather than ten competing brand palettes; each lifts to full ink on hover. */
.mq-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(18px, 2.8vw, 40px);
  color: var(--muted);
  transition: color .35s var(--ease);
}
.mq-logo svg{ width: 21px; height: 21px; fill: currentColor; flex: none; }
.mq-logo span{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.mq-logo:hover{ color: var(--ink); }

.cta{ text-align: center; }
.cta h2{ margin: 0 auto 18px; max-width: 18ch; }
.cta .lead{ margin: 0 auto 30px; }
.cta-actions{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.site-foot{ background: var(--console); color: var(--console-ink); padding: clamp(48px, 7vh, 80px) var(--pad) 30px; }
.foot-grid{ display: grid; grid-template-columns: 1fr; gap: 30px; max-width: var(--maxw); margin: 0 auto; }
.foot-col h4{ font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--console-mut); margin: 0 0 15px; }
.foot-col a, .foot-col p{ display: block; margin: 0 0 9px; font-size: 14.5px; color: var(--console-ink); }
.foot-col a:hover{ color: var(--cyan-bright); }
.foot-base{ max-width: var(--maxw); margin: clamp(34px, 5vh, 56px) auto 0; padding-top: 20px;
  border-top: 1px solid var(--console-line); display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; }
.foot-base .label{ color: var(--console-mut); }

/* ==========================================================================
   Reveal system (ported)
   ========================================================================== */

.rv{ opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.rv.is-in{ opacity: 1; transform: none; }
.rv[data-d="1"]{ transition-delay: .08s; }
.rv[data-d="2"]{ transition-delay: .16s; }
.rv[data-d="3"]{ transition-delay: .24s; }
.rv[data-d="4"]{ transition-delay: .32s; }

/* stagger the uptime bars off the parent's reveal */
.uptime i:nth-child(n)   { transition-delay: calc(var(--i, 0) * 22ms); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 640px){
  .metrics{ grid-template-columns: repeat(4, 1fr); }
  .oneoffs{ grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px){
  .split{ grid-template-columns: 1fr 1fr; }
  .svc-grid{ grid-template-columns: 1fr 1.15fr; }
  .svc-panel{ order: 0; position: sticky; top: 92px; }
  .console-grid{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: repeat(3, 1fr); }
  .step{ padding-left: 26px; padding-right: 26px; }
  .plans{ grid-template-columns: repeat(3, 1fr); }
  .foot-grid{ grid-template-columns: repeat(4, 1fr); }
  .metric{ padding: 24px 22px; }
  .risk{ padding-left: 20px; padding-right: 20px; }
}

@media (min-width: 1180px){
  .console-grid{ grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 860px){
  .nav{ display: none; }
  .nav-toggle{ display: block; }
  .site-head .btn{ display: none; }
  .nav.is-open{
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: var(--pad);
    z-index: 95;
  }
  .nav.is-open a{ font-size: 20px; font-weight: 600; }
}

/* ==========================================================================
   Inner pages
   ========================================================================== */

.skip{
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 12px;
}
.skip:focus{ left: 12px; }

.brand--foot{ color: #fff; font-size: 22px; }
.brand--foot b{ color: var(--cyan-bright); }

/* ---------- page head ---------- */

.page-head{
  position: relative;
  overflow: hidden;
  padding: clamp(112px, 15vh, 172px) var(--pad) clamp(40px, 6vh, 68px);
  background: var(--paper);
}
.page-head::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 70% at 55% 0%, #000 15%, transparent 78%);
  pointer-events: none;
}
.page-head .wrap{ position: relative; }
.page-head h1{ margin: 18px 0 20px; max-width: 17ch; }
.page-head .lead{ margin-bottom: 0; }
.page-head .hero-actions{ margin-top: 30px; }

.crumb{
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumb a:hover{ color: var(--cyan); }
.crumb span{ opacity: .5; }

/* ---------- alternating feature rows ---------- */

.feature{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding: clamp(38px, 6vh, 72px) 0;
  border-top: 1px solid var(--line);
}
.feature:first-of-type{ border-top: 0; }
.feature h3{ font-size: clamp(1.4rem, 2.6vw, 2.05rem); font-weight: 700; margin-bottom: 14px; }
.feature p{ color: var(--ink-2); max-width: 52ch; }
.feature .label{ margin-bottom: 12px; display: block; }

/* ---------- checklist ---------- */

.checks{ list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); }
.checks li{
  background: var(--surface);
  padding: 13px 16px;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 12px;
  align-items: baseline;
  font-size: 14.5px;
  color: var(--ink-2);
}
.checks li::before{ content: "✓"; color: var(--ok); font-family: var(--mono); font-size: 13px; }
.checks li b{ color: var(--ink); font-weight: 600; }
.checks li em{
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.checks--dark{ background: var(--console-line); }
.checks--dark li{ background: var(--console); color: var(--console-ink); }
.checks--dark li b{ color: #fff; }
.checks--dark li em{ color: var(--console-mut); }

/* ---------- tiles ---------- */

.tiles{ display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line);
  border: 1px solid var(--line); }
.tile{ background: var(--surface); padding: 26px 24px; }
.tile .n{ font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--cyan);
  display: block; margin-bottom: 14px; }
.tile h3{ margin-bottom: 10px; }
.tile p{ margin: 0; font-size: 14.5px; color: var(--ink-2); }

/* ---------- vertical process timeline ---------- */

.timeline{ display: grid; gap: 0; }
.tl{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 20px;
  padding-bottom: 34px;
  position: relative;
}
.tl::before{
  content: "";
  position: absolute;
  left: 16px; top: 30px; bottom: -4px;
  width: 1px;
  background: var(--line);
}
.tl:last-child::before{ display: none; }
.tl-dot{
  width: 33px; height: 33px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.tl h3{ margin-bottom: 8px; }
.tl p{ margin: 0; color: var(--ink-2); font-size: 15px; max-width: 56ch; }

/* ---------- 3-way comparison ---------- */

.compare th.us{ color: var(--cyan) !important; }
table.matrix td.us{ background: var(--cyan-wash); color: var(--ink); font-weight: 500; }
table.matrix tbody tr:hover td.us{ background: #DDEDF8; }

/* ---------- accordion ---------- */

.acc{ border-top: 1px solid var(--line); }
.acc-item{ border-bottom: 1px solid var(--line); }
.acc-q{
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.acc-q .ind{
  flex: none;
  width: 22px; height: 22px;
  position: relative;
  margin-top: 3px;
}
.acc-q .ind::before, .acc-q .ind::after{
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--cyan);
  transform: translate(-50%,-50%);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.acc-q .ind::before{ width: 13px; height: 1.5px; }
.acc-q .ind::after{ width: 1.5px; height: 13px; }
.acc-item.is-open .acc-q .ind::after{ transform: translate(-50%,-50%) scaleY(0); opacity: 0; }
.acc-a{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease-out);
}
.acc-item.is-open .acc-a{ grid-template-rows: 1fr; }
.acc-a > div{ overflow: hidden; }
.acc-a p{ margin: 0 0 20px; color: var(--ink-2); max-width: 68ch; font-size: 15px; }

/* ---------- article cards ---------- */

.cards{ display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line);
  border: 1px solid var(--line); }
.card{
  background: var(--surface);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background-color .35s var(--ease);
}
a.card:hover{ background: var(--paper); }
.card-meta{ display: flex; gap: 12px; align-items: center; }
.card-cat{
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); border: 1px solid var(--cyan); padding: 3px 7px;
}
.card time{ font-family: var(--mono); font-size: 11px; color: var(--muted); }
.card h3{ font-size: 1.15rem; line-height: 1.25; }
.card p{ margin: 0; font-size: 14.5px; color: var(--ink-2); }
.card .more{
  margin-top: auto;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; gap: 8px; transition: gap .3s var(--ease);
}
a.card:hover .more{ gap: 14px; color: var(--cyan); }

/* ---------- form ---------- */

.form{ display: grid; gap: 18px; }
.field{ display: grid; gap: 7px; }
.field label{
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea{
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 13px 14px;
  width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(17,137,206,.14);
}
.field textarea{ min-height: 130px; resize: vertical; }
.field-row{ display: grid; grid-template-columns: 1fr; gap: 18px; }
.form-note{ font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- vitals ---------- */

.vitals{ display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--console-line);
  border: 1px solid var(--console-line); }
.vital{ background: var(--console); padding: 22px; }
.vital .k{ font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--console-mut); display: block; margin-bottom: 12px; }
.vital .v{ font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -.03em;
  color: #fff; font-variant-numeric: tabular-nums; line-height: 1; }
.vital .v em{ font-style: normal; font-size: .4em; color: var(--console-mut); margin-left: 4px; }
.vital .t{ font-family: var(--mono); font-size: 11px; color: var(--ok); margin-top: 10px; display: block; }

/* ---------- pull quote ---------- */

.pull{
  border-left: 2px solid var(--cyan);
  padding: 4px 0 4px 22px;
  margin: 0;
}
.pull p{ font-size: clamp(1.15rem, 2.1vw, 1.5rem); line-height: 1.35; letter-spacing: -.015em;
  color: var(--ink); font-weight: 500; margin: 0 0 14px; max-width: 44ch; }
.pull footer{ font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); }

/* ---------- stat band ---------- */

.band{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--console-line);
  border: 1px solid var(--console-line); }
.band .metric{ background: var(--console); }
.band .metric b{ color: #fff; }
.band .metric span{ color: var(--console-mut); }

@media (min-width: 640px){
  .field-row{ grid-template-columns: 1fr 1fr; }
  .cards{ grid-template-columns: 1fr 1fr; }
  .tiles{ grid-template-columns: 1fr 1fr; }
  .vitals{ grid-template-columns: repeat(3, 1fr); }
  .band{ grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px){
  .feature{ grid-template-columns: 1fr 1fr; }
  .feature--flip .feature-media{ order: -1; }
  .cards{ grid-template-columns: repeat(3, 1fr); }
  .tiles{ grid-template-columns: repeat(3, 1fr); }
  .tiles--4{ grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px){
  .head-cta{ display: none; }
}

/* ==========================================================================
   Hero — the promise, demonstrated
   The product is visibility, so the hero shows a site actually being watched
   rather than describing it. This is the page's thesis, not decoration.
   ========================================================================== */

.hero{ display: flex; align-items: center; min-height: 88svh; }
.hero .wrap{ width: 100%; }

/* ---------- dark variant: the page opens inside the console ----------
   The product is a monitoring room, so the first screen IS the monitoring
   room — dark ground, instrument grid, one cyan source of light. */
.hero--dark{
  background: var(--console);
  color: var(--console-ink);
  border-bottom: 1px solid var(--console-line);
}
.hero--dark::before{
  background-image:
    linear-gradient(rgba(232,238,243,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,238,243,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 0%, #000 25%, transparent 78%);
}
.hero--dark::after{
  /* the single light source, behind the monitor card */
  content: "";
  position: absolute;
  top: -18%; right: -8%;
  width: 56%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(67,186,255,.13), transparent 62%);
  pointer-events: none;
}
.hero--dark .wrap{ position: relative; z-index: 1; }
.hero--dark h1{ color: #fff; }
.hero--dark .label{ color: var(--cyan-bright); }
.hero--dark .lead{ color: #9DAAB6; }
.hero--dark .btn--ghost{
  color: #fff;
  border-color: rgba(232,238,243,.28);
  background: transparent;
}
.hero--dark .btn--ghost:hover{ background: #fff; color: var(--ink); border-color: #fff; }
.hero--dark .chip{
  background: rgba(232,238,243,.04);
  border-color: rgba(232,238,243,.16);
  color: #B9C4CE;
}
.hero--dark .monitor{
  background: var(--console-2);
  border-color: rgba(232,238,243,.15);
  box-shadow:
    0 40px 90px -24px rgba(0,0,0,.65),
    0 0 0 1px rgba(67,186,255,.06),
    0 -1px 24px -6px rgba(67,186,255,.12);
}
.hero--dark .monitor-head,
.hero--dark .monitor-foot{ border-color: rgba(232,238,243,.1); }
.hero--dark .monitor-readouts{ background: rgba(232,238,243,.1); border-color: rgba(232,238,243,.1); }
.hero--dark .monitor-readouts .readout{ background: var(--console-2); }

/* header sits transparent over the dark hero — its ink links would vanish,
   so invert until the scroll makes it solid */
body:has(.hero--dark) .site-head:not(.is-solid) .brand{ color: #fff; }
body:has(.hero--dark) .site-head:not(.is-solid) .nav a{ color: #B9C4CE; }
body:has(.hero--dark) .site-head:not(.is-solid) .nav a:hover,
body:has(.hero--dark) .site-head:not(.is-solid) .nav a[aria-current="page"]{ color: #fff; }
body:has(.hero--dark) .site-head:not(.is-solid) .nav-toggle{
  color: #fff;
  border-color: rgba(232,238,243,.28);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
/* Breakpoint sits with its base rule on purpose. Declared up in the shared
   responsive block it would come *before* this one-column default and lose
   the cascade at equal specificity — silently, at every width. */
@media (min-width: 980px){
  .hero-grid{ grid-template-columns: 1.02fr .98fr; }
}

.hero-copy h1{ margin: 20px 0 22px; max-width: 15ch; }

/* ---------- live monitor card ---------- */

.monitor{
  background: var(--console);
  color: var(--console-ink);
  border: 1px solid var(--console-line);
  box-shadow: 0 26px 60px -30px rgba(13,19,24,.5);
}

.monitor-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--console-line);
}
.monitor-url{
  font-family: var(--mono);
  font-size: 12.5px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.monitor-body{ padding: 22px 20px 20px; }
.monitor-k{
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--console-mut);
  display: block;
  margin-bottom: 12px;
}
.monitor-big{
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.monitor-big em{ font-style: normal; font-size: .35em; color: var(--console-mut); margin-left: 5px; }
.monitor .uptime{ height: 42px; margin-top: 18px; }

.monitor-readouts{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--console-line);
  border-top: 1px solid var(--console-line);
}
.readout{ background: var(--console); padding: 14px 16px; }
.readout b{
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.readout span{
  display: block;
  margin-top: 5px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--console-mut);
}

.monitor-foot{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-top: 1px solid var(--console-line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--console-mut);
}
.monitor-foot .ok{ color: var(--ok); }

/* ---------- thin trust band ---------- */

.clients--band{ padding: 26px 0; background: var(--paper); border-top: 0; }
.clients--band .label{ margin-bottom: 16px; }

/* ==========================================================================
   Editorial breath — one oversized statement to break the grid rhythm
   ========================================================================== */

.statement-band{ padding: clamp(58px, 9vh, 118px) var(--pad); background: var(--paper); }
.statement-band p{
  margin: 0;
  font-family: "Archivo Black", var(--sans);
  font-size: clamp(1.5rem, 3.9vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.12;
  max-width: 25ch;
  text-wrap: balance;
}
.statement-band em{ font-style: normal; color: var(--muted); }

/* ==========================================================================
   Compact plan cards — the home page previews, pricing.html sells
   ========================================================================== */

.plans-mini{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 640px){
  .plans-mini{ grid-template-columns: repeat(3, 1fr); }
}
.plan-mini{
  background: var(--surface);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background-color .3s var(--ease);
}
a.plan-mini:hover{ background: var(--paper); }
.plan-mini--pop{ background: var(--cyan-wash); }
a.plan-mini--pop:hover{ background: #DDEDF8; }
.plan-mini h3{ font-size: 15px; font-weight: 600; }
.plan-mini .p{
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan-mini .p em{ font-style: normal; font-size: .32em; font-weight: 500; color: var(--muted); margin-left: 4px; }
.plan-mini p{ margin: 0; font-size: 14px; color: var(--ink-2); }
.plan-mini .more{
  margin-top: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  display: inline-flex; gap: 8px; transition: gap .3s var(--ease), color .3s var(--ease);
}
a.plan-mini:hover .more{ gap: 14px; color: var(--cyan); }

/* ==========================================================================
   Console as centrepiece — it earns more room than the sections around it
   ========================================================================== */

.console--feature{ padding-top: clamp(78px, 13vh, 152px); padding-bottom: clamp(78px, 13vh, 152px); }
.console--feature h2{ font-size: clamp(2.1rem, 4.6vw, 3.6rem); }

/* Composed section opener: heading left, live status + supporting line right,
   both sitting on one hairline. Fills the dead space a lone big heading left
   beside itself, and gives the small lead line a job instead of orphaning it. */
.console-head{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: end;
  border-bottom: 1px solid var(--console-line);
  padding-bottom: clamp(22px, 3.4vh, 34px);
}
.console-head .label{ display: block; margin-bottom: 16px; }
.console-head h2{ max-width: 15ch; }
.console-head-side{ display: grid; gap: 14px; justify-items: start; }
.console-head-side p{
  margin: 0;
  color: #9DAAB6;
  font-size: 15.5px;
  max-width: 38ch;
}
@media (min-width: 900px){
  .console-head{ grid-template-columns: 1.35fr 1fr; }
  .console-head-side{ justify-items: end; text-align: right; }
}

/* ==========================================================================
   How it works — a human frame against the machine readouts
   Three dark instrument panels precede this section; one photograph of the
   work actually happening resets the rhythm before the page asks for money.
   ========================================================================== */

.how-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}
@media (min-width: 900px){
  .how-grid{ grid-template-columns: .82fr 1fr; }
  .how-media{ position: sticky; top: 96px; }
}

.how-media{
  margin: 0;
  overflow: hidden;
  background: var(--console);
  aspect-ratio: 4 / 5;
}
.how-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* pulled toward the palette without going fully dead */
  filter: grayscale(.4) contrast(1.06) brightness(.98);
}
.how-media figcaption{
  position: absolute;
  left: -9999px;
}

/* ==========================================================================
   Motion layer (A–D): boot preloader, hero mesh, outline marquee,
   statement fill. All of it is progressive enhancement — without GSAP or
   with reduced motion, none of these styles change the static page.
   ========================================================================== */

/* A — terminal boot */
#boot{
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--console);
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
}
#boot pre{
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(12px, 1.3vw, 14.5px);
  line-height: 2.1;
  color: var(--console-mut);
  white-space: pre-wrap;
}
#boot .bt-ok{ color: var(--ok); }
#boot .bt-val{ color: #fff; }
#boot .bt-line.is-typing::after{
  content: "▌";
  color: var(--cyan-bright);
  animation: bootCaret .7s steps(1) infinite;
}
@keyframes bootCaret{ 50%{ opacity: 0; } }

/* Conversion — one-field health check in the hero */
.hero-check{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
  max-width: 560px;
}
.hero-check input{
  flex: 1 1 260px;
  font-family: var(--mono);
  font-size: 14px;
  color: #fff;
  background: rgba(232,238,243,.06);
  border: 1px solid rgba(232,238,243,.22);
  padding: 14px 16px;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.hero-check input::placeholder{ color: var(--console-mut); }
.hero-check input:focus{
  outline: none;
  border-color: var(--cyan-bright);
  background: rgba(232,238,243,.09);
  box-shadow: 0 0 0 3px rgba(67,186,255,.16);
}
.hero-check .btn{ flex: none; }
.hero-check-note{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--console-mut);
  margin: 0 0 26px;
}

/* Conversion — sticky mobile CTA (injected by site.js, mobile only) */
.sticky-cta{
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(13,19,24,.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--console-line);
  transform: translateY(110%);
  transition: transform .4s var(--ease-out);
}
.sticky-cta.is-on{ transform: none; }
.sticky-cta .btn{ width: 100%; justify-content: center; }
@media (max-width: 767px){
  .sticky-cta{ display: block; }
  /* the bar overlays the page bottom — give the footer base room to breathe */
  body:has(.sticky-cta) .site-foot{ padding-bottom: 96px; }
}

/* F — ECG heartbeat line (console uptime panel) */
.ecg{
  display: block;
  width: 100%;
  height: 30px;
  margin-top: 16px;
}
/* Two traces: the full waveform sits faint and constant (so the line never
   reads as a broken floating squiggle), while a bright dash travels along it
   as the live pulse. */
.ecg polyline{
  fill: none;
  stroke-width: 1.5;
  stroke-linejoin: round;
}
.ecg .trace{ stroke: rgba(67,186,255,.2); }
.ecg .pulse{
  stroke: var(--cyan-bright);
  stroke-dasharray: 90 640;
  animation: ecgRun 3.2s linear infinite;
  opacity: .9;
}
@keyframes ecgRun{ to{ stroke-dashoffset: -730; } }

/* F — live log entries sliding in */
.log li.is-new{ animation: logIn .5s var(--ease-out); }
@keyframes logIn{
  from{ opacity: 0; transform: translateY(-9px); }
  to  { opacity: 1; transform: none; }
}

/* E — monitor tilt gets its stage */
.hero-grid{ perspective: 1200px; }
.monitor{ will-change: transform; }

/* B — network mesh canvas, behind the hero content */
.hero-mesh{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero--dark .wrap{ z-index: 1; }

/* D — giant outlined marquee divider, scroll-driven (no autonomous loop) */
.outline-marquee{
  overflow: hidden;
  padding: clamp(44px, 8vh, 96px) 0;
  background: var(--paper);
}
.om-track{
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.om-track span{
  font-family: "Archivo Black", var(--sans);
  font-size: clamp(3.2rem, 9vw, 8.4rem);
  line-height: 1;
  padding-right: .55em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(15,21,26,.3);
}
@supports not (-webkit-text-stroke: 1px black){
  .om-track span{ color: var(--line); }
}

/* D — statement fill: words start at hairline grey, GSAP scrubs them to ink.
   The class is only applied by JS, so the no-JS page keeps full-ink text. */
.statement-band .st-w{ color: var(--line); }

/* ==========================================================================
   Full-bleed image band
   ========================================================================== */

.figure-band{
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--console);
  height: clamp(280px, 46vh, 520px);
}
.figure-band img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 34% center;   /* holds the two people in frame on every crop */
  filter: grayscale(.55) contrast(1.05) brightness(.92);
}
.figure-band figcaption{
  position: absolute;
  left: var(--pad); bottom: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0,0,0,.65);
}

/* ==========================================================================
   Blog cards with media
   ========================================================================== */

.card-media{
  margin: -26px -24px 4px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--console);
}
.card-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.5) contrast(1.04);
  transition: filter .5s var(--ease), scale 1.1s var(--ease);
}
a.card:hover .card-media img{ filter: grayscale(0) contrast(1.04); scale: 1.04; }

.card--feature{ gap: 16px; }
.card--feature h3{ font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.card--feature .card-media{ aspect-ratio: 21 / 9; }
@media (min-width: 900px){
  .card--feature{ grid-column: span 3; }
  .card--feature .card-media{ aspect-ratio: 24 / 7; }
}

/* filter chips */
.chips{ display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(24px, 3vh, 36px); }
.chip-btn{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.chip-btn:hover{ color: var(--ink); border-color: var(--muted); }
.chip-btn.is-on{ background: var(--ink); border-color: var(--ink); color: #fff; }

/* ==========================================================================
   Blog article
   ========================================================================== */

.post-head{ padding: clamp(112px, 15vh, 160px) var(--pad) clamp(28px, 4vh, 44px); }
.post-head .wrap{ max-width: 760px; }
.post-body .wrap{ max-width: 680px; }   /* ≈70ch at 16.5px — comfortable measure */
.post-head h1{ font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 18px 0 20px; }
.post-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.post-cover{
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 var(--pad);
}
.post-cover .frame{
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--console);
}
.post-cover img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.5) contrast(1.04);
}

.post-body{ padding: clamp(40px, 6vh, 72px) var(--pad) clamp(64px, 9vh, 110px); }
.prose{ font-size: 16.5px; line-height: 1.75; color: var(--ink-2); }
.prose > * + *{ margin-top: 1.15em; }
.prose h2{
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  color: var(--ink);
  margin-top: 2em;
  line-height: 1.15;
}
.prose p{ margin-bottom: 0; }
.prose strong{ color: var(--ink); font-weight: 600; }
.prose a{ color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol{ padding-left: 1.3em; }
.prose li{ margin-top: .45em; }
.prose li::marker{ color: var(--cyan); font-family: var(--mono); font-size: .9em; }
.prose .pull{ margin: 2em 0; }
.prose code{
  font-family: var(--mono);
  font-size: .86em;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: .12em .4em;
  color: var(--ink);
}
.prose .checks{ margin: 1.4em 0; }

/* mini terminal block inside articles */
.term{
  background: var(--console);
  border: 1px solid var(--console-line);
  padding: 18px 20px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.9;
  color: var(--console-ink);
  overflow-x: auto;
  margin: 1.6em 0;
}
.term .c{ color: var(--console-mut); }
.term .g{ color: var(--ok); }
.term .y{ color: var(--warn); }

/* end-of-article handoff */
.post-next{
  border-top: 1px solid var(--line);
  margin-top: 2.6em;
  padding-top: 1.8em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.post-next p{ margin: 0; font-weight: 600; color: var(--ink); max-width: 34ch; }

/* ==========================================================================
   FAQ — sticky group index beside the answers
   ========================================================================== */

.faq-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
@media (min-width: 900px){
  .faq-layout{ grid-template-columns: 232px 1fr; }
  .faq-nav{ position: sticky; top: 100px; }
}
.faq-nav ol{ list-style: none; margin: 0; padding: 0; display: grid; }
.faq-nav a{
  display: block;
  padding: 11px 0 11px 14px;
  border-left: 2px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.faq-nav a:hover, .faq-nav a.is-current{ color: var(--ink); border-left-color: var(--cyan); }
.faq-group{ margin-bottom: clamp(40px, 6vh, 72px); scroll-margin-top: 100px; }
.faq-group:last-child{ margin-bottom: 0; }
.faq-group > h2{
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 6px;
}
.faq-group > p{ color: var(--muted); font-size: 14.5px; margin-bottom: 8px; }

/* Console-grid column overrides.
   These live after the responsive block on purpose: same specificity, later
   source order, so they win — without an inline style that would also beat
   the mobile media query and force multiple columns onto a 375px screen. */
.console-grid--1{ grid-template-columns: 1fr; }

@media (min-width: 900px){
  .console-grid--2{ grid-template-columns: 1fr 1fr; }
}

/* Bento variant (home monitoring): uptime + speed share the top row, the
   activity log runs full width beneath — no ragged panel bottoms. */
.console-grid--bento{ grid-template-columns: 1fr; }
.console-grid--bento .panel--log{ grid-column: 1 / -1; }
@media (min-width: 900px){
  .console-grid--bento{ grid-template-columns: 1.55fr 1fr; }
}

.panel--uptime .uptime{ height: 76px; }
.panel--uptime .ecg{
  width: 100%;
  height: 26px;
  margin-top: 22px;
  opacity: .55;
}

.panel--speed{ display: flex; flex-direction: column; }
.panel--speed .dials{ margin: auto 0; justify-content: center; padding: 10px 0; }
.panel-note{
  color: var(--console-mut);
  font-size: 13.5px;
  margin: 18px 0 0;
}

.panel--log .log li{ padding: 12px 0; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rv{ opacity: 1; transform: none; }
  .uptime i{ transform: scaleY(1); }
}
