:root {
  --bg: #050505;
  --bg-card: #0e0e0e;
  --bg-elevated: #161616;
  --bg-glass: rgba(14, 14, 14, 0.55);
  --text: #f5f5f5;
  --text-dim: #a8a8a8;
  --text-faint: #6a6a6a;
  --accent: #c6ff00;
  --accent-2: #00e0ff;
  --accent-soft: rgba(198, 255, 0, 0.14);
  --accent-glow: rgba(198, 255, 0, 0.35);
  --border: rgba(255, 255, 255, 0.06);
  --border-bright: rgba(255, 255, 255, 0.14);
  --serif: 'Instrument Serif', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
::selection { background: var(--accent); color: var(--bg); }

/* ═══════════ AURORA BACKGROUND ═══════════ */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(198, 255, 0, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(0, 224, 255, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(198, 255, 0, 0.04) 0%, transparent 55%),
    var(--bg);
  pointer-events: none;
}

/* ═══════════ SCROLL-BEAM (left-edge progress indicator) ═══════════ */
.scroll-beam {
  position: fixed;
  top: 0;
  left: 0;
  width: 2px;
  height: 100vh;
  z-index: 99;
  background: rgba(198, 255, 0, 0.05);
  pointer-events: none;
}
.scroll-beam-fill {
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, transparent, var(--accent) 30%, var(--accent) 100%);
  box-shadow:
    0 0 10px var(--accent),
    0 0 20px var(--accent-glow),
    0 0 40px rgba(198, 255, 0, 0.2);
  transition: height 0.15s ease-out;
}

/* Beam scan across hero on load */
.beam-scan {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100vh;
  background: linear-gradient(105deg,
    transparent 40%,
    rgba(198, 255, 0, 0.04) 48%,
    rgba(198, 255, 0, 0.12) 50%,
    rgba(198, 255, 0, 0.04) 52%,
    transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: beamScan 4s cubic-bezier(0.45, 0, 0.55, 1) 0.5s 1 forwards;
}
@keyframes beamScan {
  0% { left: -100%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ═══════════ STICKY NAV ═══════════ */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-turtle {
  width: 32px;
  height: 24px;
  filter: drop-shadow(0 0 6px var(--accent-glow));
  animation: brandTurtleBob 3.5s ease-in-out infinite;
}
@keyframes brandTurtleBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-2px) rotate(-3deg); }
}
.brand-by { color: var(--accent); font-style: italic; font-weight: 400; padding: 0 2px; font-family: var(--serif); font-size: 18px; }
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
}
.nav-links a:not(.cta-pill) { color: var(--text-dim); font-weight: 500; position: relative; }
.nav-links a:not(.cta-pill)::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--accent); transition: width 0.25s; }
.nav-links a:not(.cta-pill):hover { color: var(--accent); }
.nav-links a:not(.cta-pill):hover::after { width: 100%; }
.cta-pill {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 0 0 var(--accent-glow);
  transition: all 0.25s;
}
.cta-pill:hover { opacity: 1; transform: translateY(-1px); box-shadow: 0 8px 24px -4px var(--accent-glow); }

