/* ──────────────────────────────────────────────────────────────────
   CERO LABS · The Operating System for the Future of Work
   Built by an elite operator. Designed like one.
   ────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100;200;300;400;500;600;700;800;900&family=Geist+Mono:wght@300;400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --void:      #07070A;
  --void-2:    #0A0A10;
  --eclipse:   #0E0E14;
  --wire:      #1A1A22;
  --wire-2:    #24242E;
  --steel:     #3B3B47;
  --smoke:     #6C6F7E;
  --ash:       #9CA0B0;
  --light:     #E8E8F0;
  --white:     #FFFFFF;

  --plasma:    #C8FF5E;
  --plasma-2:  #A6FF3C;
  --plasma-dim: #738F32;
  --cyan:      #6EE7FF;
  --ember:     #FF6B3A;
  --violet:    #B47CFF;

  --glow-plasma:  0 0 0 1px rgba(200, 255, 94, 0.4), 0 0 40px rgba(200, 255, 94, 0.18), 0 0 100px rgba(200, 255, 94, 0.06);
  --glow-cyan:    0 0 60px rgba(110, 231, 255, 0.18);
  --glow-card:    0 1px 0 0 rgba(255,255,255,0.04) inset, 0 0 0 1px rgba(255,255,255,0.04) inset;

  --font-sans: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
  --font-serif-it: 'Instrument Serif', Georgia, serif;

  --maxw: 1380px;
  --gutter: 2rem;

  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--void);
  color: var(--light);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 900px) {
  html, body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
}

/* ── Custom cursor ────────────────────────────────────────────── */

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--plasma);
  box-shadow: 0 0 12px var(--plasma);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 220ms var(--ease-out), height 220ms var(--ease-out), background 220ms var(--ease-out);
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 255, 94, 0.4);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 280ms var(--ease-out), height 280ms var(--ease-out), border-color 280ms var(--ease-out), background 280ms var(--ease-out);
}
.cursor.hover { width: 14px; height: 14px; }
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: rgba(200, 255, 94, 0.8);
  background: rgba(200, 255, 94, 0.04);
}

/* ── Atmospheric background ───────────────────────────────────── */

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.bg-mesh {
  background:
    radial-gradient(ellipse 90% 50% at 20% 0%,   rgba(200, 255, 94, 0.10), transparent 50%),
    radial-gradient(ellipse 70% 50% at 80% 20%,  rgba(110, 231, 255, 0.07), transparent 50%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(180, 124, 255, 0.05), transparent 60%),
    radial-gradient(ellipse 90% 60% at 90% 80%,  rgba(255, 107, 58, 0.05),  transparent 60%);
  animation: drift 28s ease-in-out infinite alternate;
}
.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 85%);
}
.bg-particles {
  z-index: -1;
}
.bg-spotlight {
  z-index: -1;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 30%),
    rgba(200, 255, 94, 0.06),
    transparent 70%
  );
  transition: background 200ms linear;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(3%, -2%) scale(1.05); }
  100% { transform: translate(-2%, 3%) scale(1); }
}

/* ── Typography ───────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--white);
}

.mono {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
}
.mono-plasma { color: var(--plasma); }

.serif-it {
  font-family: var(--font-serif-it);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--plasma);
}

p { color: var(--ash); }
p.lede { font-size: 1.18rem; line-height: 1.55; color: var(--light); }
p.smoke { color: var(--smoke); }

a { color: inherit; text-decoration: none; }

::selection { background: var(--plasma); color: var(--void); }

/* ── Layout ───────────────────────────────────────────────────── */

.frame {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.section { padding-block: 7rem; position: relative; }
.section-tight { padding-block: 4rem; }

.rule {
  border: 0;
  border-top: 1px solid var(--wire);
  margin: 0;
}

/* ── Top system bar ───────────────────────────────────────────── */

.sysbar {
  background: var(--void-2);
  border-bottom: 1px solid var(--wire);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sysbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.55rem;
  color: var(--smoke);
  gap: 1rem;
  flex-wrap: wrap;
}
.sysbar .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--plasma);
}
.sysbar .pill .live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--plasma);
  box-shadow: 0 0 8px var(--plasma);
  animation: pulse 1.6s ease-in-out infinite;
}
.sysbar .right { display: flex; gap: 1.6rem; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.75); }
}

/* ── Ticker ───────────────────────────────────────────────────── */

.ticker {
  background: var(--eclipse);
  border-bottom: 1px solid var(--wire);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  padding: 0.6rem 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--smoke);
  text-transform: uppercase;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 0.6rem; }
.ticker-track .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--plasma);
  box-shadow: 0 0 8px var(--plasma);
}
.ticker-track em { font-style: normal; color: var(--plasma); }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Nav ──────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 10, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--wire);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}
.wordmark {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.wordmark .mark {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plasma), var(--cyan));
  border-radius: 5px;
  margin-right: 0.45rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--void);
  position: relative;
}
.wordmark .lab {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--plasma);
}
.wordmark .ver {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--smoke);
  letter-spacing: 0.14em;
  padding: 2px 6px;
  border: 1px solid var(--wire-2);
  border-radius: 4px;
  margin-left: 0.5rem;
}
.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ash);
  position: relative;
  padding: 0.4rem 0;
  transition: color 220ms var(--ease-out);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--plasma);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease-out);
  box-shadow: 0 0 6px var(--plasma);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--plasma); }

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--plasma);
  border-radius: 999px;
  color: var(--plasma);
  background: rgba(200, 255, 94, 0.04);
  transition: all 220ms var(--ease-out);
}
.nav-cta:hover {
  background: var(--plasma);
  color: var(--void);
  box-shadow: var(--glow-plasma);
}

/* ── Hero ─────────────────────────────────────────────────────── */

.hero {
  padding-top: 5rem;
  padding-bottom: 6rem;
  position: relative;
}

.hero-meta-top {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 2.6rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 700ms var(--ease-out) 100ms forwards;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--wire-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}
.tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--plasma);
  box-shadow: 0 0 8px var(--plasma);
  animation: pulse 1.8s ease-in-out infinite;
}
.tag-plasma {
  color: var(--plasma);
  border-color: rgba(200, 255, 94, 0.35);
  background: rgba(200, 255, 94, 0.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.hero-left { min-width: 0; }

.hero-headline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.4vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--white);
}
.hero-headline .line {
  display: block;
  overflow: hidden;
}
.hero-headline .line > span {
  display: block;
  transform: translateY(110%);
  animation: slide-up 1s var(--ease-out) forwards;
}
.hero-headline .line:nth-child(1) > span { animation-delay: 160ms; }
.hero-headline .line:nth-child(2) > span { animation-delay: 280ms; }
.hero-headline .line:nth-child(3) > span { animation-delay: 400ms; }
.hero-headline .line:nth-child(4) > span { animation-delay: 520ms; }

.hero-headline .gradient-text {
  background: linear-gradient(120deg, var(--plasma) 0%, var(--cyan) 50%, var(--violet) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s ease-in-out infinite alternate;
  font-family: var(--font-serif-it);
  font-style: italic;
  font-weight: 400;
}

@keyframes slide-up { to { transform: translateY(0); } }
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  margin-top: 1.8rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ash);
  max-width: 36rem;
  opacity: 0;
  animation: rise 800ms var(--ease-out) 700ms forwards;
  transform: translateY(14px);
}

.hero-cta-row {
  margin-top: 2.4rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 800ms var(--ease-out) 900ms forwards;
  transform: translateY(14px);
}

.hero-signature {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--wire);
  opacity: 0;
  animation: rise 800ms var(--ease-out) 1100ms forwards;
  transform: translateY(14px);
}
.hero-signature .badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plasma), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--void);
  flex-shrink: 0;
  box-shadow: var(--glow-plasma);
}
.hero-signature .who { font-family: var(--font-sans); font-size: 0.92rem; color: var(--light); }
.hero-signature .who strong { color: var(--white); font-weight: 600; }
.hero-signature .who .role {
  display: block;
  color: var(--smoke);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Hero floating dashboard ──────────────────────────────────── */

.hero-stage {
  position: relative;
  height: 600px;
  perspective: 1400px;
  opacity: 0;
  animation: rise 1100ms var(--ease-out) 500ms forwards;
  transform: translateY(20px);
}
.hero-card {
  position: absolute;
  background: linear-gradient(180deg, rgba(28, 28, 38, 0.9), rgba(14, 14, 20, 0.85));
  border: 1px solid var(--wire-2);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.05) inset,
    0 20px 50px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  will-change: transform;
}
.hero-card .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-card .head .id { color: var(--plasma); display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-card .head .id .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--plasma); box-shadow: 0 0 6px var(--plasma); animation: pulse 1.4s infinite; }
.hero-card .head .ts { color: var(--smoke); }

