/*
 * Lodgey Landing — Unified Brutalist-Editorial Theme
 *
 * Shares DNA with the tax-agent brutalist theme.
 * Unbounded display, JetBrains Mono body, chartreuse accent,
 * 2px borders, 4-6px radii, offset shadows, warm canvas.
 */

/* ── Root overrides ── */
:root {
  --void: #fafaf5;
  --text-primary: #0a0a0a;
  --text-secondary: #4a4a4a;
  --text-dim: #888888;
  --text-ghost: #bbbbbb;
  --warm: #0a0a0a;
  --warm-soft: rgba(0,0,0,0.06);
  --warm-glow: rgba(0,0,0,0.04);
  --warm-bright: #0a0a0a;
  --cool: #16a34a;
  --cool-soft: rgba(22,163,74,0.08);
  --accent: #d4f000;
  --accent-hover: #c4e000;
  --surface: #f0efeb;
  --surface-hover: #e8e7e3;
  --border: #e5e5e0;
  --border-dark: #0a0a0a;
  --border-heavy: #0a0a0a;
  --panel-edge: #e5e5e0;
  --text: #0a0a0a;
  --text-mid: #4a4a4a;
  --panel: #f0efeb;
  --panel-glow: transparent;
  --font-display: "Unbounded", "Arial Black", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;
  --font-body: "JetBrains Mono", "SF Mono", monospace;
  --font-thin: "Unbounded", "Arial Black", sans-serif;
  --font-serif: "Unbounded", "Arial Black", sans-serif;
}

/* ── Global body ── */
body {
  background: var(--void) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
}

/* Selection */
::selection {
  background: rgba(212, 240, 0, 0.35) !important;
  color: var(--text-primary) !important;
}

/* ── Kill dark ambient effects ── */
.ambient-grid,
.ambient-glow,
.ambient-glow--1,
.ambient-glow--2,
.scanline,
.particle-canvas {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── Boot sequence ── */
.boot {
  background: var(--void) !important;
}
.boot__wheel-track {
  stroke: var(--border) !important;
}
.boot__wheel-progress {
  stroke: var(--text-primary) !important;
}
.boot__pct {
  color: var(--text-primary) !important;
  font-family: var(--font-mono) !important;
  font-weight: 700 !important;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
  letter-spacing: -0.03em !important;
}

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
.nav {
  background: var(--void) !important;
  border-bottom: 2px solid var(--border) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.nav__inner {
  max-width: 1200px;
}
.nav__logo {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}
.nav__logo-svg {
  filter: none !important;
  animation: none !important;
  opacity: 1 !important;
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
  display: block !important;
}
.nav__logo:hover .nav__logo-svg {
  filter: none !important;
  animation: none !important;
}
.nav__status {
  color: var(--text-dim) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.65rem !important;
}
.nav__status-dot {
  background: #22c55e !important;
}
.nav__coord {
  color: var(--text-ghost) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.65rem !important;
}
.nav__cta {
  font-family: var(--font-mono) !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  border: 2px solid var(--border-dark) !important;
  background: transparent !important;
  border-radius: 4px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}
.nav__cta:hover {
  background: var(--surface) !important;
}
.nav__cta--primary {
  background: var(--accent) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-dark) !important;
}
.nav__cta--primary:hover {
  background: var(--accent-hover) !important;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  background: var(--void) !important;
  min-height: 90vh !important;
}

/* ── Cube Agent ── */
.hero__mascot {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__mascot-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
}

.cube-agent {
  position: relative;
  width: 110px;
  height: 130px;
}
.cube-agent__shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 14px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: cubeAgentShadow 3s ease-in-out infinite;
}
.cube-agent__scene {
  width: 100px;
  height: 100px;
  perspective: 400px;
  margin: 0 auto;
  animation: cubeAgentFloat 3s ease-in-out infinite;
}
.cube-agent__cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-18deg) rotateY(32deg);
  animation: cubeAgentIdle 6s ease-in-out infinite;
  transition: transform 0.4s ease;
}
.hero__mascot:hover .cube-agent__cube {
  animation-play-state: paused;
  transform: rotateX(-12deg) rotateY(45deg) scale(1.05);
}