/* ═══════════ HERO ═══════════ */
.hero {
  padding: 110px 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.hero-headline { position: relative; }
.hero-turtle {
  width: 140px;
  height: 100px;
  margin: 0 auto 12px;
  display: block;
  filter: drop-shadow(0 12px 30px var(--accent-glow));
  animation: heroTurtleBreathe 4.5s ease-in-out infinite;
}
.hero-turtle .turtle-body { transform-origin: 50% 60%; }
.hero-turtle .turtle-head { transform-origin: 158px 54px; animation: turtleHeadPeek 6s ease-in-out infinite; }
@keyframes heroTurtleBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.02); }
}
@keyframes turtleHeadPeek {
  0%, 100% { transform: translateX(0); }
  40%      { transform: translateX(3px); }
  70%      { transform: translateX(-1px); }
}
.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
  background: linear-gradient(180deg, var(--text) 0%, #c0c0c0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 em {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.95em;
}
.hero-sub {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 44px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.cta:hover { transform: translateY(-2px); opacity: 1; box-shadow: 0 12px 32px -6px var(--accent-glow); }
.cta-large { padding: 20px 44px; font-size: 17px; }
.cta-ghost {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--border-bright);
  color: var(--text);
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s;
}
.cta-ghost:hover { background: var(--bg-card); color: var(--accent); border-color: var(--accent-soft); }
.hero-loom { max-width: 760px; margin: 0 auto 80px; }
.loom-stub {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: left;
  transition: border-color 0.25s;
}
.loom-stub:hover { border-color: var(--accent-soft); }
.loom-stub .play {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 10px 30px -8px var(--accent-glow);
}
.loom-stub strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.loom-stub p { font-size: 14px; color: var(--text-dim); margin: 0; }

/* ═══════════ STATS BAR ═══════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 30px 32px;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
@media (max-width: 820px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 30px 24px; }
  .stats-bar > :nth-child(5) { grid-column: span 2; }
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 16px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
@media (max-width: 820px) { .stat { border-right: none; } }
.stat-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); font-weight: 500; }

/* ═══════════ CLUSTER SECTIONS ═══════════ */
main { padding: 0 32px; }
.cluster, .wall {
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.cluster:last-of-type { border-bottom: none; }

.cluster-glow {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.5;
}
.ai-glow       { background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%); }
.code-glow     { background: radial-gradient(ellipse, var(--accent-2) 0%, transparent 70%); }
.trading-glow  { background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%); }
.content-glow  { background: radial-gradient(ellipse, #ff8eb8 0%, transparent 70%); opacity: 0.3; }
.ops-glow      { background: radial-gradient(ellipse, var(--accent-2) 0%, transparent 70%); }
.reviews-glow  { background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%); opacity: 0.6; }

.cluster-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cluster-emoji { font-size: 44px; display: block; margin-bottom: 12px; }
.cluster-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.cluster-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.cluster-header p { font-size: 18px; color: var(--text-dim); }

/* ═══════════ WOW PREVIEWS PER CLUSTER ═══════════ */

/* AI · code window */
.code-preview { max-width: 900px; margin: 0 auto 60px; position: relative; z-index: 1; }
.code-window {
  background: #08090b;
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6), 0 0 80px -30px var(--accent-glow);
}
.code-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #0f1114; border-bottom: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-faint);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; } .dot.yellow { background: #febc2e; } .dot.green { background: #28c840; }
.code-file { margin-left: 12px; }
.code-window pre {
  margin: 0;
  padding: 22px 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  line-height: 1.7;
  color: #e4e4e4;
  overflow-x: auto;
}
.c-key { color: #c6ff00; }
.c-fn { color: #00e0ff; }
.c-type { color: #ffb86c; }
.c-str { color: #ffe580; }
.c-num { color: #ff79c6; }
.c-com { color: #6a6a6a; font-style: italic; }
.code-caption { text-align: center; color: var(--text-faint); font-size: 13px; margin-top: 14px; font-family: 'JetBrains Mono', monospace; }

/* Code cluster · terminal */
.terminal-mock { max-width: 900px; margin: 0 auto 60px; position: relative; z-index: 1; }
.terminal-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #0f1114; border: 1px solid var(--border-bright); border-bottom: none;
  border-radius: 14px 14px 0 0;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-faint);
}
.terminal-out {
  background: #08090b;
  border: 1px solid var(--border-bright);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 22px 26px;
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #e4e4e4;
  overflow-x: auto;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6), 0 0 80px -30px rgba(0, 224, 255, 0.25);
}
.t-time { color: var(--text-faint); }
.t-ok { color: var(--accent); }
.t-cursor { color: var(--accent); animation: blink 1s steps(2, end) infinite; }
@keyframes blink { from, to { opacity: 1; } 50% { opacity: 0; } }

/* Trading cluster · chart */
.chart-mock {
  max-width: 900px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6), 0 0 80px -30px var(--accent-glow);
}
.chart-mock svg { width: 100%; height: 180px; display: block; }
.chart-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: chartDraw 2.5s ease-out 0.3s forwards;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
@keyframes chartDraw { to { stroke-dashoffset: 0; } }
.chart-label {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--accent);
}
.chart-tag {
  background: var(--accent); color: var(--bg);
  padding: 4px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  margin-right: 10px;
}

/* Content cluster · launch strip */
.launch-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.launch-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14,14,14,0.6) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  transition: all 0.25s;
}
.launch-card:hover { border-color: var(--accent-soft); transform: translateY(-2px); }
.launch-domain { font-size: 14px; color: var(--text); font-weight: 500; }
.launch-days {
  font-size: 12px; color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 100px;
}

