﻿:root {
  --night: #06151f;
  --deep: #0a222b;
  --surface: #0e2932;
  --cyan: #27d5cf;
  --blue: #168aad;
  --sand: #e0ae62;
  --clay: #b95736;
  --amber: #f29d38;
  --green: #43d091;
  --coral: #ec6759;
  --cream: #f4efe5;
  --muted: #9bb1b8;
  --line: rgba(224, 174, 98, 0.2);
  --line-soft: rgba(255, 255, 255, 0.08);
  --page: 1280px;
  --gutter: clamp(24px, 4.5vw, 64px);
  --cut: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--night);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
a { color: inherit; }
.pattern {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background:
    radial-gradient(circle at 74% 15%, rgba(224,174,98,.11), transparent 27%),
    linear-gradient(30deg, rgba(39,213,207,.028) 12%, transparent 12.5%, transparent 87%, rgba(39,213,207,.028) 87.5%),
    linear-gradient(150deg, rgba(39,213,207,.028) 12%, transparent 12.5%, transparent 87%, rgba(39,213,207,.028) 87.5%);
  background-size: auto, 48px 84px, 48px 84px;
}

/* Header */
.site-header {
  position: relative;
  z-index: 20;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(6,21,31,.84);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; width: max-content; text-decoration: none; }
.brand img { width: 58px; height: 58px; object-fit: contain; display: block; }
.site-header nav { display: flex; align-items: center; gap: 30px; }
.site-header nav a {
  color: #a7b9bf;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-inline: 2px;
  transition: color .2s ease;
}
.site-header nav a:hover { color: var(--cream); }
.header-cta {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  background: var(--cream);
  color: #10191d;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  clip-path: var(--cut);
  transition: background .2s ease, transform .2s ease;
}
.header-cta:hover { background: #fffaf0; transform: translateY(-1px); }

/* Shared type */
.kicker {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sand);
  font: 750 11px/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.kicker span { flex: 0 0 19px; width: 19px; height: 1px; background: var(--sand); }

/* Hero */
.hero {
  width: min(100%, 1480px);
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: clamp(44px, 5vh, 68px) var(--gutter) 56px;
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(560px, 1.12fr);
  gap: clamp(28px, 3vw, 56px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 6; min-width: 0; }
h1 {
  margin: 22px 0 24px;
  max-width: 650px;
  font-size: clamp(56px, 5.2vw, 76px);
  line-height: .99;
  letter-spacing: -.048em;
  font-weight: 780;
  text-wrap: balance;
}
.hero-lead {
  max-width: 610px;
  margin: 0 0 26px;
  color: #adbec4;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.68;
}
.manager-line {
  max-width: 620px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 9px;
  color: #bcc9cd;
  font: 800 10px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.manager-line span:first-child { color: var(--sand); }
.manager-line span:last-child { color: var(--cyan); }
.manager-line i { width: 14px; height: 1px; background: rgba(39,213,207,.7); }

.agent-stage {
  position: relative;
  width: 100%;
  min-width: 0;
  height: min(720px, calc(100svh - 104px));
  min-height: 610px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.sun-disc {
  position: absolute;
  z-index: 0;
  width: min(76%, 590px);
  aspect-ratio: 1;
  border: 1px solid rgba(224,174,98,.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,174,98,.08), rgba(39,213,207,.025) 55%, transparent 72%);
}
.agent-shell {
  position: relative;
  z-index: 3;
  top: 22px;
  width: min(100%, 690px);
  aspect-ratio: 1;
  animation: float 6s ease-in-out infinite;
}
.agent-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 34px 48px rgba(0,0,0,.34));
}
.visor-ui {
  position: absolute;
  z-index: 5;
  left: 37.7%;
  top: 42%;
  width: 24.6%;
  height: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  text-shadow: 0 0 12px currentColor;
}
.visor-ui b { font: 850 clamp(18px, 1.8vw, 29px)/1 ui-monospace, Menlo, Consolas, monospace; }
.visor-ui span { margin-top: 5px; font: 800 9px/1.2 ui-monospace, Menlo, Consolas, monospace; letter-spacing: .11em; }
.scan-line { position: absolute; left: 16%; right: 16%; bottom: 14%; height: 2px; background: currentColor; opacity: .78; box-shadow: 0 0 8px currentColor; animation: scan 1.8s ease-in-out infinite; }
.scan-grid { position: absolute; inset: 17% 9%; border: 1px solid currentColor; opacity: .16; }
.scan-core { position: absolute; width: 7px; height: 7px; border: 1px solid currentColor; transform: rotate(45deg); left: 8%; top: 45%; }

.brain-intake {
  position: absolute;
  z-index: 8;
  top: 12px;
  left: 50%;
  width: min(74%, 430px);
  transform: translateX(-50%);
  text-align: center;
}
.brain-intake label {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font: 800 10px/1.4 ui-monospace, Menlo, Consolas, monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.control-row { display: flex; }
.brain-intake input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(39,213,207,.42);
  background: rgba(4,20,28,.72);
  color: var(--cream);
  padding: 0 16px;
  text-align: center;
  outline: none;
  font: 750 13px/1 ui-monospace, Menlo, Consolas, monospace;
  letter-spacing: .04em;
}
.brain-intake input:focus { border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan), 0 0 24px rgba(39,213,207,.1); }
.brain-intake p {
  display: inline-block;
  margin: 7px 0 0;
  padding: 3px 8px;
  color: #91a8af;
  background: rgba(6,21,31,.88);
  font: 650 11px/1.4 ui-monospace, Menlo, Consolas, monospace;
}
.intake-token { display: none; }

