/* ============================================================
   MARKET DISRUPT — site.css
   Design system v2 · "Mission control" — dark-anchored, blueprint
   grid, mono HUD labels, MD Red (#FF4433) sole accent, red→gold
   signature gradient. Per brand guidelines (market-disrupt-brand).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Nunito+Sans:opsz,wght@6..12,400;6..12,600;6..12,700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  /* Surfaces */
  --bg:      #0d0d0d;
  --bg-2:    #111111;
  --card:    #161616;
  --card-2:  #1a1a1a;
  --card-hi: #1f1f1f;

  /* Lines */
  --line:      #2a2a2a;
  --line-soft: #1f1f1f;

  /* Text */
  --text:  #ffffff;
  --body:  #d6d6d6;
  --muted: #a3a3a3;
  --faint: #6f6f6f;

  /* Brand */
  --red:   #ff4433;
  --gold:  #f2b013;
  --grad:  linear-gradient(135deg, #ff4433 0%, #f2b013 100%);

  /* Type */
  --display: 'Poppins', system-ui, sans-serif;
  --sans:    'Nunito Sans', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'Courier New', monospace;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: 24px;
  --r: 10px;
  --r-lg: 14px;
  --section: clamp(80px, 10vw, 150px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Blueprint grid — fixed, page-wide, extremely faint */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 48px 48px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--text);
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(255,68,51,0.35); color: #fff; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: 10px 18px;
  font-family: var(--display); font-weight: 600; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

/* ---------- Layout utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.section { padding-block: var(--section); position: relative; }
.mono { font-family: var(--mono); }

/* HUD section label — mono eyebrow with a red rule */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.sec-label::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  flex: none;
}
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.sec-head h2 {
  margin-top: 16px;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 700;
}
.sec-lead { margin-top: 18px; font-size: clamp(16px, 1.7vw, 19px); color: var(--muted); max-width: 620px; }