/* Ops cluster · server rack */
.rack-mock {
  max-width: 900px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6), 0 0 80px -30px rgba(0, 224, 255, 0.25);
}
.rack-row {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.rack-row:last-child { border-bottom: none; }
.rack-label { color: var(--text); font-weight: 600; }
.rack-status {
  padding: 4px 10px; border-radius: 4px; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.rack-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.rack-status.ok { background: rgba(198, 255, 0, 0.12); color: var(--accent); }
.rack-status.ok::before { background: var(--accent); box-shadow: 0 0 6px var(--accent); animation: rackPulse 2s ease-in-out infinite; }
@keyframes rackPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.rack-meta { color: var(--text-faint); text-align: right; font-size: 12px; }

/* ═══════════ SUB CARDS ═══════════ */
.sub-grid { display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; z-index: 1; }
@media (min-width: 780px) { .sub-grid { grid-template-columns: 1fr 1fr; } }
.sub {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 14, 14, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.sub::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.sub:hover { border-color: var(--border-bright); transform: translateY(-3px); box-shadow: 0 20px 60px -20px rgba(198, 255, 0, 0.10); }
.sub:hover::before { opacity: 1; }
.sub h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; }
.sub-pitch { color: var(--text-dim); font-size: 15px; line-height: 1.6; }
.case-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
}
.case-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 12px; color: var(--text); letter-spacing: -0.005em; }
.case-card p { font-size: 14px; color: var(--text-dim); margin-bottom: 16px; line-height: 1.6; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 5px 11px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 4px;
}
.case-card .result {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-bright);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0;
}
.upwork-pill {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--accent-soft);
  border-radius: 6px;
  transition: all 0.25s;
}
.upwork-pill:hover { background: var(--accent-soft); border-color: var(--accent); transform: translateX(2px); }

/* ═══════════ TESTIMONIAL WALL · MIXED FORMATS ═══════════ */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 720px) { .testimonials { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .testimonials { grid-template-columns: 1fr 1fr 1fr; } }

.t-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 14, 14, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
}
.t-card:hover { border-color: var(--border-bright); transform: translateY(-3px); box-shadow: 0 20px 60px -20px rgba(198, 255, 0, 0.10); }

.t-stars { color: var(--accent); font-size: 14px; letter-spacing: 3px; }

/* Type 1 · photo + name */
.t-photo .t-quote { font-size: 15px; line-height: 1.6; color: var(--text); font-family: var(--serif); font-style: italic; }
.t-photo .t-quote::before { content: '"'; color: var(--accent); font-size: 28px; line-height: 0; vertical-align: -8px; margin-right: 2px; }
.t-photo .t-quote::after { content: '"'; color: var(--accent); font-size: 28px; line-height: 0; vertical-align: -8px; margin-left: 2px; }
.t-author { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.t-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-bright); }
.t-author strong { display: block; font-size: 14px; color: var(--text); font-weight: 600; }
.t-author span { display: block; font-size: 12px; color: var(--text-faint); font-family: 'JetBrains Mono', monospace; }

