/* ==========================================================================
   FasterHost — Design System
   --------------------------------------------------------------------------
   Technical-editorial. Warm paper ground, near-black ink, hairline rules as
   the primary structural device, one clay accent plus a per-product hue.
   No glass, no glow, no gradient wash, no floating chrome.

   Grid      12 col desktop / 8 col tablet / 4 col mobile
   Container 1320px
   Rhythm    120 / 80 / 56
   Radius    16px cards, 8px buttons
   Type      Inter — 64 / 42 / 28 / 18
   ========================================================================== */

/* --------------------------------------------------------------------------
   01  Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Ground */
  --paper:        #fbfaf8;
  --paper-2:      #f3f1ec;
  --paper-3:      #eae7e0;
  --surface:      #ffffff;

  /* Ink */
  --ink:          #1a1815;
  --ink-2:        #4a453d;
  --ink-3:        #7a736a;
  --ink-4:        #a39b90;
  /* Dark band surface. Separate from --ink because --ink flips with the theme
     and the band must stay dark in both. */
  --band:         #1a1815;
  --on-ink:       #f7f5f1;
  --on-ink-2:     rgba(247, 245, 241, 0.68);
  --on-ink-3:     rgba(247, 245, 241, 0.44);

  /* Hairlines — the structure of the whole site */
  --rule:         rgba(26, 24, 21, 0.13);
  --rule-soft:    rgba(26, 24, 21, 0.07);
  --rule-strong:  rgba(26, 24, 21, 0.28);
  --rule-on-ink:  rgba(247, 245, 241, 0.16);

  /* Accent — clay. One colour, used sparingly. */
  --accent:       #b8412a;
  --accent-hover: #98341f;
  --accent-tint:  rgba(184, 65, 42, 0.08);
  --accent-rule:  rgba(184, 65, 42, 0.32);

  /* Semantic */
  --ok:           #2f6f43;
  --ok-tint:      rgba(47, 111, 67, 0.10);
  --warn:         #96650f;
  --warn-tint:    rgba(150, 101, 15, 0.12);
  --bad:          #a63328;
  --bad-tint:     rgba(166, 51, 40, 0.10);

  /* Product hues — every hosting type owns one */
  --p-shared:     #b8412a;
  --p-wordpress:  #4b3f9e;
  --p-cloud:      #136f63;
  --p-reseller:   #8a3f6b;
  --p-vps:        #2b5f7e;
  --p-vds:        #85601a;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --fs-h1: 64px;
  --fs-h2: 42px;
  --fs-h3: 28px;
  --fs-h4: 20px;
  --fs-body: 18px;
  --fs-sm: 15px;
  --fs-xs: 13px;

  /* Layout */
  --container: 1320px;
  --pad: 40px;
  --gutter: 32px;
  --sec: 120px;
  --nav-h: 72px;

  /* Radius */
  --r-card: 16px;
  --r-btn: 8px;
  --r-input: 8px;
  --r-pill: 999px;

  /* Shadow — barely there, never coloured */
  --sh-1: 0 1px 2px rgba(26, 24, 21, 0.04);
  --sh-2: 0 1px 3px rgba(26, 24, 21, 0.06), 0 1px 2px rgba(26, 24, 21, 0.03);
  --sh-3: 0 4px 14px rgba(26, 24, 21, 0.07), 0 1px 3px rgba(26, 24, 21, 0.04);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.8, 0.32, 1);
  --t: 200ms;
  --t-slow: 420ms;

  --z-nav: 900;
  --z-mega: 910;
  --z-drawer: 1000;

  color-scheme: light;
}

@media (max-width: 1023px) {
  :root {
    --sec: 80px;
    --gutter: 24px;
    --pad: 32px;
    --fs-h1: 48px;
    --fs-h2: 34px;
    --fs-h3: 24px;
    --fs-body: 17px;
  }
}

@media (max-width: 767px) {
  :root {
    --sec: 56px;
    --gutter: 16px;
    --pad: 20px;
    --fs-h1: 36px;
    --fs-h2: 28px;
    --fs-h3: 22px;
    --fs-h4: 18px;
    --fs-body: 17px;
  }
}

[data-theme="dark"] {
  --paper:        #141310;
  --paper-2:      #1b1a16;
  --paper-3:      #23211c;
  --surface:      #1b1a16;

  --ink:          #f5f2ed;
  --ink-2:        #c8c1b6;
  --ink-3:        #968e83;
  --ink-4:        #6e675e;
  --band:         #201e19;
  --on-ink:       #f7f5f1;
  --on-ink-2:     rgba(247, 245, 241, 0.68);
  --on-ink-3:     rgba(247, 245, 241, 0.44);

  --rule:         rgba(245, 242, 237, 0.15);
  --rule-soft:    rgba(245, 242, 237, 0.08);
  --rule-strong:  rgba(245, 242, 237, 0.30);

  --accent:       #e2795e;
  --accent-hover: #ef8e74;
  --accent-tint:  rgba(226, 121, 94, 0.12);
  --accent-rule:  rgba(226, 121, 94, 0.36);

  --ok:           #6cbb85;
  --ok-tint:      rgba(108, 187, 133, 0.13);
  --warn:         #d3a34a;
  --warn-tint:    rgba(211, 163, 74, 0.14);
  --bad:          #e07a6d;
  --bad-tint:     rgba(224, 122, 109, 0.13);

  --p-shared:     #e2795e;
  --p-wordpress:  #9a90e8;
  --p-cloud:      #4fb7a5;
  --p-reseller:   #d189b6;
  --p-vps:        #7db3d3;
  --p-vds:        #d6b063;

  --sh-1: none;
  --sh-2: 0 1px 3px rgba(0, 0, 0, 0.4);
  --sh-3: 0 4px 16px rgba(0, 0, 0, 0.45);

  color-scheme: dark;
}

/* --------------------------------------------------------------------------
   02  Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  font-feature-settings: "cv05", "cv08", "ss03";
}

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; border-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}

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

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

/* --------------------------------------------------------------------------
   03  Layout — container + 12/8/4 grid
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap-narrow { max-width: 880px; }

.section { padding-block: var(--sec); }
.section-half { padding-block: calc(var(--sec) / 2); }
.section-band { background: var(--paper-2); }
.rule-top { border-top: 1px solid var(--rule); }
.rule-bottom { border-bottom: 1px solid var(--rule); }

.g {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gutter);
  row-gap: var(--gutter);
}
@media (max-width: 1023px) { .g { grid-template-columns: repeat(8, minmax(0, 1fr)); } }
@media (max-width: 767px)  { .g { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Spans set only the END so an explicit start column can still apply.
   (`grid-column: span N` would reset the start to auto and collapse the item.) */
