/* ============================================================
   YourBanGuy.pro — main.css
   Design system: "Operations / Case Room — Aurora edition".
   Dark, premium, high-trust. Azure action · teal signal · iris depth.
   Fonts: Space Grotesk (display) · Inter (body) · JetBrains Mono (data)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:       #060B16;
  --ink-2:     #080E1C;
  --panel:     #0D1626;
  --panel-2:   #122039;
  --panel-3:   #1A2C49;
  --line:      #243a5c;
  --line-soft: #1A2A42;
  --glass:     rgba(18,32,57,.55);

  --brand:     #3B82F6;   /* azure action */
  --brand-200: #7DB0FF;   /* lighter azure for inline links on dark (AA) */
  --brand-deep:#1E3A8A;
  --signal:    #2DE3C0;   /* teal "secured/resolved" — signature */
  --signal-200:#73F2DA;
  --iris:      #8B6CFF;   /* violet depth accent for gradients/glow */
  --iris-200:  #B6A2FF;
  --amber:     #F4B740;   /* highlight, used sparingly */
  --danger:    #F2685A;   /* "won't do" / risk only */

  --text:      #EAF1FB;
  --text-2:    #C5D2E4;
  --muted:     #93A5BE;
  --muted-2:   #6B7E97;
  --white:     #F8FAFC;

  --tg:        #229ED9;
  --wa:        #25D366;

  --maxw:      1180px;
  --readw:     70ch;
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --grad-brand: linear-gradient(105deg, var(--signal), var(--brand) 52%, var(--iris));
  --grad-soft:  linear-gradient(180deg, var(--panel-2), var(--panel));
  --grad-line:  linear-gradient(140deg, rgba(45,227,192,.55), rgba(59,130,246,.5) 50%, rgba(139,108,255,.5));

  --glow-teal:  0 0 0 1px rgba(45,227,192,.18), 0 24px 60px -28px rgba(45,227,192,.45);
  --glow-azure: 0 0 0 1px rgba(59,130,246,.20), 0 30px 70px -30px rgba(59,130,246,.55);

  --shadow:    0 1px 0 rgba(255,255,255,.04), 0 26px 64px -30px rgba(0,0,0,.85);
  --shadow-sm: 0 14px 36px -22px rgba(0,0,0,.7);
  --ring:      0 0 0 3px rgba(59,130,246,.5);

  --ff-display: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --step--1: clamp(.82rem, .8rem + .1vw, .9rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.08rem);
  --step-1:  clamp(1.18rem, 1.1rem + .4vw, 1.35rem);
  --step-2:  clamp(1.42rem, 1.3rem + .7vw, 1.82rem);
  --step-3:  clamp(1.75rem, 1.5rem + 1.25vw, 2.55rem);
  --step-4:  clamp(2.15rem, 1.7rem + 2.2vw, 3.55rem);
  --step-5:  clamp(2.65rem, 2rem + 3.3vw, 4.75rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  position: relative;
  font-family: var(--ff-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text-2);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-200); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--signal-200); }
