/* ════════════════════════════════════════════════════════════════
   WHALIEPAY — Expense management & corporate cards
   Theme: Deep-sea sonar console · midnight blue + bioluminescent teal
   Prefix: .wh-
   ════════════════════════════════════════════════════════════════ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }

:root {
  /* ── Abyss palette ── */
  --bg:        #050b14;          /* deepest */
  --bg-2:      #0a1622;          /* mid */
  --bg-3:      #122236;          /* raised */
  --bg-4:      #1a3050;          /* float */

  --ink:       #e8f1fa;
  --ink-2:     #8aa3bd;
  --ink-3:     #5b7188;

  --line:      rgba(120, 180, 220, 0.10);
  --line-2:    rgba(120, 180, 220, 0.22);
  --line-3:    rgba(120, 180, 220, 0.42);

  --glow:      #2dd4bf;           /* bioluminescent teal */
  --glow-soft: rgba(45, 212, 191, 0.18);
  --glow-2:    #06d6a0;           /* abyss green */
  --amber:     #fcb045;           /* sonar amber */
  --pink:      #ee5a87;           /* depth warning */
  --violet:    #7c5cff;           /* deep violet */

  --display: "Manrope", "Inter", system-ui, sans-serif;
  --sans:    "Inter", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --max: 1280px;
  --gutter: 28px;
  --rad-sm: 6px;
  --rad: 12px;
  --rad-lg: 18px;
  --rad-xl: 28px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Deep grid background — like ocean floor sonar grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(120,180,220,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,180,220,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
/* Radial vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center top, transparent 0%, var(--bg) 80%);
  pointer-events: none;
  z-index: 0;
}

main, header, footer, section, article { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ══════════════════════ ANNOUNCEMENT ══════════════════════ */
.wh-ann {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
}
.wh-ann__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.wh-ann__dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--glow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--glow);
  animation: wh-pulse 1.4s ease-in-out infinite;
}
.wh-ann a {
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wh-ann a:hover { color: var(--glow); }
@keyframes wh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ══════════════════════ HEADER · terminal status bar ══════════════════════ */
.wh-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s, background 0.3s;
}
.wh-head.is-stuck {
  background: rgba(5, 11, 20, 0.96);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line-2);
}

/* Top thin row · system status indicators */
.wh-head__bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.wh-head__bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7px var(--gutter);
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wh-head__sys {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
}
.wh-head__sys-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--glow-2);
  box-shadow: 0 0 10px var(--glow-2);
  animation: wh-pulse 1.6s ease-in-out infinite;
}
.wh-head__sys b { color: var(--glow); font-weight: 600; }

/* Main row · logo · nav · CTAs */
.wh-head__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}
.wh-logo__tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--glow);
  background: rgba(45, 212, 191, 0.10);
  padding: 3px 7px;
  border-radius: 3px;
  border: 1px solid rgba(45, 212, 191, 0.32);
  margin-left: 6px;
  text-transform: uppercase;
}

.wh-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.wh-logo__ring {
  width: 30px; height: 30px;
  border: 2px solid var(--glow);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 12px var(--glow-soft);
}
.wh-logo__ring::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--glow) 0%, transparent 70%);
  opacity: 0.55;
}
.wh-logo__ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, var(--glow) 30deg, transparent 60deg);
  animation: wh-spin 4s linear infinite;
  opacity: 0.7;
}
@keyframes wh-spin { to { transform: rotate(360deg); } }

.wh-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}
.wh-nav a {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s, background 0.2s;
  padding: 7px 10px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.wh-nav a::before {
  content: "~/";
  color: var(--ink-3);
  margin-right: 4px;
  font-family: var(--mono);
}
.wh-nav a:hover { color: var(--glow); background: rgba(45, 212, 191, 0.06); }
.wh-nav a:hover::before { color: var(--glow); }
.wh-nav a.is-active { color: var(--ink); background: rgba(45, 212, 191, 0.10); }
.wh-nav a.is-active::before { color: var(--glow); }

.wh-head__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wh-lang { position: relative; }
.wh-lang__btn {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 7px 12px;
  border-radius: var(--rad-sm);
  transition: all 0.2s;
}
.wh-lang__btn:hover { border-color: var(--glow); color: var(--glow); }
.wh-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--rad);
  padding: 6px;
  min-width: 160px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  z-index: 5;
}
.wh-lang.is-open .wh-lang__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.wh-lang__menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: var(--rad-sm);
  font-size: 13px;
  font-family: var(--sans);
}
.wh-lang__menu button:hover {
  background: rgba(45, 212, 191, 0.08);
  color: var(--glow);
}

.wh-link {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.wh-link:hover { color: var(--ink); }

/* ── Buttons ── */
.wh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--rad-sm);
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  transition: all 0.2s;
  position: relative;
}
.wh-btn:hover { border-color: var(--glow); color: var(--glow); }
.wh-btn--mint {
  background: var(--glow);
  color: #04101a;
  border-color: var(--glow);
  box-shadow: 0 0 0 0 var(--glow-soft);
}
.wh-btn--mint:hover {
  background: var(--glow-2);
  border-color: var(--glow-2);
  color: #04101a;
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.45);
  transform: translateY(-1px);
}
.wh-btn--ghost {
  background: rgba(120, 180, 220, 0.04);
  border-color: var(--line-2);
}
.wh-btn--ghost:hover {
  background: rgba(45, 212, 191, 0.08);
  border-color: var(--glow);
}
.wh-btn--lg {
  padding: 14px 24px;
  font-size: 15px;
}
.wh-btn--wide {
  width: 100%;
  justify-content: center;
}
.wh-btn svg { transition: transform 0.2s; }
.wh-btn:hover svg { transform: translateX(3px); }

.wh-burger {
  display: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--rad-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.wh-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.wh-mobile {
  display: none;
  padding: 16px var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.wh-mobile a {
  display: block;
  padding: 12px 0;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.wh-mobile a:last-of-type { border-bottom: none; }
.wh-mobile .wh-btn { margin-top: 12px; }

/* ══════════════════════ HERO ══════════════════════ */
.wh-hero {
  padding: 96px var(--gutter) 100px;
  position: relative;
  overflow: hidden;
}
.wh-hero::before {
  /* Sonar sweep glow at hero bottom */
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--glow-soft) 0%, transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.6;
}
.wh-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.wh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(120, 180, 220, 0.04);
}
.wh-eyebrow b {
  color: var(--glow);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wh-eyebrow b::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--glow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--glow);
  animation: wh-pulse 1.4s ease-in-out infinite;
}

.wh-hero__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.wh-hero__h i {
  font-style: normal;
  font-weight: 500;
  color: var(--glow);
  position: relative;
}
.wh-hero__h i::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  opacity: 0.6;
}