.body-console {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 66%;
  width: min(42%, 290px);
  min-height: 158px;
  transform: translateX(-50%);
  padding: 15px 16px 13px;
  border: 1px solid rgba(39,213,207,.28);
  background: linear-gradient(145deg, rgba(4,22,27,.96), rgba(10,38,46,.94));
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  box-shadow: 0 0 28px rgba(39,213,207,.1);
}
.console-top { display: flex; justify-content: space-between; gap: 10px; color: #93aab0; font: 750 9px/1.3 ui-monospace, Menlo, Consolas, monospace; letter-spacing: .09em; }
.console-top b { color: var(--green); }
.body-console h2 { margin: 10px 0 5px; font-size: 19px; line-height: 1.1; letter-spacing: -.02em; }
.body-console > p { min-height: 34px; margin: 0; color: #a8bbc0; font-size: 12px; line-height: 1.48; }
.console-metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 5px; margin-top: 10px; }
.console-metrics span { min-width: 0; padding: 6px 5px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.025); display: flex; flex-direction: column; gap: 2px; }
.console-metrics i { color: #8fa6ac; font: 650 8px/1.2 ui-monospace, Menlo, Consolas, monospace; }
.console-metrics b { color: #edf4f2; font: 800 9px/1.2 ui-monospace, Menlo, Consolas, monospace; overflow-wrap: anywhere; }
.progress-triangles { display: flex; gap: 6px; margin-top: 8px; }
.progress-triangles i { width: 8px; height: 7px; background: #35545c; clip-path: polygon(50% 0,100% 100%,0 100%); }
.progress-triangles i.active { background: var(--sand); filter: drop-shadow(0 0 5px var(--sand)); }

.agent-shell[data-state="reading"] .visor-ui,
.agent-shell[data-state="contract"] .visor-ui { color: var(--sand); }
.agent-shell[data-state="transaction"] .visor-ui { color: var(--blue); }
.agent-shell[data-state="fixing"] .visor-ui { color: var(--amber); }
.agent-shell[data-state="verified"] .visor-ui { color: var(--green); }
.agent-shell[data-state="escalating"] .visor-ui { color: var(--coral); }

/* Process strip */
.proof-strip {
  width: min(calc(100% - (var(--gutter) * 2)), 1280px);
  margin: 0 auto 104px;
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  border: 1px solid var(--line);
  background: rgba(7,24,32,.32);
}
.proof-strip p,
.proof-strip div { margin: 0; min-height: 82px; padding: 17px 18px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.proof-strip > :last-child { border-right: 0; }
.proof-strip p { color: var(--cream); font: 700 12px/1.5 ui-monospace, Menlo, Consolas, monospace; }
.proof-strip div { color: #b7c5c9; font: 750 10px/1.4 ui-monospace, Menlo, Consolas, monospace; letter-spacing: .07em; text-transform: uppercase; }
.proof-strip div span { margin-bottom: 7px; color: var(--cyan); font-size: 10px; }

/* Main sections */
.section { width: min(100%, var(--page)); margin: 0 auto; padding: 0 var(--gutter) 116px; }
.section-intro { max-width: 880px; margin-bottom: 38px; }
.section-intro h2,
.proof-copy h2,
.final-cta h2 {
  margin: 17px 0 16px;
  color: var(--cream);
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: 1.06;
  letter-spacing: -.038em;
  text-wrap: balance;
}
.section-intro > p:last-child,
.proof-copy > p,
.final-cta div > p:last-child { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.loop-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }
.loop-grid article {
  grid-column: span 2;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(16,43,52,.78), rgba(8,27,35,.56));
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.loop-grid article:nth-child(4) { grid-column: 2 / span 2; }
.loop-grid article:nth-child(5) { grid-column: 4 / span 2; }
.loop-grid article:hover { transform: translateY(-3px); border-color: rgba(39,213,207,.42); background: rgba(15,43,52,.82); }
.loop-grid article > span { width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 24px; border: 1px solid rgba(39,213,207,.44); color: var(--cyan); font: 800 10px/1 ui-monospace, Menlo, Consolas, monospace; }
.loop-grid small { color: var(--sand); font: 800 10px/1.4 ui-monospace, Menlo, Consolas, monospace; letter-spacing: .1em; }
.loop-grid h3 { margin: 12px 0 9px; color: var(--cream); font-size: 20px; line-height: 1.15; letter-spacing: -.015em; }
.loop-grid p { margin: 0; color: #96aeb5; font-size: 14px; line-height: 1.62; }

.proof { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: clamp(46px,7vw,94px); align-items: center; }
.receipt-card {
  position: relative;
  padding: 30px;
  color: #26363c;
  background: #eee3d1;
  clip-path: polygon(16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%,0 16px);
  transform: rotate(-1deg);
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
  font-family: ui-monospace, Menlo, Consolas, monospace;
}
.receipt-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 14px; border-bottom: 2px solid #2d464c; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.receipt-head b { color: #27865a; }
.receipt-id { padding: 13px 0 17px; color: #64757a; font-size: 10px; font-weight: 750; }
.receipt-card dl { margin: 0; }
.receipt-card dl div { display: flex; justify-content: space-between; gap: 24px; padding: 8px 0; border-bottom: 1px dashed rgba(38,54,60,.22); font-size: 11px; }
.receipt-card dt { color: #77888b; }
.receipt-card dd { margin: 0; font-weight: 900; }
.proof-copy ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.proof-copy li { min-height: 46px; padding: 12px 13px; border-left: 2px solid var(--sand); background: rgba(255,255,255,.028); color: #b5c4c8; font-size: 13px; }

/* Final CTA */
.final-cta {
  width: min(calc(100% - (var(--gutter) * 2)), 1280px);
  margin: 0 auto 110px;
  padding: 42px 44px;
  display: grid;
  grid-template-columns: 132px minmax(360px,1fr) minmax(320px,.82fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(125deg, rgba(224,174,98,.07), rgba(39,213,207,.035));
  clip-path: polygon(14px 0,100% 0,100% calc(100% - 14px),calc(100% - 14px) 100%,0 100%,0 14px);
}
.final-cta > img { width: 120px; height: 120px; object-fit: contain; }
.final-cta h2 { max-width: 600px; font-size: clamp(34px,3vw,46px); }
.access-form { min-width: 0; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; align-items: end; }
.access-form label { grid-column: 1 / -1; color: #d4dfdf; font: 750 11px/1.3 ui-monospace, Menlo, Consolas, monospace; letter-spacing: .09em; }
.access-form input[type="email"] { min-width: 0; height: 50px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.035); color: var(--cream); padding: 0 15px; outline: none; font-size: 14px; }
.access-form input[type="email"]:focus { border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan); }
.access-form button { height: 50px; border: 0; padding: 0 20px; background: var(--sand); color: #111a1d; cursor: pointer; font-size: 13px; font-weight: 850; clip-path: var(--cut); }
.access-form button:hover { background: #efbd72; }
.access-form button:disabled { opacity: .65; cursor: wait; }
.access-form > p { grid-column: 1 / -1; min-height: 18px; margin: 2px 0 0; font-size: 12px; }
.access-form > p[data-state="success"] { color: var(--green); }
.access-form > p[data-state="error"] { color: var(--coral); }
.hp-field { position: absolute !important; left: -9999px !important; }

footer {
  min-height: 78px;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #819ba3;
  font: 650 11px/1.4 ui-monospace, Menlo, Consolas, monospace;
  letter-spacing: .08em;
}
footer a { text-decoration: none; }
footer a { min-height: 44px; display: inline-flex; align-items: center; }
footer a:hover { color: var(--cream); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes scan { 0%,100% { transform: translateY(-4px); opacity: .4; } 50% { transform: translateY(4px); opacity: 1; } }

@media (max-width: 1100px) {
  .site-header { padding-inline: 28px; }
  .hero { grid-template-columns: minmax(350px,.9fr) minmax(450px,1.1fr); padding-inline: 34px; }
  h1 { font-size: clamp(50px,6vw,66px); }
  .agent-stage { min-height: 560px; height: 640px; }
  .body-console { width: 46%; }
  .proof-strip { grid-template-columns: 1.4fr repeat(3,1fr); }
  .proof-strip div:nth-last-child(-n+2) { display: none; }
  .loop-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .loop-grid article,
  .loop-grid article:nth-child(4),
  .loop-grid article:nth-child(5) { grid-column: auto; }
  .loop-grid article:last-child { grid-column: 1 / -1; min-height: 190px; }
  .final-cta { grid-template-columns: 100px minmax(0,1fr); }
  .final-cta > img { width: 92px; height: 92px; }
  .access-form { grid-column: 2; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 20px; padding: 50px 24px 38px; }
  .hero-copy { max-width: 690px; }
  h1 { max-width: 680px; font-size: clamp(46px,8.2vw,62px); }
  .agent-stage { width: min(100%,650px); height: 610px; min-height: 0; margin: 0 auto; }
  .brain-intake { top: 4px; }
  .proof-strip { width: calc(100% - 48px); margin-bottom: 86px; grid-template-columns: 1.25fr repeat(3,1fr); }
  .section { padding-inline: 24px; padding-bottom: 94px; }
  .proof { grid-template-columns: 1fr; }
  .receipt-card { max-width: 620px; }
  .final-cta { width: calc(100% - 48px); margin-bottom: 86px; padding: 34px; grid-template-columns: 84px minmax(0,1fr); gap: 24px; }
  .final-cta > img { width: 80px; height: 80px; }
}

@media (max-width: 650px) {
  :root { --gutter: 20px; }
  .site-header { height: 68px; padding-inline: 18px; }
  .brand img { width: 52px; height: 52px; }
  .header-cta { min-height: 42px; padding-inline: 15px; font-size: 11px; }
  .hero { padding: 42px 18px 34px; overflow: hidden; }
  .kicker { font-size: 10px; letter-spacing: .12em; }
  h1 { margin: 20px 0 22px; max-width: 100%; font-size: clamp(38px,10.5vw,43px); line-height: 1.02; letter-spacing: -.042em; }
  .hero-lead { margin-bottom: 23px; font-size: 16px; line-height: 1.6; }
  .manager-line { font-size: 9px; line-height: 1.6; gap: 7px; }
  .manager-line i { width: 10px; }
  .agent-stage { width: 100%; height: 500px; margin-top: 8px; overflow: visible; }
  .sun-disc { width: min(100%,390px); }
  .agent-shell { width: min(100%,390px); }
  .brain-intake { top: 0; width: min(86%,340px); }
  .brain-intake label { font-size: 9px; }
  .brain-intake input { height: 44px; font-size: 12px; }
  .brain-intake p { display: none; }
  .body-console { top: 67%; width: 54%; min-height: 124px; padding: 11px 12px 10px; }
  .console-top { font-size: 8px; }
  .body-console h2 { margin-top: 7px; font-size: 15px; }
  .body-console > p { display: none; }
  .console-metrics { margin-top: 8px; }
  .console-metrics i { font-size: 7px; }
  .console-metrics b { font-size: 8px; }
  .progress-triangles { margin-top: 7px; }

  .proof-strip { width: calc(100% - 28px); margin-bottom: 78px; grid-template-columns: 1fr 1fr; }
  .proof-strip p { grid-column: 1 / -1; min-height: 76px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div { min-height: 64px; padding: 13px 15px; border-bottom: 1px solid var(--line); font-size: 9px; }
  .proof-strip div:nth-last-child(-n+2) { display: flex; }
  .proof-strip div:nth-child(odd) { border-right: 0; }
  .proof-strip div:last-child { grid-column: 1 / -1; border-bottom: 0; }

  .section { padding-inline: 20px; padding-bottom: 82px; }
  .section-intro { margin-bottom: 28px; }
  .section-intro h2,
  .proof-copy h2,
  .final-cta h2 { margin-top: 15px; font-size: 32px; line-height: 1.08; letter-spacing: -.032em; }
  .section-intro > p:last-child,
  .proof-copy > p,
  .final-cta div > p:last-child { font-size: 15px; line-height: 1.68; }
  .loop-grid { grid-template-columns: 1fr; gap: 12px; }
  .loop-grid article,
  .loop-grid article:last-child { grid-column: auto; min-height: 0; padding: 20px; }
  .loop-grid article > span { margin-bottom: 18px; }
  .loop-grid h3 { font-size: 19px; }
  .loop-grid p { font-size: 14px; }
  .proof { gap: 48px; }
  .receipt-card { padding: 22px 20px; transform: rotate(-.5deg); }
  .receipt-card dl div { font-size: 10px; }
  .proof-copy ul { grid-template-columns: 1fr; }

  .final-cta { width: calc(100% - 32px); margin-bottom: 70px; padding: 28px 24px; display: flex; flex-direction: column; align-items: stretch; gap: 22px; }
  .final-cta > img { width: 76px; height: 76px; align-self: flex-start; }
  .final-cta h2 { max-width: 330px; }
  .access-form { width: 100%; display: grid; grid-template-columns: 1fr; gap: 8px; }
  .access-form label,
  .access-form input[type="email"],
  .access-form button,
  .access-form > p { grid-column: 1; width: 100%; }
  .access-form input[type="email"],
  .access-form button { height: 50px; }
  footer { min-height: 132px; padding: 24px 20px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; font-size: 10px; }
}

@media (max-width: 390px) {
  h1 { font-size: 38px; }
  .agent-stage { height: 470px; }
  .body-console { width: 58%; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip p,
  .proof-strip div,
  .proof-strip div:nth-child(odd) { grid-column: 1; border-right: 0; }
}

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Final face-contained operator status: no external console panel. */
.agent-shell .body-console {
  left: 34.4% !important;
  top: 43.1% !important;
  width: 31.2% !important;
  height: 13.2% !important;
  min-height: 0 !important;
  padding: 0 !important;
  transform: none !important;
  display: grid !important;
  place-items: center !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  clip-path: none !important;
  pointer-events: none !important;
  z-index: 9 !important;
}
.agent-shell .console-top,
.agent-shell .body-console > p,
.agent-shell .console-metrics,
.agent-shell .progress-triangles {
  display: none !important;
}
.agent-shell .body-console h2 {
  margin: 0 !important;
  max-width: 100% !important;
  padding: 4px 10px !important;
  border: 1px solid rgba(39,213,207,.34) !important;
  background: rgba(3,17,22,.68) !important;
  color: #eafffb !important;
  border-radius: 2px !important;
  font: 950 clamp(16px, 1.65vw, 23px)/1 ui-monospace, Menlo, Consolas, monospace !important;
  letter-spacing: .055em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  text-shadow: 0 0 10px rgba(39,213,207,.95), 0 0 22px rgba(39,213,207,.55) !important;
}
.agent-shell .body-console h2::before,
.agent-shell .body-console h2::after {
  content: "";
  display: inline-block;
  width: .48em;
  height: .48em;
  margin: 0 .38em;
  border: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: .7;
  vertical-align: .08em;
}
.agent-shell .visor-ui { z-index: 6 !important; }
.agent-shell .scan-line { bottom: 9% !important; opacity: .56 !important; z-index: 1 !important; }
.agent-shell .scan-grid { opacity: .12 !important; }
.agent-shell .scan-core { opacity: .28 !important; }
@media (max-width: 1100px) {
  .agent-shell .body-console { left: 34.2% !important; top: 42.9% !important; width: 31.8% !important; }
  .agent-shell .body-console h2 { font-size: 18px !important; }
}
@media (max-width: 650px) {
  .agent-shell .body-console { left: 33.2% !important; top: 42.6% !important; width: 33.8% !important; height: 13.8% !important; }
  .agent-shell .body-console h2 { font-size: 13px !important; padding: 3px 7px !important; letter-spacing: .04em !important; }
  .agent-shell .body-console h2::before,
  .agent-shell .body-console h2::after { margin: 0 .28em; }
}
@media (max-width: 390px) {
  .agent-shell .body-console h2 { font-size: 12px !important; }
}