strong, b { color: var(--text); font-weight: 650; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }
::selection { background: rgba(45,227,192,.30); color: #fff; }

h1,h2,h3,h4 { font-family: var(--ff-display); color: var(--text); line-height: 1.12; font-weight: 700; letter-spacing: -.025em; }

/* ============================================================
   Ambient FX (injected by site.js — appear site-wide)
   ============================================================ */
.fx-layers { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.fx-aurora { position: absolute; inset: -20%; filter: blur(8px); opacity: .9; }
.fx-aurora::before, .fx-aurora::after {
  content: ""; position: absolute; border-radius: 50%; mix-blend-mode: screen;
  filter: blur(70px); opacity: .55;
}
.fx-aurora::before {
  width: 60vw; height: 60vw; left: -10vw; top: -16vw;
  background: radial-gradient(circle at 50% 50%, rgba(45,227,192,.55), transparent 62%);
  animation: drift1 26s var(--ease) infinite alternate;
}
.fx-aurora::after {
  width: 66vw; height: 66vw; right: -16vw; top: -8vw;
  background: radial-gradient(circle at 50% 50%, rgba(59,130,246,.55), transparent 62%);
  animation: drift2 32s var(--ease) infinite alternate;
}
.fx-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(120,160,220,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(120,160,220,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
}
.fx-iris {
  position: absolute; left: 50%; top: 38%; width: 50vw; height: 50vw; transform: translate(-50%,-50%);
  background: radial-gradient(circle at 50% 50%, rgba(139,108,255,.22), transparent 60%);
  filter: blur(60px); animation: drift3 30s var(--ease) infinite alternate;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(8vw,6vw) scale(1.15); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-7vw,5vw) scale(1.12); } }
@keyframes drift3 { from { transform: translate(-50%,-50%) scale(1); } to { transform: translate(-42%,-58%) scale(1.2); } }

/* scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; pointer-events: none; background: transparent; }
.scroll-progress > span { display: block; height: 100%; width: 0; background: var(--grad-brand); box-shadow: 0 0 16px rgba(45,227,192,.6); transition: width .1s linear; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(58px, 7vw, 110px); position: relative; }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.skip-link {
  position: absolute; left: 14px; top: -60px; z-index: 300;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 10px;
  font-weight: 600; transition: top .18s ease;
}
.skip-link:focus { top: 14px; color: #fff; }

/* decorative gradient hairline divider */
.divider { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent); margin: 0; }

/* eyebrow / mono labels */
.eyebrow {
  font-family: var(--ff-mono); font-size: var(--step--1); font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--signal);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, var(--signal), transparent); }
.eyebrow--plain::before { display: none; }

.lede { font-size: var(--step-1); color: var(--text-2); line-height: 1.6; }
.section-head { max-width: 780px; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head h1 { font-size: var(--step-3); margin-top: 14px; line-height: 1.12; }
.section-head h2 { font-size: var(--step-3); margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: var(--step-1); }
.center { text-align: center; margin-inline: auto; }

/* gradient text utility */
.grad-text {
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% auto; animation: sheen 7s linear infinite;
}
@keyframes sheen { to { background-position: 200% center; } }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--brand); --fg: #fff;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-display); font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
  padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.btn span, .btn { z-index: 1; }
/* sheen sweep */
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .6s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(120deg, var(--brand), #2f6fed); box-shadow: 0 16px 38px -16px rgba(59,130,246,.8); }
.btn-primary:hover { box-shadow: 0 22px 48px -16px rgba(59,130,246,.95); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.02); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--signal); color: var(--text); background: rgba(45,227,192,.07); }
.btn-tg { background: var(--tg); color: #fff; box-shadow: 0 16px 36px -18px rgba(34,158,217,.8); }
.btn-tg:hover { background: #2bb0ee; color:#fff; box-shadow: 0 20px 44px -18px rgba(34,158,217,.95); }
.btn-wa { background: var(--wa); color: #04231a; box-shadow: 0 16px 36px -18px rgba(37,211,102,.7); }
.btn-wa:hover { background: #2ee376; color:#04231a; box-shadow: 0 20px 44px -18px rgba(37,211,102,.85); }
.btn-lg { padding: 16px 30px; font-size: 1.06rem; border-radius: 13px; }
.btn-sm { padding: 9px 15px; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* chips */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-mono); font-size: .76rem; font-weight: 600; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--glass); color: var(--text-2); backdrop-filter: blur(6px);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 3px rgba(45,227,192,.2); }
.chip--amber .dot { background: var(--amber); box-shadow: 0 0 0 3px rgba(244,183,64,.2); }
.chip--azure .dot { background: var(--brand-200); box-shadow: 0 0 0 3px rgba(59,130,246,.2); }

.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.trust-strip .item { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--muted); }
.trust-strip .item svg { width: 17px; height: 17px; color: var(--signal); flex: none; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(6,11,22,.72);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom-color: var(--line-soft);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-display); }
.brand .mark { width: 36px; height: 36px; flex: none; filter: drop-shadow(0 4px 14px rgba(45,227,192,.35)); transition: transform .3s var(--ease); }
.brand:hover .mark { transform: rotate(-6deg) scale(1.06); }
.brand .word { font-weight: 700; font-size: 1.26rem; letter-spacing: -.025em; color: var(--text); }
.brand .word .a { color: var(--signal); }
.brand .word .tld { color: var(--muted-2); font-weight: 500; }
.brand:hover .word { color: var(--text); }