.wh-hero__lede {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 36px;
}

.wh-hero__row {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}

.wh-hero__small {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* ── Hero art: sonar console ── */
.wh-hero__art { position: relative; }

.wh-sonar {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
}
.wh-sonar::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, var(--glow-soft) 0%, transparent 60%);
  pointer-events: none;
}
.wh-sonar__ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-2);
  border-radius: 50%;
}
.wh-sonar__ring--2 { inset: 12%; }
.wh-sonar__ring--3 { inset: 24%; }
.wh-sonar__ring--4 { inset: 36%; }

.wh-sonar__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, var(--glow-soft) 40deg, transparent 80deg);
  animation: wh-spin 4s linear infinite;
}

.wh-sonar__cross {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wh-sonar__cross::before,
.wh-sonar__cross::after {
  content: "";
  position: absolute;
  background: var(--line-2);
}
.wh-sonar__cross::before {
  top: 50%; left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.wh-sonar__cross::after {
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.wh-sonar__dot {
  position: absolute;
  background: var(--glow);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--glow);
}
.wh-sonar__dot--1 { top: 26%; left: 60%; width: 9px; height: 9px; }
.wh-sonar__dot--2 { top: 58%; left: 32%; width: 7px; height: 7px; background: var(--amber); box-shadow: 0 0 14px var(--amber); animation: wh-pulse 2s ease-in-out infinite; }
.wh-sonar__dot--3 { top: 70%; left: 64%; width: 6px; height: 6px; background: var(--pink); box-shadow: 0 0 12px var(--pink); }

.wh-sonar__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wh-sonar__lbl {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}
.wh-sonar__lbl--n { top: -22px; left: 50%; transform: translateX(-50%); }
.wh-sonar__lbl--s { bottom: -22px; left: 50%; transform: translateX(-50%); }
.wh-sonar__lbl--e { right: -50px; top: 50%; transform: translateY(-50%); }
.wh-sonar__lbl--w { left: -50px; top: 50%; transform: translateY(-50%); }

/* Sonar central card mock */
.wh-sonar__card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64%;
  background: linear-gradient(140deg, #1e3a5f 0%, #0d1f33 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--rad-lg);
  padding: 22px 22px 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px var(--glow-soft);
}
.wh-sonar__cardhead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.wh-sonar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
}
.wh-sonar__brand::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--glow);
}
.wh-sonar__chip {
  width: 32px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, #b8a85e 0%, #8a7a3a 100%);
  position: relative;
}
.wh-sonar__chip::after {
  content: "";
  position: absolute;
  inset: 3px 8px;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 2px;
}
.wh-sonar__cardnum {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 14px;
}
.wh-sonar__cardbot {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
}
.wh-sonar__cardbot b { color: var(--ink); font-weight: 600; font-family: var(--display); font-size: 12px; }

/* Floating depth gauge */
.wh-depth {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--rad);
  padding: 14px 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
  text-align: center;
  width: 78px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.5);
}
.wh-depth__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  color: var(--glow);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.1;
  text-shadow: 0 0 12px var(--glow-soft);
}
.wh-depth__lbl { display: block; margin-top: 4px; opacity: 0.7; }

/* Floating tx ticker */
.wh-tx {
  position: absolute;
  bottom: -28px;
  left: -22px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--rad);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.5);
}
.wh-tx__dot {
  width: 8px; height: 8px;
  background: var(--glow-2);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--glow-2);
  animation: wh-pulse 1.6s ease-in-out infinite;
}
.wh-tx__main {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
}
.wh-tx__sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
}

/* ══════════════════════ TRUST STRIP ══════════════════════ */
.wh-trust {
  padding: 56px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wh-trust__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.wh-trust__lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-bottom: 26px;
}
.wh-trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 38px 56px;
  opacity: 0.7;
}
.wh-trust__chip {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

/* ══════════════════════ SECTIONS COMMON ══════════════════════ */
.wh-sect {
  padding: 110px var(--gutter);
}
.wh-sect__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.wh-sect__head {
  max-width: 720px;
  margin-bottom: 56px;
}
.wh-sect__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.wh-sect__p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
}

[data-rise] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
[data-rise].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════ FEATURE BENTO ══════════════════════ */
.wh-bento {
  padding: 110px var(--gutter);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
}
.wh-bento__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.wh-bento__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}
.wh-tile {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--rad-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.wh-tile:hover {
  border-color: var(--line-3);
  transform: translateY(-2px);
}
.wh-tile--1 { grid-column: span 3; grid-row: span 2; }
.wh-tile--2 { grid-column: span 3; }
.wh-tile--3 { grid-column: span 3; }
.wh-tile--4 { grid-column: span 2; }
.wh-tile--5 { grid-column: span 2; }
.wh-tile--6 { grid-column: span 2; }

.wh-tile__tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 9px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
}
.wh-tile__h {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.wh-tile__p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

.wh-tile--accent {
  background: linear-gradient(135deg, rgba(45,212,191,0.06) 0%, var(--bg-3) 100%);
  border-color: rgba(45,212,191,0.18);
}
.wh-tile--accent .wh-tile__tag { color: var(--glow); border-color: rgba(45,212,191,0.3); }

/* Big tile with chart mockup */
.wh-tile__chart {
  margin-top: 22px;
  height: 130px;
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 14px;
}
.wh-tile__chartbars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100%;
}
.wh-tile__bar {
  flex: 1;
  background: linear-gradient(180deg, var(--glow) 0%, rgba(45,212,191,0.2) 100%);
  border-radius: 2px 2px 0 0;
  position: relative;
}
.wh-tile__bar:nth-child(1) { height: 38%; }
.wh-tile__bar:nth-child(2) { height: 52%; }
.wh-tile__bar:nth-child(3) { height: 28%; }
.wh-tile__bar:nth-child(4) { height: 64%; }
.wh-tile__bar:nth-child(5) { height: 44%; }
.wh-tile__bar:nth-child(6) { height: 78%; }
.wh-tile__bar:nth-child(7) { height: 56%; }
.wh-tile__bar:nth-child(8) { height: 92%; background: linear-gradient(180deg, var(--amber) 0%, rgba(252,176,69,0.2) 100%); }
.wh-tile__bar:nth-child(9) { height: 48%; }
.wh-tile__bar:nth-child(10) { height: 70%; }
.wh-tile__bar:nth-child(11) { height: 36%; }
.wh-tile__bar:nth-child(12) { height: 60%; }

/* Tile with terminal lines */
.wh-tile__term {
  margin-top: 18px;
  background: #02080f;
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
}
.wh-tile__termline {
  display: flex;
  gap: 10px;
  color: var(--ink-2);
}
.wh-tile__termline b { color: var(--glow); font-weight: 600; }
.wh-tile__termline em { color: var(--amber); font-style: normal; }