/* Card 1: Lead scored */
.card-lead {
  top: 0;
  left: 4%;
  width: 320px;
  animation: float-1 9s ease-in-out infinite;
}
.card-lead .title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.card-lead .sub { font-size: 0.84rem; color: var(--smoke); margin-bottom: 1rem; }
.card-lead .score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  border-top: 1px solid var(--wire);
}
.card-lead .score-row .lbl { font-family: var(--font-mono); font-size: 0.68rem; color: var(--smoke); letter-spacing: 0.12em; text-transform: uppercase; }
.card-lead .score-row .val {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--plasma);
}
.card-lead .score-row .val .total { color: var(--smoke); font-weight: 400; font-size: 0.85rem; }

/* Card 2: Pipeline chart */
.card-pipeline {
  top: 200px;
  right: 0;
  width: 360px;
  animation: float-2 11s ease-in-out infinite;
}
.card-pipeline .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
}
.card-pipeline .big {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: var(--white);
}
.card-pipeline .delta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--plasma);
}
.card-pipeline .lbl { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; color: var(--smoke); text-transform: uppercase; }
.card-pipeline svg { width: 100%; height: 60px; margin-top: 0.6rem; display: block; }

/* Card 3: Agent log */
.card-log {
  bottom: 30px;
  left: 12%;
  width: 380px;
  animation: float-3 13s ease-in-out infinite;
}
.card-log .log-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--wire);
  font-size: 0.85rem;
  color: var(--light);
}
.card-log .log-row:first-of-type { border-top: 0; }
.card-log .log-row .code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 2px 6px;
  background: rgba(200, 255, 94, 0.1);
  border: 1px solid rgba(200, 255, 94, 0.25);
  color: var(--plasma);
  border-radius: 4px;
  flex-shrink: 0;
}
.card-log .log-row .ts {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--smoke);
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) rotate(-1.5deg); }
  50%      { transform: translate(4px, -10px) rotate(-1deg); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) rotate(1.5deg); }
  50%      { transform: translate(-6px, 8px) rotate(1deg); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) rotate(-0.5deg); }
  50%      { transform: translate(8px, -6px) rotate(0.5deg); }
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stage { height: 520px; }
  .card-pipeline { right: 4%; }
}
@media (max-width: 700px) {
  .hero-stage { height: 480px; }
  .card-lead { width: 280px; left: 0; }
  .card-pipeline { width: 280px; right: 0; top: 180px; }
  .card-log { width: 300px; left: 0; bottom: 0; }
}

/* ── Buttons ──────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--plasma);
  background: var(--plasma);
  color: var(--void);
  transition: all 280ms var(--ease-out);
  cursor: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--plasma), var(--cyan));
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
  z-index: -1;
}
.btn:hover {
  box-shadow: var(--glow-plasma);
  transform: translateY(-1px);
}
.btn:hover::before { opacity: 1; }
.btn .arrow { transition: transform 280ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  border-color: var(--wire-2);
  color: var(--light);
}
.btn-ghost::before { display: none; }
.btn-ghost:hover {
  background: var(--wire);
  border-color: var(--steel);
  box-shadow: none;
  transform: translateY(-1px);
}

/* ── Manifest stripe ──────────────────────────────────────────── */

.manifest-section {
  padding-block: 4rem;
  position: relative;
}
.manifest {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--wire);
  border-radius: 16px;
  overflow: hidden;
  background: var(--eclipse);
  box-shadow: var(--glow-card);
}
.manifest .cell {
  padding: 2.4rem 1.8rem;
  border-right: 1px solid var(--wire);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.manifest .cell:last-child { border-right: 0; }
.manifest .cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 255, 94, 0.0), rgba(200, 255, 94, 0.05));
  opacity: 0;
  transition: opacity 360ms var(--ease-out);
}
.manifest .cell:hover::before { opacity: 1; }
.manifest .num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.manifest .num.plasma { color: var(--plasma); }
.manifest .lbl {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
}
.manifest .sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ash);
  margin-top: 0.4rem;
  max-width: 18rem;
}

@media (max-width: 900px) {
  .manifest { grid-template-columns: repeat(2, 1fr); }
  .manifest .cell:nth-child(2) { border-right: 0; }
  .manifest .cell { border-bottom: 1px solid var(--wire); }
  .manifest .cell:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ── Section header ───────────────────────────────────────────── */

.section-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  align-items: end;
}
.section-head .label {
  grid-column: 1 / 4;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-head .label .index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plasma);
}
.section-head .label .name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}
.section-head .label .dash {
  width: 1.8rem;
  height: 1px;
  background: var(--steel);
}
.section-head .title {
  grid-column: 4 / 12;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--white);
}
.section-head .title .em {
  font-family: var(--font-serif-it);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--plasma), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 900px) {
  .section-head .label { grid-column: 1 / 13; margin-bottom: 1rem; }
  .section-head .title { grid-column: 1 / 13; }
}

/* ── Dashboard bento ──────────────────────────────────────────── */

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1rem;
}
.bento-card {
  background: linear-gradient(180deg, rgba(28, 28, 38, 0.5), rgba(14, 14, 20, 0.4));
  border: 1px solid var(--wire);
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 320ms var(--ease-out);
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,255,94,0.5), transparent);
  opacity: 0.5;
}
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(200,255,94,0.05), transparent 40%);
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
  pointer-events: none;
}
.bento-card:hover {
  border-color: rgba(200, 255, 94, 0.3);
  transform: translateY(-2px);
}
.bento-card:hover::after { opacity: 1; }

.bento-card .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.bento-card .head .agent { color: var(--plasma); display: flex; align-items: center; gap: 0.5rem; }
.bento-card .head .agent .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--plasma);
  box-shadow: 0 0 6px var(--plasma);
  animation: pulse 1.6s infinite;
}
.bento-card .head .ts { color: var(--smoke); }

.bento-card h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.bento-card .copy { color: var(--ash); font-size: 0.92rem; line-height: 1.5; }

.bento-card .stat {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  margin: 0.6rem 0 0.4rem;
}
.bento-card .stat.plasma { color: var(--plasma); }
.bento-card .stat .small { font-size: 1.2rem; color: var(--smoke); }
.bento-card .stat-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--plasma);
  text-transform: uppercase;
}

.bento .span-3 { grid-column: span 3; }
.bento .span-4 { grid-column: span 4; }
.bento .span-5 { grid-column: span 5; }
.bento .span-6 { grid-column: span 6; }
.bento .span-7 { grid-column: span 7; }
.bento .span-8 { grid-column: span 8; }
.bento .span-12 { grid-column: span 12; }

.bento .tall { grid-row: span 2; }

.bento-card svg.spark { width: 100%; height: 60px; display: block; margin-top: 1rem; }

.bento-card .feed { list-style: none; padding: 0; margin: 0.6rem 0 0; }
.bento-card .feed li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--wire);
  font-size: 0.85rem;
  color: var(--light);
}
.bento-card .feed li:first-child { border-top: 0; padding-top: 0; }
.bento-card .feed li .code {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  padding: 2px 6px;
  background: rgba(200, 255, 94, 0.1);
  border: 1px solid rgba(200, 255, 94, 0.25);
  color: var(--plasma);
  border-radius: 4px;
  flex-shrink: 0;
}
.bento-card .feed li .ts {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--smoke);
}

.bento-card .bar-list { margin-top: 1rem; }
.bento-card .bar-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.45rem 0;
}
.bento-card .bar-row .lbl {
  flex: 0 0 80px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--smoke);
  text-transform: uppercase;
}
.bento-card .bar-row .bar {
  flex: 1;
  height: 6px;
  background: var(--wire);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bento-card .bar-row .bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--plasma), var(--cyan));
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(200,255,94,0.5);
  width: 0;
  transition: width 1.4s var(--ease-out);
}
.bento-card .bar-row .val {
  flex: 0 0 50px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--plasma);
}

@media (max-width: 1100px) {
  .bento .span-3, .bento .span-4, .bento .span-5, .bento .span-7, .bento .span-8 { grid-column: span 6; }
}
@media (max-width: 700px) {
  .bento .span-3, .bento .span-4, .bento .span-5, .bento .span-6, .bento .span-7, .bento .span-8 { grid-column: span 12; }
  .bento .tall { grid-row: span 1; }
}