/* Type 2 · Upwork-style review card */
.t-upwork .t-upwork-header { display: flex; gap: 14px; align-items: center; }
.t-upwork .t-monogram {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.t-verify-row { display: flex; align-items: center; gap: 10px; }
.t-verify {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 9px;
  border-radius: 100px;
}
.t-project {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 4px;
}
.t-upwork .t-quote { font-size: 14px; line-height: 1.65; color: var(--text-dim); margin-top: 6px; }

/* Type 3 · anonymous big quote */
.t-anon { gap: 22px; }
.t-quote-large {
  font-size: 22px;
  line-height: 1.35;
  color: var(--text);
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: -0.01em;
}
.t-anon-meta { display: flex; flex-direction: column; gap: 4px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); font-family: 'JetBrains Mono', monospace; }
.t-anon-label { font-size: 10px; letter-spacing: 0.2em; color: var(--accent); font-weight: 700; }
.t-anon-stat { font-size: 12px; color: var(--text-faint); }

/* Type 4 · metric-only card */
.t-metric { align-items: center; justify-content: center; text-align: center; gap: 12px; }
.t-metric-num {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.t-metric-label { font-size: 14px; color: var(--text-dim); max-width: 220px; line-height: 1.5; }
.t-metric-sub { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-faint); letter-spacing: 0.1em; text-transform: uppercase; }

/* ═══════════ FOOTER ═══════════ */
footer {
  background: var(--bg);
  padding: 100px 32px 50px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(198, 255, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.footer-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; }
.footer-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-cta h2 {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

/* Walking turtle */
.turtle-walk-zone {
  position: relative;
  height: 80px;
  margin: 70px 0 30px;
  overflow: hidden;
  border-bottom: 1px dashed var(--border);
}
.walking-turtle {
  width: 70px;
  height: 50px;
  position: absolute;
  bottom: 12px;
  left: -80px;
  filter: drop-shadow(0 4px 12px var(--accent-glow));
  animation: turtleWalk 18s linear infinite;
}
.walking-turtle .leg-bl { animation: leg 1.2s ease-in-out infinite; transform-origin: 60px 118px; }
.walking-turtle .leg-br { animation: leg 1.2s ease-in-out 0.6s infinite; transform-origin: 140px 118px; }
.walking-turtle .walking-head { animation: nod 2.4s ease-in-out infinite; transform-origin: 158px 54px; }
@keyframes turtleWalk { from { left: -80px; } to { left: 100%; } }
@keyframes leg {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
@keyframes nod {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(5deg); }
}
.trail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), var(--accent-soft), transparent);
}

.footer-line { width: 60px; height: 1px; background: var(--border-bright); margin: 50px auto 30px; }
.footer-quote {
  color: var(--text-faint);
  font-size: 15px;
  line-height: 1.7;
  font-family: var(--serif);
  font-style: italic;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.footer-mark { font-family: 'JetBrains Mono', monospace; color: var(--text-faint); font-size: 12px; letter-spacing: 0.1em; }

/* ═══════════ REVEAL ON SCROLL ═══════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════
   ADDITIONS · GRID + SECTION PAGES + DEMOS
   ════════════════════════════════════════════════════ */

/* ═══════════ GRID SECTION (homepage) ═══════════ */
.grid-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.cluster-band {
  margin-bottom: 60px;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.cluster-band:first-of-type { border-top: none; }
.cluster-band.lime    { --band-accent: var(--accent); }
.cluster-band.cyan    { --band-accent: var(--accent-2); }
.cluster-band.magenta { --band-accent: #ff7eb6; }

.band-label {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--band-accent);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 24px;
  font-weight: 600;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.g-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 14, 14, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
}
.g-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--card-accent, var(--accent));
  opacity: 0.6;
  transition: opacity 0.3s, height 0.3s;
}
.g-card.g-lime    { --card-accent: var(--accent); }
.g-card.g-cyan    { --card-accent: var(--accent-2); }
.g-card.g-magenta { --card-accent: #ff7eb6; }
.g-card:hover {
  border-color: var(--card-accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px -16px rgba(198, 255, 0, 0.18);
  opacity: 1;
}
.g-card:hover::before { opacity: 1; height: 3px; }
.g-emoji { font-size: 30px; margin-bottom: 4px; line-height: 1; }
.g-card strong { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.g-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-faint);
}
.g-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--card-accent);
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
}
.g-card:hover .g-arrow { opacity: 1; transform: translateX(0); }