/* ══════════════════════ HOW IT WORKS ══════════════════════ */
.wh-how {
  padding: 110px var(--gutter);
}
.wh-how__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.wh-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.wh-how__step {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--rad-lg);
  padding: 32px;
  position: relative;
}
.wh-how__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--glow);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wh-how__num::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 10px var(--glow);
}
.wh-how__h {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.wh-how__p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ══════════════════════ STATS ══════════════════════ */
.wh-stats {
  padding: 100px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.wh-stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.wh-stats__cell {
  padding: 0 22px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.wh-stats__cell:last-child { border-right: none; }
.wh-stats__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 56px);
  color: var(--glow);
  letter-spacing: -0.025em;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 28px var(--glow-soft);
}
.wh-stats__lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.wh-stats__sub {
  font-size: 13px;
  color: var(--ink-3);
  display: block;
}

/* ══════════════════════ SHOWCASE SPLIT ══════════════════════ */
.wh-show {
  padding: 110px var(--gutter);
}
.wh-show__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.wh-show__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.wh-show__row:last-child { margin-bottom: 0; }
.wh-show__row--alt .wh-show__copy { order: 2; }
.wh-show__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.wh-show__p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.wh-show__list { margin-bottom: 28px; }
.wh-show__list li {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.wh-show__list li:last-child { border-bottom: none; }
.wh-show__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--glow);
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1.3;
}
.wh-show__list li b { color: var(--ink); font-weight: 600; }
.wh-show__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--glow);
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.2s;
}
.wh-show__link:hover { gap: 12px; }

/* Dashboard mockup */
.wh-mock {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--rad-xl);
  padding: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px var(--glow-soft);
  position: relative;
}
.wh-mock::before {
  content: "";
  position: absolute;
  top: 0; left: 30px; right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  opacity: 0.6;
}
.wh-mock__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.wh-mock__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
}
.wh-mock__pills {
  display: flex;
  gap: 6px;
}
.wh-mock__pill {
  font-family: var(--mono);
  font-size: 10px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
}
.wh-mock__pill.is-on {
  background: var(--glow);
  color: #04101a;
  border-color: var(--glow);
}

.wh-mock__grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.wh-mock__metric {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 14px;
}
.wh-mock__metricnum {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.wh-mock__metriclbl {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.wh-mock__metricdelta {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(45,212,191,0.1);
  color: var(--glow);
  letter-spacing: 0.06em;
}
.wh-mock__metricdelta.is-down {
  background: rgba(238,90,135,0.1);
  color: var(--pink);
}

.wh-mock__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.wh-mock__row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-2);
  border-radius: var(--rad-sm);
}
.wh-mock__seal {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.06em;
}
.wh-mock__main b {
  font-size: 13px;
  font-weight: 600;
  display: block;
}
.wh-mock__main span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.wh-mock__amt {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.wh-mock__tag {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--glow);
  background: rgba(45,212,191,0.1);
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.wh-mock__tag--warn { color: var(--amber); background: rgba(252,176,69,0.1); }
.wh-mock__tag--no { color: var(--pink); background: rgba(238,90,135,0.1); }

/* Card stack mockup */
.wh-cards {
  position: relative;
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wh-card {
  position: absolute;
  width: 78%;
  aspect-ratio: 1.586 / 1;
  border-radius: var(--rad-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.06);
}
.wh-card--1 {
  background: linear-gradient(135deg, #0d2540 0%, #1a3a5e 100%);
  z-index: 3;
  transform: rotate(-6deg) translate(-8%, -6%);
}
.wh-card--2 {
  background: linear-gradient(135deg, #1a3a5e 0%, #0d2540 100%);
  z-index: 2;
  transform: rotate(2deg) translate(2%, 0%);
}
.wh-card--3 {
  background: linear-gradient(135deg, var(--glow) 0%, #0a8d72 100%);
  color: #04101a;
  z-index: 4;
  transform: rotate(6deg) translate(10%, 6%);
}
.wh-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.wh-card__brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
}
.wh-card__brand::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
}
.wh-card__chip {
  width: 34px;
  height: 26px;
  background: linear-gradient(135deg, #d4c275 0%, #a08948 100%);
  border-radius: 4px;
  position: relative;
}
.wh-card__chip::after {
  content: "";
  position: absolute;
  inset: 3px 8px;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 2px;
}
.wh-card__num {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
}
.wh-card__bot {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.wh-card__bot b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  display: block;
  margin-top: 2px;
  opacity: 1;
}

/* ══════════════════════ TESTIMONIALS ══════════════════════ */
.wh-quotes {
  padding: 110px var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.wh-quotes__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.wh-quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.wh-quote {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 30px;
  position: relative;
}
.wh-quote__mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 50px;
  line-height: 0.6;
  color: var(--glow);
  opacity: 0.4;
  margin-bottom: 12px;
}
.wh-quote blockquote {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 500;
}
.wh-quote figcaption {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.wh-quote figcaption b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* ══════════════════════ PRICING ══════════════════════ */
.wh-pricing {
  padding: 110px var(--gutter);
}
.wh-pricing__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.wh-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.wh-tier {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--rad-xl);
  padding: 36px 30px;
  position: relative;
}
.wh-tier--accent {
  background: linear-gradient(180deg, rgba(45,212,191,0.06) 0%, var(--bg-3) 60%);
  border-color: rgba(45,212,191,0.32);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 60px rgba(45,212,191,0.08);
}
.wh-tier__ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--glow);
  color: #04101a;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 999px;
}
.wh-tier__name {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.wh-tier__h {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.wh-tier__sub {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 28px;
  line-height: 1.5;
}
.wh-tier__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.wh-tier__price b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.wh-tier__price span {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
}
.wh-tier__list {
  margin-bottom: 28px;
}
.wh-tier__list li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  padding: 10px 0 10px 26px;
  position: relative;
}
.wh-tier__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--glow);
  font-family: var(--mono);
  font-size: 14px;
}
.wh-pricing__foot {
  text-align: center;
  font-size: 14px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* ══════════════════════ FAQ ══════════════════════ */
.wh-faq {
  padding: 110px var(--gutter);
  border-top: 1px solid var(--line);
}
.wh-faq__inner {
  max-width: 920px;
  margin: 0 auto;
}
.wh-faq__grid {
  display: grid;
  gap: 12px;
}
.wh-faq__d {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
  transition: border-color 0.2s;
}
.wh-faq__d[open] { border-color: var(--line-2); }
.wh-faq__d summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
}
.wh-faq__d summary::-webkit-details-marker { display: none; }
.wh-faq__d summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 22px;
  color: var(--glow);
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.wh-faq__d[open] summary::after {
  content: "−";
  background: var(--glow);
  color: #04101a;
  border-color: var(--glow);
}
.wh-faq__d p {
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ══════════════════════ CTA ══════════════════════ */
.wh-cta {
  padding: 130px var(--gutter);
  background: radial-gradient(ellipse at center, rgba(45,212,191,0.08) 0%, transparent 60%), var(--bg-2);
  border-top: 1px solid var(--line);
}
.wh-cta__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.wh-cta__inner::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  pointer-events: none;
}
.wh-cta__inner::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border: 1px solid var(--glow);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 40px var(--glow-soft);
}
.wh-cta__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.wh-cta__h i {
  font-style: normal;
  color: var(--glow);
  font-weight: 500;
}
.wh-cta__p {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.wh-cta__row {
  display: flex;
  gap: 14px;
  justify-content: center;
}

/* ══════════════════════ FOOTER (Sonar console) ══════════════════════ */
.wh-foot {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter) 40px;
  position: relative;
}
.wh-foot__inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* Big sonar console rim across the top of the footer */
.wh-foot__rim {
  position: relative;
  height: 80px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wh-foot__rim::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0%, var(--glow) 50%, transparent 100%);
  height: 1px;
  top: 50%;
  opacity: 0.4;
}
.wh-foot__rimring {
  width: 80px;
  height: 80px;
  border: 1.5px solid var(--glow);
  border-radius: 50%;
  position: relative;
  background: var(--bg);
  box-shadow: 0 0 30px var(--glow-soft);
}
.wh-foot__rimring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, var(--glow) 60deg, transparent 120deg);
  animation: wh-spin 6s linear infinite;
  opacity: 0.6;
}
.wh-foot__rimring::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--glow);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--glow);
  transform: translate(-50%, -50%);
}