.nav { display: flex; align-items: center; gap: 2px; margin-left: 10px; }
.nav a {
  position: relative; color: var(--text-2); font-size: .96rem; font-weight: 500; padding: 9px 14px; border-radius: 9px;
  transition: color .15s ease, background .15s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; border-radius: 2px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--signal); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; margin-left: auto; background: var(--panel); border: 1px solid var(--line);
  color: var(--text); width: 44px; height: 44px; border-radius: 11px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.open { background: rgba(6,11,22,.92); backdrop-filter: blur(16px); }
  .site-header.open .nav {
    display: flex; position: absolute; left: 0; right: 0; top: 72px; flex-direction: column;
    align-items: stretch; gap: 2px; padding: 14px 18px 8px; margin: 0;
    background: rgba(6,11,22,.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
  }
  .site-header.open .nav a { padding: 13px 12px; font-size: 1.05rem; }
  .site-header.open .nav a::after { display: none; }
  .site-header.open .header-cta {
    display: flex; position: absolute; left: 0; right: 0; top: calc(72px + 272px);
    flex-direction: column; padding: 0 18px 18px; background: rgba(6,11,22,.98);
  }
  .site-header.open .header-cta .btn { width: 100%; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: clamp(44px, 6vw, 84px); padding-bottom: clamp(52px, 7vw, 104px); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.hero h1 { font-size: var(--step-5); margin-top: 18px; }
.hero h1 .hl { color: var(--signal); }
.hero h1 .grad-text { letter-spacing: -.03em; }
.hero .lede { margin-top: 22px; max-width: 38em; }
.hero .btn-row { margin-top: 30px; }
.hero .trust-strip { margin-top: 28px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; }
}

/* Signature: case-status console panel */
.console {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid transparent; border-radius: var(--radius-lg);
  background-clip: padding-box;
  box-shadow: var(--shadow); overflow: hidden;
  transform-style: preserve-3d; transition: transform .2s var(--ease);
}
.console::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-line);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .8;
}
.console-wrap { position: relative; }
.console-wrap::after {
  content: ""; position: absolute; inset: 8% 6%; z-index: -1; border-radius: 40px;
  background: radial-gradient(60% 60% at 50% 40%, rgba(59,130,246,.45), transparent 70%);
  filter: blur(50px);
}
.console-bar {
  display: flex; align-items: center; gap: 10px; padding: 13px 16px;
  border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02);
}
.console-bar .dots { display: flex; gap: 6px; }
.console-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: #2a3d59; display: block; }
.console-bar .dots i:first-child { background: #3a4f6e; }
.console-bar .title { font-family: var(--ff-mono); font-size: .8rem; color: var(--muted); letter-spacing: .04em; }
.console-bar .live {
  margin-left: auto; font-family: var(--ff-mono); font-size: .72rem; color: var(--signal);
  display: inline-flex; align-items: center; gap: 7px;
}
.console-bar .live .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--signal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(45,227,192,.5); } 70% { box-shadow: 0 0 0 7px rgba(45,227,192,0); } }