/* ── Before / After (the shift) ───────────────────────────────── */

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--wire);
  border-radius: 18px;
  overflow: hidden;
  background: var(--eclipse);
  box-shadow: var(--glow-card);
}
.compare .col {
  padding: 3rem 2.4rem;
  position: relative;
}
.compare .before { background: var(--eclipse); }
.compare .after  {
  background:
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(200, 255, 94, 0.06), transparent 60%),
    var(--eclipse);
}
.compare .col .heading {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.compare .col.after .heading { color: var(--plasma); }
.compare .col .heading .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--smoke); }
.compare .col.after .heading .dot { background: var(--plasma); box-shadow: 0 0 8px var(--plasma); }
.compare ul { list-style: none; padding: 0; margin: 0; }
.compare ul li {
  padding: 0.95rem 0;
  border-top: 1px solid var(--wire);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.95rem;
}
.compare ul li:first-child { border-top: 0; }
.compare .col.before ul li .val { color: var(--smoke); font-family: var(--font-mono); font-size: 0.85rem; }
.compare .col.after  ul li .val { color: var(--plasma); font-family: var(--font-mono); font-size: 0.85rem; }
.compare .col .task { color: var(--light); }
.compare .divider {
  width: 1px;
  background: var(--wire);
  position: relative;
}
.compare .divider::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--void);
  border: 1px solid var(--plasma);
  color: var(--plasma);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--glow-plasma);
  animation: pulse-ring 2.4s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,255,94,0.4), var(--glow-plasma); }
  50%      { box-shadow: 0 0 0 16px rgba(200,255,94,0), var(--glow-plasma); }
}

@media (max-width: 900px) {
  .compare { grid-template-columns: 1fr; }
  .compare .divider {
    width: auto;
    height: 1px;
    margin: 0 2.4rem;
  }
  .compare .divider::after { transform: translate(-50%, -50%) rotate(90deg); }
}

/* ── Constellation ────────────────────────────────────────────── */

.constellation-wrap {
  position: relative;
  margin-top: 2rem;
  padding: 2.4rem 2rem 1.6rem;
  border: 1px solid var(--wire);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200, 255, 94, 0.04), transparent 70%),
    var(--eclipse);
  overflow: hidden;
}
.constellation-wrap .legend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.constellation-wrap .legend .left {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.constellation-wrap .legend .left .live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--plasma);
  box-shadow: 0 0 8px var(--plasma);
  animation: pulse 1.4s infinite;
}
.constellation-wrap .legend .legend-key {
  display: flex;
  gap: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}
.constellation-wrap .legend .legend-key span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.constellation-wrap .legend .legend-key .sw {
  width: 8px; height: 8px; border-radius: 50%;
}
.constellation {
  width: 100%;
  height: 480px;
  display: block;
}
@media (max-width: 700px) { .constellation { height: 360px; } }

/* ── Specimen grid ────────────────────────────────────────────── */

.specimens {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.specimen {
  grid-column: span 3;
  background: linear-gradient(180deg, rgba(28, 28, 38, 0.5), rgba(14, 14, 20, 0.4));
  border: 1px solid var(--wire);
  border-radius: 14px;
  padding: 1.6rem 1.4rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 280ms var(--ease-out);
}
.specimen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 255, 94, 0.0), rgba(200, 255, 94, 0.06));
  opacity: 0;
  transition: opacity 320ms var(--ease-out);
  pointer-events: none;
}
.specimen::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,255,94,0.4), transparent);
  opacity: 0;
  transition: opacity 320ms var(--ease-out);
}
.specimen:hover {
  border-color: rgba(200, 255, 94, 0.35);
  transform: translateY(-3px);
}
.specimen:hover::before { opacity: 1; }
.specimen:hover::after { opacity: 1; }

.specimen .codes { display: flex; gap: 0.4rem; margin-bottom: 1.2rem; }
.specimen .code {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: rgba(200, 255, 94, 0.08);
  border: 1px solid rgba(200, 255, 94, 0.25);
  color: var(--plasma);
  border-radius: 5px;
}
.specimen .dept {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 0.7rem;
}
.specimen .name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.14rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.specimen .desc {
  font-size: 0.9rem;
  line-height: 1.48;
  color: var(--ash);
}

@media (max-width: 1100px) { .specimen { grid-column: span 6; } }
@media (max-width: 640px)  { .specimen { grid-column: span 12; } }

/* ── Code block ───────────────────────────────────────────────── */

.code-block {
  background: var(--void-2);
  border: 1px solid var(--wire);
  border-radius: 16px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.6;
  position: relative;
  box-shadow: var(--glow-card);
}
.code-block .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  background: var(--eclipse);
  border-bottom: 1px solid var(--wire);
}
.code-block .head .dots { display: flex; gap: 0.4rem; }
.code-block .head .dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--wire-2);
}
.code-block .head .file {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}
.code-block pre {
  padding: 1.4rem 1.6rem;
  margin: 0;
  color: var(--light);
  overflow-x: auto;
}
.code-block .kw { color: var(--violet); }
.code-block .str { color: var(--plasma); }
.code-block .num { color: var(--cyan); }
.code-block .com { color: var(--smoke); font-style: italic; }
.code-block .fn { color: var(--cyan); }
.code-block .pk { color: var(--ember); }

/* ── Pull quote ───────────────────────────────────────────────── */

.pull {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--white);
  padding-block: 4rem;
  max-width: 60rem;
  position: relative;
}
.pull .em {
  font-family: var(--font-serif-it);
  font-style: italic;
  background: linear-gradient(120deg, var(--plasma), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.pull .cite {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 2rem;
}
.pull .cite .bar {
  width: 2rem;
  height: 1px;
  background: var(--plasma);
}

/* ── Future grid (a day inside) ───────────────────────────────── */

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.future-card {
  border: 1px solid var(--wire);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  background: linear-gradient(180deg, rgba(28, 28, 38, 0.5), rgba(14, 14, 20, 0.4));
  position: relative;
  overflow: hidden;
  transition: all 320ms var(--ease-out);
}
.future-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--plasma), transparent);
  opacity: 0.4;
}
.future-card:hover {
  border-color: rgba(200, 255, 94, 0.3);
  transform: translateY(-3px);
}
.future-card .when {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--plasma);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.future-card h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.42rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  color: var(--white);
}
.future-card p {
  font-size: 0.94rem;
  color: var(--ash);
}
@media (max-width: 900px) { .future-grid { grid-template-columns: 1fr; } }

/* ── Editorial ────────────────────────────────────────────────── */

.editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}
.editorial .marginalia {
  grid-column: 1 / 4;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plasma);
  padding-top: 0.5rem;
  position: relative;
}
.editorial .marginalia::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 1px;
  background: var(--plasma);
  box-shadow: 0 0 8px var(--plasma);
}
.editorial .body { grid-column: 4 / 12; }
.editorial .body p {
  font-size: 1.14rem;
  line-height: 1.6;
  color: var(--light);
  margin-bottom: 1.2rem;
}
.editorial .body p:last-child { margin-bottom: 0; }
.editorial .body p.smoke { color: var(--ash); }

@media (max-width: 900px) {
  .editorial .marginalia { grid-column: 1 / 13; margin-bottom: 1rem; }
  .editorial .body { grid-column: 1 / 13; }
}

/* ── Stats banner ─────────────────────────────────────────────── */

.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--wire);
  border-bottom: 1px solid var(--wire);
  padding-block: 4rem;
}
.stats-banner .stat {
  text-align: left;
  padding-right: 2rem;
  border-right: 1px solid var(--wire);
}
.stats-banner .stat:last-child { border-right: 0; }
.stats-banner .stat .big {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.6rem;
  background: linear-gradient(180deg, var(--white), var(--smoke));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-banner .stat .lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
}
@media (max-width: 900px) {
  .stats-banner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stats-banner .stat { border-right: 0; padding-right: 0; }
}

/* ── Ledger ───────────────────────────────────────────────────── */