.wh-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.wh-foot__brand .wh-logo { margin-bottom: 18px; }
.wh-foot__about {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: 22px;
}

.wh-foot__news {
  display: flex;
  gap: 0;
  max-width: 320px;
  border: 1px solid var(--line-2);
  border-radius: var(--rad-sm);
  overflow: hidden;
}
.wh-foot__news input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
}
.wh-foot__news input::placeholder { color: var(--ink-3); }
.wh-foot__news input:focus { outline: none; }
.wh-foot__news button {
  background: var(--glow);
  color: #04101a;
  border: none;
  padding: 11px 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.wh-foot__news button:hover { background: var(--glow-2); }

.wh-foot__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.wh-foot__col ul { display: flex; flex-direction: column; gap: 12px; }
.wh-foot__col a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.2s;
}
.wh-foot__col a:hover { color: var(--glow); }

.wh-foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}
.wh-foot__bottom span { display: inline-flex; align-items: center; gap: 10px; }
.wh-foot__bottom span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--glow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--glow);
}

/* ══════════════════════ INNER PAGE ══════════════════════ */
.wh-page {
  padding: 90px var(--gutter) 100px;
  border-bottom: 1px solid var(--line);
}
.wh-page__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.wh-page__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.wh-page__p {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 56px;
}
.wh-page__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

/* ── Forms (contact + signin) ── */
.wh-form {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--rad-xl);
  padding: 36px;
}
.wh-form__row {
  display: block;
  margin-bottom: 22px;
}
.wh-form__lbl {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wh-form input,
.wh-form select,
.wh-form textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--rad-sm);
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wh-form input:focus,
.wh-form select:focus,
.wh-form textarea:focus {
  outline: none;
  border-color: var(--glow);
  box-shadow: 0 0 0 3px rgba(45,212,191,0.12);
}
.wh-form textarea { resize: vertical; min-height: 110px; }
.wh-form select { appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238aa3bd' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.wh-form__small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-top: 16px;
}

.wh-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wh-aside__card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 24px;
}
.wh-aside__card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.wh-aside__card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}
.wh-aside__card--accent {
  background: linear-gradient(135deg, rgba(45,212,191,0.08) 0%, var(--bg-3) 100%);
  border-color: rgba(45,212,191,0.22);
}
.wh-aside__card--accent b { color: var(--glow); }

/* ── Signin two-col ── */
.wh-signin {
  padding: 80px var(--gutter) 100px;
}
.wh-signin__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.wh-signin__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.wh-signin__p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 30px;
}
.wh-signin__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0 22px;
  font-size: 13px;
}
.wh-signin__chk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
}
.wh-signin__chk input { accent-color: var(--glow); }
.wh-signin__foot {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-2);
  text-align: center;
}
.wh-signin__foot a { color: var(--glow); font-weight: 600; }