.d1{grid-column-end:span 1}.d2{grid-column-end:span 2}.d3{grid-column-end:span 3}
.d4{grid-column-end:span 4}.d5{grid-column-end:span 5}.d6{grid-column-end:span 6}
.d7{grid-column-end:span 7}.d8{grid-column-end:span 8}.d9{grid-column-end:span 9}
.d10{grid-column-end:span 10}.d11{grid-column-end:span 11}.d12{grid-column-end:span 12}
.ds2{grid-column-start:2}.ds3{grid-column-start:3}.ds4{grid-column-start:4}
.ds5{grid-column-start:5}.ds6{grid-column-start:6}.ds7{grid-column-start:7}
.ds8{grid-column-start:8}.ds9{grid-column-start:9}.ds10{grid-column-start:10}
.ds11{grid-column-start:11}.ds12{grid-column-start:12}

/* Tablet — 8 col. Starts reset to auto unless a .ts* is given. */
@media (max-width: 1023px) {
  .t1{grid-column-end:span 1}.t2{grid-column-end:span 2}.t3{grid-column-end:span 3}
  .t4{grid-column-end:span 4}.t5{grid-column-end:span 5}.t6{grid-column-end:span 6}
  .t7{grid-column-end:span 7}.t8{grid-column-end:span 8}
  .t1,.t2,.t3,.t4,.t5,.t6,.t7,.t8 { grid-column-start: auto; }
  .ts1{grid-column-start:1}.ts2{grid-column-start:2}.ts3{grid-column-start:3}
  .ts4{grid-column-start:4}.ts5{grid-column-start:5}
}

/* Mobile — 4 col */
@media (max-width: 767px) {
  .m1{grid-column-end:span 1}.m2{grid-column-end:span 2}
  .m3{grid-column-end:span 3}.m4{grid-column-end:span 4}
  .m1,.m2,.m3,.m4 { grid-column-start: auto; }
  .ms1{grid-column-start:1}.ms2{grid-column-start:2}.ms3{grid-column-start:3}
}

/* Order helpers for rebuilt (not shrunk) small-screen layouts */
@media (max-width: 1023px) {
  .t-first { order: -1; }
  .t-last { order: 1; }
}
@media (max-width: 767px) {
  .m-first { order: -1; }
  .m-last { order: 1; }
}

.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.row-wrap { flex-wrap: wrap; }
.between { justify-content: space-between; }
.gap-1 { gap: 6px } .gap-2 { gap: 10px } .gap-3 { gap: 16px }
.gap-4 { gap: 24px } .gap-5 { gap: 32px } .gap-6 { gap: 48px }
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}
.mt-4{margin-top:32px}.mt-5{margin-top:48px}.mt-6{margin-top:64px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}.mb-4{margin-bottom:32px}
.mb-5{margin-bottom:48px}.mb-6{margin-bottom:64px}
.hidden { display: none !important; }
.relative { position: relative; }
.full { width: 100%; }
@media (max-width: 1023px) { .br-desk { display: none; } }

/* --------------------------------------------------------------------------
   04  Type
   -------------------------------------------------------------------------- */
.h1 { font-size: var(--fs-h1); line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; }
.h2 { font-size: var(--fs-h2); line-height: 1.08; letter-spacing: -0.03em; font-weight: 600; }
.h3 { font-size: var(--fs-h3); line-height: 1.2; letter-spacing: -0.022em; font-weight: 600; }
.h4 { font-size: var(--fs-h4); line-height: 1.3; letter-spacing: -0.015em; font-weight: 600; }

.lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
  letter-spacing: -0.011em;
}
@media (max-width: 767px) { .lead { font-size: 17px; } }

.sm { font-size: var(--fs-sm); }
.xs { font-size: var(--fs-xs); }
.muted { color: var(--ink-3); }
.dim { color: var(--ink-2); }
.faint { color: var(--ink-4); }
.mono { font-family: var(--mono); font-feature-settings: normal; }
.num { font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.accent { color: var(--accent); }

/* Index label — "01 / Products". The site's recurring editorial device. */
.label {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.label i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--accent);
}
.label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
  transform: translateY(-3px);
}
.label-plain::after { display: none; }

/* Underlined inline link */
.ul-link {
  color: var(--ink);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 1px;
  transition: border-color var(--t), color var(--t);
}
.ul-link:hover { color: var(--accent); border-color: var(--accent); }

/* Text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  transition: color var(--t), gap var(--t);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); }
.arrow-link:hover { color: var(--accent); }
.arrow-link:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   05  Buttons — 48px, 8px radius, full width on mobile
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding-inline: 22px;
  border-radius: var(--r-btn);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.btn-quiet { background: transparent; color: var(--ink-2); border-color: transparent; padding-inline: 12px; }
.btn-quiet:hover { color: var(--ink); background: var(--rule-soft); }

.btn-sm { height: 40px; padding-inline: 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* On the ink band — fixed values, because the band is dark in both themes */
.on-ink .btn-primary { background: #f7f5f1; color: #1a1815; border-color: #f7f5f1; }
.on-ink .btn-primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.on-ink .btn-outline { color: var(--on-ink); border-color: var(--rule-on-ink); }
.on-ink .btn-outline:hover { background: var(--on-ink); color: var(--ink); border-color: var(--on-ink); }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 767px) {
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   06  Tags & status chips
   -------------------------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 26px;
  padding-inline: 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--rule);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}
.tag-accent { color: var(--accent); border-color: var(--accent-rule); background: var(--accent-tint); }
.tag-ok { color: var(--ok); border-color: transparent; background: var(--ok-tint); }
.tag-warn { color: var(--warn); border-color: transparent; background: var(--warn-tint); }
.tag-bad { color: var(--bad); border-color: transparent; background: var(--bad-tint); }
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.tag .dot.live { animation: blip 2.4s ease-in-out infinite; }
@keyframes blip { 0%, 100% { opacity: 1 } 50% { opacity: 0.35 } }

.on-ink .tag { color: var(--on-ink-2); border-color: var(--rule-on-ink); }

/* --------------------------------------------------------------------------
   07  Ink band — the only dark surface on the site
   -------------------------------------------------------------------------- */
