/* ============================================================
   TITUS GITARI — Operational Systems
   Command-center / NOC / mission-control system
   Near-black · warm gold (#C9A654) · steel-blue states
   ============================================================ */

/* Satoshi (primary, variable) via Fontshare · IBM Plex Mono (telemetry readouts) via Google */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700,900,1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ---------- tokens ---------- */
:root {
  --bg:        #0a0b0c;
  --bg-2:      #0d0f11;
  --panel:     #101316;
  --panel-2:   #14181c;
  --line:      rgba(232,228,218,.10);
  --line-2:    rgba(232,228,218,.18);
  --gold-line: rgba(201,166,84,.26);

  --ink:       #e9e5da;
  --ink-2:     #9b978c;
  --ink-3:     #62605a;

  --gold:      #c9a654;
  --gold-br:   #e2bd66;
  --gold-dim:  #8a7437;
  --steel:     #6f95ba;
  --steel-dim: #3f5870;

  --nominal:   #74a06e;
  --elevated:  #d2a23f;
  --critical:  #c4604f;

  --cond: 'Satoshi', sans-serif;   /* display / headings (tight tracking = slightly condensed feel) */
  --sans: 'Satoshi', sans-serif;   /* body / UI / buttons */
  --mono: 'IBM Plex Mono', monospace; /* telemetry readouts only */

  --maxw: 1280px;
  --gutter: clamp(18px, 4vw, 56px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px; line-height: 1.62; letter-spacing: .006em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
::selection { background: var(--gold); color: #0a0b0c; }
img { display: block; max-width: 100%; }

/* page atmosphere — no generic grid; warm vignette + faint scanlines */
body::before {
  content:""; position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(1100px 620px at 88% -6%, rgba(201,166,84,.10), transparent 58%),
    radial-gradient(820px 520px at 4% 4%, rgba(111,149,186,.045), transparent 55%),
    var(--bg);
}
body::after {
  content:""; position: fixed; inset: 0; z-index: -3; pointer-events: none; opacity: .35;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0 1px, transparent 1px 3px);
}

/* ---------- shared ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.kicker {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 10px;
}
.kicker .sec-no { color: var(--ink-3); }
.kicker::after { content:""; flex: 0 0 auto; }

.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot--ok { background: var(--nominal); box-shadow: 0 0 0 3px rgba(116,160,110,.16); }
.dot--gold { background: var(--gold); box-shadow: 0 0 0 3px rgba(201,166,84,.16); }
.pulse { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* instrument module — framed panel with corner ticks (NOT a floating card) */
.mod { position: relative; background: var(--panel); border: 1px solid var(--line); }
.mod::before, .mod::after {
  content:""; position: absolute; width: 11px; height: 11px; pointer-events: none;
}
.mod::before { top: -1px; left: -1px; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.mod::after  { bottom: -1px; right: -1px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.mod__label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3);
}

/* telemetry rule — hairline with tick marks */
.telemetry {
  height: 14px; width: 100%;
  background:
    linear-gradient(var(--line), var(--line)) left center / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, var(--line-2) 0 1px, transparent 1px 56px) left center / 100% 7px no-repeat;
  opacity: .7;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 500; font-size: 14.5px; letter-spacing: .055em;
  padding: 13px 22px; border: 1px solid transparent; transition: .2s var(--ease); white-space: nowrap;
  text-transform: uppercase;
}
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn--primary { background: var(--gold); color: #0a0b0c; }
.btn--primary:hover { background: var(--gold-br); box-shadow: 0 0 0 1px var(--gold-br), 0 10px 28px -12px rgba(201,166,84,.6); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-br); }
.btn--block { width: 100%; }
.btn--sm { padding: 9px 15px; font-size: 13px; }
.btn--lg { padding: 15px 26px; font-size: 16px; }

/* ============================================================
   TICKER + COMMAND BAR
   ============================================================ */
.ticker {
  border-bottom: 1px solid var(--line); background: var(--bg-2);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; color: var(--ink-2);
  overflow: hidden; white-space: nowrap; position: relative;
}
.ticker__track { display: inline-flex; gap: 0; padding: 7px 0; animation: tick 38s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { padding: 0 26px; position: relative; }
.ticker__track span::after { content:"//"; position: absolute; right: -4px; color: var(--ink-3); }
.ticker b { color: var(--ink); font-weight: 500; }
.ticker .up { color: var(--nominal); }
.ticker .g { color: var(--gold); }
@keyframes tick { to { transform: translateX(-50%); } }

.cbar { position: sticky; top: 0; z-index: 100; background: rgba(10,11,12,.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.cbar__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 34px; height: 34px; border: 1px solid var(--gold-line); position: relative; flex: 0 0 auto;
  display: grid; place-items: center; font-family: var(--cond); font-weight: 700; font-size: 15px; color: var(--gold-br);
  background: linear-gradient(160deg, rgba(201,166,84,.12), transparent);
}
.brand__mark::before { content:""; position:absolute; inset: 3px; border: 1px solid rgba(201,166,84,.18); }
.brand__name { font-family: var(--cond); font-weight: 600; font-size: 15.5px; letter-spacing: .02em; line-height: 1.1; }
.brand__name small { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .2em; color: var(--ink-3); text-transform: uppercase; }
.cbar__nav { display: flex; align-items: center; gap: 26px; }
.cbar__nav a { font-size: 13.5px; color: var(--ink-2); transition: color .2s; font-weight: 500; }
.cbar__nav a:hover { color: var(--ink); }
.cbar__right { display: flex; align-items: center; gap: 14px; }
.cbar__sla { font-family: var(--mono); font-size: 11px; color: var(--ink-2); display: flex; align-items: center; gap: 7px; }
.cbar__sla b { color: var(--ink); }
.burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.burger i { width: 20px; height: 1.5px; background: var(--ink); display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(44px,6vw,84px) 0 clamp(30px,4vw,52px); overflow: hidden; }
.hero__radar { position: absolute; top: -120px; right: -120px; width: 560px; height: 560px; z-index: -1; opacity: .5; pointer-events: none; }
.hero__wave  { position: absolute; left: 0; right: 0; bottom: 6%; width: 100%; height: 200px; z-index: -1; opacity: .5; pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.25fr .82fr; gap: clamp(28px,4vw,56px); align-items: stretch; }

.hero__lead .kicker { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--cond); font-weight: 700; letter-spacing: -.032em; line-height: .99;
  font-size: clamp(38px, 5.6vw, 76px); text-transform: none;
}
.hero h1 .g { color: var(--gold-br); }
.hero__sub { margin-top: 22px; max-width: 46ch; color: var(--ink-2); font-size: clamp(15.5px,1.3vw,18px); }
.hero__cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero__trust li { list-style: none; font-family: var(--mono); font-size: 12px; color: var(--ink-2); display: flex; align-items: center; gap: 9px; }
.hero__trust .c { color: var(--gold); }

/* OPS console panel (instrument cluster, no window chrome) */
.console { display: flex; flex-direction: column; }
.console__hd { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.console__hd .live { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; color: var(--nominal); display: flex; align-items: center; gap: 8px; text-transform: uppercase; }
.console__rows { padding: 6px 16px 14px; }
.crow { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.crow:last-child { border-bottom: none; }
.crow__k { font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--ink-2); text-transform: uppercase; }
.crow__v { font-family: var(--cond); font-weight: 600; font-size: 19px; text-align: right; }
.crow__v small { font-family: var(--mono); font-weight: 400; font-size: 10.5px; color: var(--ink-3); }
.crow__v .s { color: var(--nominal); }
.gauge { grid-column: 1 / -1; height: 4px; background: var(--panel-2); margin-top: 2px; overflow: hidden; }
.gauge i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); }
.console__ft { margin-top: auto; padding: 12px 16px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); letter-spacing: .1em; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { border-block: 1px solid var(--line); background: var(--bg-2); }
.trust__in { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 40px; padding: 22px 0; }
.trust__lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); max-width: 14ch; }
.trust__logos { display: flex; flex-wrap: wrap; gap: 14px 38px; align-items: center; }
.trust__logos span { font-family: var(--cond); font-weight: 600; font-size: 18px; color: var(--ink-2); letter-spacing: .01em; opacity: .82; }