/* ═══════════ SECTION PAGE (per-specialty deep dive) ═══════════ */
.section-page .aurora {
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, var(--theme-glow, rgba(198, 255, 0, 0.12)) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 20%, var(--theme-glow-2, rgba(0, 224, 255, 0.06)) 0%, transparent 55%),
    var(--bg);
}
.section-page.theme-lime    { --theme-color: var(--accent); --theme-glow: rgba(198, 255, 0, 0.14); --theme-glow-2: rgba(0, 224, 255, 0.04); }
.section-page.theme-cyan    { --theme-color: var(--accent-2); --theme-glow: rgba(0, 224, 255, 0.14); --theme-glow-2: rgba(198, 255, 0, 0.04); }
.section-page.theme-magenta { --theme-color: #ff7eb6; --theme-glow: rgba(255, 126, 182, 0.14); --theme-glow-2: rgba(198, 255, 0, 0.04); }

.section-hero {
  padding: 100px 32px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-color);
  background: rgba(198, 255, 0, 0.10);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.section-emoji-big {
  font-size: 84px;
  display: block;
  margin: 0 auto 24px;
  filter: drop-shadow(0 12px 30px var(--theme-glow));
  animation: heroTurtleBreathe 4.5s ease-in-out infinite;
}
.section-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  background: linear-gradient(180deg, var(--text) 0%, #c0c0c0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-tagline {
  font-size: 20px;
  color: var(--text-dim);
  margin-bottom: 36px;
  font-family: var(--serif);
  font-style: italic;
}

.section-detail {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}
.section-inner > * { margin-bottom: 60px; }
.section-pitch h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-pitch p {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.6;
}
.section-stack h3 {
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.section-stack .tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
.section-loom { max-width: 760px; margin: 0 auto 60px; }
.section-final-cta {
  text-align: center;
  padding: 70px 32px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14,14,14,0.6) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.section-final-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.other-specialties { margin-top: 28px; font-family: 'JetBrains Mono', monospace; font-size: 13px; }
.other-specialties a { color: var(--text-faint); }
.other-specialties a:hover { color: var(--theme-color); }

/* ═══════════ DEMO BLOCKS (used across section pages) ═══════════ */
.demo { max-width: 900px; margin: 0 auto 60px; position: relative; }
.demo-caption { text-align: center; color: var(--text-faint); font-size: 13px; margin-top: 14px; font-family: 'JetBrains Mono', monospace; }
.demo-placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--border-bright);
  border-radius: 14px;
  padding: 60px 30px;
  text-align: center;
  color: var(--text-faint);
}

/* Chat demo */
.chat-mock {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  padding: 26px;
  max-width: 720px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6), 0 0 80px -30px rgba(0, 224, 255, 0.25);
}
.chat-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-dim);
}
.chat-msg {
  padding: 12px 16px;
  border-radius: 14px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 88%;
}
.chat-msg.user { background: rgba(255, 255, 255, 0.05); margin-left: auto; color: var(--text); }
.chat-msg.bot { background: var(--accent-soft); color: var(--text); border: 1px solid rgba(198, 255, 0, 0.2); }
.chat-msg.bot strong { display: inline-block; color: var(--accent); margin-right: 8px; font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.chat-meta { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-faint); }