.on-ink {
  background: var(--band);
  color: var(--on-ink-2);
}
.on-ink h1, .on-ink h2, .on-ink h3, .on-ink h4,
.on-ink .h1, .on-ink .h2, .on-ink .h3, .on-ink .h4 { color: var(--on-ink); }
.on-ink .muted, .on-ink .faint { color: var(--on-ink-3); }
.on-ink .dim { color: var(--on-ink-2); }
.on-ink .label { color: var(--on-ink-3); }
.on-ink .label::after { background: var(--rule-on-ink); }
.on-ink .label i { color: var(--accent); }

/* --------------------------------------------------------------------------
   08  Header / navigation
   -------------------------------------------------------------------------- */
.topline {
  background: var(--band);
  color: var(--on-ink-2);
  font-size: var(--fs-xs);
  letter-spacing: -0.005em;
}
.topline .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 38px; }
.topline a { color: var(--on-ink); border-bottom: 1px solid var(--rule-on-ink); }
.topline a:hover { color: var(--accent); border-color: var(--accent); }
.topline .right { display: flex; gap: 20px; align-items: center; }
@media (max-width: 767px) { .topline .right { display: none; } .topline .wrap { justify-content: center; } }

.site-head {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.site-head.at-top { border-bottom-color: var(--rule-soft); }
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--nav-h);
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
/* The wordmark carries fine circuit detail, so it needs a little more height
   than a plain logotype would. */
.brand-logo { height: 34px; width: auto; max-width: 180px; object-fit: contain; }
@media (max-width: 767px) { .brand-logo { height: 30px; } }
/* logo.png is a dark-on-light lockup; flip it so it stays legible on dark. */
[data-theme="dark"] .brand-logo { filter: invert(1) hue-rotate(180deg); }
/* The drawer and footer sit on --paper too, so the same rule applies there. */
.brand-text { display: none; font-size: 19px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); }
.brand.no-logo .brand-text { display: block; }
.brand-text b { font-weight: 600; color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding-inline: 12px;
  border-radius: 6px;
  font-size: var(--fs-sm);
  font-weight: 450;
  color: var(--ink-2);
  transition: color var(--t), background var(--t);
}
.nav-link:hover { color: var(--ink); background: var(--rule-soft); }
.nav-link.on { color: var(--ink); font-weight: 550; }
.nav-link .chev { width: 14px; height: 14px; opacity: 0.55; transition: transform var(--t); }
.nav-item { position: static; }
.nav-item.open .chev { transform: rotate(180deg); }

.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 6px;
  color: var(--ink-2);
  transition: background var(--t), color var(--t);
}
.icon-btn:hover { background: var(--rule-soft); color: var(--ink); }
.icon-btn svg { width: 18px; height: 18px; }
.sun { display: none; }
[data-theme="dark"] .sun { display: block; }
[data-theme="dark"] .moon { display: none; }

/* Mega menu — desktop only */
.mega {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--sh-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t), transform var(--t) var(--ease), visibility var(--t);
  z-index: var(--z-mega);
}
.nav-item.open .mega { opacity: 1; visibility: visible; transform: none; }
.mega-inner { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); padding-block: 40px; }
.mega-list { grid-column: span 8; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 32px; }
.mega-side { grid-column: 10 / -1; border-left: 1px solid var(--rule); padding-left: 32px; }
.mega-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: padding-left var(--t) var(--ease);
}
.mega-item:hover { padding-left: 8px; }
.mega-item .mk {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: var(--hue, var(--accent));
}
.mega-item .mk svg { width: 14px; height: 14px; }
.mega-item h5 { font-size: var(--fs-sm); font-weight: 550; color: var(--ink); }
.mega-item p { font-size: var(--fs-xs); color: var(--ink-3); margin-top: 2px; line-height: 1.45; }
.mega-item .mp { font-family: var(--mono); font-size: 12px; color: var(--ink-4); }

/* Burger — shown at tablet and below */
.burger { display: none; }

/* Drawer: tablet = side panel, mobile = full screen */
.scrim {
  position: fixed; inset: 0;
  background: rgba(26, 24, 21, 0.4);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-slow), visibility var(--t-slow);
  z-index: calc(var(--z-drawer) - 1);
}
.scrim.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 88vw);
  background: var(--paper);
  border-left: 1px solid var(--rule);
  z-index: var(--z-drawer);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  padding-inline: var(--pad);
  border-bottom: 1px solid var(--rule);
  flex-shrink: 0;
}
.drawer-body { padding: 8px var(--pad) 40px; flex: 1; }
.d-group { border-bottom: 1px solid var(--rule); }
.d-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: left;
}
.d-link .chev { width: 18px; height: 18px; color: var(--ink-3); transition: transform var(--t); }
.d-link[aria-expanded="true"] .chev { transform: rotate(180deg); }
.d-sub { display: none; padding-bottom: 12px; }
.d-sub.open { display: block; }
.d-sub a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0 11px 16px;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  border-left: 2px solid var(--rule);
}
.d-sub a:hover { color: var(--accent); border-left-color: var(--accent); }
.d-sub a span { font-family: var(--mono); font-size: 12px; color: var(--ink-4); }
.drawer-cta { display: grid; gap: 10px; margin-top: 28px; }
.drawer-meta { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--rule); font-size: var(--fs-sm); color: var(--ink-3); display: grid; gap: 10px; }
.drawer-meta a { display: flex; align-items: center; gap: 10px; }
.drawer-meta svg { width: 16px; height: 16px; color: var(--ink-4); }

/* Mobile: full-screen slide menu */
@media (max-width: 767px) {
  .drawer { width: 100%; border-left: none; }
  .scrim { display: none; }
}

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-desk { display: none; }
  .burger { display: inline-grid; }
  .nav { gap: 16px; }
}

/* --------------------------------------------------------------------------
   09  Hero (home) — large left heading, right spec panel
   -------------------------------------------------------------------------- */
.hero { padding-top: 96px; padding-bottom: 88px; }
@media (max-width: 1023px) { .hero { padding-top: 64px; padding-bottom: 56px; } }
@media (max-width: 767px) { .hero { padding-top: 40px; padding-bottom: 40px; } }

.hero h1 { margin-top: 28px; }
.hero .lead { margin-top: 28px; max-width: 30em; }