.stats { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-top: none; }
.stat { padding: 26px clamp(16px,2vw,28px); border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat__n { font-family: var(--cond); font-weight: 700; font-size: clamp(30px,3.6vw,46px); line-height: 1; color: var(--gold-br); letter-spacing: -.01em; }
.stat__l { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-2); margin-top: 9px; text-transform: uppercase; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.sec { padding: clamp(64px,8vw,108px) 0; }
.sec__hd { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-bottom: clamp(34px,4vw,52px); }
.sec__hd .kicker { margin-bottom: 16px; }
.sec__title { font-family: var(--cond); font-weight: 700; font-size: clamp(28px,3.8vw,48px); line-height: 1.02; letter-spacing: -.025em; max-width: 18ch; }
.sec__title em { font-style: normal; color: var(--gold-br); }
.sec__hd p { max-width: 36ch; color: var(--ink-2); font-size: 15px; }

/* ============================================================
   CAPABILITIES
   ============================================================ */
.caps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cap { background: var(--panel); padding: 26px 24px 22px; display: flex; flex-direction: column; transition: background .2s; position: relative; }
.cap:hover { background: var(--panel-2); }
.cap__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cap__no { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--gold); }
.cap__st { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--ink-3); text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.cap__name { font-family: var(--cond); font-weight: 600; font-size: 22px; letter-spacing: -.005em; }
.cap__desc { color: var(--ink-2); font-size: 14px; margin-top: 9px; }
.cap__list { list-style: none; margin: 16px 0; display: grid; gap: 7px; }
.cap__list li { font-family: var(--mono); font-size: 12px; color: var(--ink-2); display: flex; gap: 9px; align-items: baseline; }
.cap__list li::before { content:"›"; color: var(--gold); }
.cap__ft { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.cap__price { font-family: var(--cond); font-weight: 700; font-size: 20px; }
.cap__price .from { display: block; font-family: var(--mono); font-weight: 400; font-size: 10px; letter-spacing: .1em; color: var(--ink-3); text-transform: uppercase; }
.cap__go { font-family: var(--mono); font-size: 12px; color: var(--gold-br); display: inline-flex; align-items: center; gap: 6px; }
.cap__go:hover { gap: 10px; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.flow { border: 1px solid var(--line); background: var(--panel); }
.flow__axis { display: grid; grid-template-columns: repeat(4,1fr); }
.phase { padding: 24px clamp(16px,2vw,26px); border-right: 1px solid var(--line); position: relative; }
.phase:last-child { border-right: none; }
.phase__mk { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.phase__t { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--gold); text-transform: uppercase; }
.phase__node { width: 9px; height: 9px; border: 1.5px solid var(--gold); border-radius: 50%; }
.phase__bar { height: 1px; background: var(--line); position: relative; margin: 0 0 18px; }
.phase__bar::after { content:""; position: absolute; left: 0; top: -1px; height: 3px; width: 26%; background: var(--gold); }
.phase:nth-child(2) .phase__bar::after { width: 52%; }
.phase:nth-child(3) .phase__bar::after { width: 78%; }
.phase:nth-child(4) .phase__bar::after { width: 100%; }
.phase__name { font-family: var(--cond); font-weight: 600; font-size: 19px; }
.phase__desc { color: var(--ink-2); font-size: 13.5px; margin-top: 8px; }
.phase__deliv { margin-top: 14px; font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .04em; }
.phase__deliv b { color: var(--ink-2); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .12em; font-weight: 400; }
.flow__sla { display: flex; align-items: center; gap: 14px; padding: 16px clamp(16px,2vw,26px); border-top: 1px solid var(--line); background: var(--bg-2); flex-wrap: wrap; }
.flow__sla .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); display: flex; align-items: center; gap: 9px; }
.flow__sla .lbl b { color: var(--gold-br); }

/* ============================================================
   PROOF
   ============================================================ */
.proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.quote { background: var(--panel); padding: 28px 26px; display: flex; flex-direction: column; }
.quote__stars { font-family: var(--mono); color: var(--gold); font-size: 12px; letter-spacing: .2em; }
.quote__txt { font-family: var(--cond); font-weight: 500; font-size: 18px; line-height: 1.35; margin: 16px 0 20px; letter-spacing: -.005em; }
.quote__by { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.quote__av { width: 38px; height: 38px; border: 1px solid var(--gold-line); display: grid; place-items: center; font-family: var(--cond); font-weight: 600; color: var(--gold-br); font-size: 14px; flex: 0 0 auto; }
.quote__who b { font-family: var(--sans); font-weight: 600; font-size: 14px; display: block; }
.quote__who span { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }

/* ============================================================
   PRICING
   ============================================================ */
.price { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.tier { border: 1px solid var(--line); background: var(--panel); padding: 28px 26px; display: flex; flex-direction: column; position: relative; }
.tier--feat { border-color: var(--gold-line); background: linear-gradient(180deg, rgba(201,166,84,.06), var(--panel) 40%); }
.tier__flag { position: absolute; top: -1px; right: -1px; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; background: var(--gold); color: #0a0b0c; padding: 4px 10px; font-weight: 600; }
.tier__name { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.tier__price { font-family: var(--cond); font-weight: 700; font-size: 42px; letter-spacing: -.02em; margin: 14px 0 4px; }
.tier__price small { font-family: var(--mono); font-weight: 400; font-size: 12px; color: var(--ink-3); letter-spacing: .04em; }
.tier__for { color: var(--ink-2); font-size: 14px; min-height: 42px; }
.tier__list { list-style: none; margin: 18px 0 24px; display: grid; gap: 11px; border-top: 1px solid var(--line); padding-top: 18px; }
.tier__list li { font-size: 13.5px; color: var(--ink-2); display: flex; gap: 10px; align-items: baseline; }
.tier__list li b { color: var(--ink); font-weight: 600; }
.tier__list .ck { color: var(--gold); font-family: var(--mono); }
.tier .btn { margin-top: auto; }

/* ============================================================
   ENGAGE / QUALIFICATION FORM
   ============================================================ */
.engage { background: var(--bg-2); border-top: 1px solid var(--line); }
.engage__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px,4vw,56px); align-items: start; }
.engage__aside .sec__title { max-width: 16ch; }
.engage__promise { margin-top: 26px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.promise { background: var(--panel); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.promise .ic { flex: 0 0 30px; height: 30px; border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--gold-br); font-family: var(--mono); font-size: 14px; }
.promise b { font-family: var(--cond); font-weight: 600; font-size: 15.5px; display: block; }
.promise span { font-size: 13px; color: var(--ink-2); }
.engage__alt { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.engage__alt a, .engage__alt span { font-family: var(--mono); font-size: 12.5px; line-height: 1.5; color: var(--ink-2); display: inline-flex; align-items: baseline; gap: 10px; }
.engage__alt a:hover { color: var(--gold-br); }
.engage__alt .k { color: var(--gold); flex: 0 0 auto; }

/* form module */
.qform { padding: clamp(22px,3vw,32px); }
.qform__hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.qform__hd .t { font-family: var(--cond); font-weight: 600; font-size: 20px; }
.qform__hd .step { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .12em; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--sans); font-weight: 600; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 7px; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2); color: var(--ink);
  padding: 12px 14px; outline: none; transition: border-color .18s, box-shadow .18s; border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.field select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,var(--ink-2) 50%),linear-gradient(135deg,var(--ink-2) 50%,transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field textarea { resize: vertical; min-height: 88px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qform__ft { margin-top: 8px; }
.qform__note { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-top: 12px; text-align: center; letter-spacing: .03em; }
.qform__err { margin-top: 12px; text-align: center; font-size: 13px; color: #d98b7d; border: 1px solid rgba(196,96,79,.4); background: rgba(196,96,79,.08); padding: 9px 12px; }
.qform__err[hidden] { display: none; }
.qform__ok { display: none; text-align: center; padding: 22px 8px; }
.qform__ok .big { font-family: var(--cond); font-weight: 700; font-size: 26px; color: var(--gold-br); }
.qform__ok p { color: var(--ink-2); margin-top: 8px; font-size: 14px; }
.qform.sent .qform__body { display: none; }
.qform.sent .qform__ok { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { border-top: 1px solid var(--line); padding: 44px 0 100px; }
.foot__in { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.foot__l { max-width: 32ch; }
.foot__l p { color: var(--ink-3); font-size: 13px; margin-top: 12px; font-family: var(--mono); letter-spacing: .03em; }
.foot__links { display: flex; gap: 48px; flex-wrap: wrap; }
.foot__col h5 { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.foot__col a { display: block; font-size: 13.5px; color: var(--ink-2); padding: 4px 0; }
.foot__col a:hover { color: var(--gold-br); }
.foot__bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .04em; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.mcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,11,12,.94); backdrop-filter: blur(10px); border-top: 1px solid var(--gold-line);
}

/* ============================================================
   CONVERSION ADDITIONS — example tag · rhythm bands · anchor · operator
   ============================================================ */
.console__tag { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-br); border: 1px solid var(--gold-line); padding: 3px 9px; }

/* section rhythm — subtly elevated bands break up the dark */
.sec--band { position: relative; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec--band::before { content:""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(760px 380px at 82% 0%, rgba(201,166,84,.06), transparent 62%); }
.sec--band > .wrap { position: relative; z-index: 1; }

/* pricing anchor band — keeps the ceiling high */
.price__anchor { margin-top: 16px; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; background: linear-gradient(120deg, rgba(201,166,84,.08), var(--panel) 60%); }
.price__anchor > div { display: flex; flex-direction: column; gap: 3px; }
.price__anchor-k { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.price__anchor strong { font-family: var(--cond); font-weight: 700; font-size: clamp(24px,3vw,34px); letter-spacing: -.02em; color: var(--ink); }
.price__anchor-sub { font-size: 13.5px; color: var(--ink-2); }

/* operator / why-me — the human section (subtle photo, no signature) */
.operator { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,56px); align-items: start; }
.operator__byline { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.operator__avatar { width: 62px; height: 62px; flex: 0 0 auto; position: relative; border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--ink-3); background: repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 2px, transparent 2px 18px), linear-gradient(160deg, var(--panel-2), var(--bg)); overflow: hidden; }
.operator__avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.operator__byline b { font-family: var(--cond); font-weight: 600; font-size: 16px; display: block; }
.operator__byline span { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-3); text-transform: uppercase; }
.operator__body .kicker { margin-bottom: 16px; }
.operator__lead { margin-top: 18px; color: var(--ink-2); font-size: clamp(16px,1.4vw,18px); max-width: 52ch; }
.operator__body .btn { margin-top: 28px; }
.operator__pts { list-style: none; margin: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); align-self: start; }
.operator__pts li { background: var(--panel); padding: 18px 20px; display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; transition: background .2s; }
.operator__pts li:hover { background: var(--panel-2); }
.operator__pts .n { font-family: var(--mono); font-size: 11px; color: var(--gold); padding-top: 3px; }
.operator__pts b { font-family: var(--cond); font-weight: 600; font-size: 16.5px; display: block; margin-bottom: 3px; }
.operator__pts span { color: var(--ink-2); font-size: 14px; }

/* assurances — honest credibility strip in place of fabricated testimonials */
.assures { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.assure { background: var(--panel); padding: 24px 22px; display: flex; flex-direction: column; gap: 9px; transition: background .2s; }
.assure:hover { background: var(--panel-2); }
.assure__ic { width: 34px; height: 34px; border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--gold-br); font-size: 15px; margin-bottom: 4px; }
.assure b { font-family: var(--cond); font-weight: 600; font-size: 17px; }
.assure span { color: var(--ink-2); font-size: 13.5px; }

/* ============================================================
   PRELOADER — "systems initializing" boot sequence
   ============================================================ */
html.is-loading, html.is-loading body { overflow: hidden; }
.pl {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: radial-gradient(620px 420px at 50% 42%, rgba(201,166,84,.09), transparent 62%), var(--bg);
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
.pl.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pl__box { width: min(360px, 80vw); text-align: center; }
.pl__mark {
  width: 56px; height: 56px; margin: 0 auto 24px; position: relative;
  border: 1px solid var(--gold-line); display: grid; place-items: center;
  font-family: var(--cond); font-weight: 700; font-size: 22px; color: var(--gold-br);
  background: linear-gradient(160deg, rgba(201,166,84,.12), transparent);
}
.pl__mark::before { content:""; position: absolute; inset: 4px; border: 1px solid rgba(201,166,84,.18); }
/* radar sweep ring */
.pl__mark::after {
  content:""; position: absolute; inset: -9px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 268deg, rgba(201,166,84,.55) 320deg, transparent 360deg);
  -webkit-mask: radial-gradient(circle, transparent 0 26px, #000 27px);
          mask: radial-gradient(circle, transparent 0 26px, #000 27px);
  animation: plsweep 1.5s linear infinite;
}
.pl__title { font-family: var(--mono); font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-2); }
.pl__bar { height: 2px; background: var(--panel-2); margin-top: 22px; overflow: hidden; position: relative; }
.pl__bar i { position: absolute; left: 0; top: 0; height: 100%; width: 8%; background: linear-gradient(90deg, var(--gold-dim), var(--gold-br)); animation: plfill var(--pl-dur, 1300ms) var(--ease) forwards; }
.pl__log { margin-top: 16px; display: flex; justify-content: center; gap: 16px; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.pl__log span { opacity: 0; animation: plog .4s var(--ease) forwards; }
.pl__log span:nth-child(1){ animation-delay: .25s; } .pl__log span:nth-child(2){ animation-delay: .6s; } .pl__log span:nth-child(3){ animation-delay: .95s; }
.pl__log b { color: var(--nominal); font-weight: 500; }
@keyframes plsweep { to { transform: rotate(360deg); } }
@keyframes plfill { from { width: 8%; } to { width: 100%; } }
@keyframes plog { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .pl__mark::after { animation: none; }
  .pl__bar i { width: 100%; animation: none; }
  .pl__log span { opacity: 1; animation: none; }
}

/* anti-spam honeypot — off-screen, never shown to humans */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   REVEAL (subtle, minimal)
   ============================================================ */
[data-rv] { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
[data-rv].in { opacity: 1; transform: none; }

/* ============================================================
   SIMPLIFIED PASS — calmer globals + essentials-only layout
   ============================================================ */
/* calm the decoration */
.mod::before, .mod::after { content: none; }
body::after { opacity: .08; }
.sec { padding: clamp(78px,11vw,150px) 0; }
.kicker { letter-spacing: .18em; gap: 8px; }

.cbar__login { font-size: 13.5px; color: var(--ink-2); transition: color .2s; display: inline-flex; align-items: center; }
.cbar__login:hover { color: var(--gold-br); }
.cbar__login-ic { display: none; }

/* hero — single column, airy */
.hero { padding: clamp(72px,13vw,160px) 0 clamp(56px,9vw,120px); }
.hero__inner { max-width: 940px; }
.hero .kicker { margin-bottom: 26px; }
.hero h1 { font-size: clamp(40px,6.2vw,82px); max-width: 16ch; }
.hero__sub { margin-top: 28px; max-width: 56ch; font-size: clamp(16.5px,1.5vw,19.5px); color: var(--ink-2); }
.hero__cta { display: flex; gap: 13px; margin-top: 36px; flex-wrap: wrap; }
.hero__note { margin-top: 30px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .03em; color: var(--ink-3); }

/* section lead */
.lead { max-width: 680px; margin-bottom: clamp(36px,5vw,56px); }
.lead .kicker { margin-bottom: 16px; }
.lead__title { font-family: var(--cond); font-weight: 700; font-size: clamp(30px,4.2vw,52px); line-height: 1.02; letter-spacing: -.025em; }
.lead__title em { font-style: normal; color: var(--gold-br); }
.lead__note { margin-top: 16px; color: var(--ink-2); font-size: 16px; max-width: 52ch; }

/* services — clean list */
.svcs { border-top: 1px solid var(--line); }
.svc { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: clamp(18px,3vw,44px); padding: clamp(22px,3vw,32px) 4px; border-bottom: 1px solid var(--line); transition: padding-left .25s var(--ease); }
.svc:hover { padding-left: 16px; }
.svc__main h3 { font-family: var(--cond); font-weight: 600; font-size: clamp(20px,2.4vw,27px); letter-spacing: -.01em; }
.svc__main p { color: var(--ink-2); font-size: 14.5px; margin-top: 7px; max-width: 60ch; }
.svc__price { font-family: var(--cond); font-weight: 700; font-size: clamp(18px,2vw,22px); white-space: nowrap; }
.svc__price .per { font-family: var(--mono); font-weight: 400; font-size: 12px; color: var(--ink-3); }
.svc__arr { color: var(--gold); font-size: 18px; opacity: .5; transition: opacity .2s, transform .2s; }
.svc:hover .svc__arr { opacity: 1; transform: translateX(4px); }
.range { margin-top: 32px; color: var(--ink-2); font-size: 15px; }
.range b { color: var(--ink); }
.range a { color: var(--gold-br); white-space: nowrap; }
.range a:hover { text-decoration: underline; }

/* about / trust — one calm section */
.about__lead { max-width: 660px; }
.about__byline { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.about__avatar { width: 56px; height: 56px; flex: 0 0 auto; border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--ink-3); background: linear-gradient(160deg, var(--panel-2), var(--bg)); overflow: hidden; }
.about__avatar img { width: 100%; height: 100%; object-fit: cover; }
.about__byline b { font-family: var(--cond); font-weight: 600; font-size: 15.5px; display: block; }
.about__byline span { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-3); text-transform: uppercase; }
.about__title { font-family: var(--cond); font-weight: 700; font-size: clamp(26px,3.6vw,44px); line-height: 1.04; letter-spacing: -.025em; }
.about__title em { font-style: normal; color: var(--gold-br); }
.about__text { margin-top: 20px; color: var(--ink-2); font-size: clamp(16px,1.4vw,18px); }
.assures { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(36px,5vw,56px); }
.assure { background: var(--panel); padding: 22px 22px; display: flex; flex-direction: column; gap: 7px; }
.assure b { font-family: var(--cond); font-weight: 600; font-size: 16px; }
.assure span { color: var(--ink-2); font-size: 13.5px; }

/* problem recognition — "sound like you?" */
.problems { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.problem { background: var(--panel); padding: 24px 22px; display: flex; flex-direction: column; gap: 9px; transition: background .2s; }
.problem:hover { background: var(--panel-2); }
.problem b { font-family: var(--cond); font-weight: 600; font-size: 16.5px; line-height: 1.25; }
.problem span { color: var(--ink-2); font-size: 13.5px; }
.problems__cta { margin-top: 30px; font-size: 16.5px; color: var(--ink-2); }
.problems__cta a { color: var(--gold-br); }
.problems__cta a:hover { text-decoration: underline; }
@media (max-width: 860px) { .problems { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .problems { grid-template-columns: 1fr; } }

/* contact */
.engage { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px,5vw,64px); align-items: start; background: none; border: 0; }
.engage__aside .lead__title { margin-top: 14px; }
.engage__intro { margin-top: 16px; color: var(--ink-2); font-size: 15.5px; max-width: 40ch; }
.steps { list-style: none; margin: 26px 0 0; display: grid; gap: 12px; }
.steps li { display: flex; align-items: center; gap: 13px; font-size: 14.5px; color: var(--ink-2); }
.steps li span { flex: 0 0 26px; height: 26px; border: 1px solid var(--gold-line); display: grid; place-items: center; font-family: var(--mono); font-size: 12px; color: var(--gold-br); }
.engage__alt { margin-top: 26px; }
.engage__alt a { font-family: var(--mono); font-size: 13px; color: var(--ink-2); }
.engage__alt a:hover { color: var(--gold-br); }
.qform { background: var(--panel); border: 1px solid var(--line); padding: clamp(24px,3vw,34px); }

/* footer — single calm row */
.foot--simple { padding: 36px 0 calc(36px + env(safe-area-inset-bottom)); }
.foot__row { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.foot__nav { display: flex; gap: 26px; flex-wrap: wrap; }
.foot__nav a { font-size: 14px; color: var(--ink-2); }
.foot__nav a:hover { color: var(--gold-br); }
.foot__copy { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }

@media (max-width: 860px) {
  .svc { grid-template-columns: 1fr auto; }
  .svc__arr { display: none; }
  .assures { grid-template-columns: 1fr 1fr; }
  .engage { grid-template-columns: 1fr; }
  .foot__row { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 620px) {
  /* mobile header: logo only · login icon · CTA */
  .brand__name { display: none; }
  .cbar__login { color: var(--ink); padding: 8px; }
  .cbar__login-txt { display: none; }
  .cbar__login-ic { display: block; }
  .cbar__right { gap: 8px; }
}
@media (max-width: 540px) {
  .assures { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; gap: 8px; }
  .svc__price { justify-self: start; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .console { max-width: 460px; }
  .caps, .proof { grid-template-columns: 1fr 1fr; }
  .price { grid-template-columns: 1fr; }
  .operator { grid-template-columns: 1fr; gap: 28px; }
  .assures { grid-template-columns: 1fr 1fr; }
  .engage__grid { grid-template-columns: 1fr; }
  .flow__axis { grid-template-columns: 1fr 1fr; }
  .phase:nth-child(2) { border-right: none; }
  .phase { border-bottom: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .cbar__nav, .cbar__sla { display: none; }
  .burger { display: flex; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line); }
  .trust__in { grid-template-columns: 1fr; gap: 16px; }
  .caps, .proof { grid-template-columns: 1fr; }
  .flow__axis { grid-template-columns: 1fr; }
  .phase { border-right: none; }
  .sec__hd { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .mcta { display: grid; }
  .foot { padding-bottom: 96px; }
  .assures { grid-template-columns: 1fr; }
  .price__anchor { flex-direction: column; align-items: flex-start; }
  .price__anchor .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-rv] { opacity: 1; transform: none; }
}

/* ============================================================
   FIELD NOTES (blog) — index, single, archives, comments
   ============================================================ */
.fnhead { max-width: 720px; margin-bottom: clamp(34px,5vw,54px); }
.fnhead .kicker { margin-bottom: 16px; }
.fnhead__title { font-family: var(--cond); font-weight: 700; font-size: clamp(34px,5vw,60px); line-height: 1; letter-spacing: -.03em; }
.fnhead__title em { font-style: normal; color: var(--gold-br); }
.fnhead__intro { margin-top: 16px; color: var(--ink-2); font-size: 17px; max-width: 56ch; }

/* post list */
.fnlist { border-top: 1px solid var(--line); }
.fnpost { display: grid; grid-template-columns: 1fr; padding: clamp(26px,3.5vw,40px) 0; border-bottom: 1px solid var(--line); }
.fnpost.has-post-thumbnail { grid-template-columns: 220px 1fr; gap: clamp(20px,3vw,38px); align-items: start; }
.fnpost__img { display: block; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--line); }
.fnpost__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.fnpost:hover .fnpost__img img { transform: scale(1.04); }
.fnpost__cat { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.fnpost__cat:hover { color: var(--gold-br); }
.fnpost__title { font-family: var(--cond); font-weight: 700; font-size: clamp(22px,2.6vw,30px); line-height: 1.12; letter-spacing: -.02em; margin: 8px 0 0; }
.fnpost__title a { color: var(--ink); text-decoration: none; }
.fnpost__title a:hover { color: var(--gold-br); }
.fnpost__meta { font-family: var(--mono); font-size: 12px; color: var(--ink-3); margin-top: 8px; }
.fnpost__excerpt { color: var(--ink-2); font-size: 15.5px; margin-top: 12px; max-width: 62ch; line-height: 1.6; }
.fnpost__more { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 13px; color: var(--gold-br); text-decoration: none; }
.fnpost__more:hover { text-decoration: underline; text-underline-offset: 3px; }
.fn-empty { color: var(--ink-2); font-size: 16px; padding: 30px 0; }

/* pagination */
.fn .nav-links, .fn .pagination .nav-links { margin-top: 40px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.fn .page-numbers { display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); color: var(--ink-2); text-decoration: none; font-family: var(--mono); font-size: 14px; }
.fn .page-numbers.current { background: var(--gold); color: #0a0b0c; border-color: var(--gold); }
.fn .page-numbers:hover:not(.current):not(.dots) { border-color: var(--gold); color: var(--gold-br); }
.fn .page-numbers.dots { border: none; }

/* single post */
.fn-narrow { max-width: 740px; }
.fn-back { display: inline-block; font-family: var(--mono); font-size: 13px; color: var(--ink-2); margin-bottom: 26px; text-decoration: none; }
.fn-back:hover { color: var(--gold-br); }
.fnsingle__head { margin-bottom: 28px; }
.fnsingle__title { font-family: var(--cond); font-weight: 700; font-size: clamp(32px,5vw,54px); line-height: 1.03; letter-spacing: -.03em; margin: 12px 0 0; }
.fnsingle__img { margin: 0 0 32px; border: 1px solid var(--line); }
.fnsingle__img img { width: 100%; height: auto; display: block; }

/* reading typography */
.tg-prose { color: var(--ink-2); font-size: 17.5px; line-height: 1.75; }
.tg-prose > * + * { margin-top: 1.25em; }
.tg-prose h2 { font-family: var(--cond); font-weight: 700; font-size: 1.65em; color: var(--ink); letter-spacing: -.02em; line-height: 1.2; margin-top: 1.8em; }
.tg-prose h3 { font-family: var(--cond); font-weight: 600; font-size: 1.32em; color: var(--ink); margin-top: 1.6em; }
.tg-prose a { color: var(--gold-br); text-decoration: underline; text-underline-offset: 3px; }
.tg-prose strong, .tg-prose b { color: var(--ink); }
.tg-prose ul, .tg-prose ol { padding-left: 1.3em; }
.tg-prose li { margin-top: .5em; }
.tg-prose li::marker { color: var(--gold); }
.tg-prose blockquote { border-left: 2px solid var(--gold); padding-left: 22px; margin-left: 0; color: var(--ink); font-family: var(--cond); font-weight: 500; font-size: 1.18em; }
.tg-prose img { max-width: 100%; height: auto; border: 1px solid var(--line); }
.tg-prose code { font-family: var(--mono); font-size: .88em; background: var(--panel); border: 1px solid var(--line); padding: 2px 6px; color: var(--gold-br); }
.tg-prose pre { background: var(--panel); border: 1px solid var(--line); padding: 18px; overflow-x: auto; }
.tg-prose pre code { background: none; border: none; padding: 0; color: var(--ink); }
.tg-prose hr { border: none; border-top: 1px solid var(--line); }

/* tags + post nav */
.fnsingle__foot { margin-top: 36px; }
.fn-tags { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 24px; border-top: 1px solid var(--line); }
.fn-tags a { font-family: var(--mono); font-size: 12px; color: var(--ink-2); border: 1px solid var(--line); padding: 4px 10px; text-decoration: none; }
.fn-tags a:hover { border-color: var(--gold); color: var(--gold-br); }
.fn-postnav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.fn-postnav a { border: 1px solid var(--line); padding: 16px; text-decoration: none; transition: border-color .2s; }
.fn-postnav a:hover { border-color: var(--line-2); }
.fn-postnav__next { text-align: right; }
.fn-postnav span { font-family: var(--mono); font-size: 11px; color: var(--ink-3); display: block; }
.fn-postnav b { font-family: var(--cond); font-weight: 600; font-size: 15px; color: var(--ink); display: block; margin-top: 6px; }

/* comments */
.fn-comments { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }
.fn-comments__title { font-family: var(--cond); font-weight: 700; font-size: 22px; margin: 0 0 20px; }
.fn-commentlist { list-style: none; padding: 0; margin: 0 0 30px; }
.fn-commentlist .comment { border-bottom: 1px solid var(--line); padding: 16px 0; list-style: none; }
.fn-commentlist .comment-body { font-size: 15px; color: var(--ink-2); }
.fn-commentlist .comment-author, .fn-commentlist .fn b, .fn-commentlist cite { font-weight: 600; color: var(--ink); font-style: normal; }
.fn-commentlist .comment-meta a { color: var(--ink-3); font-family: var(--mono); font-size: 11px; }
.fn-commentlist .children { list-style: none; padding-left: 24px; }
.fn-comments .comment-form input[type=text], .fn-comments .comment-form input[type=email], .fn-comments .comment-form input[type=url], .fn-comments .comment-form textarea { width: 100%; background: var(--bg); border: 1px solid var(--line-2); color: var(--ink); padding: 11px 13px; font-family: var(--sans); margin-top: 6px; }
.fn-comments label { font-family: var(--mono); font-size: 12px; color: var(--ink-2); }
.fn-comments .comment-form p { margin-bottom: 14px; }

/* search form */
.search-form { display: flex; gap: 8px; }
.search-form .search-field { flex: 1; background: var(--bg); border: 1px solid var(--line-2); color: var(--ink); padding: 11px 13px; font-family: var(--sans); outline: none; }
.search-form .search-field:focus { border-color: var(--gold); }
.search-form .search-submit { background: var(--gold); color: #0a0b0c; border: none; padding: 11px 18px; font-family: var(--sans); font-weight: 600; cursor: pointer; }

@media (max-width: 640px) {
  .fnpost.has-post-thumbnail { grid-template-columns: 1fr; gap: 14px; }
  .fn-postnav { grid-template-columns: 1fr; }
  .fn-postnav__next { text-align: left; }
}

/* ============================================================
   SERVICES PAGE (template-services.php) — spec sheets
   ============================================================ */
.svp-hero { padding-bottom: clamp(40px,6vw,72px); }
.svp-hero .lead { max-width: 760px; }

/* service index / station directory */
.svp-index { margin-top: 22px; border: 1px solid var(--line); }
.svp-index__item { display: grid; grid-template-columns: 86px 1fr auto; align-items: center; gap: 20px; padding: 14px 18px; border-bottom: 1px solid var(--line); transition: background .2s, padding-left .2s var(--ease); }
.svp-index__item:last-child { border-bottom: none; }
.svp-index__item:hover { background: var(--panel); padding-left: 26px; }
.svp-index__id { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--gold); }
.svp-index__name { font-family: var(--cond); font-weight: 600; font-size: 16.5px; color: var(--ink); }
.svp-index__price { font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); white-space: nowrap; }
.svp-index__price i { color: var(--ink-3); font-style: normal; }

/* spec-sheet modules */
.svp-sheets .svp-mod + .svp-mod { margin-top: 18px; }
.svp-mod { position: relative; display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(22px,3.2vw,52px); background: var(--panel); border: 1px solid var(--line); padding: clamp(24px,3vw,42px); scroll-margin-top: 92px; transition: border-color .25s; }
.svp-mod:hover { border-color: var(--line-2); }
.svp-mod::before, .svp-mod::after { content:""; position: absolute; width: 12px; height: 12px; pointer-events: none; opacity: .9; }
.svp-mod::before { top: -1px; left: -1px; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.svp-mod::after { bottom: -1px; right: -1px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.svp-mod__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.svp-mod__id { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--gold); }
.svp-mod__tag { font-family: var(--mono); font-size: 11px; letter-spacing: .05em; color: var(--ink-3); text-transform: uppercase; }
.svp-mod__title { font-family: var(--cond); font-weight: 700; font-size: clamp(24px,3vw,34px); letter-spacing: -.02em; line-height: 1.04; }
.svp-mod__blurb { margin-top: 13px; color: var(--ink-2); font-size: 15.5px; line-height: 1.62; max-width: 56ch; }
.svp-inc { list-style: none; margin: 22px 0 0; display: grid; gap: 10px; }
.svp-inc li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink-2); }
.svp-inc svg { color: var(--gold-br); flex: 0 0 auto; margin-top: 2.5px; }

.svp-spec { border-left: 1px solid var(--line); padding-left: clamp(20px,2.4vw,34px); display: flex; flex-direction: column; gap: 17px; align-self: start; }
.svp-spec__row { display: flex; flex-direction: column; gap: 4px; }
.svp-spec__k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.svp-spec__v { font-size: 14.5px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.svp-spec__price { font-family: var(--cond); font-weight: 700; font-size: clamp(24px,2.6vw,32px); color: var(--gold-br); letter-spacing: -.02em; }
.svp-spec__price i { font-family: var(--mono); font-weight: 400; font-size: 13px; color: var(--ink-3); font-style: normal; }
.svp-spec .btn { margin-top: 6px; }

/* process pipeline */
.svp-flow { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svp-flow__step { background: var(--panel); padding: 26px 22px; display: flex; flex-direction: column; gap: 9px; transition: background .2s; }
.svp-flow__step:hover { background: var(--panel-2); }
.svp-flow__no { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--gold); }
.svp-flow__step b { font-family: var(--cond); font-weight: 600; font-size: 17px; line-height: 1.15; }
.svp-flow__step span { color: var(--ink-2); font-size: 13.5px; line-height: 1.5; }

/* faq */
.svp-faq { border-top: 1px solid var(--line); }
.svp-q { border-bottom: 1px solid var(--line); }
.svp-q summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; font-family: var(--cond); font-weight: 600; font-size: clamp(17px,2vw,21px); color: var(--ink); transition: color .2s; }
.svp-q summary::-webkit-details-marker { display: none; }
.svp-q summary:hover { color: var(--gold-br); }
.svp-q__ic { font-family: var(--mono); font-weight: 400; font-size: 24px; line-height: 1; color: var(--gold); transition: transform .25s var(--ease); flex: 0 0 auto; }
.svp-q[open] .svp-q__ic { transform: rotate(45deg); }
.svp-q p { color: var(--ink-2); font-size: 15.5px; line-height: 1.66; max-width: 72ch; padding: 0 4px 24px; margin: 0; }

/* closing cta */
.svp-cta { display: grid; grid-template-columns: 1.5fr auto; align-items: center; gap: clamp(24px,4vw,52px); background: var(--panel); border: 1px solid var(--line); padding: clamp(28px,4vw,48px); }
.svp-cta__txt h2 { font-family: var(--cond); font-weight: 700; font-size: clamp(24px,3.2vw,38px); letter-spacing: -.02em; line-height: 1.05; margin-top: 14px; }
.svp-cta__txt p { margin-top: 12px; color: var(--ink-2); font-size: 15.5px; max-width: 50ch; }
.svp-cta__act { display: flex; flex-direction: column; gap: 12px; min-width: 230px; }

@media (max-width: 860px) {
  .svp-mod { grid-template-columns: 1fr; }
  .svp-spec { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 20px; }
  .svp-flow { grid-template-columns: 1fr 1fr; }
  .svp-cta { grid-template-columns: 1fr; }
  .svp-cta__act { min-width: 0; }
  .svp-index__item { grid-template-columns: 64px 1fr; }
  .svp-index__price { grid-column: 2; justify-self: start; padding-top: 2px; }
}
@media (max-width: 540px) { .svp-flow { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER v2 — status-bar console
   ============================================================ */
.foot { border-top: 1px solid var(--line); background: var(--bg-2); padding: clamp(44px,6vw,72px) 0 calc(40px + env(safe-area-inset-bottom)); }
.foot__status { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px; padding-bottom: 26px; margin-bottom: 34px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--ink-3); }
.foot__stat { display: inline-flex; align-items: center; gap: 8px; }
.foot__stat--mono { margin-left: auto; color: var(--ink-2); letter-spacing: .14em; }
.foot__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: clamp(26px,4vw,48px); }
.foot__brandcol .brand { margin-bottom: 16px; }
.foot__pitch { color: var(--ink-2); font-size: 14px; line-height: 1.62; max-width: 40ch; }
.foot__avail { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--ink-2); border: 1px solid var(--line-2); padding: 8px 13px; transition: border-color .2s, color .2s; }
.foot__avail:hover { border-color: var(--gold); color: var(--gold-br); }
.foot__col--cta p { color: var(--ink-2); font-size: 13.5px; line-height: 1.5; margin-bottom: 16px; max-width: 30ch; }
.foot__col--cta .btn { margin-bottom: 12px; }
/* the column link colour (.foot__col a) outranks .btn--primary and washes out the
   gold button's text — restore near-black so it stays high-contrast and legible */
.foot__col a.btn--primary, .foot__col a.btn--primary:hover { color: #0a0b0c; }
.foot__call { display: inline-block; font-family: var(--mono); font-size: 12px; color: var(--ink-2); transition: color .2s; }
.foot__call:hover { color: var(--gold-br); }
.foot__bottom-r { color: var(--ink-3); }

@media (max-width: 860px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .foot__brandcol { grid-column: 1 / -1; }
  .foot__status { gap: 8px 18px; }
  .foot__stat--mono { margin-left: 0; }
}
@media (max-width: 540px) {
  .foot__grid { grid-template-columns: 1fr; }
  .foot__bottom { flex-direction: column; gap: 6px; }
}

/* ============================================================
   BOOK A CALL (template-book.php)
   ============================================================ */
.book { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px,4vw,56px); align-items: start; }
.book__aside { position: sticky; top: 92px; }
.book__intro { margin-top: 16px; color: var(--ink-2); font-size: 15.5px; max-width: 42ch; line-height: 1.62; }
.book__expect { list-style: none; margin: 28px 0 0; display: grid; gap: 16px; }
.book__expect li { display: flex; gap: 14px; align-items: flex-start; }
.book__no { flex: 0 0 38px; height: 38px; border: 1px solid var(--gold-line); display: grid; place-items: center; font-family: var(--mono); font-size: 13px; color: var(--gold-br); }
.book__expect div b { font-family: var(--cond); font-weight: 600; font-size: 15.5px; display: block; }
.book__expect div span { color: var(--ink-2); font-size: 13.5px; display: block; margin-top: 2px; line-height: 1.5; }
/* the badge is also a <span>; keep its grid centering immune to the rule above */
.book__no { display: grid !important; }
.book__alt { margin-top: 28px; font-family: var(--mono); font-size: 13px; color: var(--ink-2); }
.book__alt a { color: var(--gold-br); }
.book__alt a:hover { text-decoration: underline; text-underline-offset: 3px; }

.book__sched { background: var(--panel); border: 1px solid var(--line); padding: 8px; min-height: 640px; }
.tg-cal { min-height: 624px; position: relative; }
.tg-cal__loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--mono); font-size: 13px; color: var(--ink-2); }
.tg-cal--frame { height: 720px; min-height: 0; padding: 0; }
.tg-cal--frame iframe { display: block; }
.tg-cal--soon { min-height: 560px; display: grid; place-items: center; text-align: center; padding: 30px; }
.tg-cal--soon b { font-family: var(--cond); font-weight: 600; font-size: 18px; color: var(--ink); }
.tg-cal--soon p { color: var(--ink-2); font-size: 14.5px; margin: 12px 0 20px; max-width: 40ch; }

@media (max-width: 860px) {
  .book { grid-template-columns: 1fr; }
  .book__aside { position: static; }
}

/* ============================================================
   GLITCH HEADLINE (contact "Tell me what's ___")
   Subtle cyber transition: scramble + brief RGB split + scanlines.
   ============================================================ */
.glitch-h { position: relative; display: block; min-height: 2.05em; }
.gh-seg { position: relative; display: inline-block; white-space: pre; }
.gh-lead { color: var(--ink); }
.gh-key  { color: var(--gold-br); }
/* scramble placeholder glyphs resolve into the final text */
.gh-seg .gh-dud { opacity: .5; }
.gh-key .gh-dud { color: var(--gold); }

/* RGB-separation ghosts — only during a glitch burst */
.gh-seg::before, .gh-seg::after {
  content: attr(data-text); position: absolute; top: 0; left: 0;
  white-space: pre; pointer-events: none; opacity: 0;
  mix-blend-mode: screen; will-change: transform, opacity;
}
.glitch-h.is-glitching .gh-seg::before { opacity: .85; color: #2ee6d6; animation: ghA .3s steps(2,end) 1; }
.glitch-h.is-glitching .gh-seg::after  { opacity: .85; color: #ff3b6b; animation: ghB .3s steps(2,end) 1; }
@keyframes ghA { 0%{transform:translate(-3px,1px)} 45%{transform:translate(-1px,-1px)} 100%{transform:translate(0,0);opacity:0} }
@keyframes ghB { 0%{transform:translate(3px,-1px)} 45%{transform:translate(1px,1px)} 100%{transform:translate(0,0);opacity:0} }

/* faint scanlines + a 1px jitter on the burst */
.glitch-h::after {
  content:""; position: absolute; inset: -4px -6px; pointer-events: none; opacity: 0;
  background: repeating-linear-gradient(0deg, rgba(233,229,218,.07) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
.glitch-h.is-glitching::after { animation: ghScan .32s steps(3,end) 1; }
@keyframes ghScan { 0%{opacity:.6} 55%{opacity:.28} 100%{opacity:0} }
.glitch-h.is-glitching { animation: ghJit .26s steps(2,end) 1; }
@keyframes ghJit { 0%{transform:translateX(1px)} 50%{transform:translateX(-1px)} 100%{transform:translateX(0)} }

@media (prefers-reduced-motion: reduce) {
  .glitch-h, .glitch-h.is-glitching { animation: none !important; }
  .glitch-h.is-glitching .gh-seg::before, .glitch-h.is-glitching .gh-seg::after,
  .glitch-h.is-glitching::after { animation: none !important; opacity: 0 !important; }
}