.cube-agent__face {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--text-primary);
}
.cube-agent__face--front  {
  background: var(--text-primary);
  transform: translateZ(50px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cube-agent__face--back   {
  background: var(--text-primary);
  transform: rotateY(180deg) translateZ(50px);
}
.cube-agent__face--right  {
  background: #1a1a1a;
  transform: rotateY(90deg) translateZ(50px);
}
.cube-agent__face--left   {
  background: #1a1a1a;
  transform: rotateY(-90deg) translateZ(50px);
}
.cube-agent__face--top    {
  background: var(--accent);
  transform: rotateX(90deg) translateZ(50px);
}
.cube-agent__face--bottom {
  background: #111;
  transform: rotateX(-90deg) translateZ(50px);
}

/* Eyes */
.cube-agent__eyes {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
}
.cube-agent__eye {
  width: 14px;
  height: 18px;
  background: var(--void);
  border-radius: 3px;
  position: relative;
  animation: cubeAgentBlink 4s ease-in-out infinite;
}
.cube-agent__eye--l { animation-delay: 0s; }
.cube-agent__eye--r { animation-delay: 0.05s; }

/* Floating */
@keyframes cubeAgentFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes cubeAgentShadow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(0.85); opacity: 0.6; }
}

/* Idle rotation */
@keyframes cubeAgentIdle {
  0%, 100% { transform: rotateX(-18deg) rotateY(32deg); }
  25% { transform: rotateX(-15deg) rotateY(38deg); }
  50% { transform: rotateX(-20deg) rotateY(28deg); }
  75% { transform: rotateX(-16deg) rotateY(35deg); }
}

/* Blink */
@keyframes cubeAgentBlink {
  0%, 42%, 48%, 100% { transform: scaleY(1); }
  45% { transform: scaleY(0.1); }
}

.hero__neural {
  opacity: 0.03 !important;
}
.hero__neural line {
  stroke: var(--text-primary) !important;
}
.hero__neural circle {
  fill: rgba(0,0,0,0.03) !important;
}
.hero__hex {
  opacity: 0.02 !important;
}
.hero__hex polygon {
  stroke: var(--border) !important;
}

/* Hero text */
.hero__over {
  color: var(--text-dim) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}