/* Spec panel — a readout, not a dashboard illustration */
.spec-panel {
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  background: var(--surface);
  overflow: hidden;
}
.spec-panel .sp-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  background: var(--paper-2);
}
.spec-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--rule-soft);
}
.spec-row:last-child { border-bottom: none; }
.spec-row .k { font-size: var(--fs-sm); color: var(--ink-3); }
.spec-row .v { font-size: var(--fs-sm); font-weight: 550; font-variant-numeric: tabular-nums; }
.spec-foot {
  padding: 16px 20px;
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

/* Hero fact strip */
.facts { display: flex; flex-wrap: wrap; }
.fact {
  flex: 1 1 0;
  min-width: 180px;
  padding: 24px 28px 24px 0;
  border-left: 1px solid var(--rule);
  padding-left: 28px;
}
.fact:first-child { border-left: none; padding-left: 0; }
.fact .fv { font-size: 28px; font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.fact .fk { font-size: var(--fs-xs); color: var(--ink-3); margin-top: 6px; }
@media (max-width: 767px) {
  .facts { display: grid; grid-template-columns: 1fr 1fr; }
  .fact { border-left: none; border-top: 1px solid var(--rule); padding: 18px 0; }
  .fact:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--rule); }
}

/* --------------------------------------------------------------------------
   10  Page headers (inner pages) — each page varies the composition
   -------------------------------------------------------------------------- */
.phead { padding-top: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--rule); }
@media (max-width: 767px) { .phead { padding-top: 32px; padding-bottom: 36px; } }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: var(--fs-xs); color: var(--ink-3); margin-bottom: 28px; flex-wrap: wrap; }
.crumbs svg { width: 13px; height: 13px; opacity: 0.5; }
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current] { color: var(--ink); }

/* --------------------------------------------------------------------------
   11  Trust band — static, left-labelled, no marquee
   -------------------------------------------------------------------------- */
.trust { display: flex; align-items: center; gap: 40px; padding-block: 28px; flex-wrap: wrap; }
.trust .tl { font-size: var(--fs-xs); color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; flex-shrink: 0; }
.trust ul { display: flex; flex-wrap: wrap; gap: 8px 32px; align-items: center; }
.trust li { display: flex; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: 500; color: var(--ink-2); }
.trust svg { width: 16px; height: 16px; color: var(--ink-4); }
@media (max-width: 767px) { .trust { gap: 16px; } .trust ul { gap: 10px 20px; } .trust li { font-size: 13px; } }

/* --------------------------------------------------------------------------
   12  Products — asymmetric editorial grid (each tile a different size)
   -------------------------------------------------------------------------- */
.prod {
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--hue, var(--accent));
  padding: 22px 16px 0;
  margin-inline: -16px;
  min-height: 100%;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease);
}
/* The hue rule thickens on hover — the tile's own colour waking up, rather
   than a shadow lift. Sits over the border so the two never double up. */
.prod::before {
  content: "";
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--hue, var(--accent));
  transform-origin: top;
  transition: transform var(--t) var(--ease);
  pointer-events: none;
}
.prod:hover, .prod:focus-visible { transform: translateY(-3px); }
.prod:hover::before, .prod:focus-visible::before { transform: scaleY(3); }
@supports (background: color-mix(in srgb, red 5%, transparent)) {
  .prod:hover, .prod:focus-visible {
    background: color-mix(in srgb, var(--hue, var(--accent)) 4%, transparent);
  }
}
.prod:hover h3, .prod:focus-visible h3,
.prod:hover .pn, .prod:focus-visible .pn { color: var(--hue, var(--accent)); }
.prod:hover .arrow-link, .prod:focus-visible .arrow-link { color: var(--hue, var(--accent)); }
.prod:hover .arrow-link svg, .prod:focus-visible .arrow-link svg { transform: translateX(4px); }
.prod:hover .pfig, .prod:focus-visible .pfig { border-color: var(--hue, var(--accent)); }

.prod .pn { font-family: var(--mono); font-size: 12px; color: var(--ink-4); transition: color var(--t); }
.prod h3 { margin-top: 14px; color: var(--ink); transition: color var(--t); }
.prod .pfig { transition: border-color var(--t); }
.prod .pd { color: var(--ink-2); margin-top: 12px; font-size: var(--fs-sm); line-height: 1.55; }
.prod .pf { margin-top: 20px; display: grid; gap: 8px; }
.prod .pf li { font-size: var(--fs-sm); color: var(--ink-2); display: flex; gap: 10px; align-items: baseline; }
.prod .pf li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--hue, var(--accent)); flex-shrink: 0; transform: translateY(-3px); }
.prod .pfoot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--rule-soft);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.prod .price { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.prod .price small { font-size: var(--fs-xs); font-weight: 400; color: var(--ink-3); letter-spacing: 0; }
.prod .price em { display: block; font-style: normal; font-size: var(--fs-xs); color: var(--ink-3); font-weight: 400; letter-spacing: 0; margin-bottom: 2px; }
.prod-lg h3 { font-size: var(--fs-h3); }
.prod-lg .pd { font-size: var(--fs-body); }

/* Product figure — a small abstract diagram, unique per product.
   Capped so the diagram keeps its drawn scale instead of ballooning. */
.pfig { margin-top: 24px; border: 1px solid var(--rule); border-radius: 12px; background: var(--surface); padding: 20px; color: var(--hue, var(--accent)); }
/* Product diagrams are drawn at 288px wide — cap them so labels keep scale. */
.figwrap { max-width: 440px; }
.figwrap svg { width: 100%; height: auto; }
.prod-grid { align-items: start; }

/* --------------------------------------------------------------------------
   13  Alternating feature rows (image / text)
   -------------------------------------------------------------------------- */
.alt { align-items: center; }
.alt + .alt { margin-top: var(--sec); padding-top: var(--sec); border-top: 1px solid var(--rule); }
.alt-figure {
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  background: var(--surface);
  padding: 40px;
  overflow: hidden;
}
@media (max-width: 767px) { .alt-figure { padding: 24px; } }
.alt-figure svg { width: 100%; height: auto; }
.alt-figure > svg { max-width: 640px; margin-inline: auto; }

.point-list { display: grid; gap: 0; margin-top: 32px; }
.point-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.point-list li:last-child { border-bottom: 1px solid var(--rule); }
.point-list li i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-4);
  padding-top: 2px;
}
.point-list li b { color: var(--ink); font-weight: 550; }

/* --------------------------------------------------------------------------
   14  Large statistics
   -------------------------------------------------------------------------- */
.bigstat { padding-block: 8px; min-width: 0; }
/* Capped so the longest value ("100,000+" ≈ 4.4em) still fits a 3-column
   cell at every width — above this it spills into the next stat. */