.console-body { position: relative; padding: 18px 18px 20px; }
.case-meta { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.case-meta .k { font-family: var(--ff-mono); font-size: .74rem; color: var(--muted-2); letter-spacing: .05em; text-transform: uppercase; }
.case-meta .v { font-family: var(--ff-mono); font-size: .92rem; color: var(--text); margin-top: 3px; }
.case-meta .v.tag { color: var(--signal); }

.steps { display: grid; gap: 10px; }
.step {
  display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 12px;
  padding: 12px 13px; border-radius: 12px; border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.015); opacity: .55;
  transition: opacity .5s ease, border-color .5s ease, background .5s ease;
}
.step .tick {
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--muted-2);
  font-family: var(--ff-mono); font-size: .8rem;
}
.step .tick svg { width: 16px; height: 16px; }
.step .label { font-weight: 600; color: var(--text-2); font-size: .96rem; }
.step .sub { font-family: var(--ff-mono); font-size: .72rem; color: var(--muted-2); }
.step.is-done { opacity: 1; border-color: rgba(45,227,192,.4); background: rgba(45,227,192,.08); }
.step.is-done .tick { border-color: transparent; background: var(--signal); color: #04231a; }
.step.is-done .label { color: var(--text); }
.step.is-active { opacity: 1; border-color: rgba(59,130,246,.5); background: rgba(59,130,246,.1); box-shadow: 0 0 0 1px rgba(59,130,246,.15), 0 12px 30px -18px rgba(59,130,246,.7); }
.step.is-active .tick { border-color: var(--brand); color: var(--brand-200); }
.console-foot {
  margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-family: var(--ff-mono); font-size: .76rem; color: var(--muted);
}
.console-foot .resolved { color: var(--signal); }

/* floating accent badges around the console */
.float-badge {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: .76rem; font-weight: 600; color: var(--text);
  padding: 9px 13px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--glass); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm);
  animation: floaty 6s ease-in-out infinite;
}
.float-badge svg { width: 16px; height: 16px; color: var(--signal); }
.float-badge.fb-1 { top: -16px; right: 6%; }
.float-badge.fb-2 { bottom: -18px; left: -10px; animation-delay: -3s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 520px) { .float-badge { display: none; } }

/* ============================================================
   Generic cards / grids
   ============================================================ */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, var(--panel-2), var(--panel)) padding-box,
    linear-gradient(180deg, var(--line), var(--line-soft)) border-box;
  border: 1px solid transparent; border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .25s ease, background .25s ease;
}
/* spotlight follows pointer (vars set by site.js) */
.card::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(45,227,192,.12), transparent 45%);
  transition: opacity .3s ease;
}
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, var(--panel-2), var(--panel)) padding-box,
    var(--grad-line) border-box;
  box-shadow: var(--shadow), 0 0 36px -18px rgba(45,227,192,.55);
}

.svc-card { display: flex; flex-direction: column; }
.svc-ico {
  position: relative; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 30% 20%, rgba(45,227,192,.22), rgba(59,130,246,.14));
  border: 1px solid var(--line); margin-bottom: 18px; color: var(--signal);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.svc-card:hover .svc-ico { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 30px -16px rgba(45,227,192,.7); }
.svc-ico svg { width: 25px; height: 25px; }
.svc-card h3 { font-size: var(--step-1); }
.svc-card p { margin-top: 10px; color: var(--muted); font-size: .98rem; }
.svc-card .more {
  margin-top: 18px; font-family: var(--ff-mono); font-size: .82rem; font-weight: 600;
  color: var(--signal); display: inline-flex; align-items: center; gap: 7px; letter-spacing: .03em;
}
.svc-card .more svg { width: 15px; height: 15px; transition: transform .18s ease; }
.card a.svc-link, a.svc-link { color: inherit; }
.card:hover .svc-card .more svg, .svc-card:hover .more svg { transform: translateX(4px); }