.grad-text {
  background: var(--grad);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text.animate { animation: gradShift 8s var(--ease) infinite alternate; }
@keyframes gradShift { to { background-position: 100% 50%; } }

.hair { height: 1px; border: 0; margin: 0; background: linear-gradient(90deg, transparent, var(--line-soft) 18%, var(--line-soft) 82%, transparent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: var(--r);
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.btn-grad { color: #fff; background: var(--grad); box-shadow: 0 8px 30px -10px rgba(255,68,51,0.55); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(255,68,51,0.7); }
.btn-ghost { color: var(--text); background: rgba(255,255,255,0.02); border-color: var(--line); }
.btn-ghost:hover { border-color: #4a4a4a; background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 17px; }

/* ---------- Chip ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--body);
  padding: 8px 14px; border-radius: 6px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px var(--red); animation: pulse 2.4s ease infinite; }
@keyframes pulse { 50% { opacity: 0.45; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.nav.solid {
  background: rgba(13,13,13,0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 22px; }
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--display); font-weight: 500; font-size: 15px;
  color: var(--body); padding: 9px 13px; border-radius: 8px;
  background: none; border: none;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover, .nav-link.on { color: #fff; background: rgba(255,255,255,0.045); }
.nav-link.on { box-shadow: inset 0 -2px 0 var(--red); border-radius: 8px 8px 2px 2px; }
.caret { transition: transform .25s var(--ease); opacity: .7; }
.nav-item { position: relative; }
.nav-item[data-open] .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: -8px; width: 320px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 8px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.85);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.nav-item[data-open] .dropdown { opacity: 1; transform: none; pointer-events: auto; }
.drop-row { display: flex; align-items: center; gap: 13px; padding: 12px 13px; border-radius: 9px; transition: background .18s var(--ease); }
.drop-row:hover { background: rgba(255,255,255,0.045); }
.drop-glyph { color: var(--red); flex: none; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,68,51,0.06); }
.drop-k { font-family: var(--display); font-weight: 600; font-size: 15px; color: #fff; display: block; }
.drop-d { font-size: 13px; color: var(--muted); line-height: 1.35; display: block; }
.nav-cta { padding: 10px 19px; font-size: 15px; }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Login — pinned at the far right, set apart from the main nav cluster */
.nav-login {
  margin-left: 16px;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  color: var(--red);
  padding: 9px 17px; border-radius: 8px;
  border: 1px solid rgba(255,68,51,0.35);
  background: rgba(255,68,51,0.06);
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.nav-login:hover {
  background: var(--red); color: #fff; border-color: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(255,68,51,0.6);
}
.mobile-link[href^="https://portal"] { color: var(--red); }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; background: none; border: 1px solid var(--line); border-radius: 9px; }
.burger span { display: block; width: 18px; height: 2px; background: #fff; margin-inline: auto; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 74px; left: 0; right: 0; bottom: 0; z-index: 99;
  background: rgba(13,13,13,0.97); backdrop-filter: blur(20px);
  opacity: 0; pointer-events: none; transform: translateY(-10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-inner { display: flex; flex-direction: column; padding: 28px var(--gutter) 60px; gap: 2px; }
.mobile-label { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin: 14px 0 8px; }
.mobile-link { font-family: var(--display); font-weight: 600; font-size: 21px; color: var(--body); padding: 11px 0; }
.mobile-link:hover { color: #fff; }
.mobile-cta { margin-top: 26px; width: 100%; }

@media (max-width: 920px) {
  .nav-links, .nav-cta, .nav-login { display: none; }
  .burger { display: flex; }
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero { position: relative; padding-top: 146px; padding-bottom: clamp(72px, 9vw, 130px); overflow: hidden; }
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.9;
  -webkit-mask-image: radial-gradient(ellipse 100% 85% at 50% 30%, #000 40%, transparent 92%);
  mask-image: radial-gradient(ellipse 100% 85% at 50% 30%, #000 40%, transparent 92%);
}
.hero-glow {
  position: absolute; pointer-events: none; z-index: 0;
  width: 720px; height: 560px; top: -220px; left: 50%; transform: translateX(-72%);
  background: radial-gradient(ellipse, rgba(255,68,51,0.2), transparent 65%);
  filter: blur(70px);
}
.hero-glow.g2 { transform: translateX(8%); background: radial-gradient(ellipse, rgba(242,176,19,0.12), transparent 65%); }

.hero-grid2 { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero-copy h1 { margin-top: 0; font-size: clamp(31px, 4vw, 52px); font-weight: 700; }
.hero-copy h1 em { font-style: italic; }
.hero-copy .lead { margin-top: 24px; font-size: clamp(17px, 1.9vw, 20px); line-height: 1.55; color: var(--body); max-width: 560px; }
.actions { margin-top: 36px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Partner credential cards */
.creds-wrap { margin-top: 52px; display: flex; flex-direction: column; gap: 14px; }
.creds-label { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--faint); }
.creds { display: flex; flex-wrap: wrap; gap: 12px; }
.cred {
  height: 62px; display: inline-flex; align-items: center; gap: 12px; padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #eef0f2 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 34px -18px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cred:hover { transform: translateY(-3px); }
.cred img.z { height: 42px; width: auto; display: block; }
.cred img.h { height: 44px; width: auto; display: block; }
.cred img.c { width: 28px; height: 28px; display: block; }
.cred .cred-g { width: 26px; height: 26px; display: block; flex: none; }
.cred-text { display: flex; flex-direction: column; line-height: 1.12; }
.cred-top { font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #8a8780; }
.cred-main { font-family: var(--display); font-size: 14px; font-weight: 700; color: #14223a; }

/* Implementation console */
.console {
  position: relative; border-radius: var(--r-lg);
  background: #101010; border: 1px solid var(--line);
  box-shadow: 0 40px 90px -32px rgba(0,0,0,0.95), 0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
}
.console::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,68,51,0.04), transparent 30%);
}
.console-bar {
  display: flex; align-items: center; gap: 7px; padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft); background: rgba(255,255,255,0.015);
}
.console-bar i { width: 10px; height: 10px; border-radius: 50%; background: #2e2e2e; }
.console-bar i:first-child { background: rgba(255,68,51,0.7); }
.console-bar em {
  margin-left: auto; font-style: normal; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em; color: var(--faint);
}
.console { cursor: text; }
.console-body {
  margin: 0; padding: 20px 20px 24px; min-height: 308px; max-height: 340px;
  overflow-y: auto; scrollbar-width: thin; scrollbar-color: #2a2a2a transparent;
  font-family: var(--mono); font-size: 13.5px; line-height: 2.05;
  white-space: pre-wrap; word-break: break-word; color: var(--body);
}
.console-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.console-body .ln-hint { color: var(--faint); font-size: 12px; }
.console-body .ln-hint::before { content: "→ "; color: var(--red); }
.console-body b { color: #fff; font-weight: 600; }
.console-key {
  position: absolute; top: 0; left: 0; width: 1px; height: 1px;
  opacity: 0; border: 0; padding: 0; background: transparent; color: transparent;
}
.console-body .ln { display: block; }
.console-body .ln-cmd::before { content: "$ "; color: var(--red); font-weight: 600; }
.console-body .ln-out { color: var(--muted); }
.console-body .ln-out::before { content: "  "; }
.console-body .ok { color: var(--gold); }
.caret-blk { display: inline-block; width: 8px; height: 15px; vertical-align: -2px; background: var(--red); animation: blink 1.05s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 980px) {
  .hero-grid2 { grid-template-columns: 1fr; }
  .console { max-width: 600px; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { padding-block: clamp(44px, 6vw, 72px); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust-label { text-align: center; font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 30px; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 48px; }
.trust-row img {
  height: 32px; width: auto; max-width: 130px; object-fit: contain;
  opacity: 0.7;
  /* normalize mixed light/dark source logos to clean white marks on the dark bg */
  filter: brightness(0) invert(1);
  transition: opacity .25s var(--ease);
}
.trust-row img:hover { opacity: 1; }
.trust-more { margin-top: 28px; text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--faint); }
.vs-links { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.03em; color: var(--muted); }
.vs-links a { color: #fff; border-bottom: 1px solid rgba(255,68,51,0.5); padding-bottom: 1px; transition: color .2s var(--ease), border-color .2s var(--ease); }
.vs-links a:hover { color: var(--red); border-color: var(--red); }
.vs-links span { color: var(--faint); margin: 0 4px; }

/* footer social icon */
.footer-social { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; margin-top: 10px;
  border: 1px solid var(--line); border-radius: 8px; color: var(--muted);
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.footer-social:hover { color: #fff; border-color: var(--red); transform: translateY(-2px); }

/* blog post bottom CTA */
.post-cta { margin-top: 56px; padding: 40px clamp(24px, 5vw, 52px); border-radius: var(--r-lg); border: 1px solid var(--line); text-align: center;
  background: linear-gradient(120deg, rgba(255,68,51,0.09), rgba(242,176,19,0.04) 60%), var(--card2); }
.post-cta h2 { margin: 0; font-family: var(--display); font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.01em; color: #fff; }
.post-cta p { margin: 12px auto 24px; max-width: 560px; color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.trust-partners { margin-bottom: 46px; padding-bottom: 42px; border-bottom: 1px solid var(--line-soft); }
.trust-partners .trust-label { margin-bottom: 24px; }
.creds-center { justify-content: center; }

/* ============================================================
   TILT CARDS (shared) — JS sets --rx/--ry/--mx/--my + [data-tilting]
   ============================================================ */
[data-tilt] {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0px));
  transition: transform .4s var(--ease), border-color .3s var(--ease), background .3s var(--ease), box-shadow .4s var(--ease);
}
[data-tilt][data-tilting] {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0px));
  transition: transform .08s linear, border-color .3s var(--ease), background .3s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.9);
}
/* re-assert over .reveal.in { transform: none } */
.reveal.in[data-tilt] { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0px)); }

/* ============================================================
   SERVICE CARDS (homepage)
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; perspective: 1100px; }
.svc-grid.g3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
  position: relative; display: flex; flex-direction: column;
  background:
    radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255, var(--sheen, 0)), transparent 42%),
    var(--card);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px 28px; overflow: hidden;
}
.svc[data-tilting] { --lift: -6px; --sheen: 0.05; border-color: rgba(255,68,51,0.45); background-color: var(--card-hi); }
.svc:hover { border-color: rgba(255,68,51,0.45); }
/* HUD corner ticks */
.svc::before, .svc::after {
  content: ""; position: absolute; width: 15px; height: 15px; opacity: 0;
  transition: opacity .3s var(--ease); pointer-events: none;
}
.svc::before { top: 9px; left: 9px; border-top: 2px solid var(--red); border-left: 2px solid var(--red); }
.svc::after { bottom: 9px; right: 9px; border-bottom: 2px solid var(--red); border-right: 2px solid var(--red); }
.svc:hover::before, .svc:hover::after, .svc[data-tilting]::before, .svc[data-tilting]::after { opacity: 1; }

.svc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.svc-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 11px; color: var(--red); background: rgba(255,68,51,0.08); border: 1px solid rgba(255,68,51,0.25); }
.svc-tag { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; color: var(--faint); }
.svc h3 { font-size: 22px; font-weight: 600; line-height: 1.18; margin-bottom: 13px; }
.svc p { color: var(--muted); font-size: 15.5px; line-height: 1.55; margin-bottom: 20px; }
.svc ul { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 10px; }
.svc li { display: flex; align-items: baseline; gap: 10px; font-size: 15px; color: var(--body); }
.svc li::before { content: "→"; color: var(--red); font-weight: 700; flex: none; }
.svc-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; font-size: 15px; color: #fff; transition: gap .2s var(--ease); }
.svc:hover .svc-link { gap: 13px; }
.svc-link svg { color: var(--red); }

/* At 5-across the cards are narrower — tighten type and padding */
.svc { padding: 24px 20px 22px; }
.svc h3 { font-size: 18.5px; }
.svc p { font-size: 14.5px; }
.svc li { font-size: 14px; }
.svc-grid.g3 .svc { padding: 28px 26px 26px; }
.svc-grid.g3 .svc h3 { font-size: 20px; }

/* ============================================================
   INTEGRATION DIAGRAM
   ============================================================ */
.net { position: relative; }
.net-glow { position: absolute; width: 600px; height: 420px; top: 50%; left: 50%; transform: translate(-50%, -46%); background: radial-gradient(ellipse, rgba(255,68,51,0.1), transparent 65%); filter: blur(60px); pointer-events: none; }
.net-frame {
  position: relative; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.012), transparent 40%), var(--bg-2);
  padding: clamp(10px, 2.5vw, 28px);
  overflow: hidden;
}
.net-frame::before, .net-frame::after {
  content: ""; position: absolute; width: 18px; height: 18px; pointer-events: none;
}
.net-frame::before { top: 10px; left: 10px; border-top: 2px solid var(--red); border-left: 2px solid var(--red); }
.net-frame::after  { bottom: 10px; right: 10px; border-bottom: 2px solid var(--red); border-right: 2px solid var(--red); }
.net svg { display: block; width: 100%; height: auto; }

.net-node rect { fill: #151515; stroke: #2e2e2e; stroke-width: 1; transition: stroke .25s var(--ease); rx: 12; }
.net-node:hover rect { stroke: var(--red); }
.net-node text { font-family: var(--display); font-weight: 600; font-size: 17px; fill: #fff; letter-spacing: -0.01em; }
.net-node .sub { font-family: var(--mono); font-weight: 400; font-size: 10px; fill: var(--faint); letter-spacing: 0.1em; }
.net-node .glyph { stroke: var(--red); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.net-hub-ring { fill: none; stroke: rgba(255,68,51,0.14); stroke-width: 1; }
.net-hub-ring.r2 { stroke: rgba(255,68,51,0.07); }
.net-path { fill: none; stroke: #303030; stroke-width: 1.5; }
.net-path-hot { fill: none; stroke: rgba(255,68,51,0.55); stroke-width: 1.5; stroke-dasharray: 7 90; animation: flow 2.8s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -97; } }
.net-pkt { fill: var(--gold); filter: drop-shadow(0 0 6px rgba(242,176,19,0.9)); }
.net-pkt.alt { fill: var(--red); filter: drop-shadow(0 0 6px rgba(255,68,51,0.9)); }

/* Toggleable + draggable nodes */
.net-node[data-toggle], .net-hub { cursor: grab; outline: none; touch-action: none; }
.net-node[data-toggle]:active, .net-hub:active { cursor: grabbing; }
.net-node[data-toggle]:not(.off) rect { stroke: rgba(255,68,51,0.5); }
.net-node[data-toggle]:focus-visible rect { stroke: var(--red); stroke-width: 2; }
.net-node.off { opacity: 0.3; }
.net-node.off rect { stroke: #2a2a2a; }
.net-node.off .glyph { stroke: var(--faint); }
.net-path.dim { opacity: 0.16; }
.net-hint {
  position: absolute; top: 14px; right: 18px; z-index: 1;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint);
  pointer-events: none;
}

/* Readout below the diagram */
.net-readout {
  margin-top: 20px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(255,68,51,0.05), transparent 55%), var(--card);
  padding: 20px 24px;
}
.net-readout-label {
  flex: none; font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--red);
  border: 1px solid rgba(255,68,51,0.35); border-radius: 6px;
  background: rgba(255,68,51,0.06); padding: 7px 11px;
}
.net-readout p { flex: 1; min-width: 240px; color: var(--body); font-size: 15.5px; }
.net-readout a {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--gold);
  transition: gap .2s var(--ease);
}
.net-readout a:hover { gap: 12px; }
.net-cap { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.net-cap p { color: var(--muted); font-size: 15.5px; }
.net-cap a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--gold); transition: gap .2s var(--ease); white-space: nowrap; }
.net-cap a:hover { gap: 12px; }

/* ============================================================
   METRICS
   ============================================================ */
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; background: var(--card); }
.metric { padding: 34px 28px; border-right: 1px solid var(--line-soft); transition: background .3s var(--ease); }
.metric:last-child { border-right: 0; }
.metric:hover { background: var(--card-hi); }
.metric-num { display: flex; align-items: baseline; font-family: var(--display); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.metric-num .v, .metric-num .sfx { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric-num .v { font-size: clamp(42px, 5vw, 58px); }
.metric-num .sfx { font-size: clamp(24px, 2.8vw, 32px); }
.metric-label { margin-top: 14px; font-family: var(--display); font-weight: 600; font-size: 16.5px; color: #fff; }
.metric-src { margin-top: 5px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--faint); }
.metrics-note { margin-top: 26px; font-size: 13px; color: var(--faint); font-style: italic; }

/* ============================================================
   APP CARDS
   ============================================================ */
.apps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; perspective: 1100px; }
.app {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background:
    radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255, var(--sheen, 0)), transparent 42%),
    linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; overflow: hidden;
}
.app[data-tilting] { --lift: -5px; --sheen: 0.05; border-color: rgba(255,68,51,0.45); }
.app:hover { border-color: rgba(255,68,51,0.45); }
.app-head { display: flex; align-items: center; gap: 16px; }
.app-ic {
  flex: none; display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 12px; border: 1px solid rgba(255,68,51,0.3);
  background: rgba(255,68,51,0.07);
  font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--red);
}
.app-name { font-size: 20px; font-weight: 600; }
.app-tag { font-family: var(--mono); font-size: 11px; color: var(--muted); padding: 3px 8px; border: 1px solid var(--line); border-radius: 5px; white-space: nowrap; }
.app-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.app p { font-size: 15px; color: var(--muted); line-height: 1.55; }
.app ul { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 9px; }
.app li { display: flex; align-items: baseline; gap: 10px; font-size: 14.5px; color: var(--body); }
.app li::before { content: "→"; color: var(--red); font-weight: 700; flex: none; }
.app-status { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 14px; font-family: var(--mono); font-size: 12px; color: var(--body); }
.app-status i { width: 7px; height: 7px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 10px #3ddc84; animation: pulse 2.4s ease infinite; }
.app-more {
  display: flex; flex-direction: column; gap: 12px; justify-content: center;
  border: 1px dashed var(--line); border-radius: var(--r-lg); padding: 28px; background: none;
}
.app-more .plus { font-family: var(--display); font-size: 28px; font-weight: 300; color: var(--faint); width: 50px; height: 50px; display: grid; place-items: center; border: 1px dashed var(--line); border-radius: 12px; }
.app-more h3 { font-size: 19px; font-weight: 600; }
.app-more p { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 28px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.testi:hover { border-color: var(--line); transform: translateY(-4px); }
.testi-stat { display: flex; align-items: baseline; gap: 10px; margin-bottom: 17px; padding-bottom: 17px; border-bottom: 1px solid var(--line-soft); }
.testi-stat b { font-family: var(--display); font-weight: 700; font-size: 32px; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.testi-stat span { font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.testi blockquote { margin: 0 0 22px; font-size: 16px; line-height: 1.6; color: var(--body); flex: 1; }
.testi figcaption { display: flex; flex-direction: column; }
.testi-name { font-family: var(--display); font-weight: 600; font-size: 14.5px; color: #fff; }
.testi-org { font-size: 13px; color: var(--faint); }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.closing { position: relative; overflow: hidden; text-align: center; }
.closing-glow { position: absolute; width: 700px; height: 480px; top: 50%; left: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255,68,51,0.16), rgba(242,176,19,0.07) 45%, transparent 70%); filter: blur(50px); pointer-events: none; }
.closing-wrap { position: relative; z-index: 1; max-width: 800px; margin-inline: auto; }
.closing-emblem { width: 72px; height: 72px; margin: 0 auto 28px; display: block; filter: drop-shadow(0 14px 34px rgba(255,68,51,0.35)); }
.closing h2 { font-size: clamp(36px, 5.6vw, 64px); font-weight: 700; letter-spacing: -0.03em; }
.closing p { margin: 24px auto 0; font-size: clamp(16px, 1.9vw, 19px); color: var(--muted); max-width: 540px; }
.closing-actions { margin-top: 38px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.closing-aside { font-family: var(--mono); font-size: 12.5px; color: var(--faint); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.phero { position: relative; padding-top: 170px; padding-bottom: clamp(56px, 7vw, 96px); overflow: hidden; }
.phero-glow { position: absolute; width: 640px; height: 460px; top: -200px; left: -120px; background: radial-gradient(ellipse, rgba(255,68,51,0.18), transparent 65%); filter: blur(70px); pointer-events: none; }
.phero .crumb { font-family: var(--mono); font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.phero .crumb::before {
  content: ""; display: inline-block; width: 22px; height: 2px;
  border-radius: 2px; background: var(--red);
  vertical-align: middle; margin-right: 11px;
}
.phero .crumb a { color: var(--faint); transition: color .2s; }
.phero .crumb a:hover { color: var(--body); }
.phero h1 { margin-top: 18px; font-size: clamp(34px, 4.6vw, 56px); font-weight: 700; max-width: 760px; }
.phero .lead { margin-top: 22px; font-size: clamp(16.5px, 1.9vw, 20px); color: var(--body); max-width: 620px; line-height: 1.55; }
.phero .actions { margin-top: 34px; }

/* ============================================================
   CAPABILITY GRID (inner pages)
   ============================================================ */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; perspective: 1100px; }
.cap {
  position: relative;
  background:
    radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255, var(--sheen, 0)), transparent 42%),
    var(--card);
  border: 1px solid var(--line-soft); border-radius: var(--r); padding: 24px 22px; overflow: hidden;
}
.cap[data-tilting] { --lift: -4px; --sheen: 0.045; border-color: rgba(255,68,51,0.4); }
.cap:hover { border-color: rgba(255,68,51,0.4); }
.cap .n { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; color: var(--red); }
.cap h3 { margin-top: 12px; font-size: 17.5px; font-weight: 600; line-height: 1.25; }
.cap p { margin-top: 9px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   PROCESS STEPS (inner pages)
   ============================================================ */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 26px 22px 24px; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r); }
.step::before { content: ""; position: absolute; top: 0; left: 22px; right: auto; width: 34px; height: 2px; background: var(--grad); }
.step-n { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--red); }
.step h3 { margin-top: 12px; font-size: 17.5px; font-weight: 600; }
.step p { margin-top: 9px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   RELATED APP BANNER (inner pages)
   ============================================================ */
.xsell {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(255,68,51,0.06), transparent 55%), var(--card);
  padding: 26px 28px;
}
.xsell .app-ic { width: 56px; height: 56px; }
.xsell-body { flex: 1; min-width: 240px; }
.xsell-body h3 { font-size: 19px; font-weight: 600; }
.xsell-body p { margin-top: 6px; font-size: 15px; color: var(--muted); }
.xsell .btn { flex: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.cform { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cfield { display: flex; flex-direction: column; gap: 7px; }
.cfield.full { grid-column: 1 / -1; }
.cfield label { font-family: var(--display); font-weight: 600; font-size: 13.5px; color: var(--body); }
.cfield input, .cfield textarea {
  font-family: var(--sans); font-size: 15.5px; color: #fff;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 13px 15px; outline: none; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.cfield textarea { resize: vertical; min-height: 130px; }
.cfield input:focus, .cfield textarea:focus { border-color: var(--red); background: var(--card-2); }
.cfield input::placeholder, .cfield textarea::placeholder { color: var(--faint); }
.cstack { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 10px; }
.cstack > span { font-family: var(--display); font-weight: 600; font-size: 13.5px; color: var(--body); }
.cstack-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.cstack-opts label {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--mono); font-size: 12.5px; color: var(--muted);
  border: 1px solid var(--line); border-radius: 7px; padding: 9px 14px;
  transition: border-color .2s, color .2s, background .2s;
}
.cstack-opts input { accent-color: var(--red); }
.cstack-opts label:has(input:checked) { border-color: var(--red); color: #fff; background: rgba(255,68,51,0.07); }
.cform .btn { grid-column: 1 / -1; justify-self: start; }
.form-note { grid-column: 1 / -1; font-size: 14px; color: var(--muted); }
.form-note a { color: var(--gold); }
.form-status { grid-column: 1 / -1; font-family: var(--mono); font-size: 13px; color: var(--gold); min-height: 1.4em; }

.cside { display: flex; flex-direction: column; gap: 14px; }
.cside-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 24px; }
.cside-card h3 { font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 9px; }
.cside-card h3 .sec-label { font-size: 11px; }
.cside-card p { margin-top: 10px; font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.cside-card ol { margin: 12px 0 0; padding: 0 0 0 2px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cside-card ol li { display: flex; gap: 12px; font-size: 14.5px; color: var(--body); }
.cside-card ol .n { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--red); padding-top: 2px; }
.cside-chips { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }

/* ============================================================
   PROSE (legal / long-form pages)
   ============================================================ */
.prose { max-width: 780px; }
.prose .pmeta { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--faint); margin-bottom: 8px; }
.prose h2 { font-size: 21px; font-weight: 600; margin: 44px 0 14px; display: flex; align-items: baseline; gap: 12px; }
.prose h2 .num { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--red); flex: none; }
.prose p { color: var(--body); font-size: 15.5px; line-height: 1.75; margin: 0 0 14px; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose .pcard {
  margin-top: 36px; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(255,68,51,0.05), transparent 55%), var(--card);
  padding: 22px 26px;
}
.prose .pcard p { margin: 0; }

/* ============================================================
   BLOG — index cards + article layout
   ============================================================ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.post-card:hover { border-color: rgba(255,68,51,0.4); transform: translateY(-4px); }
.post-thumb { aspect-ratio: 16 / 9; background: var(--card-2); overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.post-card:hover .post-thumb img { transform: scale(1.045); }
.post-card-body { display: flex; flex-direction: column; gap: 10px; padding: 20px 22px 22px; flex: 1; }
.post-cat { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.post-card h3 { font-size: 18.5px; font-weight: 600; line-height: 1.3; }
.post-card h3 { color: #fff; }
.post-card .post-x { font-size: 14px; color: var(--muted); line-height: 1.55; flex: 1; }
.post-meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.03em; color: var(--faint); }

.post-title { font-size: clamp(28px, 3.8vw, 46px) !important; max-width: 860px; }
.post-hero-img { margin: 40px 0 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-soft); max-width: 860px; }
.post-hero-img img { width: 100%; display: block; }

.prose h3 { font-size: 18px; font-weight: 600; margin: 30px 0 10px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 24px; color: var(--body); font-size: 15.5px; line-height: 1.75; display: flex; flex-direction: column; gap: 8px; }
.prose li::marker { color: var(--red); font-weight: 600; }
.prose blockquote { margin: 20px 0; padding: 14px 20px; border-left: 3px solid var(--red); background: var(--card); border-radius: 0 10px 10px 0; color: var(--body); }
.prose img { max-width: 100%; border-radius: 12px; border: 1px solid var(--line-soft); margin: 8px 0 16px; }
.prose strong { color: #fff; }
.prose .tbl { overflow-x: auto; margin: 18px 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 14.5px; line-height: 1.5; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 13px; text-align: left; color: var(--body); }
.prose th { background: var(--card-2); font-family: var(--display); font-weight: 600; color: #fff; white-space: nowrap; }
.post-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--gold); transition: gap .2s var(--ease); }
.post-back:hover { gap: 12px; }

@media (max-width: 980px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HERO — split layout with live sim panel + partner badges
   ============================================================ */
.phero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 4vw, 60px); align-items: center; }
.pcreds { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.sim {
  position: relative; border-radius: var(--r-lg); background: #101010;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -32px rgba(0,0,0,0.95), 0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
}
.sim::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(255,68,51,0.04), transparent 30%); }
.sim-bar { position: relative; display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line-soft); background: rgba(255,255,255,0.015); }
.sim-bar i { width: 10px; height: 10px; border-radius: 50%; background: #2e2e2e; }
.sim-bar i:first-child { background: rgba(255,68,51,0.7); }
.sim-bar em { margin-left: auto; font-style: normal; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--faint); }
.sim-body { position: relative; padding: 16px; min-height: 300px; font-family: var(--mono); font-size: 12.5px; color: var(--body); display: flex; flex-direction: column; gap: 8px; }
.sim-count { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line-soft); color: var(--faint); font-size: 11px; letter-spacing: 0.06em; }
.sim-count b { color: var(--gold); font-weight: 600; font-variant-numeric: tabular-nums; }
@media (max-width: 980px) { .phero-grid { grid-template-columns: 1fr; } .sim { max-width: 580px; } }

/* ticket queue (zendesk) */
.tk { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--line-soft); border-radius: 9px; background: var(--card);
  opacity: 0; transform: translateY(-8px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.tk.on { opacity: 1; transform: none; }
.tk.out { opacity: 0; transform: translateX(24px); }
.tk .tk-sub { flex: 1; color: var(--body); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tk .tk-st { flex: none; font-size: 10px; font-weight: 600; letter-spacing: .08em; padding: 3px 8px; border-radius: 5px; transition: all .3s var(--ease); }
.tk-st.new { color: #ff6a5b; border: 1px solid rgba(255,68,51,.4); background: rgba(255,68,51,.08); }
.tk-st.route { color: var(--gold); border: 1px solid rgba(242,176,19,.4); background: rgba(242,176,19,.08); }
.tk-st.done { color: #3ddc84; border: 1px solid rgba(61,220,132,.4); background: rgba(61,220,132,.08); }

/* pipeline (hubspot) */
.pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; flex: 1; }
.pipe-col { border: 1px solid var(--line-soft); border-radius: 9px; background: var(--card); padding: 8px; display: flex; flex-direction: column; gap: 6px; min-height: 214px; }
.pipe-col h4 { margin: 0 0 2px; font-size: 9.5px; font-weight: 600; letter-spacing: .1em; color: var(--faint); text-transform: uppercase; }
.deal { padding: 6px 8px; border-radius: 6px; border: 1px solid var(--line); background: var(--card2); font-size: 10.5px; color: var(--body);
  opacity: 0; transform: translateX(-8px); transition: opacity .4s var(--ease), transform .4s var(--ease); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deal.on { opacity: 1; transform: none; }
.deal.won { border-color: rgba(242,176,19,.5); color: var(--gold); }

/* agent chat (claude) */
.chat { display: flex; flex-direction: column; gap: 10px; flex: 1; justify-content: flex-end; }
.bub { max-width: 84%; padding: 9px 12px; border-radius: 10px; font-size: 12px; line-height: 1.5;
  opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.bub.on { opacity: 1; transform: none; }
.bub.user { align-self: flex-start; background: var(--card); border: 1px solid var(--line-soft); color: var(--body); }
.bub.ai { align-self: flex-end; background: rgba(255,68,51,.08); border: 1px solid rgba(255,68,51,.3); color: #fff; }
.bub .meta { display: block; margin-top: 5px; font-size: 10px; color: var(--gold); letter-spacing: .05em; }

/* campaign board (digital ads) */
.adrow { display: flex; gap: 8px; }
.adchip { flex: 1; text-align: center; border: 1px solid var(--line-soft); border-radius: 8px; background: var(--card); padding: 8px 4px; font-size: 10px; letter-spacing: .06em; color: var(--muted); transition: border-color .3s var(--ease), color .3s var(--ease); }
.adchip.hot { border-color: rgba(255,68,51,.5); color: #fff; }
.adstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.adstat { border: 1px solid var(--line-soft); border-radius: 8px; background: var(--card); padding: 10px; text-align: center; }
.adstat b { display: block; font-size: 19px; color: #fff; font-variant-numeric: tabular-nums; }
.adstat.gold b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.adstat span { font-size: 9px; letter-spacing: .1em; color: var(--faint); text-transform: uppercase; }
.adlog { flex: 1; display: flex; flex-direction: column; gap: 5px; overflow: hidden; justify-content: flex-end; }
.adlog span { opacity: 0; transition: opacity .4s var(--ease); color: var(--muted); font-size: 11px; }
.adlog span.on { opacity: 1; }
.adlog span.ok2 { color: var(--gold); }

/* website builder (custom websites) */
.web { border: 1px solid var(--line-soft); border-radius: 10px; background: var(--card); overflow: hidden; flex: 1; display: flex; flex-direction: column; }
.web-bar { display: flex; gap: 5px; align-items: center; padding: 8px 10px; border-bottom: 1px solid var(--line-soft); }
.web-bar i { width: 7px; height: 7px; border-radius: 50%; background: #2e2e2e; }
.web-url { flex: 1; margin-left: 6px; height: 16px; border-radius: 4px; background: var(--card2); font-size: 9px; color: var(--faint); display: flex; align-items: center; padding: 0 8px; }
.web-body { flex: 1; padding: 10px; display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 26px; gap: 6px; align-content: start; }
.blk { border-radius: 5px; background: var(--card2); border: 1px solid var(--line-soft); opacity: 0; transform: scale(.85); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.blk.on { opacity: 1; transform: none; }
.blk.hero2 { grid-column: span 6; grid-row: span 2; background: linear-gradient(120deg, rgba(255,68,51,.16), rgba(242,176,19,.08)); border-color: rgba(255,68,51,.3); }
.blk.half { grid-column: span 3; }
.blk.third { grid-column: span 2; }

/* agent task runner (claude) */
.tasks { display: flex; flex-direction: column; gap: 10px; flex: 1; justify-content: flex-end; }
.task { border: 1px solid var(--line-soft); border-radius: 10px; background: var(--card); padding: 12px 14px;
  opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.task.on { opacity: 1; transform: none; }
.task-h { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.task-n { color: #fff; font-size: 12px; }
.task-st { flex: none; font-size: 9.5px; font-weight: 600; letter-spacing: .08em; padding: 3px 8px; border-radius: 5px; }
.task-st.busy { color: var(--gold); border: 1px solid rgba(242,176,19,.4); background: rgba(242,176,19,.08); }
.task-st.ok { color: #3ddc84; border: 1px solid rgba(61,220,132,.4); background: rgba(61,220,132,.08); }
.task-steps { display: flex; flex-direction: column; gap: 5px; }
.tstep { display: flex; align-items: baseline; gap: 8px; font-size: 11px; color: var(--muted);
  opacity: 0; transition: opacity .35s var(--ease), color .35s var(--ease); }
.tstep.on { opacity: 1; }
.tstep.done { color: var(--body); }
.tstep-i { flex: none; width: 12px; color: var(--faint); }
.tstep.done .tstep-i { color: #3ddc84; }

/* ship console (apps) */
.mods { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.mod { display: flex; align-items: center; justify-content: space-between; gap: 8px; border: 1px solid var(--line-soft); border-radius: 8px; background: var(--card); padding: 8px 10px; }
.mod-name { font-size: 11px; color: var(--body); }
.mod-st { flex: none; font-size: 8.5px; font-weight: 600; letter-spacing: .08em; padding: 2px 6px; border-radius: 4px; transition: all .3s var(--ease); }
.mod-st.ok { color: #3ddc84; border: 1px solid rgba(61,220,132,.4); background: rgba(61,220,132,.08); }
.mod-st.busy { color: var(--gold); border: 1px solid rgba(242,176,19,.4); background: rgba(242,176,19,.08); }

/* wireframe page-build (custom websites) */
.wf { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 9px; }
.wfp { opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.wfp.on { opacity: 1; transform: none; }
.wf-nav { display: flex; align-items: center; gap: 8px; padding-bottom: 9px; border-bottom: 1px solid var(--line-soft); }
.wf-logo { width: 14px; height: 14px; border-radius: 4px; background: var(--grad); }
.wf-mi { width: 26px; height: 5px; border-radius: 3px; background: var(--line); }
.wf-navcta { margin-left: auto; width: 42px; height: 12px; border-radius: 6px; background: rgba(255,68,51,.35); }
.wf-title { height: 13px; border-radius: 4px; background: #3a3a3a; width: 0; transition: width .6s var(--ease); }
.wfp.on.wf-title { width: 78%; }
.wf-title2 { background: linear-gradient(90deg, #ff4433, #f2b013); opacity: .8; }
.wfp.on.wf-title2 { width: 52%; }
.wf-sub { height: 6px; border-radius: 3px; background: var(--line); width: 0; transition: width .6s var(--ease) .1s; }
.wfp.on.wf-sub { width: 64%; }
.wf-btn { width: 84px; height: 20px; border-radius: 10px; background: var(--grad); box-shadow: 0 4px 14px -4px rgba(255,68,51,.5); }
.wf-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.wf-cards i { display: block; height: 44px; border-radius: 6px; background: var(--card2); border: 1px solid var(--line-soft); }
.wf-foot { height: 16px; border-radius: 4px; background: var(--card2); border: 1px solid var(--line-soft); margin-top: 4px; }

/* interactive modules (service pages) */
.inter { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(22px, 3vw, 40px); border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(255,68,51,0.04), transparent 55%), var(--card); padding: clamp(20px, 3vw, 32px); }
.inter-in { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.inter-out { display: flex; flex-direction: column; gap: 10px; }
.inter-out .adstat { text-align: left; padding: 14px 16px; }
.inter-out .adstat b { font-size: 24px; }
.inter-out .adstat span { font-size: 10px; }
.inter-out .btn { margin-top: auto; justify-content: center; }
.calc-note { font-size: 11.5px; font-family: var(--mono); color: var(--faint); }
@media (max-width: 980px) { .inter { grid-template-columns: 1fr; } }

/* slider rows (zendesk) */
.crow { display: flex; flex-direction: column; gap: 8px; }
.crow-l { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); }
.crow-l b { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.crow input[type="range"] { width: 100%; accent-color: var(--red); cursor: pointer; height: 22px; background: transparent; }

/* wire-an-automation builder (hubspot + claude) */
.wirebox { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px clamp(50px, 8vw, 110px); }
.wire-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: visible; }
.wire-col { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.wire-h { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--red); margin-bottom: 2px; }
.wchip { text-align: left; display: flex; flex-direction: column; gap: 3px;
  background: var(--card2); border: 1px solid var(--line-soft); border-radius: 9px; padding: 10px 13px;
  color: var(--body); font-size: 12.5px; line-height: 1.35; transition: border-color .2s var(--ease), background .2s var(--ease); }
.wchip em { font-style: normal; font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.12em; color: var(--faint); }
.wchip:hover { border-color: var(--line); }
.wchip.trig.on { border-color: rgba(255,68,51,0.55); background: rgba(255,68,51,0.07); color: #fff; }
.wchip.trig.on em { color: var(--red); }
.wchip.act.on { border-color: rgba(242,176,19,0.5); background: rgba(242,176,19,0.06); color: #fff; }
.wchip.act.on em { color: var(--gold); }
.wchip.fired { border-color: #3ddc84 !important; box-shadow: 0 0 14px -2px rgba(61,220,132,0.5); }
.wire-svg .wire { fill: none; stroke: rgba(255,68,51,0.5); stroke-width: 1.5; stroke-dasharray: 6 6; animation: wflow 1.1s linear infinite; }
@keyframes wflow { to { stroke-dashoffset: -12; } }
.wire-svg .wdot { fill: var(--gold); filter: drop-shadow(0 0 6px rgba(242,176,19,0.9)); }
.wire-spec { border: 1px solid var(--line); border-radius: var(--r); background: linear-gradient(120deg, rgba(255,68,51,0.05), transparent 55%), var(--card2); padding: 16px 18px; }
.wire-spec .sec-label { font-size: 11px; margin-bottom: 8px; }
.wire-spec p { font-family: var(--mono); font-size: 12.5px; line-height: 1.6; color: var(--body); }
@media (prefers-reduced-motion: reduce) { .wire-svg .wire { animation: none; } }

/* funnel journey (digital ads) */
.jpick { display: flex; flex-direction: column; gap: 10px; }
.jrow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.j-l { flex: none; width: 116px; font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.j-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.jstrip { display: flex; align-items: center; gap: 6px; margin-top: 20px; }
.jnode { flex: none; font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: var(--muted);
  border: 1px solid var(--line-soft); border-radius: 7px; background: var(--card2); padding: 7px 10px;
  white-space: nowrap; transition: all .3s var(--ease); }
.jnode.lit { color: #fff; border-color: rgba(255,68,51,0.55); background: rgba(255,68,51,0.08); }
.jnode.jcrm.lit { color: #3ddc84; border-color: rgba(61,220,132,0.5); background: rgba(61,220,132,0.06); }
.jlane { position: relative; flex: 1; height: 2px; background: var(--line-soft); min-width: 18px; }
.jlane i { position: absolute; top: -3px; left: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px rgba(242,176,19,0.8); opacity: 0;
  transition: left .9s var(--ease), opacity .3s var(--ease); }
.jlane.go i { left: calc(100% - 8px); opacity: 1; }
.jlog { min-height: 112px; justify-content: flex-start; }
.jconvert { opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease), transform .4s var(--ease);
  border: 1px solid rgba(61,220,132,0.4); background: rgba(61,220,132,0.06); border-radius: 10px; padding: 12px 16px; }
.jconvert.show { opacity: 1; transform: none; }
.jconvert b { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: #3ddc84; }
.jconvert span { display: block; margin-top: 3px; font-size: 12.5px; color: var(--muted); }

/* switches (zendesk) */
.sw { display: flex; align-items: center; gap: 16px; text-align: left; width: 100%;
  background: var(--card2); border: 1px solid var(--line-soft); border-radius: 10px; padding: 14px 16px;
  color: var(--body); transition: border-color .25s var(--ease); }
.sw:hover { border-color: var(--line); }
.sw.on { border-color: rgba(255,68,51,0.45); }
.sw-t { flex: none; position: relative; width: 40px; height: 22px; border-radius: 999px; background: #2c2c2c; transition: background .25s var(--ease); }
.sw-t::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #777; transition: transform .25s var(--ease), background .25s var(--ease); }
.sw.on .sw-t { background: var(--grad); }
.sw.on .sw-t::after { transform: translateX(18px); background: #fff; }
.sw-l { display: flex; flex-direction: column; gap: 2px; font-family: var(--display); font-weight: 600; font-size: 14.5px; color: #fff; }
.sw-l em { font-style: normal; font-family: var(--sans); font-weight: 400; font-size: 12.5px; color: var(--muted); }

/* clickable funnel (hubspot) */
.funnel { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.fstage { display: grid; grid-template-columns: 170px 1fr 64px; align-items: center; gap: 14px; width: 100%; text-align: left;
  background: var(--card2); border: 1px solid var(--line-soft); border-radius: 10px; padding: 12px 16px;
  color: var(--body); transition: border-color .25s var(--ease); }
.fstage:hover { border-color: var(--line); }
.fstage.fixed { border-color: rgba(242,176,19,0.5); }
.f-l { display: flex; flex-direction: column; gap: 2px; font-family: var(--display); font-weight: 600; font-size: 14px; color: #fff; }
.f-l em { font-style: normal; font-family: var(--mono); font-size: 10px; letter-spacing: .04em; color: var(--faint); }
.fstage.fixed .f-l em { color: var(--gold); }
.fstage.fixed .f-l em::before { content: "✓ "; }
.f-bar { display: block; height: 10px; border-radius: 5px; background: var(--card); border: 1px solid var(--line-soft); overflow: hidden; min-width: 0; }
.f-bar i { display: block; height: 100%; background: var(--grad); border-radius: 5px; transition: width .5s var(--ease); }
.fstage b { font-family: var(--display); font-size: 15px; color: #fff; text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) { .fstage { grid-template-columns: 1fr 56px; } .f-bar { display: none; } }

/* process picker (claude) */
.pick { display: flex; flex-wrap: wrap; gap: 8px; }
.pchip { font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--muted);
  background: var(--card2); border: 1px solid var(--line-soft); border-radius: 999px; padding: 9px 15px;
  transition: all .25s var(--ease); }
.pchip:hover { border-color: var(--line); color: var(--body); }
.pchip.on { color: #fff; border-color: rgba(255,68,51,0.5); background: rgba(255,68,51,0.08); }
.plan { display: flex; flex-direction: column; gap: 7px; margin-top: 8px; border: 1px solid var(--line-soft); border-radius: 10px; background: var(--card2); padding: 16px; font-family: var(--mono); font-size: 12px; }

/* budget allocator (ads) */
.alloc { display: grid; grid-template-columns: 110px auto 1fr; align-items: center; gap: 14px;
  background: var(--card2); border: 1px solid var(--line-soft); border-radius: 10px; padding: 12px 16px; }
.al-name { font-family: var(--display); font-weight: 600; font-size: 14px; color: #fff; }
.al-ctl { display: flex; align-items: center; gap: 8px; }
.al-ctl button { width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--line); background: var(--card); color: #fff; font-size: 16px; line-height: 1; transition: border-color .2s var(--ease); }
.al-ctl button:hover { border-color: var(--red); }
.al-ctl b { font-family: var(--mono); font-size: 13px; color: var(--gold); min-width: 38px; text-align: center; font-variant-numeric: tabular-nums; }
.al-bar { display: block; height: 8px; border-radius: 4px; background: var(--card); border: 1px solid var(--line-soft); overflow: hidden; min-width: 0; }
.al-bar i { display: block; height: 100%; background: var(--grad); border-radius: 4px; transition: width .4s var(--ease); }
@media (max-width: 640px) { .alloc { grid-template-columns: 1fr auto; } .al-bar { display: none; } }

/* mini page builder (websites) */
.pal { display: flex; flex-wrap: wrap; gap: 8px; }
.pal-b { font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--body);
  background: var(--card2); border: 1px solid var(--line); border-radius: 8px; padding: 9px 14px;
  cursor: grab; transition: border-color .2s var(--ease), transform .2s var(--ease); user-select: none; }
.pal-b:hover { border-color: rgba(255,68,51,0.5); transform: translateY(-1px); }
.pal-b:active { cursor: grabbing; }
.bcanvas { border: 1px solid var(--line-soft); border-radius: 10px; background: var(--card); overflow: hidden; }
.bstage { min-height: 250px; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.bhint { margin: auto; text-align: center; font-family: var(--mono); font-size: 12px; color: var(--faint); }
.bblk { position: relative; border: 1px solid var(--line-soft); border-radius: 7px; background: var(--card2);
  cursor: grab; opacity: 0; transform: scale(.96); transition: opacity .3s var(--ease), transform .3s var(--ease), border-color .2s var(--ease); }
.bblk.on { opacity: 1; transform: none; }
.bblk:hover { border-color: var(--line); }
.bblk.dragging { opacity: .35; cursor: grabbing; }
.bblk-in { padding: 10px 12px; pointer-events: none; }
.bblk-x { position: absolute; top: 4px; right: 4px; width: 20px; height: 20px; border-radius: 5px;
  border: 1px solid var(--line); background: var(--card); color: var(--muted); font-size: 13px; line-height: 1;
  opacity: 0; transition: opacity .2s var(--ease); }
.bblk:hover .bblk-x { opacity: 1; }
.bblk-x:hover { color: #fff; border-color: var(--red); }
.drop-line { height: 3px; border-radius: 2px; background: var(--grad); box-shadow: 0 0 10px rgba(255,68,51,0.6); }
/* block innards (reuse hero wireframe vocabulary) */
.bblk-nav .bblk-in { display: flex; align-items: center; gap: 7px; }
.bblk-nav .wf-logo { width: 12px; height: 12px; border-radius: 3px; }
.bblk-nav .wf-mi { width: 20px; height: 4px; }
.bblk-nav .wf-navcta { margin-left: auto; width: 34px; height: 10px; border-radius: 5px; }
.bb-title { height: 11px; width: 64%; border-radius: 3px; background: #3a3a3a; margin-bottom: 6px; }
.bb-title.t2 { width: 42%; background: linear-gradient(90deg, #ff4433, #f2b013); opacity: .8; }
.bb-sub { height: 5px; width: 52%; border-radius: 3px; background: var(--line); margin-bottom: 8px; }
.bb-btn { width: 62px; height: 15px; border-radius: 8px; background: var(--grad); box-shadow: 0 3px 10px -3px rgba(255,68,51,.5); }
.bblk-feature .bblk-in { display: flex; gap: 10px; align-items: center; }
.bb-img { flex: none; width: 52px; height: 38px; border-radius: 5px; background: var(--card); border: 1px solid var(--line-soft); }
.bb-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.bb-lines i { display: block; height: 5px; border-radius: 3px; background: var(--line); }
.bb-lines i:nth-child(2) { width: 80%; }
.bb-lines i:nth-child(3) { width: 55%; }
.bblk-cards .bblk-in { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.bb-card { display: flex; flex-direction: column; gap: 4px; padding: 7px 8px; border-radius: 5px; background: var(--card); border: 1px solid var(--line-soft); }
.bb-cic { display: block; width: 11px; height: 11px; border-radius: 3px; background: rgba(255,68,51,0.15); border: 1px solid rgba(255,68,51,0.45); margin-bottom: 1px; }
.bb-cic.g { background: rgba(242,176,19,0.12); border-color: rgba(242,176,19,0.45); }
.bb-ct { display: block; height: 5px; width: 72%; border-radius: 3px; background: #3a3a3a; }
.bb-cl { display: block; height: 4px; width: 100%; border-radius: 2px; background: var(--line-soft); }
.bb-cl.l2 { width: 62%; }
.bb-ctaband { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 9px 0; border-radius: 5px; background: linear-gradient(120deg, rgba(255,68,51,.12), rgba(242,176,19,.06)); }
.bb-ctat { width: 46%; height: 8px; border-radius: 3px; background: #3a3a3a; }
.bb-ctas { width: 30%; height: 5px; border-radius: 3px; background: var(--line); }
.bb-fgrid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 10px; align-items: start; }
.bb-fbrand { display: flex; align-items: center; gap: 5px; }
.bb-fbrand .wf-logo { width: 11px; height: 11px; border-radius: 3px; }
.bb-fbrand .bb-word { width: 30px; }
.bb-fcol { display: flex; flex-direction: column; gap: 4px; }
.bb-fcol i { display: block; height: 4px; width: 85%; border-radius: 2px; background: var(--line-soft); }
.bb-fcol i:first-child { height: 5px; width: 60%; background: #3a3a3a; }
.bb-fbar { margin-top: 8px; padding-top: 6px; border-top: 1px solid var(--line-soft); }
.bb-fbar i { display: block; width: 74px; height: 4px; border-radius: 2px; background: var(--line-soft); }
/* richer block innards */
.bb-word { display: inline-block; width: 36px; height: 6px; border-radius: 3px; background: #3a3a3a; }
.bb-hgrid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; align-items: center; }
.bb-kick { display: inline-block; width: 48px; height: 8px; border-radius: 4px; background: rgba(255,68,51,0.12); border: 1px solid rgba(255,68,51,0.4); margin-bottom: 7px; }
.bb-sub.s2 { width: 38%; }
.bb-btnrow { display: flex; gap: 6px; }
.bb-btn.ghost { background: transparent; border: 1px solid var(--line); box-shadow: none; }
.bb-hero-art { position: relative; height: 64px; border-radius: 6px; background: var(--card); border: 1px solid var(--line-soft); padding: 8px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.bb-hero-art i { display: block; height: 6px; border-radius: 3px; background: var(--line-soft); }
.bb-hero-art i:nth-child(1) { width: 55%; background: rgba(255,68,51,0.35); }
.bb-hero-art i:nth-child(2) { width: 85%; }
.bb-hero-art i:nth-child(3) { width: 65%; }
.bb-hero-art .bb-dot { position: absolute; right: 8px; bottom: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 8px rgba(255,68,51,0.6); }
.bb-img { display: flex; align-items: center; justify-content: center; }
.bb-imgdot { display: block; width: 12px; height: 12px; border-radius: 50%; background: rgba(255,68,51,0.3); border: 1px solid rgba(255,68,51,0.45); }
.bb-h { display: block; height: 7px; width: 46%; border-radius: 3px; background: #3a3a3a; margin-bottom: 1px; }
.bb-link { display: block; width: 32px; height: 5px; border-radius: 3px; background: rgba(255,68,51,0.45); margin-top: 1px; }

/* form success state */
.form-done { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 44px 20px 30px; animation: fdIn .5s var(--ease); }
@keyframes fdIn { from { opacity: 0; transform: translateY(10px); } }
.fd-mark { width: 84px; height: 84px; }
.fd-mark circle { fill: none; stroke: url(#fdgrad); stroke-width: 2.5; stroke-dasharray: 176; stroke-dashoffset: 176; animation: fdDraw .9s var(--ease) forwards; }
.fd-mark path { fill: none; stroke: url(#fdgrad); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: fdDraw .5s var(--ease) .7s forwards; }
@keyframes fdDraw { to { stroke-dashoffset: 0; } }
.fd-title { margin: 22px 0 0; font-family: var(--mono); font-size: 13px; font-weight: 600; letter-spacing: .22em; color: var(--red); min-height: 1.3em; }
.fd-sub { margin: 10px 0 0; color: var(--muted); font-size: 15px; max-width: 48ch; }
.fd-actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (prefers-reduced-motion: reduce) {
  .fd-mark circle, .fd-mark path { animation: none; stroke-dashoffset: 0; }
  .form-done { animation: none; }
  .tk, .deal, .bub, .blk, .adlog span { transition: none; }
}

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq .faq-cat { margin-bottom: 40px; }
.faq .faq-cat .sec-label { margin-bottom: 14px; }
.faq details {
  border: 1px solid var(--line-soft); border-radius: 10px; background: var(--card);
  margin-bottom: 10px; overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq details:hover, .faq details[open] { border-color: var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px 20px;
  font-family: var(--display); font-weight: 600; font-size: 16px; color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  font-family: var(--mono); font-size: 20px; font-weight: 400; color: var(--red);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { border-bottom: 1px solid var(--line-soft); }
.faq .faq-a { padding: 15px 20px 18px; font-size: 15px; line-height: 1.65; color: var(--body); }
.faq .faq-a a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--line-soft); padding-block: 60px 34px; background: var(--bg-2); }
.footer-top { display: grid; grid-template-columns: 1.25fr 2fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--line-soft); }
.footer-brand img { height: 32px; width: auto; }
.footer-tag { margin-top: 18px; color: var(--muted); font-size: 15px; line-height: 1.55; max-width: 320px; }
.footer-badges { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-h { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.footer-link { font-size: 15px; color: var(--body); transition: color .2s var(--ease); width: fit-content; }
.footer-link:hover { color: var(--red); }
.footer-col p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 26px; font-family: var(--mono); font-size: 12px; color: var(--faint); }

/* ============================================================
   FX OVERLAY — CRT scanlines + animated grain
   ============================================================ */
.fx { position: fixed; inset: 0; z-index: 60; pointer-events: none; overflow: hidden; }
.fx::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom,
    rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px,
    transparent 1px, transparent 3px);
  mix-blend-mode: overlay; opacity: 0.5;
}
.fx-grain {
  position: absolute; inset: -150%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 170px 170px;
  opacity: 0.045;
  animation: grain 1s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); } 25% { transform: translate(-6%,4%); }
  50% { transform: translate(5%,-5%); } 75% { transform: translate(-3%,-6%); }
  100% { transform: translate(0,0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1120px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .testi-grid, .cap-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2n) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .apps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .hero { padding-top: 132px; }
  .svc-grid { grid-template-columns: 1fr; }
  .phero { padding-top: 138px; }
  .steps { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .metric:last-child { border-bottom: 0; }
  .cform { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .console-body { min-height: 280px; font-size: 12.5px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .grad-text.animate, .chip .dot, .app-status i, .fx-grain, .net-path-hot, .caret-blk { animation: none; }
  [data-tilt], .reveal.in[data-tilt] { transform: none; transition: none; }
  .testi:hover, .cred:hover, .btn:hover { transform: none; }
}