/* AI Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.vg-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14,14,14,0.6) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.vg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff7eb6, var(--accent));
}
.vg-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #ff7eb6; letter-spacing: 0.1em; }
.vg-card strong { font-size: 14px; color: var(--text); }
.vg-cost { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--accent); margin-top: auto; }

/* Virtual Assistant 3-pane */
.va-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.va-pane {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 18px;
}
.va-pane-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.va-item {
  font-size: 13px;
  color: var(--text-dim);
  padding: 8px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.va-item:last-child { border-bottom: none; }
.va-time { font-family: 'JetBrains Mono', monospace; color: var(--accent); font-size: 11px; min-width: 36px; }
.va-badge { font-family: 'JetBrains Mono', monospace; font-size: 9px; padding: 3px 7px; border-radius: 3px; letter-spacing: 0.06em; font-weight: 700; min-width: 50px; text-align: center; }
.va-badge.urgent { background: rgba(255, 95, 87, 0.15); color: #ff5f57; }
.va-badge.reply { background: var(--accent-soft); color: var(--accent); }
.va-badge.fyi { background: rgba(168, 168, 168, 0.1); color: var(--text-dim); }

/* Security stack */
.sec-stack {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 24px;
}
.sec-layer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text);
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.sec-layer:last-child { border-bottom: none; }
.sec-num {
  font-size: 11px;
  background: linear-gradient(135deg, #ff7eb6, var(--accent));
  color: var(--bg);
  padding: 4px 9px;
  border-radius: 4px;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
}

/* Flow graph (workflow / scraping) */
.flow-graph {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
}
.flow-node {
  background: var(--bg-elevated);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  min-width: 110px;
}
.flow-node span { display: block; font-size: 10px; color: var(--text-faint); font-weight: 400; margin-top: 4px; letter-spacing: 0.05em; }
.flow-node.hot {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg);
  border: none;
}
.flow-node.hot span { color: rgba(0, 0, 0, 0.55); }
.flow-arrow { color: var(--accent); font-size: 22px; font-weight: 700; }

/* Data tiles */
.data-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.d-tile {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14,14,14,0.6) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
}
.d-num {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.d-lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ════════════════════════════════════════════════════
   BUSINESS-IMPACT BLOCKS (impact tiles, vs comparison, benefits)
   ════════════════════════════════════════════════════ */

.impact-block { text-align: center; margin-bottom: 70px !important; position: relative; }
.impact-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--theme-color, var(--accent));
  background: rgba(198, 255, 0, 0.10);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.impact-block h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 36px;
}
.impact-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.impact-tile {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14,14,14,0.6) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  padding: 32px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.impact-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--theme-color, var(--accent));
  opacity: 0.6;
  transition: opacity 0.3s;
}
.impact-tile:hover { transform: translateY(-3px); border-color: var(--theme-color, var(--accent)); }
.impact-tile:hover::before { opacity: 1; }
.impact-num {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.impact-lbl {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* Before / After */
.vs-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 70px !important;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) { .vs-block { grid-template-columns: 1fr; } .vs-arrow { transform: rotate(90deg); margin: 0 auto; } }
.vs-side {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  transition: all 0.3s;
}
.vs-before {
  border-color: rgba(255, 95, 87, 0.25);
}
.vs-before .vs-label { color: #ff5f57; }
.vs-after {
  border-color: var(--theme-color, var(--accent));
  background: linear-gradient(135deg, rgba(198, 255, 0, 0.06) 0%, rgba(14, 14, 14, 0.6) 100%);
}
.vs-after .vs-label { color: var(--theme-color, var(--accent)); }
.vs-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.vs-side p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}
.vs-arrow {
  font-size: 28px;
  color: var(--theme-color, var(--accent));
  font-weight: 700;
  text-align: center;
}

/* Benefits grid */
.benefits-block { text-align: center; margin-bottom: 70px !important; }
.benefits-block h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  transition: all 0.3s;
  position: relative;
}
.benefit-card:hover {
  transform: translateY(-3px);
  border-color: var(--theme-color, var(--accent));
}
.benefit-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.benefit-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════════════════
   HERO DEMOS · big visual block at top of each section page
   ════════════════════════════════════════════════════ */