/* value (will / won't) */
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 780px) { .values { grid-template-columns: 1fr; } }
.value-col { border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); background: var(--panel); }
.value-col h3 { display: flex; align-items: center; gap: 11px; font-size: var(--step-1); }
.value-col h3 .badge { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.value-col h3 .badge svg { width: 18px; height: 18px; }
.value-col.will { border-color: rgba(45,227,192,.34); background: linear-gradient(180deg, rgba(45,227,192,.08), var(--panel)); }
.value-col.will .badge { background: var(--signal); color: #04231a; }
.value-col.wont { border-color: rgba(242,104,90,.32); background: linear-gradient(180deg, rgba(242,104,90,.07), var(--panel)); }
.value-col.wont .badge { background: rgba(242,104,90,.16); color: var(--danger); }
.value-list, .prose .value-list { list-style: none; margin-top: 18px; display: grid; gap: 13px; padding: 0; }
.value-list li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; font-size: .98rem; color: var(--text-2); line-height: 1.5; }
.value-list li svg { width: 19px; height: 19px; margin-top: 2px; }
.value-col.will .value-list svg { color: var(--signal); }
.value-col.wont .value-list svg { color: var(--danger); }

/* process steps (numbered — real sequence) */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; position: relative; }
@media (max-width: 920px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.proc {
  position: relative; padding: 26px 22px; border-radius: var(--radius);
  border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel-2), var(--panel));
  transition: transform .2s var(--ease), border-color .2s ease;
}
.proc:hover { transform: translateY(-3px); border-color: rgba(45,227,192,.4); }
.proc .num { font-family: var(--ff-mono); font-size: 2rem; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(45,227,192,.45); }
.proc h3 { font-size: 1.14rem; margin-top: 14px; }
.proc p { margin-top: 10px; font-size: .94rem; color: var(--muted); }
.proc .bar { height: 2px; margin-top: 20px; border-radius: 2px; background: linear-gradient(90deg, var(--signal), rgba(59,130,246,.25)); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: linear-gradient(180deg, var(--panel-2), var(--panel)); padding: 30px 24px; transition: background .25s ease; }
.stat:hover { background: linear-gradient(180deg, var(--panel-3), var(--panel-2)); }
.stat .figure { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-3); color: var(--text); letter-spacing: -.02em; }
.stat .figure .u { color: var(--signal); }
.stat .label { margin-top: 8px; font-size: .9rem; color: var(--muted); }

/* platform marquee / ticker */
.platforms { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.platform { font-family: var(--ff-mono); font-size: .85rem; color: var(--text-2); border: 1px solid var(--line); background: var(--glass); padding: 8px 14px; border-radius: 999px; backdrop-filter: blur(6px); }
.ticker { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track { display: flex; gap: 12px; width: max-content; animation: marquee 38s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker .platform { white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Blog cards
   ============================================================ */
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--panel-3); }
.post-card .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(6,11,22,.45)); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.06); }
.post-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card .cat { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--signal); }
.post-card h3 { font-size: var(--step-1); margin-top: 10px; line-height: 1.2; }
.post-card p { margin-top: 10px; font-size: .95rem; color: var(--muted); flex: 1; }
.post-card .meta { margin-top: 18px; font-family: var(--ff-mono); font-size: .76rem; color: var(--muted-2); display: flex; gap: 12px; }

/* empty state */
.empty {
  border: 1px dashed var(--line); border-radius: var(--radius); padding: 52px 28px; text-align: center;
  background: var(--panel);
}
.empty h3 { font-size: var(--step-2); }
.empty p { margin-top: 12px; color: var(--muted); max-width: 48ch; margin-inline: auto; }

/* ============================================================
   FAQ accordion (<details>)
   ============================================================ */
.faq { display: grid; gap: 12px; max-width: 880px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: linear-gradient(180deg, var(--panel-2), var(--panel));
  overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: rgba(45,227,192,.4); box-shadow: 0 0 30px -20px rgba(45,227,192,.7); }