.bigstat .bv {
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.bigstat .bk { margin-top: 16px; font-size: var(--fs-sm); color: var(--ink-3); max-width: 22em; }
.bigstat .bl { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-bottom: 18px; }
.statgrid > * { padding-top: 32px; border-top: 1px solid var(--rule); }
@media (max-width: 767px) { .statgrid { row-gap: 28px; } .statgrid > * { padding-top: 22px; } }

/* --------------------------------------------------------------------------
   15  Tables — comparison / matrix / spec. Horizontal scroll on small screens.
   -------------------------------------------------------------------------- */
.scroller {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.scroller table { width: 100%; min-width: 720px; }
.scroll-hint { display: none; font-size: var(--fs-xs); color: var(--ink-3); margin-bottom: 12px; }
@media (max-width: 1023px) { .scroll-hint { display: flex; align-items: center; gap: 8px; } }
.scroll-hint svg { width: 14px; height: 14px; }

table.cmp th, table.cmp td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  font-size: var(--fs-sm);
  vertical-align: middle;
}
table.cmp thead th {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 14px;
}
table.cmp thead th.us { color: var(--accent); }
table.cmp tbody td:first-child,
table.cmp tbody th:first-child { color: var(--ink); font-weight: 500; }
table.cmp td.us { color: var(--ink); font-weight: 550; background: var(--accent-tint); }
table.cmp thead th.us { background: var(--accent-tint); }
table.cmp tbody tr:last-child td { border-bottom: none; }
.yes { color: var(--ok); display: inline-flex; }
.no { color: var(--ink-4); display: inline-flex; }
.yes svg, .no svg { width: 18px; height: 18px; }

/* Sticky first column so the row label stays visible while scrolling */
table.sticky-col th[scope="row"],
table.sticky-col tbody td:first-child {
  position: sticky;
  left: 0;
  background: var(--paper);
  z-index: 1;
}
.section-band table.sticky-col th[scope="row"],
.section-band table.sticky-col tbody td:first-child { background: var(--paper-2); }
table.sticky-col thead th:first-child { position: sticky; left: 0; background: var(--paper); z-index: 2; }
.section-band table.sticky-col thead th:first-child { background: var(--paper-2); }

table.spec { width: 100%; }
table.spec td { padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: var(--fs-sm); }
table.spec tr:last-child td { border-bottom: none; }
table.spec td:first-child { color: var(--ink-3); width: 46%; }
table.spec td:last-child { font-weight: 500; text-align: right; }

/* --------------------------------------------------------------------------
   16  Pricing — horizontal comparison desktop, stacked cards mobile
   -------------------------------------------------------------------------- */
/* Five billing terms. Full words while they fit, month counts when they don't. */
.cycle {
  display: inline-flex;
  border: 1px solid var(--rule);
  border-radius: var(--r-btn);
  overflow: hidden;
  max-width: 100%;
}
.cycle button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding-inline: 14px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink-3);
  transition: background var(--t), color var(--t);
}
.cycle button:hover { color: var(--ink); background: var(--rule-soft); }
.cycle button + button { border-left: 1px solid var(--rule); }
.cycle button.on { background: var(--ink); color: var(--paper); }
.cycle button.on:hover { background: var(--ink); }
.cycle .save { font-size: 11px; color: var(--ok); }
.cycle button.on .save { color: inherit; opacity: 0.75; }
.cycle .t-short { display: none; }

@media (max-width: 1023px) {
  .cycle button { padding-inline: 11px; }
  .cycle .save { font-size: 10px; }
}
/* Below this the five full labels cannot fit, so switch to 1M/3M/12M/24M/36M
   rather than making the control scroll sideways. */
@media (max-width: 620px) {
  .cycle { width: 100%; }
  .cycle button { flex: 1 1 0; justify-content: center; padding-inline: 4px; gap: 3px; }
  .cycle .t-long { display: none; }
  .cycle .t-short { display: inline; }
  .cycle .save { font-size: 9px; }
}

/* Currency picker — a plain select so it works without JS via ?cur= */
.cur-switch select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--rule);
  border-radius: var(--r-btn);
  background: transparent;
  color: inherit;
  font-size: var(--fs-xs);
  font-weight: 500;
  height: 26px;
  padding: 0 22px 0 9px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 12px) 11px, calc(100% - 8px) 11px;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}
.cur-switch select option { color: var(--ink); background: var(--surface); }
.cur-switch.on-band select { border-color: var(--rule-on-ink); color: var(--on-ink-2); }
.cur-switch.on-band select:hover { color: var(--on-ink); border-color: var(--on-ink-3); }
.cur-switch.inline select { height: 40px; font-size: 14px; padding: 0 30px 0 14px;
  background-position: calc(100% - 16px) 18px, calc(100% - 12px) 18px; }
.cur-switch.inline select:hover { border-color: var(--rule-strong); }
.cur-switch noscript a { margin-left: 8px; border-bottom: 1px solid currentColor; }

.ptable { border: 1px solid var(--rule); border-radius: var(--r-card); overflow: hidden; background: var(--surface); }
.ptable-scroll { overflow-x: auto; }
/* Label column + four plans. Below this the scroller takes over rather than
   squeezing feature text into two-word lines. */