.hero-demo {
  max-width: 980px;
  margin: 0 auto 60px;
}
.hd-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 820px) { .hd-grid { grid-template-columns: 1fr; } }
.hd-main { margin: 0; }
.hd-side { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 820px) { .hd-side { grid-template-columns: repeat(4, 1fr); } }
.hd-tile {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14,14,14,0.6) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.hd-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--theme-color, var(--accent));
}
.hd-tile-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.hd-tile-lbl {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  line-height: 1.35;
}
.hd-live {
  margin-left: auto;
  color: #c6ff00;
  font-size: 10px;
  letter-spacing: 0.1em;
  animation: blink 2s ease-in-out infinite;
  background: rgba(198, 255, 0, 0.12);
  padding: 2px 6px;
  border-radius: 3px;
}

/* Metrics strip · multi-section reusable */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.ms-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}
.ms-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.ms-lbl { font-size: 10.5px; color: var(--text-faint); letter-spacing: 0.06em; }

/* Render queue (AI Video) */
.render-queue {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 22px;
  font-family: 'JetBrains Mono', monospace;
}
.rq-title { font-size: 12px; color: var(--accent); letter-spacing: 0.18em; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.rq-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.rq-row:last-child { border-bottom: none; }
.rq-status { font-size: 10px; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 4px; min-width: 90px; text-align: center; font-weight: 700; }
.rq-row.done .rq-status { background: rgba(198, 255, 0, 0.14); color: var(--accent); }
.rq-row.processing .rq-status { background: rgba(0, 224, 255, 0.14); color: var(--accent-2); animation: blink 1.5s ease-in-out infinite; }
.rq-row.queued .rq-status { background: rgba(168, 168, 168, 0.1); color: var(--text-dim); }
.rq-cost { color: var(--accent); font-size: 12px; }

/* Lighthouse gauges (Web Dev) */
.lighthouse {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14,14,14,0.6) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
}
.lh-gauges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.lh-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lh-score {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 100%, rgba(255,255,255,0.06) 0%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  box-shadow: 0 0 30px -10px var(--accent-glow);
}
.lh-score::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--bg);
}
.lh-score { z-index: 1; }
.lh-score::after { z-index: -1; }
.lh-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; color: var(--text-faint); }
.lh-foot { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-faint); border-top: 1px dashed var(--border); padding-top: 18px; }

/* Data dashboard (Data Analytics) */
.data-dash {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 22px;
}
.dd-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
@media (max-width: 640px) { .dd-row { grid-template-columns: repeat(2, 1fr); } }
.dd-row:last-child { margin-bottom: 0; }
.dd-chart {
  background: rgba(0, 224, 255, 0.04);
  border-radius: 10px;
  padding: 16px;
  margin: 14px 0;
}
.dd-chart svg { width: 100%; height: 140px; }

/* Architecture diagram (Trading Infra) */
.arch-diagram {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
}
.arch-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  padding: 14px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text);
  display: inline-block;
}
.arch-top { background: linear-gradient(135deg, rgba(0, 224, 255, 0.1), transparent); border-color: var(--accent-2); }
.arch-engine { background: linear-gradient(135deg, rgba(198, 255, 0, 0.12), transparent); border-color: var(--accent); font-weight: 600; padding: 18px 28px; }
.arch-bottom { background: rgba(168, 168, 168, 0.06); color: var(--text-dim); }
.arch-down { color: var(--accent); font-size: 22px; margin: 12px 0; }
.arch-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 8px 0; }
.arch-exch { background: rgba(198, 255, 0, 0.06); border-color: var(--accent-soft); font-size: 12px; }