.faq summary {
  list-style: none; cursor: pointer; padding: 19px 22px; font-family: var(--ff-display);
  font-weight: 600; font-size: 1.06rem; color: var(--text); display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { flex: none; width: 22px; height: 22px; position: relative; transition: transform .25s ease; color: var(--signal); }
.faq details[open] summary .ico { transform: rotate(45deg); }
.faq summary .ico::before, .faq summary .ico::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq summary .ico::before { left: 50%; top: 3px; width: 2px; height: 16px; transform: translateX(-50%); }
.faq summary .ico::after { top: 50%; left: 3px; height: 2px; width: 16px; transform: translateY(-50%); }
.faq details > div { padding: 0 22px 20px; color: var(--text-2); line-height: 1.7; }
.faq details > div p { margin-bottom: 10px; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(720px 320px at 12% 0%, rgba(45,227,192,.2), transparent 60%),
    radial-gradient(820px 380px at 100% 100%, rgba(59,130,246,.26), transparent 55%),
    radial-gradient(600px 300px at 60% 120%, rgba(139,108,255,.18), transparent 60%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: clamp(40px, 5vw, 72px);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(120,160,220,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(120,160,220,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 75%);
  mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 75%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: var(--step-4); }
.cta-band p { margin: 16px auto 0; max-width: 56ch; color: var(--text-2); font-size: var(--step-1); }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }
.cta-band .fine { margin-top: 20px; font-family: var(--ff-mono); font-size: .78rem; color: var(--muted-2); }
/* compact variant — used for the page-top CTA so it doesn't compete with the H1 */
.cta-band.cta-compact { padding: clamp(26px, 3.4vw, 42px); }
.cta-band.cta-compact h2 { font-size: var(--step-3); }
.cta-band.cta-compact p { font-size: var(--step-0); margin-top: 12px; max-width: 60ch; }
.cta-band.cta-compact .btn-row { margin-top: 22px; }
.cta-band.cta-compact .fine { margin-top: 16px; }
/* balanced space around the top CTA band — equal gap above & below in both contexts */
.wrap.cta-top-wrap { margin-top: 20px; margin-bottom: 28px; }      /* article/service (class on the wrap) */
.cta-band.cta-top-wrap { margin-top: 0; margin-bottom: 28px; }     /* hub/blog index (class on the band) */
.section-head:has(+ .cta-top-wrap) { margin-bottom: 28px; }        /* tame the heading→band gap on hub/index */
/* article/service/legal: ONE centered content column — equal left/right margins, aligned edges */
main:has(> article) .breadcrumb,
.article-head,
.cta-top-wrap .cta-band,
article > .wrap > picture,
article + section .cta-band { max-width: 860px; margin-inline: auto; }
article .prose { margin-inline: auto; }

/* top-cta (used on article/service pages) */
.top-cta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between;
  border: 1px solid var(--line); border-left: 3px solid var(--signal);
  background: linear-gradient(180deg, rgba(45,227,192,.08), var(--panel));
  border-radius: var(--radius); padding: 20px 24px; margin: 28px 0;
}
.top-cta-title { font-family: var(--ff-display); font-weight: 600; color: var(--text); font-size: 1.05rem; }
.top-cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.top-cta-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 17px; border-radius: 10px;
  font-family: var(--ff-display); font-weight: 600; font-size: .92rem; color: #fff;
  transition: transform .15s ease;
}
.top-cta-btn svg { width: 15px; height: 15px; }
.top-cta-tg { background: var(--tg); }
.top-cta-wa { background: var(--wa); color: #04231a; }
.top-cta-btn:hover { color:#fff; transform: translateY(-1px); }
.top-cta-wa:hover { color:#04231a; }

/* ============================================================
   Page hero (inner pages — premium header band)
   ============================================================ */
.page-hero { position: relative; padding-top: clamp(18px, 3vw, 34px); padding-bottom: clamp(36px, 5vw, 60px); overflow: hidden; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: var(--step-4); max-width: 18ch; }
.page-hero .lead, .page-hero .lede { margin-top: 20px; font-size: var(--step-1); color: var(--text-2); max-width: 60ch; }
.page-hero .btn-row { margin-top: 26px; }
.page-hero .glow {
  position: absolute; z-index: -1; top: -30%; right: -10%; width: 50%; height: 130%;
  background: radial-gradient(circle at 70% 30%, rgba(59,130,246,.22), transparent 60%);
  filter: blur(50px); pointer-events: none;
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb { font-family: var(--ff-mono); font-size: .78rem; color: var(--muted-2); padding-top: 26px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 0; margin: 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--signal); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb [aria-current="page"] { color: var(--text-2); }

/* ============================================================
   Article / prose  (blog posts + service + legal pages)
   ============================================================ */
.article-head { position: relative; padding-top: 8px; padding-bottom: 8px; max-width: 860px; }
.article-head h1 { font-size: var(--step-4); margin-top: 16px; }
.article-head .lead { margin-top: 20px; font-size: var(--step-1); color: var(--text-2); line-height: 1.6; }
.byline { margin-top: 24px; display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.byline .avatar { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: radial-gradient(120% 120% at 30% 20%, rgba(45,227,192,.25), rgba(59,130,246,.15)); display: grid; place-items: center; color: var(--signal); font-family: var(--ff-display); font-weight: 700; }
.byline .who { font-size: .92rem; color: var(--text); font-weight: 600; }
.byline .meta { font-family: var(--ff-mono); font-size: .76rem; color: var(--muted-2); }

.prose { max-width: var(--readw); font-size: 1.075rem; line-height: 1.78; color: var(--text-2); }
.prose.wide { max-width: 860px; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: var(--step-2); color: var(--text); margin-top: 2em; line-height: 1.18; scroll-margin-top: 90px; }
.prose h3 { font-size: var(--step-1); color: var(--text); margin-top: 1.6em; scroll-margin-top: 90px; }
.prose h2 + p, .prose h3 + p { margin-top: .6em; }
.prose p { margin-top: 1.05em; }
.prose a { color: var(--brand-200); text-decoration: underline; text-decoration-color: rgba(125,176,255,.45); text-underline-offset: 3px; }
.prose a:hover { color: var(--signal-200); text-decoration-color: var(--signal); }
.prose ul, .prose ol { margin-top: 1.05em; padding-left: 1.3em; display: grid; gap: .55em; }
.prose li { padding-left: .25em; }
.prose li::marker { color: var(--signal); }
.prose img, .prose picture { border-radius: var(--radius); border: 1px solid var(--line); margin-block: 1.7em; box-shadow: var(--shadow-sm); }
.prose figure { margin-block: 1.7em; }
.prose figcaption { font-family: var(--ff-mono); font-size: .78rem; color: var(--muted-2); margin-top: 8px; text-align: center; }
.prose blockquote {
  margin: 1.8em 0; padding: 18px 24px; border-left: 3px solid var(--signal);
  background: linear-gradient(180deg, rgba(45,227,192,.07), var(--panel)); border-radius: 0 12px 12px 0;
  color: var(--text); font-size: 1.05rem;
}
.prose blockquote p { margin-top: .6em; }
.prose blockquote p:first-child { margin-top: 0; }
.prose code {
  font-family: var(--ff-mono); font-size: .88em; background: var(--panel-2); border: 1px solid var(--line);
  padding: 2px 6px; border-radius: 6px; color: var(--signal-200);
}
.prose pre { background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px; padding: 18px; overflow-x: auto; }
.prose pre code { background: none; border: none; padding: 0; color: var(--text-2); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose table { width: 100%; border-collapse: collapse; margin-block: 1.7em; font-size: .98rem; display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; padding: 13px 15px; border-bottom: 1px solid var(--line); }
.prose thead th { font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--signal); background: var(--panel); }
.prose tbody tr:hover { background: rgba(255,255,255,.02); }

/* key-takeaway callout for articles */
.callout {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-block: 1.7em;
  background: linear-gradient(180deg, var(--panel-2), var(--panel)); display: grid; grid-template-columns: 26px 1fr; gap: 14px;
}
.callout svg { width: 22px; height: 22px; color: var(--signal); margin-top: 2px; }
.callout .t { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--signal); }
.callout p { margin-top: 4px !important; color: var(--text-2); }

/* author bio card */
.author-card {
  display: flex; gap: 18px; align-items: flex-start; margin-top: 44px; padding: 26px;
  border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--panel-2), var(--panel));
}
.author-card .avatar { width: 56px; height: 56px; flex: none; border-radius: 50%; border: 1px solid var(--line); background: radial-gradient(120% 120% at 30% 20%, rgba(45,227,192,.25), rgba(59,130,246,.15)); display: grid; place-items: center; color: var(--signal); font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; }
.author-card .name { font-family: var(--ff-display); font-weight: 700; color: var(--text); }
.author-card .role { font-family: var(--ff-mono); font-size: .78rem; color: var(--signal); margin-top: 2px; }
.author-card .bio { margin-top: 10px; font-size: .95rem; color: var(--muted); }

/* table of contents */
.toc { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--panel-2), var(--panel)); padding: 22px 24px; margin-block: 1.7em; }
.toc .t { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.toc ol { list-style: none; margin-top: 12px; display: grid; gap: 8px; padding: 0; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc li a { color: var(--text-2); font-size: .96rem; display: flex; gap: 10px; }
.toc li a::before { content: counter(toc, decimal-leading-zero); font-family: var(--ff-mono); font-size: .8rem; color: var(--signal); }
.toc li a:hover { color: var(--signal); }

/* related */
.related { margin-top: 48px; }

/* ============================================================
   Contact blocks
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 680px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { padding: 28px; }
.contact-card .head { display: flex; align-items: center; gap: 13px; }
.contact-card .ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.contact-card .ico svg { width: 24px; height: 24px; color: #fff; }
.contact-card.tg .ico { background: var(--tg); }
.contact-card.wa .ico { background: var(--wa); }
.contact-card h3 { font-size: var(--step-1); }
.contact-card .handle { font-family: var(--ff-mono); font-size: .92rem; color: var(--muted); margin-top: 3px; }
.contact-card p { margin-top: 14px; color: var(--muted); font-size: .96rem; }
.contact-card .btn { margin-top: 18px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { position: relative; border-top: 1px solid var(--line); background: var(--ink-2); margin-top: 40px; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad-line); opacity: .6; }
.footer-top { display: grid; grid-template-columns: 1fr repeat(3, 200px); column-gap: 40px; row-gap: 40px; padding-block: clamp(46px, 5vw, 66px); }
@media (max-width: 1000px) { .footer-top { grid-template-columns: 1fr 1fr; column-gap: 30px; row-gap: 34px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: .94rem; max-width: 34ch; }
.footer-brand .socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-brand .socials a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-2); background: var(--panel); transition: transform .18s ease, border-color .2s ease, color .2s ease; }
.footer-brand .socials a:hover { border-color: var(--signal); color: var(--signal); transform: translateY(-2px); }
.footer-brand .socials svg { width: 19px; height: 19px; }
.footer-col h4 { font-family: var(--ff-mono); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; font-weight: 600; }
.footer-col ul { list-style: none; display: grid; gap: 10px; padding: 0; margin: 0; }
.footer-col a { color: var(--text-2); font-size: .94rem; }
.footer-col a:hover { color: var(--signal); }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .85rem; color: var(--muted-2); }
.footer-bottom .legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom .legal a { font-size: .85rem; color: var(--muted-2); }
.footer-bottom .legal a:hover { color: var(--signal); }
.footer-disclaimer { font-size: .8rem; color: var(--muted-2); line-height: 1.6; padding-bottom: 26px; max-width: 80ch; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { transform: translateX(-26px); }
.reveal-r { transform: translateX(26px); }
.reveal-s { transform: scale(.96); }
/* phones: vertical-only reveals so a sliding card never pushes the page sideways */
@media (max-width: 640px) { .reveal-l, .reveal-r { transform: translateY(20px); } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r, .reveal-s { opacity: 1 !important; transform: none !important; transition: none !important; }
  .console-bar .live .pulse { animation: none; }
  .fx-aurora::before, .fx-aurora::after, .fx-iris, .ticker-track, .grad-text, .float-badge { animation: none !important; }
  .btn:hover, .card:hover, .proc:hover, .post-card:hover .thumb img { transform: none; }
  .btn::after { display: none; }
  html { scroll-behavior: auto; }
}

/* hero ambient line accents (legacy hook) */
.hero-accent { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: -1; }

/* ============================================================
   Mobile polish — comfortable tap targets, no sideways overflow
   ============================================================ */
@media (max-width: 560px) {
  .wrap { padding-inline: 18px; }
  /* full-width, stacked primary CTAs are easier to tap */
  .hero .btn-row .btn,
  .cta-band .btn-row .btn { width: 100%; }
  .top-cta-buttons { width: 100%; }
  .top-cta-buttons .top-cta-btn { flex: 1 1 auto; justify-content: center; }
  .console-body { padding: 16px 14px 18px; }
  .value-col, .contact-card, .card { padding: 22px; }
  /* belt-and-suspenders: nothing escapes the viewport horizontally */
  img, picture, svg, .console, .cta-band, .card, table { max-width: 100%; }
}

/* small print + utilities */
.note { font-family: var(--ff-mono); font-size: .78rem; color: var(--muted-2); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 28px; }
.maxw-720 { max-width: 720px; }