.wh-signin__aside {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.wh-signin__aside h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.wh-signin__list { display: flex; flex-direction: column; gap: 14px; }
.wh-signin__list li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.wh-signin__list li::before {
  content: "";
  position: absolute;
  top: 6px; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 8px var(--glow);
}
.wh-signin__list li b { color: var(--ink); font-weight: 600; }

/* ── Legal pages ── */
.wh-legal {
  padding: 80px var(--gutter) 100px;
}
.wh-legal__inner {
  max-width: 800px;
  margin: 0 auto;
}
.wh-legal__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.wh-legal__upd {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.wh-legal__lede {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.wh-legal h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 36px 0 14px;
}
.wh-legal p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.wh-legal b { color: var(--ink); font-weight: 600; }
.wh-legal__small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width: 1080px) {
  :root { --gutter: 22px; }

  .wh-nav,
  .wh-head__cta .wh-lang,
  .wh-head__cta .wh-link,
  .wh-head__cta .wh-btn:not(.wh-burger) { display: none; }
  .wh-burger { display: flex; }
  .wh-mobile.is-open { display: block; }

  .wh-hero { padding: 64px var(--gutter) 80px; }
  .wh-hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .wh-hero__art { max-width: 460px; margin: 0 auto; }

  .wh-bento__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .wh-tile--1 { grid-column: span 2; grid-row: auto; }
  .wh-tile--2 { grid-column: span 2; }
  .wh-tile--3 { grid-column: span 2; }
  .wh-tile--4, .wh-tile--5, .wh-tile--6 { grid-column: span 2; }

  .wh-how__grid { grid-template-columns: 1fr; }
  .wh-stats__inner { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .wh-stats__cell { border-right: none; }
  .wh-stats__cell:nth-child(odd) { border-right: 1px solid var(--line); }

  .wh-show__row { grid-template-columns: 1fr; gap: 50px; }
  .wh-show__row--alt .wh-show__copy { order: 0; }

  .wh-quotes__grid { grid-template-columns: 1fr; }
  .wh-pricing__grid { grid-template-columns: 1fr; }

  .wh-foot__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .wh-foot__brand { grid-column: span 2; }

  .wh-page__grid { grid-template-columns: 1fr; gap: 36px; }
  .wh-signin__inner { grid-template-columns: 1fr; gap: 36px; }
  .wh-signin__aside { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 28px; }
}

@media (max-width: 720px) {
  .wh-hero__h { font-size: 38px; }
  .wh-hero__row { flex-direction: column; }
  .wh-hero__row .wh-btn { width: 100%; justify-content: center; }
  .wh-trust__row { gap: 18px 30px; }
  .wh-stats__inner { grid-template-columns: 1fr; }
  .wh-stats__cell { border-right: none !important; padding: 18px 0; border-bottom: 1px solid var(--line); }
  .wh-stats__cell:last-child { border-bottom: none; }
  .wh-bento__grid { grid-template-columns: 1fr; }
  .wh-tile--1, .wh-tile--2, .wh-tile--3, .wh-tile--4, .wh-tile--5, .wh-tile--6 { grid-column: span 1; }
  .wh-foot__grid { grid-template-columns: 1fr; }
  .wh-foot__brand { grid-column: span 1; }
  .wh-foot__bottom { flex-direction: column; gap: 14px; text-align: center; }
  .wh-cta__row { flex-direction: column; }
  .wh-cta__row .wh-btn { width: 100%; justify-content: center; }
  .wh-form { padding: 24px; }
  .wh-cards { height: 280px; }
  .wh-depth { right: -16px; }
  .wh-tx { left: 0; bottom: -36px; padding: 10px 14px; }
}

/* ══════════════════════ FOOTER · system monitor panel ══════════════════════ */
.wh-monitor {
  background: var(--bg-2);
  border-top: 1px solid var(--line-2);
  padding: 60px var(--gutter) 30px;
  position: relative;
}
.wh-monitor::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--glow) 50%, transparent 100%);
  box-shadow: 0 0 12px var(--glow-soft);
}
.wh-monitor__inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* Grid of live-looking metric tiles */
.wh-monitor__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.wh-monitor__cell {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}
.wh-monitor__cell::before {
  content: "";
  position: absolute;
  top: 0; left: 14px;
  width: 36px; height: 1px;
  background: var(--glow);
  box-shadow: 0 0 8px var(--glow-soft);
  opacity: 0.65;
}
.wh-monitor__lbl {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wh-monitor__val {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--glow);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  text-shadow: 0 0 12px var(--glow-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wh-monitor__val .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--glow-2);
  box-shadow: 0 0 10px var(--glow-2);
  animation: wh-pulse 1.6s ease-in-out infinite;
}
.wh-monitor__sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* Columns */
.wh-monitor__cols {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 30px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.wh-monitor__brand .wh-logo { margin-bottom: 18px; }
.wh-monitor__about {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 22px;
}
.wh-monitor__col h4 {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.wh-monitor__col h4::before {
  content: "// ";
  color: var(--glow);
  opacity: 0.6;
}
.wh-monitor__col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.wh-monitor__col a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.2s;
}
.wh-monitor__col a:hover { color: var(--glow); }

/* News form (terminal-style) */
.wh-monitor__news {
  display: flex;
  gap: 0;
  max-width: 360px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
  font-family: var(--mono);
}
.wh-monitor__news::before {
  content: "$";
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: var(--bg-2);
  color: var(--glow);
  font-family: var(--mono);
  font-size: 13px;
  border-right: 1px solid var(--line-2);
}
.wh-monitor__news input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 11px 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
}
.wh-monitor__news input::placeholder { color: var(--ink-3); }
.wh-monitor__news input:focus { outline: none; }
.wh-monitor__news button {
  background: var(--glow);
  color: #04101a;
  border: none;
  padding: 11px 16px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.wh-monitor__news button:hover { background: var(--glow-2); }

/* Bottom log line */
.wh-monitor__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.wh-monitor__deploy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wh-monitor__deploy::before {
  content: "✓";
  color: var(--glow);
  font-size: 12px;
}
.wh-monitor__deploy code {
  color: var(--ink);
  font-family: var(--mono);
  background: var(--bg-3);
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid var(--line);
}
.wh-monitor__copy { color: var(--ink-3); }
.wh-monitor__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
}
.wh-monitor__tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 8px var(--glow);
}

/* ══════════════════════ RESPONSIVE for new header/footer ══════════════════════ */
@media (max-width: 1080px) {
  .wh-head__bar-inner { gap: 14px; justify-content: center; }
  .wh-head__bar { font-size: 10px; }
  .wh-monitor__grid { grid-template-columns: repeat(2, 1fr); }
  .wh-monitor__cols { grid-template-columns: 1fr 1fr; }
  .wh-monitor__brand { grid-column: span 2; }
}
@media (max-width: 720px) {
  .wh-head__bar-inner { gap: 8px; flex-wrap: wrap; }
  .wh-head__bar-inner .wh-head__sys:nth-child(n+3) { display: none; }
  .wh-monitor__grid { grid-template-columns: 1fr; }
  .wh-monitor__cols { grid-template-columns: 1fr; }
  .wh-monitor__brand { grid-column: 1; }
  .wh-monitor__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ════════════════════════════════════════════════════════════════
   EXTENSIONS · components for product / pricing / security / dev / customers / about / contact / signin / status / changelog / integrations / partners
   ════════════════════════════════════════════════════════════════ */

/* ── Universal page header / hero strip ── */
.wh-pagehead {
  padding: 80px var(--gutter) 56px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(45, 212, 191, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  position: relative;
}
.wh-pagehead::before {
  content: "";
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--glow) 50%, transparent 100%);
  box-shadow: 0 0 10px var(--glow-soft);
}
.wh-pagehead__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.wh-pagehead__bread {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.wh-pagehead__bread b { color: var(--glow); font-weight: 600; }
.wh-pagehead__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.wh-pagehead__h i { font-style: normal; font-weight: 500; color: var(--glow); }
.wh-pagehead__p {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 28px;
}
.wh-pagehead__row {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Generic section ── */
.wh-sect2 { padding: 80px var(--gutter); border-top: 1px solid var(--line); }
.wh-sect2--soft { background: var(--bg-2); }
.wh-sect2__inner { max-width: var(--max); margin: 0 auto; }
.wh-sect2__head {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}
.wh-sect2__eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--glow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.06);
}
.wh-sect2__h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.wh-sect2__p { font-size: 16px; color: var(--ink-2); line-height: 1.65; }