.ledger { border-top: 1px solid var(--wire); }
.ledger-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--wire);
  align-items: start;
  position: relative;
  transition: background 280ms var(--ease-out);
}
.ledger-row:hover { background: rgba(200, 255, 94, 0.025); }
.ledger-row.header {
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--steel);
}
.ledger-row.header:hover { background: transparent; }
.ledger-row.header .col {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}
.ledger-row .name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.ledger-row .name .em {
  font-family: var(--font-serif-it);
  font-style: italic;
  background: linear-gradient(120deg, var(--plasma), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.ledger-row .tag-inline {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-bottom: 0.7rem;
  display: inline-block;
}
.ledger-row .blurb {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ash);
  max-width: 22rem;
}
.ledger-row .price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
}
.ledger-row .recurring {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--smoke);
  margin-top: 0.6rem;
}
.ledger-row .includes { list-style: none; padding: 0; margin: 0; }
.ledger-row .includes li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--light);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.45rem;
}
.ledger-row .includes li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--plasma);
  font-family: var(--font-mono);
  font-weight: 600;
}
@media (max-width: 900px) {
  .ledger-row { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── Closer ───────────────────────────────────────────────────── */

.closer {
  padding-block: 9rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--wire);
}
.closer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200, 255, 94, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 40% at 30% 80%, rgba(110, 231, 255, 0.05), transparent 70%);
  pointer-events: none;
}
.closer .title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 22ch;
  color: var(--white);
  position: relative;
}
.closer .title .em {
  font-family: var(--font-serif-it);
  font-style: italic;
  background: linear-gradient(120deg, var(--plasma), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.closer .lede {
  margin-top: 2rem;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ash);
  max-width: 44rem;
  position: relative;
}
.closer .row {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

/* ── Footer ───────────────────────────────────────────────────── */

footer {
  background: var(--void);
  padding-block: 4rem 2rem;
  border-top: 1px solid var(--wire);
}
.colophon {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: start;
}
.colophon .brand { grid-column: 1 / 5; }
.colophon .brand .wordmark { font-size: 1.05rem; margin-bottom: 0.9rem; }
.colophon .brand .desc {
  font-size: 0.92rem;
  color: var(--smoke);
  max-width: 22rem;
}
.colophon nav { grid-column: 5 / 8; }
.colophon nav h4,
.colophon .contact h4 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.colophon nav a {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  color: var(--ash);
  transition: color 220ms var(--ease-out);
}
.colophon nav a:hover { color: var(--plasma); }
.colophon .contact { grid-column: 8 / 13; }
.colophon .contact .line {
  font-size: 0.92rem;
  color: var(--ash);
  margin-bottom: 0.45rem;
}
.colophon .contact .line a { color: var(--light); transition: color 220ms var(--ease-out); }
.colophon .contact .line a:hover { color: var(--plasma); }
.colophon-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--wire);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
}
@media (max-width: 900px) {
  .colophon .brand,
  .colophon nav,
  .colophon .contact { grid-column: 1 / 13; }
}

/* ── Reveal on scroll ─────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in > *:nth-child(2) { transition-delay: 70ms; }
.stagger.in > *:nth-child(3) { transition-delay: 140ms; }
.stagger.in > *:nth-child(4) { transition-delay: 210ms; }
.stagger.in > *:nth-child(5) { transition-delay: 280ms; }
.stagger.in > *:nth-child(6) { transition-delay: 350ms; }
.stagger.in > *:nth-child(7) { transition-delay: 420ms; }
.stagger.in > *:nth-child(8) { transition-delay: 490ms; }

/* ── Page hero variant ────────────────────────────────────────── */

.page-hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}
.page-hero .meta {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.page-hero h1 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--white);
  max-width: 22ch;
}
.page-hero h1 .em {
  font-family: var(--font-serif-it);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--plasma), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero .lede {
  margin-top: 2rem;
  font-size: 1.18rem;
  color: var(--ash);
  max-width: 44rem;
  line-height: 1.55;
}

/* ── Agent detail cards (services page) ───────────────────────── */

.dept-block {
  margin-bottom: 5rem;
}
.dept-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  padding-block: 2rem 1.6rem;
  border-top: 1px solid var(--wire);
  align-items: center;
}
.dept-header .num {
  grid-column: 1 / 2;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--plasma);
  letter-spacing: -0.03em;
}
.dept-header .title {
  grid-column: 2 / 8;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.05;
}
.dept-header .agent-codes {
  grid-column: 8 / 13;
  text-align: right;
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.dept-header .agent-codes span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 9px;
  background: rgba(200, 255, 94, 0.08);
  border: 1px solid rgba(200, 255, 94, 0.25);
  color: var(--plasma);
  border-radius: 5px;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.agent-detail {
  background: linear-gradient(180deg, rgba(28, 28, 38, 0.5), rgba(14, 14, 20, 0.4));
  border: 1px solid var(--wire);
  border-radius: 16px;
  padding: 2rem 1.9rem;
  position: relative;
  overflow: hidden;
  transition: all 320ms var(--ease-out);
}
.agent-detail::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,255,94,0.5), transparent);
  opacity: 0.5;
}
.agent-detail:hover {
  border-color: rgba(200, 255, 94, 0.3);
  transform: translateY(-2px);
}
.agent-detail .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.agent-detail .ident {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-bottom: 0.6rem;
}
.agent-detail .name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.agent-detail .status {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plasma);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 4px 9px;
  border: 1px solid rgba(200, 255, 94, 0.25);
  background: rgba(200, 255, 94, 0.05);
  border-radius: 5px;
  flex-shrink: 0;
}
.agent-detail .status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--plasma);
  box-shadow: 0 0 6px var(--plasma);
  animation: pulse 1.6s infinite;
}
.agent-detail .purpose {
  font-size: 0.96rem;
  color: var(--light);
  margin-bottom: 1.2rem;
  line-height: 1.55;
}
.agent-detail h4 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
  margin: 1.2rem 0 0.7rem;
  font-weight: 500;
}
.agent-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.agent-detail ul li {
  font-size: 0.9rem;
  color: var(--ash);
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
  line-height: 1.5;
}
.agent-detail ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7rem;
  width: 4px; height: 1px;
  background: var(--plasma);
}
.agent-detail .meta-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--wire);
}
.agent-detail .meta-row .label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  display: block;
  margin-bottom: 0.35rem;
}
.agent-detail .meta-row .val {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--light);
}

@media (max-width: 900px) {
  .agent-grid { grid-template-columns: 1fr; }
  .dept-header { grid-template-columns: 1fr; gap: 0.4rem; }
  .dept-header .num, .dept-header .title, .dept-header .agent-codes {
    grid-column: 1 / 2;
    text-align: left;
    justify-content: flex-start;
  }
}

/* ── Phase timeline (services page) ───────────────────────────── */

.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.phase {
  border: 1px solid var(--wire);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  background: var(--eclipse);
  position: relative;
}
.phase .ph-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-bottom: 0.6rem;
}
.phase .ph-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.phase .ph-when {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--smoke);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.phase .ph-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: var(--ash);
}
.phase .ph-list li { padding: 0.25rem 0; }
.phase .ph-list li::before {
  content: '+';
  color: var(--plasma);
  font-family: var(--font-mono);
  margin-right: 0.5rem;
}
@media (max-width: 1100px) { .phases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .phases { grid-template-columns: 1fr; } }

/* ── Operator hero (about page) ───────────────────────────────── */

.operator-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.operator-hero .text { min-width: 0; }
.operator-hero .meta {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.operator-hero h1 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 16ch;
}
.operator-hero h1 .em {
  font-family: var(--font-serif-it);
  font-style: italic;
  background: linear-gradient(120deg, var(--plasma), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.operator-hero .lede {
  margin-top: 1.8rem;
  font-size: 1.16rem;
  color: var(--ash);
  max-width: 36rem;
}

.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--eclipse), var(--void));
  border: 1px solid var(--wire);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  position: relative;
}
.portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(200, 255, 94, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(110, 231, 255, 0.07), transparent 70%);
  pointer-events: none;
}
.portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.portrait .id-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  position: relative;
  z-index: 2;
}
.portrait .id-top .live {
  color: var(--plasma);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.portrait .id-top .live .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--plasma);
  box-shadow: 0 0 8px var(--plasma);
  animation: pulse 1.6s infinite;
}
.portrait .mono-mark {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plasma), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 3.4rem;
  color: var(--void);
  box-shadow: 0 0 60px rgba(200, 255, 94, 0.25);
  margin: auto;
}
.portrait .stack {
  position: relative;
  z-index: 2;
  text-align: left;
}
.portrait .stack .name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.portrait .stack .role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-bottom: 0.5rem;
}
.portrait .stack .loc {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}

@media (max-width: 1000px) {
  .operator-hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .portrait { max-width: 420px; margin: 0 auto; }
}