/* Greeks panel (Options) */
.greeks-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 6px;
}
.gp-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr) auto;
  gap: 8px;
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.gp-row:last-child { border-bottom: none; }
.gp-row.hot { background: rgba(255, 126, 182, 0.06); color: var(--text); }
.gp-sym { color: var(--text); font-weight: 600; font-size: 13px; }
.gp-iv { color: #ffb86c; }
.gp-alert { color: #ff7eb6; font-size: 11px; font-weight: 700; animation: blink 1.5s ease-in-out infinite; }

/* Invest grid */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.ig-pane {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 20px 18px;
}
.ig-pane-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.ig-bar {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  height: 28px;
  margin-bottom: 8px;
  overflow: hidden;
}
.ig-bar span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text);
  z-index: 2;
}
.ig-fill {
  height: 100%;
  opacity: 0.7;
  border-radius: 6px;
}
.ig-acct {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}
.ig-acct:last-child { border-bottom: none; }
.ig-acct span:first-child { color: var(--text-dim); }
.ig-acct span:last-child { color: var(--accent); }
.ig-stat { padding: 10px 0; border-bottom: 1px solid var(--border); }
.ig-stat:last-child { border-bottom: none; }
.ig-num { display: block; font-family: 'JetBrains Mono', monospace; font-size: 20px; font-weight: 700; color: var(--accent); }
.ig-lbl { display: block; font-size: 11px; color: var(--text-faint); margin-top: 2px; }

/* Ledger mock (Bookkeeping) */
.ledger-mock {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 6px;
}
.lm-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.lm-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 12px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.lm-row:last-child { border-bottom: none; }
.lm-row.total { background: rgba(198, 255, 0, 0.06); font-weight: 600; }
.lm-date { color: var(--text-faint); }
.lm-desc { color: var(--text-dim); }
.lm-amount.in { color: var(--accent); }
.lm-amount.out { color: #ff7eb6; }

/* Dual language (Bilingual Writing) */
.dual-lang {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .dual-lang { grid-template-columns: 1fr; } }
.dl-side {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14,14,14,0.6) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 28px 26px;
}
.dl-flag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #ff7eb6;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.dl-text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  font-style: italic;
  color: var(--text);
  margin: 0;
}

/* Docs mock (Tech Writing) */
.docs-mock {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
}
@media (max-width: 720px) { .docs-mock { grid-template-columns: 1fr; } }
.dm-toc {
  background: rgba(255, 255, 255, 0.02);
  padding: 22px 18px;
  border-right: 1px solid var(--border);
}
.dm-toc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.dm-item {
  padding: 8px 10px;
  font-size: 13px;
  color: var(--text-dim);
  border-radius: 6px;
  margin-bottom: 4px;
}
.dm-item.active { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.dm-body { padding: 26px 24px; }
.dm-body h4 { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--accent); margin-bottom: 12px; }
.dm-body p { font-size: 14px; color: var(--text-dim); line-height: 1.65; margin-bottom: 10px; }
.dm-code {
  background: rgba(0, 224, 255, 0.06);
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 12px !important;
  padding: 10px 14px !important;
  border-radius: 6px;
  color: var(--accent-2) !important;
  border-left: 2px solid var(--accent-2);
}

/* Brand swatch grid (Marketing) */
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin: 20px 0; }
.bg-swatch { aspect-ratio: 1; border-radius: 8px; border: 1px solid var(--border); transition: transform 0.2s; }
.bg-swatch:hover { transform: scale(1.08); }

/* Funnel (Sales Auto) */
.funnel {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.funnel-stage {
  background: linear-gradient(90deg, rgba(0, 224, 255, 0.15), rgba(0, 224, 255, 0.06));
  border: 1px solid rgba(0, 224, 255, 0.3);
  border-radius: 8px;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text);
}
.funnel-stage.hot { background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: var(--bg); border: none; font-weight: 700; }
.funnel-num { color: var(--accent); }
.funnel-stage.hot .funnel-num { color: rgba(0, 0, 0, 0.7); }