/* ── Terminal-style code block ── */
.wh-code {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--rad);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink);
  overflow: hidden;
  position: relative;
}
.wh-code__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-2);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wh-code__dots { display: inline-flex; gap: 6px; }
.wh-code__dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--bg-4);
}
.wh-code__dots span:first-child { background: var(--pink); }
.wh-code__dots span:nth-child(2) { background: var(--amber); }
.wh-code__dots span:nth-child(3) { background: var(--glow-2); }
.wh-code__body {
  padding: 18px 20px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}
.wh-code__body .c-c { color: var(--ink-3); }   /* comment */
.wh-code__body .c-k { color: var(--violet); }  /* keyword */
.wh-code__body .c-s { color: var(--glow); }    /* string */
.wh-code__body .c-n { color: var(--amber); }   /* number */
.wh-code__body .c-f { color: var(--glow-2); }  /* function */
.wh-code__body .c-p { color: var(--ink-2); }   /* punctuation */
.wh-code__body .c-r { color: var(--pink); }    /* response/method */

/* ── Tabs ── */
.wh-tabs__head {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.wh-tabs__btn {
  background: transparent;
  border: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  padding: 12px 16px;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
}
.wh-tabs__btn:hover { color: var(--ink); }
.wh-tabs__btn.is-active { color: var(--glow); border-bottom-color: var(--glow); }
.wh-tabs__pane { display: none; }
.wh-tabs__pane.is-active { display: block; }

/* ── Card grid generic ── */
.wh-grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.wh-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.wh-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

@media (max-width: 980px) {
  .wh-grid2 { grid-template-columns: 1fr; }
  .wh-grid3 { grid-template-columns: 1fr 1fr; }
  .wh-grid4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wh-grid3, .wh-grid4 { grid-template-columns: 1fr; }
}

/* ── Feature / capability card ── */
.wh-feat {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.wh-feat:hover { border-color: var(--line-2); transform: translateY(-2px); }
.wh-feat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(45, 212, 191, 0.10);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: var(--glow);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.wh-feat__h {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.wh-feat__p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.wh-feat__list { margin-top: 12px; font-size: 13px; color: var(--ink-2); }
.wh-feat__list li { padding-left: 18px; position: relative; margin-bottom: 6px; line-height: 1.55; }
.wh-feat__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--glow);
  font-family: var(--mono);
}

/* ── Architecture diagram (CSS-only box drawing) ── */
.wh-arch {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--rad);
  padding: 30px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  position: relative;
}
.wh-arch__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.wh-arch__row:last-child { margin-bottom: 0; }
.wh-arch__node {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  min-width: 110px;
  position: relative;
}
.wh-arch__node--core {
  border-color: var(--glow);
  background: rgba(45, 212, 191, 0.10);
  box-shadow: 0 0 18px var(--glow-soft);
  min-width: 220px;
  padding: 14px 20px;
}
.wh-arch__node--core b { color: var(--glow); display: block; font-size: 14px; }
.wh-arch__node span { display: block; font-size: 10px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.wh-arch__node strong { color: var(--glow); font-weight: 600; }
.wh-arch__edge {
  flex: 0 0 auto;
  color: var(--glow);
  font-size: 18px;
}

/* ── PSP grid / integration card ── */
.wh-psp {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 18px;
  transition: border-color 0.2s, transform 0.2s;
}
.wh-psp:hover { border-color: var(--line-2); transform: translateY(-1px); }
.wh-psp__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.wh-psp__logo {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(140deg, var(--bg-4) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--glow);
  letter-spacing: 0.04em;
}
.wh-psp__status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--line-2);
}
.wh-psp__status--live { color: var(--glow); border-color: rgba(45, 212, 191, 0.35); background: rgba(45, 212, 191, 0.08); }
.wh-psp__status--beta { color: var(--amber); border-color: rgba(252, 176, 69, 0.35); background: rgba(252, 176, 69, 0.06); }
.wh-psp__status--soon { color: var(--ink-3); border-color: var(--line-2); }
.wh-psp__name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.wh-psp__meta { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }
.wh-psp__feat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 11px;
}
.wh-psp__feat span {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(120, 180, 220, 0.06);
  color: var(--ink-2);
  border: 1px solid var(--line);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Spec / metric panel ── */
.wh-spec {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 22px;
}
.wh-spec__lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
  display: block;
}
.wh-spec__val {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--glow);
  letter-spacing: -0.01em;
  text-shadow: 0 0 14px var(--glow-soft);
}
.wh-spec__sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ── Status dot ── */
.wh-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; vertical-align: middle; }
.wh-dot--green { background: var(--glow-2); box-shadow: 0 0 10px var(--glow-2); animation: wh-pulse 1.6s ease-in-out infinite; }
.wh-dot--amber { background: var(--amber); box-shadow: 0 0 10px var(--amber); }
.wh-dot--red { background: var(--pink); box-shadow: 0 0 10px var(--pink); }
.wh-dot--gray { background: var(--ink-3); }