/* ── Timeline (about page) ────────────────────────────────────── */

.timeline {
  position: relative;
}
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding-block: 2rem;
  border-top: 1px solid var(--wire);
  position: relative;
}
.timeline-item:first-child { border-top: 0; padding-top: 0; }
.timeline-item .when {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plasma);
  position: relative;
  padding-top: 0.4rem;
}
.timeline-item .when::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 1px;
  background: var(--plasma);
  box-shadow: 0 0 6px var(--plasma);
}
.timeline-item h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.timeline-item p {
  font-size: 1rem;
  color: var(--ash);
  line-height: 1.6;
}
@media (max-width: 700px) {
  .timeline-item { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ── Values grid (about page) ─────────────────────────────────── */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.value {
  border: 1px solid var(--wire);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  background: linear-gradient(180deg, rgba(28, 28, 38, 0.4), rgba(14, 14, 20, 0.3));
  position: relative;
  overflow: hidden;
  transition: all 320ms var(--ease-out);
}
.value::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--plasma), transparent);
  opacity: 0.4;
}
.value:hover {
  border-color: rgba(200, 255, 94, 0.3);
  transform: translateY(-3px);
}
.value .num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-bottom: 1.4rem;
}
.value h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.value p {
  font-size: 0.94rem;
  color: var(--ash);
  line-height: 1.55;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

/* ── Stack callout (about page) ──────────────────────────────── */

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stack-tile {
  border: 1px solid var(--wire);
  border-radius: 12px;
  padding: 1.2rem 1.1rem;
  background: var(--eclipse);
  transition: all 280ms var(--ease-out);
}
.stack-tile:hover { border-color: rgba(200, 255, 94, 0.25); }
.stack-tile .head {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 0.4rem;
}
.stack-tile .name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.stack-tile .role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--plasma);
}
@media (max-width: 900px) { .stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stack-grid { grid-template-columns: 1fr; } }

/* ── Contact channels ─────────────────────────────────────────── */

.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}
.channel {
  border: 1px solid var(--wire);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  background: linear-gradient(180deg, rgba(28, 28, 38, 0.5), rgba(14, 14, 20, 0.4));
  position: relative;
  overflow: hidden;
  transition: all 320ms var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}
.channel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--plasma), transparent);
  opacity: 0.4;
}
.channel:hover {
  border-color: rgba(200, 255, 94, 0.35);
  transform: translateY(-3px);
}
.channel .ch-id {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-bottom: 1rem;
}
.channel h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.channel p {
  color: var(--ash);
  font-size: 0.94rem;
  margin-bottom: 1.4rem;
}
.channel .action {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--plasma);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid var(--wire);
  padding-top: 1rem;
}
@media (max-width: 900px) { .channels { grid-template-columns: 1fr; } }

/* ── Form ─────────────────────────────────────────────────────── */

.form-block {
  border: 1px solid var(--wire);
  border-radius: 18px;
  padding: 2.4rem 2.4rem;
  background: var(--eclipse);
  position: relative;
  overflow: hidden;
}
.form-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 0%, rgba(200, 255, 94, 0.04), transparent 70%);
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  position: relative;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / 3; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.field label .req { color: var(--plasma); }
.field input,
.field select,
.field textarea {
  background: var(--void);
  border: 1px solid var(--wire-2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--light);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  outline: none;
  transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
  cursor: none;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-sans);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--plasma);
  box-shadow: 0 0 0 3px rgba(200, 255, 94, 0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--steel); }
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--wire);
  position: relative;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-actions .note {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: 1 / 2; }
  .form-block { padding: 1.6rem; }
}

/* ── FAQ ──────────────────────────────────────────────────────── */

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.faq-item {
  border: 1px solid var(--wire);
  border-radius: 14px;
  padding: 1.6rem 1.6rem;
  background: linear-gradient(180deg, rgba(28, 28, 38, 0.4), rgba(14, 14, 20, 0.3));
}
.faq-item h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--ash);
  line-height: 1.55;
}
@media (max-width: 900px) { .faq { grid-template-columns: 1fr; } }

/* ── Message divider (You have the problem. We have the AI.) ─── */

.message-divider {
  padding-block: 6rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--wire);
  border-bottom: 1px solid var(--wire);
}
.message-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,255,94,0.07), transparent 70%);
  pointer-events: none;
}
.message-divider .msg {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
  position: relative;
}
.message-divider .msg .em {
  font-family: var(--font-serif-it);
  font-style: italic;
  background: linear-gradient(120deg, var(--plasma), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.message-divider .sub {
  text-align: center;
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  position: relative;
}

/* ── Pricing tiers (4 card row) ───────────────────────────────── */

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.pricing-tier {
  border: 1px solid var(--wire);
  border-radius: 16px;
  padding: 1.9rem 1.5rem 1.7rem;
  background: linear-gradient(180deg, rgba(28,28,38,0.5), rgba(14,14,20,0.4));
  position: relative;
  overflow: hidden;
  transition: all 320ms var(--ease-out);
  display: flex;
  flex-direction: column;
}
.pricing-tier::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,255,94,0.5), transparent);
  opacity: 0.45;
}
.pricing-tier::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(200,255,94,0.05), transparent 40%);
  opacity: 0;
  transition: opacity 320ms var(--ease-out);
  pointer-events: none;
}
.pricing-tier:hover {
  border-color: rgba(200,255,94,0.3);
  transform: translateY(-3px);
}
.pricing-tier:hover::after { opacity: 1; }
.pricing-tier .tier-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-bottom: 1rem;
}
.pricing-tier .tier-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.pricing-tier .tier-price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.pricing-tier .tier-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--wire);
}
.pricing-tier .tier-scope {
  font-size: 0.92rem;
  color: var(--ash);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.pricing-tier .tier-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--plasma);
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}
@media (max-width: 1100px) { .pricing-tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pricing-tiers { grid-template-columns: 1fr; } }

/* ── 50/50 split explanation ─────────────────────────────────── */

.split-explain {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 2rem;
}
.split-explain .text {
  padding: 2rem 2rem;
  background: linear-gradient(180deg, rgba(28,28,38,0.4), rgba(14,14,20,0.3));
  border: 1px solid var(--wire);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.split-explain .text::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,255,94,0.5), transparent);
}
.split-explain .text h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-bottom: 1rem;
  font-weight: 500;
}
.split-explain .text p {
  font-size: 1rem;
  color: var(--light);
  line-height: 1.6;
  margin: 0;
}
.split-explain .text p + p { margin-top: 0.8rem; }

.cost-card {
  background: linear-gradient(180deg, rgba(28, 28, 38, 0.9), rgba(14, 14, 20, 0.85));
  border: 1px solid var(--wire-2);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  backdrop-filter: blur(20px) saturate(140%);
  font-family: var(--font-mono);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.05) inset, 0 20px 40px -20px rgba(0,0,0,0.5);
}
.cost-card .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cost-card .head .id { color: var(--plasma); display: inline-flex; align-items: center; gap: 0.4rem; }
.cost-card .head .id .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--plasma); box-shadow: 0 0 6px var(--plasma); animation: pulse 1.4s infinite; }
.cost-card .head .ts { color: var(--smoke); }
.cost-card .label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.cost-card .setup {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  font-size: 0.86rem;
  border-top: 1px solid var(--wire);
  border-bottom: 1px solid var(--wire);
  margin-bottom: 1rem;
}
.cost-card .setup .lbl { color: var(--ash); }
.cost-card .setup .val { color: var(--white); font-weight: 500; }
.cost-card .breakdown {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 0.6rem;
}
.cost-card .line-item {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.86rem;
}
.cost-card .line-item .lbl { color: var(--ash); }
.cost-card .line-item .val { color: var(--light); }
.cost-card .subtotal {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0 0.5rem;
  margin-top: 0.4rem;
  border-top: 1px dashed var(--wire-2);
  font-size: 0.85rem;
}
.cost-card .subtotal .lbl { color: var(--smoke); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }
.cost-card .subtotal .val { color: var(--light); }
.cost-card .total {
  display: flex;
  justify-content: space-between;
  padding-top: 0.85rem;
  margin-top: 0.4rem;
  border-top: 1px solid var(--plasma);
  font-size: 1.1rem;
}
.cost-card .total .lbl { color: var(--plasma); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem; align-self: end; }
.cost-card .total .val { color: var(--plasma); font-weight: 600; }
@media (max-width: 900px) {
  .split-explain { grid-template-columns: 1fr; }
}