.hero__h {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.05 !important;
}
.hero__h em {
  font-style: normal !important;
  color: var(--text-primary) !important;
  -webkit-text-fill-color: initial !important;
  background: none !important;
  -webkit-background-clip: initial !important;
}
.hero__sub {
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

/* Hero buttons */
.btn {
  font-family: var(--font-mono) !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  border: 2px solid var(--border-dark) !important;
  background: var(--accent) !important;
  color: var(--text-primary) !important;
  padding: 14px 32px !important;
  font-size: 0.75rem !important;
  box-shadow: 2px 2px 0 var(--border-dark) !important;
  transition: transform 0.1s, box-shadow 0.1s, background 0.1s !important;
}
.btn:hover {
  background: var(--accent-hover) !important;
  transform: translate(-1px, -1px) !important;
  box-shadow: 3px 3px 0 var(--border-dark) !important;
}
.btn:active {
  transform: translate(1px, 1px) !important;
  box-shadow: none !important;
}
.btn__glow {
  display: none !important;
}
.btn--ghost {
  background: transparent !important;
  border: 2px solid var(--border) !important;
  color: var(--text-primary) !important;
  box-shadow: 2px 2px 0 var(--border) !important;
}
.btn--ghost:hover {
  background: var(--surface) !important;
  border-color: var(--border-dark) !important;
  box-shadow: 3px 3px 0 var(--border-dark) !important;
}

/* Hero chips */
.hero__chip {
  font-family: var(--font-mono) !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  color: var(--text-dim) !important;
  border: 2px solid var(--border) !important;
  background: transparent !important;
  border-radius: 4px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}
.hero__chip:hover {
  border-color: var(--text-primary) !important;
  color: var(--text-primary) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Kill neural SVG animated pulses */
.neural-pulse {
  display: none !important;
}

/* Hero panels */
.hero__panel {
  display: block !important;
  border-color: var(--border) !important;
}

/* Kill glass refraction ::before */
.panel__glass::before {
  display: none !important;
}
.panel__glass {
  background: var(--surface) !important;
  border: 2px solid var(--border) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 2px 2px 0 var(--border) !important;
  border-radius: 6px !important;
}
.panel__label {
  color: var(--text-dim) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.6rem !important;
}
.panel__label svg {
  opacity: 0.5 !important;
}
.panel__metric-val {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
}
.panel__metric-val--accent {
  color: var(--text-primary) !important;
}
.panel__metric-val--dim {
  color: var(--text-secondary) !important;
}
.panel__metric-unit {
  color: var(--text-dim) !important;
  font-family: var(--font-body) !important;
}
.panel__divider {
  background: var(--border) !important;
}
.panel__row-k {
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
}
.panel__row-v {
  color: var(--text-primary) !important;
  font-family: var(--font-mono) !important;
}
.panel__row-v--green {
  color: #16a34a !important;
}
.panel__row--hl {
  background: rgba(0,0,0,0.02) !important;
  border-color: var(--border) !important;
}
.panel__status {
  color: var(--text-dim) !important;
  font-family: var(--font-mono) !important;
}
.panel__status-dot {
  background: #22c55e !important;
}
.panel__bar-svg rect {
  fill: var(--text-primary) !important;
  opacity: 0.08 !important;
}
.panel__donut text {
  fill: var(--text-dim) !important;
}
.donut-seg--1 { stroke: var(--text-primary) !important; opacity: 0.15 !important; }
.donut-seg--2 { stroke: #16a34a !important; opacity: 0.2 !important; }
.donut-seg--3 { stroke: var(--border) !important; opacity: 0.3 !important; }

/* Panel inline SVG colour overrides (radar, signal bars) */
.panel__radar line {
  stroke: var(--text-dim) !important;
}
.panel__radar circle {
  stroke: var(--border) !important;
}
.panel__label svg rect {
  fill: var(--text-primary) !important;
  opacity: 0.15 !important;
}
.panel__donut circle[fill="none"] {
  stroke-opacity: 0.15 !important;
}

/* ══════════════════════════════════════════
   DATA TICKER
   ══════════════════════════════════════════ */
.data-rule {
  background: var(--void) !important;
  border-top: 2px solid var(--border) !important;
  border-bottom: 2px solid var(--border) !important;
}
.data-rule__track span {
  color: var(--text-dim) !important;
  font-family: var(--font-mono) !important;
}
.data-rule__dot {
  color: var(--text-dim) !important;
  opacity: 0.4 !important;
}

/* ══════════════════════════════════════════
   SECTIONS (question, system, features, provocation, CTA)
   ══════════════════════════════════════════ */
section {
  background: var(--void) !important;
}
.question,
.system,
.feat-section,
.provocation,
.cta {
  background: var(--void) !important;
}

/* ── Question / Problem section ── */
.question {
  background: var(--void) !important;
  border-top: 2px solid var(--border) !important;
  border-bottom: 2px solid var(--border) !important;
  padding: 80px 24px !important;
  text-align: center !important;
}
.question__inner {
  max-width: 680px !important;
  margin: 0 auto !important;
}
.question .section-label {
  margin-bottom: 32px !important;
}
.question__text {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-style: normal !important;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 20px !important;
}
.question__attr {
  color: var(--text-dim) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 28px !important;
}
.question__files {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 8px !important;
}
.file-tag {
  font-family: var(--font-mono) !important;
  border: 2px solid var(--border) !important;
  color: var(--text-secondary) !important;
  background: transparent !important;
  border-radius: 2px !important;
}
.file-tag::before {
  display: none !important;
}
.file-tag:hover {
  border-color: var(--text-primary) !important;
  color: var(--text-primary) !important;
  box-shadow: none !important;
  transform: none !important;
}
.file-tag--warm {
  border-color: var(--border) !important;
  color: var(--text-dim) !important;
}
.question__building {
  display: none !important;
}

/* Section headings */
.section-label,
.system__label,
.feat__label {
  color: var(--text-dim) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.08em !important;
}
.question h2,
.system h2,
.feat-section h2,
.provocation h2,
.cta h2 {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  -webkit-text-fill-color: initial !important;
  background: none !important;
  -webkit-background-clip: initial !important;
}
.question p,
.system p,
.feat-section p,
.provocation p,
.cta p {
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
  line-height: 1.7 !important;
}

/* ── Feature cards (feat__glass grid) ── */
.feat__glass {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 28px 24px !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.feat__glass:hover {
  background: var(--surface) !important;
  border-color: var(--border-dark) !important;
  box-shadow: 2px 2px 0 var(--border-dark) !important;
  transform: none !important;
}
.feat__icon {
  width: 36px !important;
  height: 36px !important;
  color: var(--text-primary) !important;
  opacity: 0.35 !important;
  margin-bottom: 16px !important;
}
.feat__id {
  color: var(--text-dim) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.55rem !important;
  opacity: 0.4 !important;
  letter-spacing: 0.08em !important;
}
.feat__name {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 6px !important;
}
.feat__glass:hover .feat__name {
  color: var(--text-primary) !important;
}
.feat__desc {
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  line-height: 1.7 !important;
}
.feat__edge {
  display: none !important;
}
.section-label {
  color: var(--text-dim) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.6rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

/* Generic card fallback (older class names) */
.feat-card,
.sys-card {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.feat-card:hover,
.sys-card:hover {
  border-color: var(--border-dark) !important;
  box-shadow: 2px 2px 0 var(--border-dark) !important;
  transform: none !important;
}
.feat-card__icon,
.sys-card__icon {
  color: var(--text-primary) !important;
  opacity: 0.6 !important;
}
.feat-card__title,
.sys-card__title {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
}
.feat-card__desc,
.sys-card__desc {
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
}

/* System architecture */
.sys-grid__line,
.sys__connector {
  stroke: var(--border) !important;
}

/* ── Provocation / $54k section ── */
.provocation {
  background: var(--surface) !important;
  border-top: 2px solid var(--border) !important;
  border-bottom: 2px solid var(--border) !important;
}
.provocation__rings {
  display: none !important;
}
.provocation__num {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
}
.provocation__dollar {
  color: var(--text-primary) !important;
  text-shadow: none !important;
}
.provocation__context {
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
}
.provocation__kicker {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
}
.provocation__kicker em {
  font-style: italic !important;
}
.provocation__drawing-label {
  color: var(--text-dim) !important;
  font-family: var(--font-mono) !important;
}
.provocation__side--left .provocation__drawing-label {
  color: var(--text-dim) !important;
}
.provocation__side--right .provocation__drawing-label {
  color: var(--text-dim) !important;
}
.provocation__drawing .prov-line--warm {
  stroke: var(--text-primary) !important;
  opacity: 0.15 !important;
}
.provocation__drawing .prov-line--cool {
  stroke: var(--text-primary) !important;
  opacity: 0.15 !important;
}
.provocation__drawing line,
.provocation__drawing rect,
.provocation__drawing path,
.provocation__drawing circle {
  stroke: var(--text-primary) !important;
  opacity: 0.1 !important;
}
.dollar-float {
  color: var(--border) !important;
  opacity: 0.15 !important;
}

/* ══════════════════════════════════════════
   AGENT SECTION (replaces old System Architecture)
   ══════════════════════════════════════════ */
.agent-section {
  background: var(--void);
  padding: 100px 0 80px;
  border-top: 2px solid var(--border);
}
.agent-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Agent header ── */
.agent-header {
  text-align: center;
  margin-bottom: 80px;
}
.agent-header__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.agent-header__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 20px;
}
.agent-header__sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Step flow ── */
.agent-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 80px;
}
.agent-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.agent-step--reverse {
  direction: rtl;
}
.agent-step--reverse > * {
  direction: ltr;
}
.agent-step__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.agent-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.agent-step__desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 400px;
}

/* Step visual */
.agent-step__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Mock UI card ── */
.agent-mockup {
  width: 100%;
  max-width: 380px;
  border: 2px solid var(--border-dark);
  border-radius: 6px;
  background: var(--void);
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--border-dark);
}
.agent-mockup__bar {
  display: flex;
  gap: 5px;
  padding: 10px 14px;
  background: var(--text-primary);
}
.agent-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.agent-mockup__dot:first-child { background: #ff5f57; }
.agent-mockup__dot:nth-child(2) { background: #febc2e; }
.agent-mockup__dot:nth-child(3) { background: #28c840; }

.agent-mockup__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
}

/* Chat messages */
.agent-mockup__msg {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.agent-mockup__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.agent-mockup__avatar--user {
  background: var(--border);
  color: var(--text-primary);
}
.agent-mockup__avatar--agent {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.agent-mockup__bubble {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 4px;
  max-width: 280px;
}
.agent-mockup__bubble--user {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.agent-mockup__bubble--agent {
  background: var(--void);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.agent-mockup__typing {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
}

/* File rows */
.agent-mockup__file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 4px 0;
  border-top: 1px solid var(--border);
}
.agent-mockup__file {
  font-size: 0.6rem;
  color: var(--text-secondary);
}
.agent-mockup__badge {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 2px;
}
.agent-mockup__badge--done {
  background: #16a34a;
  color: white;
}
.agent-mockup__badge--progress {
  background: var(--accent);
  color: var(--text-primary);
}

/* Check rows */
.agent-mockup__check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  padding: 3px 0;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}
.agent-mockup__check {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  flex-shrink: 0;
}
.agent-mockup__check--pass {
  background: #16a34a;
  color: white;
}
.agent-mockup__check--warn {
  background: var(--accent);
  color: var(--text-primary);
}

/* Report view */
.agent-mockup__body--report {
  padding: 0;
  gap: 0;
  min-height: 200px;
}
.agent-mockup__report-header {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: -0.01em;
  padding: 12px 16px;
  border-bottom: 2px solid var(--border-dark);
  color: var(--text-primary);
  background: var(--surface);
}
.agent-mockup__report-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.agent-mockup__report-row--highlight {
  background: rgba(212, 240, 0, 0.1);
  border-bottom: none;
}
.agent-mockup__report-val {
  font-weight: 700;
  color: var(--text-primary);
}
.agent-mockup__report-val--neg { color: #dc2626; }
.agent-mockup__report-val--pos { color: #16a34a; }
.agent-mockup__report-divider {
  height: 2px;
  background: var(--border-dark);
}
.agent-mockup__report-actions {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
}
.agent-mockup__report-btn {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 2px solid var(--border-dark);
  border-radius: 4px;
  background: var(--void);
  color: var(--text-primary);
}
.agent-mockup__report-btn--accent {
  background: var(--accent);
}

/* ── Why grid (minitap "Why?" inspired) ── */
.agent-why {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-top: 2px solid var(--border);
}
.agent-why__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 24px;
}
.agent-why__left .btn {
  display: inline-flex;
}
.agent-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.agent-why__cell {
  background: var(--void);
  padding: 24px 20px;
}
.agent-why__cell-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.agent-why__cell-desc {
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .agent-step {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px;
  }
  .agent-step--reverse {
    direction: ltr;
  }
  .agent-why {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .agent-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .agent-why__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Scroll-reveal for agent mockup children ── */
.agent-mockup__msg,
.agent-mockup__file-row,
.agent-mockup__check-row,
.agent-mockup__report-row,
.agent-mockup__report-header,
.agent-mockup__report-actions {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.agent-mockup.is-revealed .agent-mockup__msg,
.agent-mockup.is-revealed .agent-mockup__file-row,
.agent-mockup.is-revealed .agent-mockup__check-row,
.agent-mockup.is-revealed .agent-mockup__report-row,
.agent-mockup.is-revealed .agent-mockup__report-header,
.agent-mockup.is-revealed .agent-mockup__report-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger via nth-child */
.agent-mockup.is-revealed .agent-mockup__body > :nth-child(1),
.agent-mockup.is-revealed .agent-mockup__bubble > :nth-child(1) { transition-delay: 0.15s; }
.agent-mockup.is-revealed .agent-mockup__body > :nth-child(2),
.agent-mockup.is-revealed .agent-mockup__bubble > :nth-child(2) { transition-delay: 0.35s; }
.agent-mockup.is-revealed .agent-mockup__body > :nth-child(3),
.agent-mockup.is-revealed .agent-mockup__bubble > :nth-child(3) { transition-delay: 0.55s; }
.agent-mockup.is-revealed .agent-mockup__body > :nth-child(4),
.agent-mockup.is-revealed .agent-mockup__bubble > :nth-child(4) { transition-delay: 0.75s; }
.agent-mockup.is-revealed .agent-mockup__body > :nth-child(5),
.agent-mockup.is-revealed .agent-mockup__bubble > :nth-child(5) { transition-delay: 0.95s; }
.agent-mockup.is-revealed .agent-mockup__body > :nth-child(6),
.agent-mockup.is-revealed .agent-mockup__bubble > :nth-child(6) { transition-delay: 1.15s; }

/* Whole step card also slides in */
.agent-step {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.agent-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   TESTIMONIAL QUOTE
   ══════════════════════════════════════════ */
.testimonial {
  background: var(--text-primary) !important;
  padding: 80px 24px !important;
  border-top: 2px solid var(--text-primary) !important;
  border-bottom: 2px solid var(--text-primary) !important;
}
.testimonial__inner {
  max-width: 860px;
  margin: 0 auto;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--void);
  margin: 0 0 32px;
  font-style: normal;
}
.testimonial__attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial__name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--void);
  letter-spacing: 0.04em;
}
.testimonial__role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(250, 250, 245, 0.5);
  letter-spacing: 0.02em;
}

/* Hide old system classes if any remain */
.system { display: none !important; }

/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */
.cta {
  background: var(--text-primary) !important;
}
/* Base `.cta__title em` uses `color: var(--warm)`; we remapped --warm to ink black, so the
   subtitle was invisible on this dark band. Target `.cta__title` explicitly. */
.cta h2,
.cta__title {
  color: var(--void) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
}
.cta__title em {
  display: block !important;
  margin-top: 0.35em !important;
  font-style: italic !important;
  font-weight: 500 !important;
  color: var(--accent) !important;
  -webkit-text-fill-color: var(--accent) !important;
  text-shadow: none !important;
}
.cta p,
.cta__note {
  color: rgba(255,255,255,0.65) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.06em !important;
}
.cta__note a {
  color: var(--void) !important;
  border-bottom-color: rgba(255,255,255,0.35) !important;
}
.cta__note a:hover {
  color: var(--accent) !important;
  border-bottom-color: var(--accent) !important;
}
.cta .btn {
  background: var(--accent) !important;
  color: var(--text-primary) !important;
  border-color: var(--accent) !important;
}
.cta__form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  gap: 12px !important;
}
.cta__form:focus-within {
  border-color: transparent !important;
  box-shadow: none !important;
}
.cta input,
.cta .cta__input {
  background: rgba(255,255,255,0.12) !important;
  border: 2px solid rgba(255,255,255,0.25) !important;
  border-bottom: 2px solid rgba(255,255,255,0.25) !important;
  color: white !important;
  font-family: var(--font-mono) !important;
  font-size: 0.78rem !important;
  border-radius: 4px !important;
  padding: 14px 24px !important;
}
.cta input:focus,
.cta .cta__input:focus {
  border-color: var(--accent) !important;
  outline: none !important;
}
.cta input::placeholder {
  color: rgba(255,255,255,0.45) !important;
}
.cta__form .btn {
  border-left: none !important;
}
.cta__reticle {
  display: none !important;
}
.cta::before {
  display: none !important;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer,
.footer,
.foot {
  background: var(--void) !important;
  border-top: 2px solid var(--border) !important;
  color: var(--text-dim) !important;
  font-family: var(--font-body) !important;
}
.foot__brand {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: -0.02em !important;
  color: var(--text-primary) !important;
}
.foot__links a {
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
}
.foot__links a:hover {
  color: var(--text-primary) !important;
}
.foot__copy {
  color: var(--text-dim) !important;
  font-family: var(--font-mono) !important;
}
footer a,
.footer a {
  color: var(--text-secondary) !important;
}
footer a:hover,
.footer a:hover {
  color: var(--text-primary) !important;
}

/* ══════════════════════════════════════════
   MISC OVERRIDES
   ══════════════════════════════════════════ */

/* Remove gradient text effects */
[style*="background-clip: text"],
[style*="-webkit-background-clip: text"] {
  -webkit-text-fill-color: initial !important;
  background: none !important;
}

/* Glass panels become clean cards */
[class*="glass"] {
  background: var(--surface) !important;
  border: 2px solid var(--border) !important;
  border-radius: 6px !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
[class*="glass"]::before {
  display: none !important;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--text-primary); border: 1px solid var(--void); }

/* Links */
a {
  color: var(--text-primary);
}

/* Kill all ambient animations on light theme */
.neural-line,
.neural-node {
  opacity: 0.04 !important;
  animation: none !important;
}
.radar-sweep {
  animation: radarSweep 6s linear infinite !important;
  stroke: var(--text-dim) !important;
}
.hex-rotate,
.hex-rotate-reverse {
  animation: none !important;
  opacity: 0.03 !important;
}
.bar-anim {
  fill: var(--text-primary) !important;
  opacity: 0.08 !important;
}

/* Kill status dot glow */
.nav__status-dot,
.panel__status-dot {
  box-shadow: none !important;
  animation: none !important;
}

/* Mobile nav overlay */
.nav__mobile {
  background: var(--void) !important;
}
.nav__mobile-links a {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
  font-weight: 500 !important;
}
.nav__mobile-btn {
  font-family: var(--font-mono) !important;
  font-weight: 700 !important;
  border: 2px solid var(--border-dark) !important;
  color: var(--text-primary) !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}
.nav__mobile-btn--primary {
  background: var(--accent) !important;
  border-color: var(--border-dark) !important;
}