.ptable table { width: 100%; min-width: 1000px; }
.ptable th, .ptable td { padding: 20px; text-align: left; border-bottom: 1px solid var(--rule-soft); vertical-align: top; }
.ptable thead th { border-bottom: 1px solid var(--rule); vertical-align: bottom; }
.ptable thead th + th { border-left: 1px solid var(--rule-soft); }
.ptable tbody td + td { border-left: 1px solid var(--rule-soft); }
.ptable tbody tr:last-child td { border-bottom: none; }
.ptable col.hi, .ptable .hi { background: var(--accent-tint); }
.ptable .pname { font-size: var(--fs-h4); font-weight: 600; letter-spacing: -0.02em; }
.ptable .pdesc { font-size: var(--fs-xs); color: var(--ink-3); margin-top: 6px; }
.ptable .pamt { display: flex; align-items: baseline; gap: 3px; margin-top: 20px; }
.ptable .pamt .cur { font-size: 17px; line-height: 1; color: var(--ink-3); }
.ptable .pamt .val { font-size: 40px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.ptable .pamt .per { font-size: var(--fs-xs); color: var(--ink-3); }
.ptable .renew { font-size: 12px; color: var(--ink-4); margin-top: 8px; min-height: 2.6em; line-height: 1.35; }
.ptable .ribbon { display: inline-block; font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.ptable .prow-label { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.ptable .plist { display: grid; gap: 10px; }
.ptable .plist li { display: flex; gap: 9px; align-items: baseline; font-size: var(--fs-sm); color: var(--ink-2); }
.ptable .plist svg { width: 15px; height: 15px; color: var(--ok); flex-shrink: 0; transform: translateY(2px); }

/* --------------------------------------------------------------------------
   16b  Global pricing — the whole catalogue as one matrix
   -------------------------------------------------------------------------- */
.pricebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pricebar-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
@media (max-width: 620px) {
  .pricebar { display: grid; gap: 14px; }
  .pricebar > .row { display: grid; gap: 8px; justify-items: start; }
  .pricebar .cur-switch, .pricebar .cur-switch select { width: 100%; }
}

.gm-wrap { margin-top: 8px; }
table.gm { width: 100%; min-width: 940px; border-collapse: collapse; }
table.gm thead th {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  text-align: left;
  padding: 0 20px 14px;
  border-bottom: 1px solid var(--rule-strong);
}
table.gm thead th:first-child { padding-left: 0; }

table.gm tbody tr { border-bottom: 1px solid var(--rule); }
table.gm tbody tr:last-child { border-bottom: none; }

/* Category rail — the hue is the row's identity */
.gm-cat {
  text-align: left;
  vertical-align: middle;
  padding: 26px 24px 26px 0;
  border-left: 3px solid var(--hue, var(--accent));
  padding-left: 20px;
  min-width: 210px;
}
.gm-cat a { display: block; }
.gm-cat .gm-name {
  display: block;
  font-size: var(--fs-h4);
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
  transition: color var(--t);
}
.gm-cat a:hover .gm-name { color: var(--hue, var(--accent)); }
.gm-cat .gm-best { display: block; font-size: var(--fs-xs); color: var(--ink-3); margin-top: 4px; max-width: 24ch; }

.gm-cell {
  position: relative;
  vertical-align: middle;
  padding: 22px 20px;
  border-left: 1px solid var(--rule-soft);
  min-width: 170px;
}
.gm-cell.hi { background: color-mix(in srgb, var(--hue, var(--accent)) 6%, transparent); }
.gm-flag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--hue, var(--accent));
  margin-bottom: 6px;
}
.gm-plan { display: block; font-size: var(--fs-sm); font-weight: 550; color: var(--ink); }
.gm-price { display: flex; align-items: baseline; gap: 2px; margin-top: 8px; }
.gm-price i { font-style: normal; font-size: 15px; line-height: 1; color: var(--ink-3); }
.gm-price b {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.gm-price em { font-style: normal; font-size: var(--fs-xs); color: var(--ink-3); margin-left: 2px; }
.gm-spec { display: block; font-size: var(--fs-xs); color: var(--ink-3); margin-top: 8px; }
.gm-empty { color: var(--ink-4); text-align: center; }

@media (max-width: 767px) {
  .gm-cell { min-width: 150px; padding: 18px 14px; }
  .gm-price b { font-size: 25px; }
  .gm-cat { min-width: 165px; padding-right: 14px; }
}

/* Term ladder — one plan across all five terms */
.tl { border-top: 1px solid var(--rule); }
.tl-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.6fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--rule);
}
.tl-row.on { background: var(--accent-tint); padding-left: 16px; }
.tl-term { font-size: var(--fs-sm); font-weight: 550; }
.tl-per { font-size: var(--fs-h4); font-weight: 600; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.tl-per em { font-style: normal; font-size: var(--fs-xs); font-weight: 400; color: var(--ink-3); }
.tl-total { font-size: var(--fs-sm); color: var(--ink-3); }
.tl-save { font-size: var(--fs-sm); font-weight: 550; color: var(--ok); text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 767px) {
  .tl-row { grid-template-columns: 1fr auto; gap: 4px 16px; }
  .tl-term { grid-column: 1; }
  .tl-save { grid-column: 2; grid-row: 1; }
  .tl-per { grid-column: 1; grid-row: 2; }
  .tl-total { grid-column: 1 / -1; grid-row: 3; }
}

/* Mobile pricing = stacked cards */
.pcards { display: none; }
@media (max-width: 767px) {
  .ptable { display: none; }
  .pcards { display: grid; gap: 16px; }
  .pcard {
    border: 1px solid var(--rule);
    border-radius: var(--r-card);
    background: var(--surface);
    padding: 24px;
  }
  .pcard.hi { border-color: var(--accent-rule); }
  .pcard .ribbon { display: inline-block; font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
  .pcard .pname { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -0.025em; }
  .pcard .pdesc { font-size: var(--fs-sm); color: var(--ink-3); margin-top: 6px; }
  .pcard .pamt { display: flex; align-items: baseline; gap: 3px; margin-top: 18px; }
  .pcard .pamt .cur { font-size: 18px; line-height: 1; color: var(--ink-3); }
  .pcard .pamt .val { font-size: 44px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
  .pcard .pamt .per { font-size: var(--fs-xs); color: var(--ink-3); }
  .pcard .renew { font-size: 12px; color: var(--ink-4); margin-top: 8px; }
  .pcard .plist { display: grid; gap: 10px; margin: 22px 0; padding-top: 20px; border-top: 1px solid var(--rule); }
  .pcard .plist li { display: flex; gap: 9px; align-items: baseline; font-size: var(--fs-sm); color: var(--ink-2); }
  .pcard .plist svg { width: 15px; height: 15px; color: var(--ok); flex-shrink: 0; transform: translateY(2px); }
}

/* --------------------------------------------------------------------------
   17  Timeline — horizontal on desktop, vertical rail on mobile
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: var(--gutter); }
.step { position: relative; padding-top: 34px; border-top: 1px solid var(--rule); }
.step::before {
  content: "";
  position: absolute;
  top: -5px; left: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
}
.section-band .step::before { background: var(--paper-2); }
.step .sn { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.step h3 { font-size: var(--fs-h4); margin-top: 10px; }
.step p { font-size: var(--fs-sm); color: var(--ink-2); margin-top: 10px; }
.step .st { font-family: var(--mono); font-size: 12px; color: var(--ink-4); margin-top: 14px; display: block; }
@media (max-width: 1023px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; } }
@media (max-width: 767px) {
  .steps { grid-template-columns: 1fr; row-gap: 0; }
  .step {
    padding: 0 0 28px 28px;
    border-top: none;
    border-left: 1px solid var(--rule);
  }
  .step:last-child { border-left-color: transparent; padding-bottom: 0; }
  .step::before { top: 4px; left: -5px; }
}

/* Vertical history timeline (about page) */
.history { display: grid; }
.hitem {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}
.hitem:last-child { border-bottom: 1px solid var(--rule); }
.hitem .hy { font-family: var(--mono); font-size: var(--fs-sm); color: var(--accent); padding-top: 3px; }
.hitem h3 { font-size: var(--fs-h4); }
.hitem p { font-size: var(--fs-sm); color: var(--ink-2); margin-top: 8px; max-width: 60ch; }
@media (max-width: 767px) { .hitem { grid-template-columns: 1fr; gap: 8px; } }

/* --------------------------------------------------------------------------
   18  Testimonials — split: one featured quote + a selectable list
   -------------------------------------------------------------------------- */
.quote-lg {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.34;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
  text-wrap: pretty;
}
.quote-who { display: flex; align-items: center; gap: 14px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--rule); }
.mono-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--rule-strong);
  font-size: 13px;
  font-weight: 550;
  color: var(--ink-2);
  flex-shrink: 0;
}
.quote-who .qn { font-size: var(--fs-sm); font-weight: 550; }
.quote-who .qr { font-size: var(--fs-xs); color: var(--ink-3); }