/* ── Competitive comparison table ─────────────────────────────── */

.compare-table-wrap {
  border: 1px solid var(--wire);
  border-radius: 16px;
  overflow: hidden;
  background: var(--eclipse);
  position: relative;
}
.compare-table-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,255,94,0.5), transparent);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
}
.compare-table th, .compare-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--wire);
  font-size: 0.92rem;
}
.compare-table thead th {
  background: rgba(255,255,255,0.02);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 500;
  border-bottom: 1px solid var(--steel);
}
.compare-table thead th.cero {
  background: rgba(200,255,94,0.06);
  color: var(--plasma);
  border-bottom: 1px solid var(--plasma);
}
.compare-table td {
  color: var(--ash);
}
.compare-table td.factor {
  color: var(--light);
  font-weight: 500;
}
.compare-table td.cero {
  background: rgba(200,255,94,0.04);
  color: var(--plasma);
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  border-left: 1px solid rgba(200,255,94,0.15);
  border-right: 1px solid rgba(200,255,94,0.15);
}
.compare-table tbody tr:hover td { background: rgba(255,255,255,0.015); }
.compare-table tbody tr:hover td.cero { background: rgba(200,255,94,0.06); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: var(--plasma); }
.compare-table .no  { color: var(--smoke); }
.compare-table .num { font-family: var(--font-mono); font-size: 0.86rem; }
@media (max-width: 900px) {
  .compare-table { font-size: 0.84rem; }
  .compare-table th, .compare-table td { padding: 0.7rem 0.8rem; }
}
@media (max-width: 700px) {
  .compare-table-wrap { overflow-x: auto; }
  .compare-table { min-width: 720px; }
}

/* ── Who we serve cards ───────────────────────────────────────── */

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.serve-card {
  border: 1px solid var(--wire);
  border-radius: 16px;
  padding: 2.2rem 1.9rem;
  background: linear-gradient(180deg, rgba(28,28,38,0.5), rgba(14,14,20,0.4));
  position: relative;
  overflow: hidden;
  transition: all 320ms var(--ease-out);
  display: flex;
  flex-direction: column;
}
.serve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,255,94,0.5), transparent);
  opacity: 0.5;
}
.serve-card:hover {
  border-color: rgba(200,255,94,0.3);
  transform: translateY(-3px);
}
.serve-card .seg {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-bottom: 1.2rem;
}
.serve-card h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.serve-card p {
  font-size: 0.96rem;
  color: var(--ash);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.serve-card .starting {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--wire);
}
@media (max-width: 900px) { .serve-grid { grid-template-columns: 1fr; } }

/* ── Quote CTA strip ──────────────────────────────────────────── */

.quote-strip {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.6rem 2rem;
  border: 1px solid var(--wire);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200,255,94,0.05), rgba(14,14,20,0.6));
  flex-wrap: wrap;
}
.quote-strip .text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.015em;
}
.quote-strip .text .em {
  font-family: var(--font-serif-it);
  font-style: italic;
  color: var(--plasma);
}

/* ── Responsive niceties ──────────────────────────────────────── */

@media (max-width: 900px) {
  :root { --gutter: 1.3rem; }
  .section { padding-block: 4.5rem; }
  .nav-links { display: none; }
  .nav-cta { padding: 0.45rem 0.9rem; font-size: 0.82rem; }
  .sysbar .right { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   WARM THEME LAYER · v1.1
   Added without removing anything above. Designed for non-technical
   buyers landing on the home page. Keep operator depth, add warmth.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --coral:      #FF8B6B;
  --coral-2:    #FF6B47;
  --peach:      #FFB89C;
  --amber:      #FFCC8A;
  --honey:      #FFE0A8;
  --cream:      #F5EDE4;
  --cream-dim:  #2A241E;

  --glow-coral:  0 0 60px rgba(255, 139, 107, 0.22);
  --glow-warm:   0 0 0 1px rgba(255, 139, 107, 0.25), 0 0 50px rgba(255, 139, 107, 0.15), 0 0 110px rgba(255, 204, 138, 0.08);

  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Softer custom cursor on home (warm dot, lower glow) ───────── */
body.warm .cursor {
  background: var(--coral);
  box-shadow: 0 0 14px var(--coral);
  width: 7px; height: 7px;
}
body.warm .cursor-ring {
  border-color: rgba(255, 139, 107, 0.35);
  width: 30px; height: 30px;
}
body.warm .cursor.hover { width: 12px; height: 12px; }
body.warm .cursor-ring.hover {
  width: 56px; height: 56px;
  border-color: rgba(255, 139, 107, 0.7);
  background: rgba(255, 139, 107, 0.05);
}

/* ── Warm background overlay (adds coral / peach / amber to mesh) ─ */
.bg-warm {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 12% 22%,  rgba(255, 139, 107, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 92% 18%,  rgba(255, 184, 156, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 95%,  rgba(255, 204, 138, 0.07), transparent 60%);
  animation: warmDrift 36s ease-in-out infinite alternate;
}
@keyframes warmDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 1; }
  50%  { transform: translate3d(20px, -10px, 0) scale(1.04); opacity: 0.85; }
  100% { transform: translate3d(-15px, 12px, 0) scale(0.98); opacity: 1; }
}

/* ── Floating warm orbs (decorative, motion that breathes) ───── */
.warm-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
  will-change: transform;
}
.warm-orb.orb-coral   { background: radial-gradient(circle, rgba(255,107,71,0.45), transparent 70%); width: 320px; height: 320px; top: 12%;  left: -60px;  animation: orbFloatA 22s ease-in-out infinite alternate; }
.warm-orb.orb-peach   { background: radial-gradient(circle, rgba(255,184,156,0.40), transparent 70%); width: 380px; height: 380px; top: 38%;  right: -80px; animation: orbFloatB 28s ease-in-out infinite alternate; }
.warm-orb.orb-amber   { background: radial-gradient(circle, rgba(255,204,138,0.32), transparent 70%); width: 280px; height: 280px; top: 64%;  left: 28%;   animation: orbFloatC 32s ease-in-out infinite alternate; }
.warm-orb.orb-plasma  { background: radial-gradient(circle, rgba(200,255,94,0.20), transparent 70%); width: 240px; height: 240px; top: 80%;  right: 22%;   animation: orbFloatA 26s ease-in-out infinite alternate-reverse; }

@keyframes orbFloatA { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(80px,40px,0) scale(1.12); } }
@keyframes orbFloatB { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-60px,-30px,0) scale(1.08); } }
@keyframes orbFloatC { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(40px,-60px,0) scale(1.15); } }

@media (max-width: 900px) {
  .warm-orb { opacity: 0.4; filter: blur(40px); }
  .warm-orb.orb-coral, .warm-orb.orb-peach { width: 220px; height: 220px; }
}

/* ── Hero warm rebuild ────────────────────────────────────────── */
.hero-warm {
  padding: 7rem 0 5rem;
  position: relative;
}
.hero-warm .frame { position: relative; z-index: 2; }
.hero-warm .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(255, 139, 107, 0.08);
  border: 1px solid rgba(255, 139, 107, 0.2);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.hero-warm .eyebrow .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255,139,107,0.7);
  animation: heroPulse 2.4s ease-out infinite;
}
@keyframes heroPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,139,107,0.7); }
  100% { box-shadow: 0 0 0 14px rgba(255,139,107,0); }
}
.hero-warm h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
  color: var(--white);
  max-width: 22ch;
  margin-bottom: 1.6rem;
}
.hero-warm h1 .warm-em {
  font-family: var(--font-serif-it);
  font-style: italic;
  background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 40%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-warm h1 .plasma-em {
  font-family: var(--font-serif-it);
  font-style: italic;
  color: var(--plasma);
}
.hero-warm .lede {
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.55;
  color: var(--ash);
  max-width: 38rem;
  margin-bottom: 2.4rem;
}
.hero-warm .lede strong { color: var(--light); font-weight: 500; }
.hero-warm .cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}
.btn-warm {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-2) 100%);
  color: var(--void);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
  box-shadow: var(--glow-coral);
  cursor: none;
}
.btn-warm:hover { transform: translateY(-2px); box-shadow: 0 0 80px rgba(255, 139, 107, 0.35); }
.btn-warm .arrow { transition: transform 220ms var(--ease-out); }
.btn-warm:hover .arrow { transform: translateX(4px); }