/* ── Status component (status.html) ── */
.wh-status-top {
  background: rgba(6, 214, 160, 0.07);
  border: 1px solid rgba(6, 214, 160, 0.30);
  border-radius: var(--rad-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.wh-status-top__h {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--glow-2);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.wh-status-top__p {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.wh-status-comp {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}
.wh-status-comp__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wh-status-comp__meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.wh-uptime {
  display: flex;
  gap: 2px;
  height: 28px;
  align-items: flex-end;
  margin: 8px 0;
}
.wh-uptime span {
  flex: 1;
  height: 100%;
  background: var(--glow-2);
  opacity: 0.6;
  border-radius: 1px;
  transition: opacity 0.2s;
}
.wh-uptime span.is-warn { background: var(--amber); }
.wh-uptime span.is-err { background: var(--pink); }
.wh-uptime span:hover { opacity: 1; }

/* ── Changelog entry ── */
.wh-cl-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--rad);
}
.wh-cl-filter button {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--rad-sm);
  transition: all 0.2s;
}
.wh-cl-filter button:hover { color: var(--glow); border-color: var(--glow); }
.wh-cl-filter button.is-active { background: var(--glow); color: #04101a; border-color: var(--glow); }
.wh-cl-entry {
  border-left: 2px solid var(--line);
  padding: 8px 0 28px 28px;
  margin-left: 14px;
  position: relative;
}
.wh-cl-entry::before {
  content: "";
  position: absolute;
  left: -7px; top: 12px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--glow);
  box-shadow: 0 0 8px var(--glow-soft);
}
.wh-cl-entry__top {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.wh-cl-entry__v {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--glow);
}
.wh-cl-entry__date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.wh-cl-entry__cats { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.wh-cl-entry__cat {
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid;
}
.wh-cl-entry__cat.is-new { color: var(--glow); border-color: rgba(45, 212, 191, 0.35); background: rgba(45, 212, 191, 0.08); }
.wh-cl-entry__cat.is-fix { color: var(--amber); border-color: rgba(252, 176, 69, 0.35); background: rgba(252, 176, 69, 0.06); }
.wh-cl-entry__cat.is-imp { color: var(--violet); border-color: rgba(124, 92, 255, 0.35); background: rgba(124, 92, 255, 0.06); }
.wh-cl-entry__cat.is-brk { color: var(--pink); border-color: rgba(238, 90, 135, 0.35); background: rgba(238, 90, 135, 0.06); }
.wh-cl-entry ul { color: var(--ink-2); font-size: 14px; line-height: 1.7; padding-left: 0; }
.wh-cl-entry ul li { padding-left: 20px; position: relative; margin-bottom: 4px; }
.wh-cl-entry ul li::before {
  content: "›";
  position: absolute; left: 0;
  color: var(--ink-3);
  font-family: var(--mono);
}

/* ── Customer / case study card ── */
.wh-case {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 28px;
  position: relative;
}
.wh-case__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.wh-case__brand {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.wh-case__brand span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.wh-case__vol {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--glow);
  text-align: right;
}
.wh-case__vol span { display: block; font-size: 10px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }
.wh-case__h {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wh-case__p { color: var(--ink-2); font-size: 14px; line-height: 1.65; margin-bottom: 12px; }
.wh-case__p b { color: var(--ink); }
.wh-case__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
}
.wh-case__kpi { text-align: center; }
.wh-case__kpi b {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--glow);
  display: block;
  letter-spacing: -0.01em;
}
.wh-case__kpi span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wh-case__quote {
  font-style: italic;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  border-left: 2px solid var(--glow);
  padding-left: 12px;
  margin-top: 12px;
}
.wh-case__quote cite {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ── Industry bar chart ── */
.wh-bars {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 28px;
}
.wh-bars__row {
  display: grid;
  grid-template-columns: 130px 1fr 60px;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 12px;
}
.wh-bars__lbl { color: var(--ink-2); letter-spacing: 0.04em; }
.wh-bars__bar {
  height: 22px;
  background: rgba(120, 180, 220, 0.06);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.wh-bars__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--glow-2), var(--glow));
  border-radius: 2px;
  box-shadow: 0 0 12px var(--glow-soft);
}
.wh-bars__val { color: var(--glow); text-align: right; }

/* ── Volume calculator ── */
.wh-calc {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--rad-lg);
  padding: 30px;
}
.wh-calc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.wh-calc__field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wh-calc__field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--rad-sm);
  transition: border-color 0.2s;
}
.wh-calc__field input:focus { outline: none; border-color: var(--glow); }
.wh-calc__out {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.wh-calc__out > div {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
  padding: 16px;
  text-align: center;
}
.wh-calc__out span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.wh-calc__out b {
  display: block;
  font-family: var(--mono);
  font-size: 22px;
  color: var(--glow);
  letter-spacing: -0.01em;
}

/* ── Pricing comparison table ── */
.wh-table-wrap { overflow-x: auto; }
.wh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
}
.wh-table th,
.wh-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.wh-table th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  background: var(--bg-2);
}
.wh-table th:not(:first-child) { text-align: center; }
.wh-table td:not(:first-child) { text-align: center; }
.wh-table td:first-child { color: var(--ink); }
.wh-table tr:last-child td { border-bottom: none; }
.wh-table tr.is-section td {
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--glow);
}
.wh-table .yes { color: var(--glow); font-family: var(--mono); font-weight: 600; }
.wh-table .no { color: var(--ink-3); font-family: var(--mono); }
.wh-table .featured { background: rgba(45, 212, 191, 0.05); }

/* ── FAQ accordion ── */
.wh-acc {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  margin-bottom: 8px;
  overflow: hidden;
}
.wh-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.wh-acc summary::-webkit-details-marker { display: none; }
.wh-acc summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--glow);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s;
}
.wh-acc[open] summary::after { content: "−"; }
.wh-acc p {
  padding: 0 22px 20px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
}

/* ── Sign in / contact form ── */
.wh-form {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--rad-lg);
  padding: 32px;
}
.wh-form__field { margin-bottom: 16px; }
.wh-form__field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.wh-form__field input,
.wh-form__field select,
.wh-form__field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--rad-sm);
  transition: border-color 0.2s;
}
.wh-form__field textarea { resize: vertical; min-height: 120px; }
.wh-form__field input:focus,
.wh-form__field select:focus,
.wh-form__field textarea:focus { outline: none; border-color: var(--glow); }
.wh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .wh-form__row { grid-template-columns: 1fr; } }

/* ── SSO buttons ── */
.wh-sso { display: grid; gap: 10px; margin-bottom: 22px; }
.wh-sso button {
  width: 100%;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.wh-sso button:hover { border-color: var(--glow); background: rgba(45, 212, 191, 0.04); }
.wh-sso span {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--bg-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--glow);
  flex: 0 0 auto;
}
.wh-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.wh-divider::before, .wh-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

/* ── Team / partner card ── */
.wh-person {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 20px;
  text-align: center;
}
.wh-person__av {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(140deg, var(--glow) 0%, var(--violet) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #04101a;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
}
.wh-person__n {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.wh-person__r {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

/* ── Quote big ── */
.wh-bigq {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 28px;
}
.wh-bigq__q {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 20px;
}
.wh-bigq__a {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wh-bigq__a b { color: var(--glow); font-weight: 600; }

/* ── Stat strip ── */
.wh-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--rad);
  overflow: hidden;
}
.wh-strip__cell {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.wh-strip__cell:last-child { border-right: none; }
.wh-strip__n {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--glow);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 6px;
}
.wh-strip__l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .wh-strip { grid-template-columns: 1fr 1fr; }
  .wh-strip__cell:nth-child(2) { border-right: none; }
  .wh-strip__cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ── Tile small (used for security certifications etc) ── */
.wh-cert {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 22px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.wh-cert:hover { border-color: var(--glow); transform: translateY(-2px); }
.wh-cert__b {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.10);
  border: 1px solid rgba(45, 212, 191, 0.30);
  margin: 0 auto 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--glow);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
}
.wh-cert__h { font-family: var(--display); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.wh-cert__p { font-size: 13px; color: var(--ink-2); line-height: 1.55; }

/* ── Subprocessor list ── */
.wh-sub-list { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--rad); overflow: hidden; }
.wh-sub-list__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  align-items: center;
}
.wh-sub-list__row:last-child { border-bottom: none; }
.wh-sub-list__row.is-head {
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.wh-sub-list__row b { font-family: var(--display); font-weight: 700; }
.wh-sub-list__row span { font-family: var(--mono); font-size: 12px; color: var(--ink-2); }
@media (max-width: 720px) {
  .wh-sub-list__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 16px; }
}