.voice-list { display: grid; }
.voice {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  text-align: left;
  transition: padding-left var(--t) var(--ease), color var(--t);
}
.voice:last-child { border-bottom: 1px solid var(--rule); }
.voice:hover { padding-left: 8px; }
.voice .vn { display: block; font-size: var(--fs-sm); font-weight: 500; color: var(--ink); }
.voice .vr { display: block; font-size: var(--fs-xs); color: var(--ink-3); margin-top: 3px; }
.voice .vi { font-family: var(--mono); font-size: 12px; color: var(--ink-4); }
.voice[aria-selected="true"] { border-left: 2px solid var(--accent); padding-left: 14px; }
.voice[aria-selected="true"] .vn { color: var(--accent); }

/* --------------------------------------------------------------------------
   19  FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--rule); }
.faq:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  font-size: var(--fs-h4);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.faq-q .fi { width: 20px; height: 20px; flex-shrink: 0; color: var(--ink-3); transition: transform var(--t) var(--ease), color var(--t); margin-top: 4px; }
.faq.open .faq-q { color: var(--accent); }
.faq.open .faq-q .fi { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-slow) var(--ease); }
.faq-a-in { padding-bottom: 26px; color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.7; max-width: 68ch; }

/* --------------------------------------------------------------------------
   20  CTA band — left copy, right actions. Never centred.
   -------------------------------------------------------------------------- */
.cta { padding-block: 88px; }
@media (max-width: 767px) { .cta { padding-block: 56px; } }
.cta h2 { max-width: 14ch; }
.cta p { color: var(--on-ink-2); max-width: 46ch; margin-top: 20px; font-size: var(--fs-sm); }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
@media (max-width: 1023px) { .cta-actions { align-items: stretch; } }

/* --------------------------------------------------------------------------
   21  Panels, notes, misc surfaces (used sparingly, never as the default)
   -------------------------------------------------------------------------- */
.panel {
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  background: var(--surface);
  padding: 32px;
}
.panel-tight { padding: 24px; }
.panel-flush { padding: 0; overflow: hidden; }

.note {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 20px;
  font-size: var(--fs-sm);
  color: var(--ink-2);
}

.divider { height: 1px; background: var(--rule); border: none; }

/* Definition rows — used for contact channels, spec lists etc. */
.deflist { display: grid; }
.defrow {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.deflist .defrow:last-child { border-bottom: 1px solid var(--rule); }
.defrow dt { font-size: var(--fs-sm); font-weight: 550; }
.defrow dd { font-size: var(--fs-sm); color: var(--ink-2); }
@media (max-width: 767px) { .defrow { grid-template-columns: 1fr; gap: 6px; } }

/* Terminal readout — flat, no window chrome, no traffic lights */
.readout {
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  background: var(--band);
  color: var(--on-ink-2);
  padding: 28px 30px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.9;
  white-space: pre;
  overflow-x: auto;
}
@media (max-width: 767px) { .readout { font-size: 12px; padding: 20px; } }
[data-theme="dark"] .readout { background: #0e0d0b; }
.readout .c { color: var(--on-ink-3); }
.readout .k { color: var(--accent); }
.readout .g { color: #7fb98f; }
.readout b { color: var(--on-ink); font-weight: 500; }

/* Meter — plain bar, no gradient */
.meter + .meter { margin-top: 22px; }
.meter .mh { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 9px; font-size: var(--fs-sm); }
.meter .mh b { font-weight: 500; }
.meter .mt { height: 6px; background: var(--rule-soft); border-radius: 3px; overflow: hidden; }
.meter .mf { height: 100%; width: 0; background: var(--ink-4); border-radius: 3px; transition: width 1s var(--ease); }
.meter.is-us .mf { background: var(--accent); }
.meter.is-us .mh b { color: var(--accent); }

/* Status rows */
.srow { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 24px; border-bottom: 1px solid var(--rule-soft); }
.srow:last-child { border-bottom: none; }
.srow .sname { font-size: var(--fs-sm); font-weight: 500; display: flex; align-items: center; gap: 10px; }
.uptime { display: flex; gap: 2px; align-items: flex-end; }
.uptime span { width: 5px; height: 22px; border-radius: 1px; background: var(--ok); opacity: 0.8; }
.uptime span.w { background: var(--warn); }
.uptime span.d { background: var(--bad); }
@media (max-width: 767px) { .uptime span { width: 3px; } }

/* Forms */
.field { display: grid; gap: 7px; margin-bottom: 20px; }
.field label { font-size: var(--fs-xs); font-weight: 550; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field textarea, .field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--rule);
  border-radius: var(--r-input);
  background: var(--surface);
  font-size: var(--fs-sm);
  color: var(--ink);
  transition: border-color var(--t);
}
.field textarea { height: auto; min-height: 132px; padding: 13px 14px; resize: vertical; line-height: 1.6; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--rule-strong); }
.field .hint { font-size: 12px; color: var(--ink-4); }
.inline-form { display: flex; gap: 8px; }
.inline-form input { flex: 1; height: 44px; }
.inline-form .btn { height: 44px; flex-shrink: 0; }

/* Search */
.searchbox { position: relative; }
.searchbox input {
  width: 100%;
  height: 56px;
  padding: 0 18px 0 48px;
  border: 1px solid var(--rule);
  border-radius: var(--r-btn);
  background: var(--surface);
  font-size: var(--fs-body);
  color: var(--ink);
}
.searchbox input:hover { border-color: var(--rule-strong); }
.searchbox > svg { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--ink-4); }