.btn-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.98rem;
  text-decoration: none;
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out);
  cursor: none;
}
.btn-soft:hover { border-color: rgba(255, 184, 156, 0.5); background: rgba(255, 184, 156, 0.06); }

.hero-warm .signature {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1rem 0.7rem 0.7rem;
  background: rgba(245, 237, 228, 0.04);
  border: 1px solid rgba(245, 237, 228, 0.08);
  border-radius: 999px;
}
.hero-warm .signature .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600;
  color: var(--void); font-size: 0.88rem;
}
.hero-warm .signature .who { font-size: 0.82rem; color: var(--ash); }
.hero-warm .signature .who strong { color: var(--white); font-weight: 500; font-size: 0.88rem; display: block; }

.hero-warm-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-warm-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.hero-illo-wrap {
  position: relative;
  aspect-ratio: 1.05 / 1;
  max-width: 580px;
  margin-left: auto;
}
.hero-illo-wrap svg { width: 100%; height: 100%; display: block; }
.hero-illo-wrap .floater {
  position: absolute;
  background: rgba(14,14,20,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--light);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.hero-illo-wrap .floater .ic {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.hero-illo-wrap .floater .who { font-weight: 500; color: var(--white); display: block; }
.hero-illo-wrap .floater .sm { color: var(--smoke); font-size: 0.74rem; }
.hero-illo-wrap .float-1 { top: 6%; left: -4%;  animation: floaterA 6s ease-in-out infinite alternate; }
.hero-illo-wrap .float-2 { top: 42%; right: -6%; animation: floaterB 7s ease-in-out infinite alternate; }
.hero-illo-wrap .float-3 { bottom: 6%; left: 8%;  animation: floaterC 5.5s ease-in-out infinite alternate; }
@keyframes floaterA { from { transform: translate(0,0); } to { transform: translate(0,-12px); } }
@keyframes floaterB { from { transform: translate(0,-6px); } to { transform: translate(0,8px); } }
@keyframes floaterC { from { transform: translate(0,4px); } to { transform: translate(0,-8px); } }

/* ── Empathy / "We've heard you say..." section ───────────────── */
.empathy-section {
  padding: 7rem 0 3rem;
  position: relative;
}
.empathy-section .head {
  text-align: center;
  margin-bottom: 4rem;
}
.empathy-section .head .kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.empathy-section .head h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  max-width: 24ch;
  margin: 0 auto;
}
.empathy-section .head h2 .em-it {
  font-family: var(--font-serif-it); font-style: italic; color: var(--peach);
}
.empathy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 740px) { .empathy-grid { grid-template-columns: 1fr; } }
.empathy-card {
  background: linear-gradient(155deg, rgba(255, 139, 107, 0.06), rgba(14, 14, 20, 0.5));
  border: 1px solid rgba(255, 139, 107, 0.12);
  border-radius: 22px;
  padding: 2rem 2.1rem;
  position: relative;
  transition: transform 320ms var(--ease-bounce), border-color 320ms var(--ease-out);
}
.empathy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 156, 0.35);
}
.empathy-card .mark {
  font-family: var(--font-serif-it);
  font-style: italic;
  color: var(--coral);
  font-size: 2.6rem;
  line-height: 0.6;
  margin-bottom: 0.6rem;
  display: block;
}
.empathy-card .said {
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.012em;
}
.empathy-card .by {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}
.empathy-card .we {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--ash);
  font-size: 0.92rem;
  line-height: 1.55;
}
.empathy-card .we strong { color: var(--peach); font-weight: 500; }

/* ── "What you get back" benefit cards with motion ────────────── */
.gain-section {
  padding: 6rem 0;
  position: relative;
}
.gain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .gain-grid { grid-template-columns: 1fr; } }
.gain-card {
  background: linear-gradient(180deg, rgba(255, 184, 156, 0.04), rgba(14, 14, 20, 0.6));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 2.2rem 2.1rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition: transform 380ms var(--ease-bounce), border-color 320ms var(--ease-out);
}
.gain-card:hover { transform: translateY(-6px); border-color: rgba(255, 184, 156, 0.3); }
.gain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--peach), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--ease-out);
}
.gain-card:hover::before { transform: scaleX(1); }
.gain-card .ic {
  width: 76px; height: 76px;
  margin-bottom: 1.8rem;
}
.gain-card .ic svg { width: 100%; height: 100%; }
.gain-card h3 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.15;
}
.gain-card p {
  font-size: 1rem;
  color: var(--ash);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}
.gain-card .mini-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(200, 255, 94, 0.08);
  border: 1px solid rgba(200, 255, 94, 0.18);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--plasma);
  letter-spacing: 0.06em;
}
.gain-card .mini-stat .n { color: var(--white); font-weight: 600; }

/* ── "How we work" 3-step section ─────────────────────────────── */
.howwework {
  padding: 7rem 0;
  position: relative;
}
.howwework .center {
  text-align: center;
  margin-bottom: 4rem;
}
.howwework .center .kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.howwework .center h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: var(--white);
  max-width: 22ch;
  margin: 0 auto;
}
.howwework .center h2 .em-it { font-family: var(--font-serif-it); font-style: italic; color: var(--amber); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: rgba(14, 14, 20, 0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 2.2rem 2rem;
  position: relative;
  transition: transform 340ms var(--ease-bounce), border-color 320ms var(--ease-out);
}
.step-card:hover { transform: translateY(-5px); border-color: rgba(255, 204, 138, 0.3); }
.step-card .step-num {
  display: inline-block;
  font-family: var(--font-serif-it);
  font-style: italic;
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--amber), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.step-card .step-illo {
  width: 90px; height: 90px;
  margin-bottom: 1.4rem;
}
.step-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.step-card p {
  font-size: 0.98rem;
  color: var(--ash);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.step-card .when {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── "Meet your AI team" friendly card grid ───────────────────── */
.team-section { padding: 7rem 0; }
.team-section .lead {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 4rem;
}
.team-section .lead .kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plasma);
  margin-bottom: 1rem;
}
.team-section .lead h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1rem;
}
.team-section .lead h2 .em-it { font-family: var(--font-serif-it); font-style: italic; color: var(--plasma); }
.team-section .lead p { color: var(--ash); font-size: 1.1rem; line-height: 1.55; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: linear-gradient(170deg, rgba(255, 184, 156, 0.05) 0%, rgba(14, 14, 20, 0.7) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 1.8rem 1.6rem 1.8rem;
  position: relative;
  transition: transform 360ms var(--ease-bounce), border-color 320ms var(--ease-out);
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(200, 255, 94, 0.25); }
.team-card .face {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.team-card .face svg { width: 64px; height: 64px; }
.team-card .name {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.012em;
  margin-bottom: 0.2rem;
}
.team-card .role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.9rem;
}
.team-card .desc { color: var(--ash); font-size: 0.96rem; line-height: 1.52; margin-bottom: 1rem; }
.team-card .like {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}
.team-section .see-all-row {
  text-align: center;
  margin-top: 3rem;
}

/* ── "You don't have to be technical" reassurance ─────────────── */
.reassure {
  padding: 7rem 0;
  position: relative;
}
.reassure-card {
  background: linear-gradient(135deg, rgba(255, 139, 107, 0.10) 0%, rgba(255, 204, 138, 0.05) 50%, rgba(14,14,20,0.7) 100%);
  border: 1px solid rgba(255, 184, 156, 0.18);
  border-radius: 28px;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .reassure-card { grid-template-columns: 1fr; padding: 2.5rem 1.8rem; gap: 2rem; }
}
.reassure-card .left h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.reassure-card .left h2 .em-it { font-family: var(--font-serif-it); font-style: italic; color: var(--coral); }
.reassure-card .left p {
  font-size: 1.1rem;
  color: var(--ash);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.reassure-card .left p strong { color: var(--light); font-weight: 500; }
.reassure-card .ndnt {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 1.8rem;
}
.reassure-card .ndnt h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 1.2rem;
}
.reassure-card .ndnt ul { list-style: none; padding: 0; margin: 0; }
.reassure-card .ndnt li {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
  color: var(--light);
}
.reassure-card .ndnt li:first-child { border-top: 0; padding-top: 0; }
.reassure-card .ndnt li .x {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255, 139, 107, 0.15);
  color: var(--coral);
  display: grid; place-items: center;
  font-size: 0.78rem;
  margin-top: 0.18rem;
}