/* ── Endpoint reference ── */
.wh-endpoint {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 20px;
  margin-bottom: 14px;
}
.wh-endpoint__top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.wh-endpoint__m {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wh-endpoint__m.is-get { background: rgba(45, 212, 191, 0.15); color: var(--glow); }
.wh-endpoint__m.is-post { background: rgba(124, 92, 255, 0.15); color: var(--violet); }
.wh-endpoint__m.is-put { background: rgba(252, 176, 69, 0.15); color: var(--amber); }
.wh-endpoint__m.is-del { background: rgba(238, 90, 135, 0.15); color: var(--pink); }
.wh-endpoint__path {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.wh-endpoint__d { color: var(--ink-2); font-size: 13px; line-height: 1.6; }

/* ── Webhook card ── */
.wh-wh {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 18px;
}
.wh-wh__n {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--glow);
  margin-bottom: 6px;
}
.wh-wh__d { font-size: 13px; color: var(--ink-2); line-height: 1.55; }

/* ── Office card ── */
.wh-office {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.wh-office__city {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--glow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wh-office__h { font-family: var(--display); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.wh-office__p { font-family: var(--mono); font-size: 12px; color: var(--ink-2); line-height: 1.7; letter-spacing: 0.02em; }
.wh-office__img {
  height: 110px;
  background: linear-gradient(140deg, var(--bg-4) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.wh-office__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120,180,220,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,180,220,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.wh-office__img::after {
  content: "";
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-soft) 0%, transparent 70%);
}

/* ── ROI / case study highlight ── */
.wh-roi {
  background:
    linear-gradient(140deg, rgba(45, 212, 191, 0.08) 0%, transparent 60%),
    var(--bg-3);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: var(--rad-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.wh-roi__num {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  color: var(--glow);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 22px var(--glow-soft);
}
.wh-roi__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.wh-roi__h { font-family: var(--display); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.wh-roi__p { color: var(--ink-2); font-size: 14px; line-height: 1.65; }
@media (max-width: 880px) { .wh-roi { grid-template-columns: 1fr; gap: 18px; } }

/* ── Region / data residency map ── */
.wh-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.wh-region {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 18px;
}
.wh-region__code {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--glow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wh-region__city { font-family: var(--display); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.wh-region__meta { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }
@media (max-width: 720px) { .wh-regions { grid-template-columns: 1fr; } }

/* ── Live console widget ── */
.wh-console {
  background: #02080f;
  border: 1px solid var(--line-2);
  border-radius: var(--rad);
  padding: 22px 24px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.wh-console__line {
  display: block;
  white-space: pre-wrap;
}
.wh-console__line .p { color: var(--glow); }
.wh-console__line .ok { color: var(--glow-2); }
.wh-console__line .wn { color: var(--amber); }
.wh-console__line .er { color: var(--pink); }
.wh-console__line .d { color: var(--ink-3); }
.wh-console__line b { color: var(--ink); font-weight: 600; }

/* ── Index / TOC sidebar ── */
.wh-toc {
  position: sticky;
  top: 88px;
  font-family: var(--mono);
  font-size: 12px;
}
.wh-toc h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wh-toc a {
  display: block;
  padding: 6px 0 6px 12px;
  border-left: 2px solid var(--line);
  color: var(--ink-2);
  letter-spacing: 0.04em;
  transition: color 0.2s, border-color 0.2s;
}
.wh-toc a:hover { color: var(--glow); border-left-color: var(--glow); }

/* ── Page two-col ── */
.wh-page2 {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px var(--gutter);
}
@media (max-width: 980px) {
  .wh-page2 { grid-template-columns: 1fr; gap: 24px; }
  .wh-toc { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
  .wh-toc a { border-left: none; padding: 6px 10px; border: 1px solid var(--line); border-radius: 4px; }
}

/* ── Press / logo row ── */
.wh-press {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 56px;
  padding: 24px 0;
  filter: grayscale(40%);
  opacity: 0.8;
}
.wh-press span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}

/* ── Open roles list ── */
.wh-role {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
  margin-bottom: 8px;
  gap: 16px;
  transition: border-color 0.2s;
}
.wh-role:hover { border-color: var(--glow); }
.wh-role__t {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
}
.wh-role__t span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-top: 3px;
}
.wh-role__c {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--glow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Incident card ── */
.wh-inc {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 22px;
  margin-bottom: 14px;
}
.wh-inc__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.wh-inc__h { font-family: var(--display); font-size: 16px; font-weight: 700; }
.wh-inc__date { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; }
.wh-inc__stat {
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line-2);
}
.wh-inc__stat.is-resolved { color: var(--glow-2); border-color: rgba(6, 214, 160, 0.30); background: rgba(6, 214, 160, 0.06); }
.wh-inc__stat.is-mon { color: var(--amber); border-color: rgba(252, 176, 69, 0.30); background: rgba(252, 176, 69, 0.06); }
.wh-inc__tl { border-left: 2px solid var(--line); padding: 4px 0 0 16px; margin-left: 6px; font-family: var(--mono); font-size: 12px; color: var(--ink-2); }
.wh-inc__tl > div { padding: 6px 0; }
.wh-inc__tl b { color: var(--glow); font-weight: 600; }

/* ── Partner / vendor card ── */
.wh-partner {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 22px;
  text-align: center;
  transition: border-color 0.2s;
}
.wh-partner:hover { border-color: var(--line-2); }
.wh-partner__logo {
  width: 64px; height: 64px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--bg-4) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--glow);
}
.wh-partner__n { font-family: var(--display); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.wh-partner__m { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; margin-bottom: 10px; }
.wh-partner__t {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.wh-partner__t span {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(120, 180, 220, 0.06);
  color: var(--ink-2);
  border: 1px solid var(--line);
  letter-spacing: 0.04em;
}

/* ── Anchor sections ── */
.wh-anchor { padding: 60px var(--gutter); border-top: 1px solid var(--line); }
.wh-anchor:nth-child(even) { background: var(--bg-2); }
.wh-anchor__inner { max-width: var(--max); margin: 0 auto; }
.wh-anchor__h {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.wh-anchor__p { font-size: 15px; color: var(--ink-2); line-height: 1.65; margin-bottom: 26px; max-width: 720px; }

/* ── Highlighted callout ── */
.wh-callout {
  background: rgba(45, 212, 191, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: var(--rad);
  padding: 18px 22px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.65;
  margin: 22px 0;
}
.wh-callout::before {
  content: "// note ";
  color: var(--glow);
  font-weight: 600;
}

/* ── Footer status (used inline) ── */
.wh-footstatus {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wh-footstatus b { color: var(--glow); font-weight: 600; }