/* Prose (legal / articles) */
.prose { color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.78; max-width: 72ch; }
.prose h2 { font-size: var(--fs-h3); color: var(--ink); margin: 56px 0 18px; scroll-margin-top: 110px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--fs-h4); color: var(--ink); margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; }
.prose ul { list-style: none; margin-bottom: 18px; display: grid; gap: 10px; }
.prose ul li { padding-left: 20px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 5px; height: 1px; background: var(--accent); }
.prose a { color: var(--accent); border-bottom: 1px solid var(--accent-rule); }
.prose strong { color: var(--ink); font-weight: 550; }
.prose code { font-family: var(--mono); font-size: 0.88em; background: var(--paper-2); padding: 2px 6px; border-radius: 4px; }

.toc { position: sticky; top: calc(var(--nav-h) + 32px); align-self: start; }
.toc h5 { font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; font-weight: 500; }
.toc a { display: block; padding: 8px 0 8px 14px; border-left: 1px solid var(--rule); font-size: var(--fs-sm); color: var(--ink-3); }
.toc a:hover, .toc a.on { color: var(--accent); border-left-color: var(--accent); }
@media (max-width: 1023px) { .toc { display: none; } }

/* Link rows — knowledge base, careers, article lists */
.linkrow {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  transition: padding-left var(--t) var(--ease);
}
.linkrow:last-child { border-bottom: 1px solid var(--rule); }
.linkrow:hover { padding-left: 10px; }
.linkrow:hover .lr-t { color: var(--accent); }
.lr-t { font-size: var(--fs-h4); font-weight: 500; letter-spacing: -0.015em; transition: color var(--t); }
.lr-m { font-size: var(--fs-xs); color: var(--ink-3); margin-top: 6px; display: flex; gap: 14px; flex-wrap: wrap; }
.linkrow > svg { width: 18px; height: 18px; color: var(--ink-4); flex-shrink: 0; }
@media (max-width: 767px) { .lr-t { font-size: 16px; } }

/* Topic tiles — bordered, flat, no shadow, distinct from .prod */
.topic {
  display: block;
  padding: 24px 0 24px 0;
  border-top: 1px solid var(--rule);
  transition: padding-left var(--t) var(--ease);
}
.topic:hover { padding-left: 10px; }
.topic:hover h3 { color: var(--accent); }
.topic .tn { font-family: var(--mono); font-size: 12px; color: var(--ink-4); }
.topic h3 { font-size: var(--fs-h4); margin-top: 8px; transition: color var(--t); }
.topic p { font-size: var(--fs-sm); color: var(--ink-3); margin-top: 8px; }
.topic .tc { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-top: 12px; display: block; }

/* --------------------------------------------------------------------------
   22  Footer
   -------------------------------------------------------------------------- */
.site-foot { border-top: 1px solid var(--rule); padding-top: 72px; padding-bottom: 32px; background: var(--paper); }
.foot-col h5 {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 500;
  margin-bottom: 18px;
}
.foot-col a { display: block; padding: 7px 0; font-size: var(--fs-sm); color: var(--ink-2); transition: color var(--t); }
.foot-col a:hover { color: var(--accent); }
.foot-contact { display: grid; gap: 12px; margin-top: 24px; font-size: var(--fs-sm); color: var(--ink-2); }
.foot-contact li { display: flex; align-items: center; gap: 11px; }
.foot-contact svg { width: 15px; height: 15px; color: var(--ink-4); flex-shrink: 0; }
.social { display: flex; gap: 6px; margin-top: 24px; }
.social a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--rule); border-radius: 6px; color: var(--ink-3); transition: color var(--t), border-color var(--t); }
.social a:hover { color: var(--accent); border-color: var(--accent-rule); }
.social svg { width: 15px; height: 15px; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  margin-top: 64px; padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: var(--fs-xs); color: var(--ink-3);
}
.foot-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-bottom a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   23  Reveal — a short fade, nothing more
   -------------------------------------------------------------------------- */
.js [data-rv] { opacity: 0; transform: translateY(12px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
[data-rv].in { opacity: 1; transform: none; }
/* Above-the-fold content is never hidden: the h1 is usually the LCP element,
   and holding it at opacity 0 until the observer fires delays LCP by however
   long the deferred JS takes to boot. */
.js .hero [data-rv], .js .phead [data-rv] { opacity: 1; transform: none; }
[data-rv="1"] { transition-delay: 60ms } [data-rv="2"] { transition-delay: 120ms }
[data-rv="3"] { transition-delay: 180ms } [data-rv="4"] { transition-delay: 240ms }

.skip {
  position: absolute; left: -9999px; top: 8px;
  background: var(--ink); color: var(--paper);
  padding: 12px 20px; border-radius: var(--r-btn);
  font-size: var(--fs-sm); z-index: 2000;
}
.skip:focus { left: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   24  Motion & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-rv] { opacity: 1 !important; transform: none !important; }
}

@media print {
  .site-head, .site-foot, .topline, .drawer, .scrim { display: none !important; }
  body { background: #fff; color: #000; }
  .on-ink { background: #fff !important; color: #000 !important; }
}

/* Vendor mark inline before a spec value — sits on the text baseline and stays
   a shade lighter than the value, so it labels without competing. */
.spec .mark,
.spec-row .mark,
.plan-feat .mark,
.topic h3 .mark,
.lr-m .mark,
.sname .mark,
.gm-spec .mark {
  display: inline-flex;
  vertical-align: -2px;
  margin-right: 6px;
  color: var(--ink-3);
}
.spec .mark svg,
.spec-row .mark svg,
.plan-feat .mark svg,
.topic h3 .mark svg,
.lr-m .mark svg,
.sname .mark svg,
.gm-spec .mark svg { width: 14px; height: 14px; }

/* In a heading the mark should scale with the type, not sit at a fixed 14px. */
.topic h3 .mark svg { width: 1em; height: 1em; }
.topic h3 .mark { vertical-align: -1px; }