/* ── Plain-language FAQ ───────────────────────────────────────── */
.faq-section { padding: 6rem 0; }
.faq-section .lead {
  text-align: center;
  margin-bottom: 3.5rem;
}
.faq-section .lead .kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 1rem;
}
.faq-section .lead h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.028em;
  color: var(--white);
}
.faq-section .lead h2 .em-it { font-family: var(--font-serif-it); font-style: italic; color: var(--peach); }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.6rem 0;
  cursor: pointer;
  transition: background 220ms var(--ease-out);
}
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-item:hover { background: rgba(255, 184, 156, 0.03); }
.faq-item .q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.012em;
}
.faq-item .toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 139, 107, 0.1);
  border: 1px solid rgba(255, 139, 107, 0.2);
  color: var(--coral);
  display: grid; place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 320ms var(--ease-out), background 220ms var(--ease-out);
}
.faq-item.open .toggle { transform: rotate(45deg); background: rgba(255, 139, 107, 0.18); }
.faq-item .a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms var(--ease-out), padding 280ms var(--ease-out), opacity 320ms var(--ease-out);
  color: var(--ash);
  font-size: 1.02rem;
  line-height: 1.6;
  opacity: 0;
  padding: 0 3rem 0 0;
}
.faq-item.open .a { max-height: 360px; padding: 1rem 3rem 0.3rem 0; opacity: 1; }
.faq-item .a strong { color: var(--light); font-weight: 500; }
.faq-item .a em { font-family: var(--font-serif-it); font-style: italic; color: var(--peach); }

/* ── Warm closer ──────────────────────────────────────────────── */
.warm-closer {
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
}
.warm-closer h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1.4rem;
  max-width: 22ch;
  margin-inline: auto;
}
.warm-closer h2 .em-it { font-family: var(--font-serif-it); font-style: italic;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.warm-closer .lede {
  font-size: 1.18rem;
  color: var(--ash);
  line-height: 1.55;
  max-width: 42rem;
  margin: 0 auto 2.4rem;
}
.warm-closer .row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Friendly outcome ticker (replaces tech-code ticker) ──────── */
.ticker-warm .ticker-track span em {
  color: var(--coral);
  font-style: normal;
  font-family: var(--font-mono);
}
.ticker-warm .ticker-track span .dot {
  background: var(--coral);
  box-shadow: 0 0 8px rgba(255, 139, 107, 0.6);
}

/* ── Soft pulse on numbers, gentle reveals ────────────────────── */
.warm-pulse { animation: warmPulse 3.4s ease-in-out infinite; }
@keyframes warmPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

/* ── Section divider with warm gradient line ──────────────────── */
.warm-rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 139, 107, 0.3) 30%, rgba(255, 204, 138, 0.3) 70%, transparent);
  margin: 0;
  max-width: 1200px;
  margin-inline: auto;
}


/* ═══════════════════════════════════════════════════════════════════
   WARM THEME LAYER · v1.2
   Carries the warm aesthetic into the operator-grade secondary pages
   (about / services / contact). Reduces blank space, harmonizes
   typography rhythm with home, decorates page-hero sections.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Tighten padding rhythm when warm theme is on ─────────────── */
body.warm .section { padding-block: 5rem; }
body.warm .section-tight { padding-block: 2.5rem; }
body.warm hr.rule { margin-block: 1.5rem; opacity: 0.4; }

/* ── Decorate the page-hero on secondary pages ────────────────── */
body.warm .page-hero,
body.warm .operator-hero {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 4.5rem;
}
body.warm .page-hero h1,
body.warm .operator-hero .text h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 1.4rem;
}
body.warm .page-hero .em,
body.warm .operator-hero .em {
  background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 40%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-serif-it);
  font-style: italic;
}
body.warm .page-hero .lede,
body.warm .operator-hero .text .lede {
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.55;
  color: var(--ash);
  max-width: 42rem;
}
body.warm .page-hero .meta .tag,
body.warm .operator-hero .meta .tag {
  border-color: rgba(255, 139, 107, 0.2);
  background: rgba(255, 139, 107, 0.05);
  color: var(--peach);
}
body.warm .page-hero .meta .tag-plasma,
body.warm .operator-hero .meta .tag-plasma {
  border-color: rgba(255, 139, 107, 0.3);
  background: rgba(255, 139, 107, 0.08);
  color: var(--coral);
}
body.warm .page-hero .meta .tag-plasma .dot,
body.warm .operator-hero .meta .tag-plasma .dot {
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 139, 107, 0.7);
  animation: heroPulse 2.4s ease-out infinite;
}

/* ── Decorative warm "constellation" flourish in page-hero ────── */
body.warm .page-hero .frame::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 320px; height: 320px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 139, 107, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 204, 138, 0.14) 0%, transparent 55%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}
body.warm .page-hero .frame { position: relative; }
body.warm .page-hero .frame > * { position: relative; z-index: 1; }

/* ── Soften the operator-hero portrait card with a warm halo ──── */
body.warm .operator-hero .portrait {
  position: relative;
}
body.warm .operator-hero .portrait::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 139, 107, 0.16), transparent 70%);
  filter: blur(25px);
  z-index: -1;
  animation: warmPulse 4s ease-in-out infinite;
}
body.warm .operator-hero .portrait .mono-mark {
  background: linear-gradient(135deg, var(--coral), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Warm up the closer section ───────────────────────────────── */
body.warm .closer {
  position: relative;
  padding-block: 6rem;
}
body.warm .closer .title .em {
  background: linear-gradient(135deg, var(--coral), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-serif-it);
  font-style: italic;
}

/* ── Warm up CTA buttons on secondary pages ───────────────────── */
body.warm .btn:not(.btn-ghost):not(.btn-warm):not(.btn-soft) {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-2) 100%);
  color: var(--void);
  border: 0;
  box-shadow: var(--glow-coral);
}
body.warm .btn:not(.btn-ghost):not(.btn-warm):not(.btn-soft):hover {
  box-shadow: 0 0 80px rgba(255, 139, 107, 0.35);
  transform: translateY(-2px);
}
body.warm .btn-ghost {
  border-color: rgba(255, 184, 156, 0.3);
}
body.warm .btn-ghost:hover {
  border-color: rgba(255, 184, 156, 0.6);
  background: rgba(255, 184, 156, 0.05);
}

/* ── Section-head accents warmed up ───────────────────────────── */
body.warm .section-head .label .name { color: var(--peach); }
body.warm .section-head .label .index { color: var(--coral); }
body.warm .section-head .title .em {
  background: linear-gradient(135deg, var(--coral), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-serif-it);
  font-style: italic;
}

/* ── Channels (contact) — warm gradient borders ───────────────── */
body.warm .channels .channel:hover {
  border-color: rgba(255, 139, 107, 0.4);
  background: linear-gradient(155deg, rgba(255, 139, 107, 0.06), rgba(14, 14, 20, 0.4));
}
body.warm .channels .channel .ch-id { color: var(--coral); }

/* ── Agent grid (services) — warm accents ─────────────────────── */
body.warm .agent-detail .ident { color: var(--coral); }
body.warm .agent-detail .status .dot { background: var(--coral); box-shadow: 0 0 8px rgba(255,139,107,0.6); }
body.warm .dept-header .num {
  background: linear-gradient(135deg, var(--coral), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Timeline (about) — warm dots and connectors ──────────────── */
body.warm .timeline-item .when {
  color: var(--coral);
  font-family: var(--font-mono);
}

/* ── Values grid (about) — warm number accent ─────────────────── */
body.warm .value .num {
  color: var(--coral);
  font-family: var(--font-serif-it);
  font-style: italic;
  font-size: 1.6rem;
}

/* ── Stack tiles (about) — soft warm hover ────────────────────── */
body.warm .stack-tile:hover {
  border-color: rgba(255, 184, 156, 0.3);
}
body.warm .stack-tile .head { color: var(--peach); }

/* ── Form labels (contact) — warm focus ───────────────────────── */
body.warm .form-block input:focus,
body.warm .form-block textarea:focus,
body.warm .form-block select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 139, 107, 0.15);
  outline: 0;
}
body.warm .form-block label .req { color: var(--coral); }

/* ── Editorial / marginalia on secondary pages ────────────────── */
body.warm .editorial .marginalia { color: var(--peach); }

/* ── Tighter mobile rhythm with warm theme ────────────────────── */
@media (max-width: 900px) {
  body.warm .section { padding-block: 3.5rem; }
  body.warm .page-hero,
  body.warm .operator-hero { padding-top: 3rem; padding-bottom: 3rem; }
  body.warm .page-hero .frame::before { width: 200px; height: 200px; }
}
