:root {
  color-scheme: dark;
  --bg: #050914;
  --bg-2: #0a1220;
  --bg-3: #0d1728;
  --surface: rgba(255,255,255,.06);
  --surface-2: rgba(255,255,255,.09);
  --surface-3: rgba(255,255,255,.12);
  --line: rgba(255,255,255,.12);
  --line-2: rgba(255,255,255,.2);
  --text: #f5f8ff;
  --muted: #9cabbe;
  --muted-2: #75859b;
  --cyan: #55d8ff;
  --blue: #6f8cff;
  --violet: #8b6cff;
  --green: #50e3a4;
  --yellow: #ffbf5a;
  --red: #ff4d67;
  --orange: #ff8b51;
  --shadow: 0 28px 90px rgba(0,0,0,.42);
  --shadow-soft: 0 18px 60px rgba(0,0,0,.24);
  --radius: 26px;
  --radius-lg: 38px;
  --max: 1180px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 16% -10%, rgba(85,216,255,.18), transparent 34rem),
    radial-gradient(circle at 84% 0%, rgba(111,140,255,.16), transparent 34rem),
    linear-gradient(180deg, var(--bg), #04070d 52%, #03050a);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: -.022em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .26;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 74%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 0 42%, rgba(0,0,0,.18));
}

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

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  line-height: .96;
  letter-spacing: -.065em;
  text-wrap: balance;
}

details summary {
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 84px 0;
}

.section.compact {
  padding-top: 30px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2.28rem, 4.5vw, 4.15rem);
  line-height: .98;
  letter-spacing: -.073em;
  text-wrap: balance;
}

.label {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 880;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lead {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.064), rgba(255,255,255,.026));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.055);
  font-size: .92rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(85,216,255,.42);
  background: rgba(255,255,255,.085);
  box-shadow: 0 14px 38px rgba(0,0,0,.22);
  outline: none;
}

.button.primary {
  border-color: rgba(85,216,255,.46);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #031019;
  box-shadow: 0 18px 48px rgba(85,216,255,.18);
}

.button.danger {
  border-color: rgba(255,77,103,.46);
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #17070b;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #d9f6ff;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.code {
  padding: 16px;
  border: 1px solid rgba(85,216,255,.2);
  border-radius: 18px;
  background: rgba(0,0,0,.34);
  color: #d9f6ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .85rem;
  line-height: 1.55;
  overflow-x: auto;
  white-space: pre-wrap;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(5, 9, 20, .82);
  backdrop-filter: blur(18px);
}

.nav {
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: -.045em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85,216,255,.35);
  border-radius: 14px;
  color: var(--cyan);
  background:
    linear-gradient(145deg, rgba(85,216,255,.18), rgba(111,140,255,.12)),
    rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 12px 36px rgba(85,216,255,.10);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.nav-links a {
  color: var(--muted);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 720;
  transition: background .18s var(--ease), color .18s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,.07);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: var(--text);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  left: 20px;
  right: 20px;
  top: 84px;
  z-index: 50;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(5,9,20,.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 740;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,.07);
  color: var(--text);
}

/* Hero and marketing */

.hero {
  padding: 88px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .84fr);
  gap: 46px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 32px;
  color: #bdc9d9;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.hero-copy strong {
  color: var(--text);
  font-weight: 820;
}

.hero-actions,
.chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.chips {
  gap: 10px;
  margin-top: 30px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(255,255,255,.035);
  font-size: .88rem;
  font-weight: 680;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255,77,103,.28);
  border-radius: 999px;
  color: #ffd0d8;
  background: rgba(255,77,103,.075);
  font-size: .86rem;
  font-weight: 820;
}

.pulse,
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(80,227,164,.7);
  animation: pulse 1.8s infinite;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255,77,103,.75);
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(255,77,103,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,103,0); }
}

/* Cards, tables, reports */

.metric {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 17px;
  background: rgba(255,255,255,.035);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -.065em;
}

.metric span {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.35;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.report-preview {
  padding: 24px;
}

.report-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.report-header h3 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  letter-spacing: -.05em;
}

.report-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: .92rem;
}

.report-score {
  min-width: 104px;
  border: 1px solid rgba(255,77,103,.36);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,77,103,.08);
  text-align: center;
}

.report-score strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -.07em;
}

.report-score span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.table {
  display: grid;
  gap: 8px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,.14);
  color: #d9e5f4;
  font-size: .88rem;
}

.table-row.header {
  color: var(--muted);
  background: transparent;
  border-color: transparent;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.table-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.action-pill {
  display: inline-flex;
  width: fit-content;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(85,216,255,.25);
  background: rgba(85,216,255,.07);
  color: #d9f6ff;
  font-size: .72rem;
  font-weight: 850;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 880;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.badge.critical {
  color: #ffd4dc;
  border-color: rgba(255,77,103,.42);
  background: rgba(255,77,103,.09);
}

.badge.high {
  color: #ffe7c4;
  border-color: rgba(255,191,90,.36);
  background: rgba(255,191,90,.085);
}

.badge.medium {
  color: #dff5ff;
  border-color: rgba(85,216,255,.3);
  background: rgba(85,216,255,.075);
}

/* Domain profile / evidence */

.domain-profile {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.025);
  overflow: hidden;
}

.domain-profile-summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--cyan);
  font-weight: 900;
  user-select: none;
}

.domain-profile-body {
  display: grid;
  gap: 18px;
  padding: 0 18px 18px;
}

.domain-profile-section {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(0,0,0,.16);
}

.domain-profile-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  min-width: 0;
}

.domain-profile-section-head span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #031019;
  background: var(--cyan);
  font-size: .78rem;
  font-weight: 950;
}

.domain-profile-section-head h4 {
  min-width: 0;
  margin: 0;
  font-size: 1rem;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}

.domain-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.domain-profile-wide {
  grid-column: 1 / -1;
}

.domain-profile-grid > div {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: rgba(255,255,255,.028);
}

.domain-profile-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.domain-profile-grid strong {
  display: block;
  min-width: 0;
  color: var(--text);
  font-size: .9rem;
  line-height: 1.45;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.domain-profile-grid .mono,
.domain-profile-list .mono {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.domain-profile-list {
  display: grid;
  gap: 0;
  margin-top: 16px;
  min-width: 0;
}

.domain-profile-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 230px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}

.domain-profile-list > div:first-child {
  border-top: 0;
}

.domain-profile-list strong,
.domain-profile-list span {
  display: block;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.domain-profile-list strong {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.25;
}

.domain-profile-list span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.domain-profile-list br {
  display: block;
  content: "";
  margin-bottom: 3px;
}

.domain-profile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.domain-profile-notes {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: rgba(255,255,255,.028);
  color: var(--muted);
  line-height: 1.6;
}

.domain-profile-notes strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.domain-profile-notes p {
  margin-bottom: 0;
}

.domain-profile-notes.muted {
  color: var(--muted-2);
}

.domain-profile-list > div.network-evidence-row,
.evidence-drawer .domain-profile-list > div.network-evidence-row {
  grid-template-columns: minmax(120px, 170px) minmax(0, 1fr);
  column-gap: 22px;
}

.network-evidence-row strong,
.network-evidence-row span,
.network-evidence-primary {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.network-evidence-row strong {
  line-height: 1.25;
}

.network-evidence-row span {
  line-height: 1.5;
}

.network-evidence-primary {
  display: inline;
  color: var(--text);
  font-weight: 850;
}

.network-evidence-muted {
  color: var(--muted);
}

/* Findings */

.finding-card {
  padding: 24px;
}

.finding-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.finding-domain {
  margin: 0;
}

.finding-summary-text {
  margin-bottom: 10px;
}

.finding-pill-row {
  margin-top: 0;
}

.finding-recommendation {
  margin-top: 12px;
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.finding-details {
  margin-top: 8px;
}

.finding-details-summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--cyan);
  user-select: none;
}

.finding-details-body {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.finding-evidence-block {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
}

.finding-evidence-block h4 {
  margin: 0 0 14px;
  font-size: .98rem;
  letter-spacing: -.03em;
}

.finding-evidence-list {
  display: grid;
  gap: 10px;
}

.finding-evidence-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.finding-evidence-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.finding-evidence-list strong {
  color: var(--text);
}

.finding-evidence-list span {
  color: var(--muted);
  line-height: 1.5;
  word-break: normal;
  overflow-wrap: anywhere;
}

.finding-empty {
  margin: 0;
  color: var(--muted);
}

.finding-screenshot {
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
}

.finding-evidence-snapshot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
}

.finding-snapshot-copy {
  min-width: 0;
}

.finding-snapshot-copy h4 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: -.03em;
}

.finding-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.finding-snapshot-grid > div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(0,0,0,.14);
}

.finding-snapshot-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.finding-snapshot-grid strong {
  display: block;
  min-width: 0;
  color: var(--text);
  font-size: .92rem;
  line-height: 1.45;
  font-weight: 750;
  word-break: normal;
  overflow-wrap: anywhere;
  white-space: normal;
  hyphens: auto;
}

.finding-thumbnail-link,
.finding-thumbnail-placeholder {
  width: 100%;
  min-height: 260px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.22);
}

.finding-thumbnail-link {
  display: block;
}

.finding-thumbnail {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.finding-thumbnail-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
}

/* Workflow */

.finding-workflow {
  margin-top: 16px;
  padding: 18px;
}

.finding-workflow-head h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.finding-workflow-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.finding-workflow-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.workflow-select,
.workflow-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,.20);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

.workflow-textarea {
  resize: vertical;
  min-height: 110px;
}

.workflow-select:focus,
.workflow-textarea:focus {
  border-color: rgba(85,216,255,.44);
  box-shadow: 0 0 0 4px rgba(85,216,255,.08);
}

.finding-workflow-actions {
  display: flex;
  justify-content: flex-start;
}

.finding-notes {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.finding-notes p {
  margin: 8px 0 0;
  color: var(--muted);
}

.workflow-overview-card {
  margin-top: 28px;
  padding: 28px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.quick-actions .button_to,
.quick-actions form,
.quick-action-form,
.inline-action-form {
  margin: 0;
}

.inline-action-form {
  display: inline-flex;
}

.workflow-editor-details {
  margin-top: 16px;
}

.workflow-action-button {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
  color: var(--text);
}

.workflow-action-button:hover,
.workflow-action-button:focus-visible {
  border-color: rgba(85,216,255,.42);
  background: rgba(255,255,255,.085);
}

.workflow-action-button.is-active {
  border-color: rgba(85,216,255,.5);
  background: rgba(85,216,255,.14);
  color: #dff7ff;
  box-shadow: 0 0 0 4px rgba(85,216,255,.08);
}

.workflow-action-button.is-high-impact-active {
  border-color: rgba(255,77,103,.52);
  background: rgba(255,77,103,.14);
  color: #ffd7de;
  box-shadow: 0 0 0 4px rgba(255,77,103,.08);
}

/* Executive report */

.executive-summary {
  padding: 28px;
}

.executive-summary-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
}

.executive-summary-title {
  margin: 0 0 12px;
  font-size: 1.7rem;
  letter-spacing: -.05em;
}

.executive-summary-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.executive-actions {
  margin-top: 18px;
  padding: 18px;
}

.executive-actions h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.executive-actions-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.executive-score-card {
  border: 1px solid rgba(255,77,103,.32);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,77,103,.08);
  text-align: center;
}

.executive-score-card strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -.08em;
  margin-bottom: 8px;
}

.executive-score-card span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.executive-score-label {
  margin-top: 14px;
  font-weight: 800;
  font-size: 1rem;
}

.executive-metrics {
  grid-template-columns: repeat(4, 1fr);
}

.summary-stat {
  min-height: 112px;
}

.report-toolbar {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.report-page-title {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -.06em;
}

.report-toolbar-copy {
  margin: 0;
  color: var(--muted);
}

.report-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.report-metadata-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.report-metadata-card {
  padding: 18px;
}

.report-metadata-card span {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.report-metadata-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

/* Forms and misc components */

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 760;
}

.field input {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,.20);
  color: var(--text);
  padding: 0 13px;
  outline: none;
}

.field input:focus,
.domain-input-row input:focus {
  border-color: rgba(85,216,255,.46);
  box-shadow: 0 0 0 4px rgba(85,216,255,.08);
}

.modal-form {
  display: grid;
  gap: 12px;
}

.flash-wrap {
  position: relative;
  z-index: 200;
}

.flash {
  margin: 14px auto 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.flash.notice {
  border-color: rgba(80,227,164,.4);
  background: rgba(80,227,164,.08);
}

.flash.alert {
  border-color: rgba(255,77,103,.4);
  background: rgba(255,77,103,.08);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.tag-remove-button {
  margin-left: 6px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 900;
}

.tag-remove-button:hover,
.tag-remove-button:focus-visible {
  color: var(--red);
  outline: none;
}

.danger-action {
  border-color: rgba(255,77,103,.38);
  background: rgba(255,77,103,.08);
  color: #ffd4dc;
}

.danger-action:hover,
.danger-action:focus-visible {
  border-color: rgba(255,77,103,.58);
  background: rgba(255,77,103,.14);
}

/* Scan panel */

.scan-panel {
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 0%, rgba(255,77,103,.12), transparent 18rem),
    radial-gradient(circle at 94% 10%, rgba(85,216,255,.12), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
}

.window-dots span:nth-child(2) {
  background: var(--yellow);
}

.window-dots span:nth-child(3) {
  background: var(--green);
}

.panel-label {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 880;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.domain-input-card {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.domain-input-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 760;
}

.domain-input-row {
  display: flex;
  gap: 10px;
}

.domain-input-row input {
  min-width: 0;
  flex: 1;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,.2);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.risk-row {
  display: grid;
  grid-template-columns: 138px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px;
}

.risk-ring {
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--bg-2) 0 56%, transparent 57%),
    conic-gradient(var(--red) var(--risk, 76%), rgba(255,255,255,.09) 0);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  transition: background .35s var(--ease);
}

.risk-ring strong {
  font-size: 2.1rem;
  letter-spacing: -.075em;
}

.risk-copy h2 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  letter-spacing: -.04em;
}

.risk-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

.domain-list {
  display: grid;
  gap: 10px;
  padding: 0 20px 20px;
}

.domain-finding {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}

.domain-finding:hover {
  transform: translateY(-1px);
  border-color: rgba(85,216,255,.28);
  background: rgba(255,255,255,.052);
}

.finding-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85,216,255,.18);
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(85,216,255,.075);
}

.finding-title {
  margin: 0 0 3px;
  font-size: .94rem;
  font-weight: 820;
}

.finding-meta {
  margin: 0;
  color: var(--muted-2);
  font-size: .78rem;
}

/* Feature, pricing, FAQ, footer */

.feature-card {
  min-height: 284px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(85,216,255,.28);
  background: linear-gradient(180deg, rgba(85,216,255,.085), rgba(255,255,255,.026));
}

.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(85,216,255,.18);
  border-radius: 17px;
  color: var(--cyan);
  background: rgba(85,216,255,.075);
}

.icon-box svg {
  width: 23px;
  height: 23px;
}

.feature-card h3,
.step-card h3,
.price-card h3,
.report-card h3 {
  margin-bottom: 9px;
  font-size: 1.16rem;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.feature-card p,
.step-card p,
.price-card p,
.report-card p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.5;
}

.mini-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: #c7d3e3;
  font-size: .88rem;
  line-height: 1.35;
}

.mini-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}

.tick {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 999px;
  color: #04150e;
  background: var(--green);
  font-size: .7rem;
  font-weight: 900;
}

.workflow-copy {
  padding: 30px;
}

.workflow-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.workflow-copy p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.65;
}

.danger-box {
  padding: 14px 15px;
  border: 1px solid rgba(255,77,103,.3);
  border-radius: 18px;
  color: #ffd2da;
  background: rgba(255,77,103,.075);
  font-weight: 720;
  line-height: 1.5;
}

.workflow {
  padding: 22px;
}

.workflow-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-row:last-child {
  border-bottom: 0;
}

.workflow-time {
  color: var(--cyan);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.workflow-row strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.workflow-row span {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.5;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  font-weight: 800;
  cursor: pointer;
  transition: .18s var(--ease);
}

.tab.active {
  border-color: transparent;
  background: var(--cyan);
  color: #031018;
}

.price-card {
  padding: 23px;
}

.price-card.featured {
  border-color: rgba(85,216,255,.38);
  background:
    radial-gradient(circle at 25% 0%, rgba(85,216,255,.16), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.074), rgba(255,255,255,.03));
}

.plan-pill {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.price strong {
  font-size: 2.15rem;
  letter-spacing: -.075em;
}

.price span {
  color: var(--muted-2);
  font-size: .88rem;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-weight: 840;
}

.faq-panel {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.open .faq-panel {
  display: block;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 42px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 15% 0%, rgba(85,216,255,.17), transparent 20rem),
    radial-gradient(circle at 85% 20%, rgba(255,77,103,.13), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.032));
  box-shadow: var(--shadow);
}

.cta h2 {
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.cta p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted-2);
  font-size: .9rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* Live scan */

.live-scan-status {
  padding: 22px;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.live-scan-status h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.live-scan-status p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.live-scan-status-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(80px, 1fr));
  gap: 10px;
}

.live-scan-status-grid div {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(0,0,0,.14);
  text-align: center;
}

.live-scan-status-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.live-scan-status-grid strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
}

.live-update-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 20px 0 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.live-update-controls span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.live-progress {
  position: relative;
  width: 100%;
  height: 9px;
  margin-top: 16px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}

.live-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  transition: width .35s var(--ease);
}

.live-progress-label {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 760;
}

/* Modal / drawer */

.modal-open,
.modal-open body {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
}

.evidence-drawer {
  width: min(980px, calc(100vw - 28px));
  height: calc(100vh - 28px);
  margin: 14px;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  animation: drawer-in .22s var(--ease);
}

@keyframes drawer-in {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.evidence-drawer-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(85,216,255,.12), transparent 18rem),
    rgba(255,255,255,.035);
}

.evidence-drawer-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -.065em;
  overflow-wrap: anywhere;
}

.modal-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  border-color: rgba(85,216,255,.42);
  background: rgba(255,255,255,.1);
}

.evidence-drawer-body {
  overflow-y: auto;
  padding: 22px;
}

.evidence-drawer .domain-profile {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.evidence-drawer .domain-profile-summary {
  display: none;
}

.evidence-drawer .domain-profile-body {
  padding: 0;
  display: grid;
  gap: 18px;
}

.evidence-drawer .domain-profile-section {
  min-width: 0;
  margin-bottom: 0;
}

.evidence-drawer .domain-profile-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.evidence-drawer .domain-profile-grid > div {
  min-width: 0;
  min-height: 104px;
}

.evidence-drawer .domain-profile-grid strong {
  font-size: .95rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.evidence-drawer .domain-profile-list {
  min-width: 0;
  margin-top: 16px;
}

.evidence-drawer .domain-profile-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
  padding: 14px 0;
}

.evidence-drawer .domain-profile-list strong,
.evidence-drawer .domain-profile-list span {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.evidence-drawer .domain-profile-list strong {
  font-size: .9rem;
  line-height: 1.25;
}

.evidence-drawer .domain-profile-list span {
  font-size: .92rem;
  line-height: 1.45;
}

.finding-profile-action {
  margin-top: 14px;
}

.evidence-profile-button {
  width: 100%;
  border-color: rgba(85,216,255,.32);
  background: rgba(85,216,255,.075);
  color: #d9f6ff;
}

/* Scan request operational console */
.gp-report-page {
  --gp-bg: #0a0b0d;
  --gp-bg-1: #0f1115;
  --gp-bg-2: #14171c;
  --gp-bg-3: #1a1e25;
  --gp-hover: #1d222a;
  --gp-line: #20252e;
  --gp-line-2: #2a3038;
  --gp-text: #e6e8eb;
  --gp-text-2: #aab1bb;
  --gp-muted: #6b7280;
  --gp-muted-2: #4a5260;
  --gp-cyan: #4cc4ff;
  --gp-green: #4ade80;
  --gp-yellow: #fbbf24;
  --gp-orange: #fb923c;
  --gp-red: #f87171;
  --gp-magenta: #c084fc;
  color: var(--gp-text);
  background: var(--gp-bg);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  min-height: calc(100vh - 76px);
  position: relative;
  z-index: 2;
}

.gp-report-page *,
.gp-report-page *::before,
.gp-report-page *::after {
  box-sizing: border-box;
}

.gp-report-page button,
.gp-report-page input {
  font: inherit;
}

.gp-report-page button {
  color: inherit;
}

.gp-report-page .mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: -0.02em;
}

.gp-report-shell {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: calc(100vh - 76px);
}

.gp-report-sidebar {
  position: sticky;
  top: 76px;
  align-self: start;
  height: calc(100vh - 76px);
  overflow-y: auto;
  border-right: 1px solid var(--gp-line);
  background: var(--gp-bg-1);
  padding: 12px 8px;
}

.gp-report-nav-section {
  margin-bottom: 16px;
}

.gp-report-nav-label {
  color: var(--gp-muted-2);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.gp-report-nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1px 0;
  padding: 6px 10px;
  border: 0;
  border-radius: 6px;
  color: var(--gp-text-2);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background .12s ease, color .12s ease;
}

.gp-report-nav-item:hover,
.gp-report-nav-item:focus-visible {
  background: var(--gp-bg-2);
  color: var(--gp-text);
  outline: none;
}

.gp-report-nav-item.active,
.gp-report-nav-item[aria-selected="true"] {
  background: var(--gp-bg-3);
  color: var(--gp-text);
  box-shadow: inset 2px 0 0 var(--gp-cyan);
}

.gp-report-nav-item strong {
  margin-left: auto;
  padding: 1px 6px;
  border-radius: 999px;
  color: var(--gp-muted);
  background: var(--gp-bg-3);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10.5px;
  font-weight: 600;
}

.gp-report-sidebar-card {
  margin: 12px 4px 0;
  padding: 12px;
  border: 1px solid var(--gp-line);
  border-radius: 8px;
  background: var(--gp-bg-2);
}

.gp-report-sidebar-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--gp-muted);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.gp-report-sidebar-card strong {
  display: block;
  margin-bottom: 6px;
}

.gp-report-sidebar-card p {
  margin-bottom: 10px;
  color: var(--gp-muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.gp-report-main {
  min-width: 0;
  overflow-x: hidden;
  background: var(--gp-bg);
}

.gp-report-head {
  border-bottom: 1px solid var(--gp-line);
  background: var(--gp-bg-1);
  padding: 18px 24px 0;
}

.gp-report-crumbs,
.gp-report-subline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--gp-muted);
  font-size: 12px;
}

.gp-report-crumbs {
  margin-bottom: 12px;
}

.gp-report-crumbs a:hover {
  color: var(--gp-text);
}

.gp-report-crumbs strong,
.gp-report-subline strong {
  color: var(--gp-text-2);
  font-weight: 600;
}

.gp-report-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.gp-report-title-block {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.gp-report-favicon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  font-size: 16px;
  font-weight: 800;
}

.gp-report-domain {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 3px;
  color: var(--gp-text);
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gp-report-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.gp-report-actions.compact {
  gap: 6px;
}

.gp-report-btn,
.gp-report-page .button_to .gp-report-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid var(--gp-line-2);
  border-radius: 6px;
  color: var(--gp-text);
  background: var(--gp-bg-2);
  box-shadow: none;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .12s ease, border-color .12s ease, color .12s ease;
}

.gp-report-btn:hover,
.gp-report-btn:focus-visible {
  transform: none;
  border-color: #353c47;
  background: var(--gp-bg-3);
  box-shadow: none;
  outline: none;
}

.gp-report-btn.primary {
  border-color: var(--gp-cyan);
  background: var(--gp-cyan);
  color: #071014;
}

.gp-report-btn.primary:hover {
  border-color: #6cd2ff;
  background: #6cd2ff;
}

.gp-report-btn.ghost {
  border-color: var(--gp-line);
  background: transparent;
}

.gp-report-btn.danger {
  border-color: rgba(248,113,113,.28);
  color: var(--gp-red);
  background: transparent;
}

.gp-report-kpi-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--gp-line);
  margin-top: 14px;
}

.gp-report-kpi {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid var(--gp-line);
}

.gp-report-kpi:last-child {
  border-right: 0;
}

.gp-report-kpi span:first-child {
  display: block;
  margin-bottom: 6px;
  color: var(--gp-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gp-report-kpi strong {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--gp-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.gp-report-kpi strong em {
  color: var(--gp-text-2);
  font-style: normal;
  font-weight: 400;
}

.gp-report-kpi small {
  display: block;
  margin-top: 6px;
  color: var(--gp-muted);
  font-size: 11.5px;
}

.gp-report-kpi small.up,
.gp-report-kpi .critical,
.gp-report-threat-risk.critical,
.gp-report-findings-table .critical {
  color: var(--gp-red);
}

.gp-report-kpi small.down,
.gp-report-kpi .low,
.gp-report-threat-risk.low,
.gp-report-findings-table .low {
  color: var(--gp-green);
}

.gp-report-kpi small.flat {
  color: var(--gp-muted);
}

.gp-report-kpi .high,
.gp-report-threat-risk.high,
.gp-report-findings-table .high {
  color: var(--gp-orange);
}

.gp-report-kpi .medium,
.gp-report-threat-risk.medium,
.gp-report-findings-table .medium {
  color: var(--gp-yellow);
}

.gp-report-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 2px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
  text-transform: none;
}

.gp-report-pill.critical,
.gp-report-pill.danger {
  border-color: rgba(248,113,113,.2);
  color: var(--gp-red);
  background: rgba(248,113,113,.10);
}

.gp-report-pill.high {
  border-color: rgba(251,146,60,.2);
  color: var(--gp-orange);
  background: rgba(251,146,60,.10);
}

.gp-report-pill.medium {
  border-color: rgba(251,191,36,.2);
  color: var(--gp-yellow);
  background: rgba(251,191,36,.10);
}

.gp-report-pill.low,
.gp-report-pill.ok {
  border-color: rgba(74,222,128,.2);
  color: var(--gp-green);
  background: rgba(74,222,128,.10);
}

.gp-report-pill.info {
  border-color: rgba(76,196,255,.2);
  color: var(--gp-cyan);
  background: rgba(76,196,255,.10);
}

.gp-report-pill.muted {
  border-color: var(--gp-line);
  color: var(--gp-muted);
  background: var(--gp-bg-2);
}

.gp-report-led,
.gp-report-live-ping {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: currentColor;
}

.gp-report-live-ping {
  position: relative;
  width: 8px;
  height: 8px;
  color: var(--gp-green);
}

.gp-report-live-ping::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: currentColor;
  opacity: .35;
  animation: gp-report-ping 1.6s cubic-bezier(0,0,.2,1) infinite;
}

@keyframes gp-report-ping {
  0% { transform: scale(.6); opacity: .5; }
  80%, 100% { transform: scale(2); opacity: 0; }
}

.gp-report-tabs {
  position: sticky;
  top: 76px;
  z-index: 12;
  display: flex;
  gap: 2px;
  padding: 0 24px;
  border-bottom: 1px solid var(--gp-line);
  background: var(--gp-bg-1);
}

.gp-report-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--gp-text-2);
  background: transparent;
  cursor: pointer;
  font-weight: 650;
}

.gp-report-tab:hover,
.gp-report-tab:focus-visible {
  color: var(--gp-text);
  outline: none;
}

.gp-report-tab.active,
.gp-report-tab[aria-selected="true"] {
  border-bottom-color: var(--gp-cyan);
  color: var(--gp-text);
}

.gp-report-tab span {
  padding: 1px 6px;
  border-radius: 999px;
  color: var(--gp-muted);
  background: var(--gp-bg-3);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10.5px;
}

.gp-report-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 24px 0;
  padding: 8px 12px;
  border: 1px solid rgba(76,196,255,.16);
  border-radius: 6px;
  color: var(--gp-text-2);
  background: rgba(76,196,255,.045);
  font-size: 12px;
}

.gp-report-hint span {
  color: var(--gp-cyan);
}

.gp-report-hint kbd {
  padding: 1px 5px;
  border: 1px solid var(--gp-line-2);
  border-radius: 4px;
  color: var(--gp-muted);
  background: var(--gp-bg-1);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10.5px;
}

.gp-report-pane {
  display: none;
  padding: 20px 24px 60px;
}

.gp-report-pane.active {
  display: block;
}

.gp-report-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 16px;
}

.gp-report-grid-3,
.gp-report-engine-grid,
.gp-report-packet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gp-report-packet-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 14px 16px;
}

.gp-report-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.gp-report-card {
  border: 1px solid var(--gp-line);
  border-radius: 8px;
  background: var(--gp-bg-1);
  box-shadow: none;
  overflow: hidden;
}

.gp-report-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gp-line);
}

.gp-report-card-head h2 {
  margin: 0;
  color: var(--gp-text);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.005em;
}

.gp-report-card-head span {
  color: var(--gp-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11.5px;
}

.gp-report-chart {
  height: 236px;
  padding: 18px 16px 16px;
  color: var(--gp-line);
}

.gp-report-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gp-report-risk-area {
  fill: rgba(248,113,113,.18);
}

.gp-report-risk-line,
.gp-report-high-line {
  fill: none;
  stroke-width: 2;
}

.gp-report-risk-line,
.gp-report-risk-dot {
  stroke: var(--gp-red);
  fill: var(--gp-red);
}

.gp-report-high-line {
  stroke: var(--gp-orange);
}

.gp-report-bars rect {
  fill: var(--gp-cyan);
  opacity: .55;
}

.gp-report-threat-list,
.gp-report-action-list,
.gp-report-watch-list {
  display: grid;
}

.gp-report-threat-row {
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr) auto 58px 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: 0;
  border-bottom: 1px solid var(--gp-line);
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.gp-report-threat-row:hover,
.gp-report-threat-row:focus-visible {
  background: var(--gp-bg-2);
  outline: none;
}

.gp-report-severity-bar {
  width: 4px;
  height: 24px;
  border-radius: 999px;
  background: var(--gp-muted-2);
}

.gp-report-severity-bar.critical {
  background: linear-gradient(180deg, #ef4444, #991b1b);
}

.gp-report-severity-bar.high {
  background: var(--gp-orange);
}

.gp-report-severity-bar.medium {
  background: var(--gp-yellow);
}

.gp-report-severity-bar.low {
  background: var(--gp-cyan);
}

.gp-report-threat-main {
  min-width: 0;
}

.gp-report-threat-main strong,
.gp-report-domain-cell {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  color: var(--gp-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12.5px;
  font-weight: 650;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.gp-report-threat-main small {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
  color: var(--gp-muted);
  font-size: 11px;
}

.gp-report-signal-row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.gp-report-signal {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 4px;
  color: var(--gp-muted);
  background: var(--gp-bg-3);
  font-size: 10px;
  line-height: 1;
}

.gp-report-signal.on {
  color: var(--gp-green);
  background: rgba(74,222,128,.12);
}

.gp-report-signal.warn {
  color: var(--gp-yellow);
  background: rgba(251,191,36,.12);
}

.gp-report-signal.bad {
  color: var(--gp-red);
  background: rgba(248,113,113,.12);
}

.gp-report-signal.off {
  color: var(--gp-muted-2);
}

.gp-report-threat-risk {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 800;
  text-align: right;
}

.gp-report-row-arrow {
  color: var(--gp-muted);
  font-size: 18px;
}

.gp-report-action-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gp-line);
}

.gp-report-action-item:last-child,
.gp-report-threat-row:last-child,
.gp-report-watch-row:last-child {
  border-bottom: 0;
}

.gp-report-action-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--gp-text-2);
  background: var(--gp-bg-3);
  font-weight: 800;
}

.gp-report-action-icon.danger {
  color: var(--gp-red);
  background: rgba(248,113,113,.10);
}

.gp-report-action-icon.warn {
  color: var(--gp-yellow);
  background: rgba(251,191,36,.10);
}

.gp-report-action-icon.info {
  color: var(--gp-cyan);
  background: rgba(76,196,255,.10);
}

.gp-report-action-icon.ok {
  color: var(--gp-green);
  background: rgba(74,222,128,.10);
}

.gp-report-action-item strong {
  display: block;
  color: var(--gp-text);
  font-weight: 650;
}

.gp-report-action-item small,
.gp-report-muted-note,
.gp-report-watch-row p,
.gp-report-engine-card p,
.gp-report-stat-card p {
  display: block;
  margin: 2px 0 0;
  color: var(--gp-muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.gp-report-link {
  border: 0;
  color: var(--gp-cyan);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.gp-report-link:hover,
.gp-report-link:focus-visible {
  color: #8ddeff;
  outline: none;
}

.gp-report-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding: 14px 18px 14px 34px;
}

.gp-report-timeline.roomy {
  gap: 4px;
  padding-bottom: 24px;
}

.gp-report-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--gp-line-2);
}

.gp-report-timeline-event {
  position: relative;
  padding: 2px 0 14px;
}

.gp-report-timeline-event::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 7px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--gp-bg-1);
  border-radius: 50%;
  background: var(--gp-muted-2);
  box-shadow: 0 0 0 1px var(--gp-line-2);
}

.gp-report-timeline-event.critical::before,
.gp-report-timeline-event.danger::before {
  background: var(--gp-red);
  box-shadow: 0 0 0 1px var(--gp-red);
}

.gp-report-timeline-event.high::before,
.gp-report-timeline-event.warn::before,
.gp-report-timeline-event.medium::before {
  background: var(--gp-yellow);
  box-shadow: 0 0 0 1px var(--gp-yellow);
}

.gp-report-timeline-event.ok::before,
.gp-report-timeline-event.low::before {
  background: var(--gp-green);
  box-shadow: 0 0 0 1px var(--gp-green);
}

.gp-report-timeline-event time {
  color: var(--gp-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.gp-report-timeline-event strong {
  display: block;
  margin: 1px 0;
  color: var(--gp-text);
  font-weight: 650;
}

.gp-report-timeline-event p {
  margin: 0;
  color: var(--gp-text-2);
  font-size: 11.5px;
}

.gp-report-expand-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gp-line);
  background: linear-gradient(90deg, rgba(76,196,255,.06), rgba(192,132,252,.06));
}

.gp-report-expand-banner strong {
  display: block;
  color: var(--gp-text);
  font-weight: 750;
}

.gp-report-expand-banner p {
  margin: 1px 0 0;
  color: var(--gp-muted);
  font-size: 11.5px;
}

.gp-report-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-bottom: 1px solid var(--gp-line);
  background: var(--gp-bg-1);
}

.gp-report-toolbar-search {
  display: flex;
  align-items: center;
  gap: 7px;
  width: min(320px, 100%);
  padding: 5px 10px;
  border: 1px solid var(--gp-line);
  border-radius: 6px;
  color: var(--gp-muted);
  background: var(--gp-bg-2);
}

.gp-report-toolbar-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  color: var(--gp-text);
  background: transparent;
  outline: none;
}

.gp-report-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--gp-line);
  border-radius: 6px;
  color: var(--gp-text-2);
  background: var(--gp-bg-2);
  cursor: pointer;
  font-size: 12px;
  transition: border-color .12s ease, color .12s ease, background .12s ease;
}

.gp-report-filter-chip:hover,
.gp-report-filter-chip:focus-visible {
  border-color: var(--gp-line-2);
  color: var(--gp-text);
  outline: none;
}

.gp-report-filter-chip.active {
  border-color: rgba(76,196,255,.42);
  color: var(--gp-cyan);
  background: rgba(76,196,255,.08);
}

.gp-report-toolbar-spacer {
  flex: 1 1 auto;
}

.gp-report-table-wrap {
  overflow-x: auto;
}

.gp-report-findings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}

.gp-report-findings-table th,
.gp-report-findings-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--gp-line);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.gp-report-findings-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--gp-muted);
  background: var(--gp-bg-1);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gp-report-findings-table tbody tr {
  cursor: pointer;
}

.gp-report-findings-table tbody tr:hover {
  background: var(--gp-bg-2);
}

.gp-report-findings-table tbody tr.selected {
  background: rgba(76,196,255,.055);
  box-shadow: inset 2px 0 0 var(--gp-cyan);
}

.gp-report-findings-table tr[hidden] {
  display: none;
}

.gp-report-check {
  width: 34px;
}

.gp-report-check input {
  width: 14px;
  height: 14px;
  accent-color: var(--gp-cyan);
}

.gp-report-idn-warning {
  margin-left: 6px;
  color: var(--gp-magenta);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10.5px;
}

.gp-report-mini-badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--gp-text-2);
  background: var(--gp-bg-3);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10.5px;
}

.gp-report-row-actions {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.gp-report-row-form {
  margin: 0;
}

.gp-report-row-action {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  color: var(--gp-muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.gp-report-row-action:hover,
.gp-report-row-action:focus-visible {
  color: var(--gp-text);
  background: var(--gp-bg-3);
  outline: none;
}

.gp-report-table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-top: 1px solid var(--gp-line);
  color: var(--gp-muted);
  background: var(--gp-bg-1);
  font-size: 12px;
}

.gp-report-table-footer strong {
  color: var(--gp-text);
}

.gp-report-engine-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gp-report-engine-card {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-right: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line);
}

.gp-report-engine-card:nth-child(3n) {
  border-right: 0;
}

.gp-report-engine-card strong {
  display: block;
  color: var(--gp-text);
}

.gp-report-watch-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gp-line);
}

.gp-report-stat-card {
  padding: 18px;
}

.gp-report-stat-card span,
.gp-report-packet-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--gp-muted);
  font-size: 10.5px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gp-report-stat-card strong {
  display: block;
  color: var(--gp-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 28px;
  line-height: 1;
}

.gp-report-kanban {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gp-report-kanban-col {
  border: 1px solid var(--gp-line);
  border-radius: 8px;
  background: var(--gp-bg-1);
  overflow: hidden;
}

.gp-report-kanban-col header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid var(--gp-line);
}

.gp-report-kanban-col header span {
  padding: 1px 6px;
  border-radius: 999px;
  color: var(--gp-muted);
  background: var(--gp-bg-3);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.gp-report-kanban-col > div {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 8px;
}

.gp-report-kanban-card {
  padding: 10px 12px;
  border: 1px solid var(--gp-line);
  border-radius: 6px;
  background: var(--gp-bg-2);
}

.gp-report-kanban-card strong {
  display: block;
  overflow: hidden;
  color: var(--gp-text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gp-report-kanban-card p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0;
  color: var(--gp-muted);
  font-size: 11px;
}

.gp-report-kanban-empty {
  display: grid;
  place-items: center;
  min-height: 80px;
  border: 1px dashed var(--gp-line);
  border-radius: 6px;
  color: var(--gp-muted);
  font-size: 12px;
}

.gp-report-progress {
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--gp-bg-3);
}

.gp-report-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gp-cyan);
}

.gp-report-packet-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gp-report-packet-grid > div {
  min-width: 0;
}

.gp-report-packet-grid strong {
  display: block;
  color: var(--gp-text-2);
  font-size: 12.5px;
  line-height: 1.5;
}

.gp-report-empty-state {
  padding: 24px;
  color: var(--gp-muted);
  text-align: center;
}

.gp-report-empty-state.tall {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
}

.gp-report-empty-state strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gp-text);
}

.gp-report-empty-state p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--gp-muted);
}

.gp-report-side-panel {
  position: fixed;
  top: 76px;
  right: 0;
  z-index: 60;
  width: 480px;
  height: calc(100vh - 76px);
  border-left: 1px solid var(--gp-line);
  background: var(--gp-bg-1);
  box-shadow: -8px 0 24px rgba(0,0,0,.4);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .22s cubic-bezier(.2,.8,.2,1);
}

.gp-report-side-panel.open {
  transform: translateX(0);
}

.gp-report-side-head {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 14px 18px 0;
  border-bottom: 1px solid var(--gp-line);
  background: var(--gp-bg-1);
}

.gp-report-side-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.gp-report-side-head h2 {
  margin: 0;
  color: var(--gp-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14.5px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.gp-report-side-head p {
  margin: 8px 0 0;
  color: var(--gp-muted);
  font-size: 11.5px;
}

.gp-report-side-tabs {
  display: flex;
  gap: 0;
  margin: 12px -18px 0;
  padding: 0 18px;
  border-top: 1px solid var(--gp-line);
}

.gp-report-side-tabs span {
  padding: 9px 12px;
  border-bottom: 2px solid transparent;
  color: var(--gp-muted);
  font-size: 12px;
  font-weight: 650;
}

.gp-report-side-tabs span.active {
  border-bottom-color: var(--gp-cyan);
  color: var(--gp-text);
}

.gp-report-side-section {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gp-line);
}

.gp-report-side-section h3 {
  margin: 0 0 10px;
  color: var(--gp-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.gp-report-side-section p {
  margin: 0;
  color: var(--gp-text-2);
  font-size: 12.5px;
  line-height: 1.55;
}

.gp-report-screenshot-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  margin-top: 12px;
  border: 1px solid var(--gp-line-2);
  border-radius: 6px;
  color: var(--gp-muted);
  background: linear-gradient(135deg, rgba(248,113,113,.22), rgba(76,196,255,.08));
  overflow: hidden;
}

.gp-report-screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gp-report-screenshot-frame div {
  display: grid;
  place-items: center;
  width: 88%;
  height: 70%;
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 4px;
  background: rgba(0,0,0,.18);
  font-size: 11px;
}

.gp-report-kv {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 7px 12px;
  margin: 0;
}

.gp-report-kv dt {
  color: var(--gp-muted);
}

.gp-report-kv dd {
  min-width: 0;
  margin: 0;
  color: var(--gp-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.gp-report-live-cache {
  display: none !important;
}

.mt-16 {
  margin-top: 16px;
}

.muted {
  color: var(--gp-muted) !important;
}

@media (max-width: 1280px) {
  .gp-report-grid-2,
  .gp-report-grid-3 {
    grid-template-columns: 1fr;
  }

  .gp-report-kpi-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gp-report-engine-grid,
  .gp-report-packet-grid,
  .gp-report-kanban {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gp-report-side-panel {
    width: min(480px, 100vw);
  }
}

@media (max-width: 860px) {
  .gp-report-shell {
    grid-template-columns: 1fr;
  }

  .gp-report-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--gp-line);
  }

  .gp-report-title-row,
  .gp-report-expand-banner,
  .gp-report-table-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .gp-report-kpi-row,
  .gp-report-engine-grid,
  .gp-report-packet-grid,
  .gp-report-kanban {
    grid-template-columns: 1fr;
  }

  .gp-report-tabs {
    top: 0;
    overflow-x: auto;
  }

  .gp-report-side-panel {
    top: 0;
    width: 100vw;
    height: 100vh;
  }
}

/* Live monitoring + dark-web feed persistence */
.gp-report-watch-actions,
.gp-report-inline-actions,
.gp-report-darkweb-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gp-report-watch-actions form,
.gp-report-inline-actions form,
.gp-report-darkweb-actions form {
  margin: 0;
}

.gp-report-link.danger {
  color: var(--red);
}

.gp-report-darkweb-feed {
  display: grid;
  gap: 0;
}

.gp-report-darkweb-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.gp-report-darkweb-item:last-child {
  border-bottom: 0;
}

.gp-report-darkweb-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--bg-3);
  color: var(--text-2);
}

.gp-report-darkweb-icon.critical {
  color: var(--red);
  background: rgba(248,113,113,.12);
}

.gp-report-darkweb-icon.warn {
  color: var(--yellow);
  background: rgba(251,191,36,.12);
}

.gp-report-darkweb-icon.info {
  color: var(--cyan);
  background: rgba(76,196,255,.12);
}

.gp-report-darkweb-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.gp-report-darkweb-title-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.gp-report-darkweb-item pre {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg-2);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.5;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.gp-report-darkweb-actions {
  margin-top: 10px;
}

/* Go-live brand protection additions */
.gp-report-toolbar.compact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.gp-report-input {
  min-height: 34px;
  min-width: 130px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(0,0,0,.18);
  color: var(--text);
  padding: 6px 10px;
  outline: none;
}

.gp-report-input.wide {
  min-width: min(340px, 100%);
  flex: 1;
}

.gp-report-input:focus {
  border-color: rgba(85,216,255,.45);
  box-shadow: 0 0 0 3px rgba(85,216,255,.08);
}



/* Evidence profile investigation console */
.gp-evidence-modal-backdrop {
  justify-content: center;
  align-items: stretch;
  background: rgba(0,0,0,.74);
}

.gp-evidence-shell {
  --ev-bg: #0a0b0d;
  --ev-bg-1: #0f1115;
  --ev-bg-2: #14171c;
  --ev-bg-3: #1a1e25;
  --ev-line: #20252e;
  --ev-line-2: #2a3038;
  --ev-text: #e6e8eb;
  --ev-text-2: #aab1bb;
  --ev-muted: #6b7280;
  --ev-muted-2: #4a5260;
  --ev-cyan: #4cc4ff;
  --ev-green: #4ade80;
  --ev-yellow: #fbbf24;
  --ev-orange: #fb923c;
  --ev-red: #f87171;
  width: min(1380px, calc(100vw - 28px));
  height: calc(100vh - 28px);
  margin: 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--ev-line);
  border-radius: 18px;
  background: var(--ev-bg);
  color: var(--ev-text);
  box-shadow: 0 28px 100px rgba(0,0,0,.52);
  animation: evidence-shell-in .2s var(--ease);
}

@keyframes evidence-shell-in {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.gp-evidence-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px 0 20px;
  border-bottom: 1px solid var(--ev-line);
  background: var(--ev-bg-1);
}

.gp-evidence-crumbs,
.gp-evidence-top-actions,
.gp-evidence-subline,
.gp-evidence-chip-row,
.gp-evidence-action-group,
.gp-evidence-panel-label,
.gp-evidence-visual-meta,
.gp-evidence-card-head,
.gp-evidence-match-strip,
.gp-evidence-match-row,
.gp-evidence-redirects div,
.gp-evidence-http-block div,
.gp-evidence-feed-list div {
  display: flex;
  align-items: center;
}

.gp-evidence-crumbs {
  min-width: 0;
  gap: 7px;
  color: var(--ev-muted);
  font-size: .78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gp-evidence-crumbs a:hover {
  color: var(--ev-text);
}

.gp-evidence-crumbs strong {
  min-width: 0;
  color: var(--ev-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .74rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gp-evidence-top-actions {
  gap: 8px;
  flex: 0 0 auto;
}

.gp-evidence-kbd {
  padding: 2px 6px;
  border: 1px solid var(--ev-line-2);
  border-radius: 5px;
  color: var(--ev-muted);
  background: var(--ev-bg-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .68rem;
}

.gp-evidence-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ev-line-2);
  border-radius: 999px;
  background: var(--ev-bg-2);
  color: var(--ev-text-2);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.gp-evidence-close:hover,
.gp-evidence-close:focus-visible {
  border-color: rgba(76,196,255,.42);
  color: var(--ev-text);
  outline: none;
}

.gp-evidence-scroll {
  overflow-y: auto;
  background: var(--ev-bg);
}

.gp-evidence-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  margin: 18px;
  padding: 20px 24px;
  border: 1px solid var(--ev-line);
  border-left: 3px solid var(--ev-orange);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(248,113,113,.04), transparent 62%), var(--ev-bg-1);
}

.gp-evidence-hero.danger { border-left-color: var(--ev-red); }
.gp-evidence-hero.high { border-left-color: var(--ev-orange); }
.gp-evidence-hero.warn { border-left-color: var(--ev-yellow); }
.gp-evidence-hero.ok { border-left-color: var(--ev-green); }

.gp-evidence-eyebrow {
  margin-bottom: 8px;
  color: var(--ev-orange);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.gp-evidence-hero h1 {
  max-width: none;
  margin: 0 0 6px;
  color: var(--ev-text);
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
}

.gp-evidence-subline {
  gap: 9px;
  flex-wrap: wrap;
  color: var(--ev-muted);
  font-size: .8rem;
}

.gp-evidence-subline strong {
  color: var(--ev-text-2);
}

.gp-evidence-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ev-muted-2);
}

.gp-evidence-chip-row {
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.gp-evidence-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border: 1px solid var(--ev-line);
  border-radius: 999px;
  color: var(--ev-muted);
  background: var(--ev-bg-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .69rem;
  font-weight: 700;
  text-transform: lowercase;
}

.gp-evidence-chip.ok { color: var(--ev-green); border-color: rgba(74,222,128,.2); background: rgba(74,222,128,.08); }
.gp-evidence-chip.info { color: var(--ev-cyan); border-color: rgba(76,196,255,.2); background: rgba(76,196,255,.08); }
.gp-evidence-chip.warn { color: var(--ev-yellow); border-color: rgba(251,191,36,.22); background: rgba(251,191,36,.08); }
.gp-evidence-chip.high { color: var(--ev-orange); border-color: rgba(251,146,60,.24); background: rgba(251,146,60,.08); }
.gp-evidence-chip.danger { color: var(--ev-red); border-color: rgba(248,113,113,.25); background: rgba(248,113,113,.08); }
.gp-evidence-chip.muted { color: var(--ev-muted); }

.gp-evidence-live-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ev-green);
}

.gp-evidence-live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: var(--ev-green);
  opacity: .35;
  animation: evidence-ping 1.7s cubic-bezier(0,0,.2,1) infinite;
}

@keyframes evidence-ping {
  0% { transform: scale(.6); opacity: .45; }
  80%, 100% { transform: scale(2.1); opacity: 0; }
}

.gp-evidence-verdict-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(251,146,60,.22);
  border-radius: 8px;
  background: rgba(251,146,60,.06);
  color: var(--ev-text-2);
  font-size: .83rem;
  line-height: 1.55;
}

.gp-evidence-verdict-line strong {
  color: var(--ev-text);
}

.gp-evidence-verdict-line p {
  margin: 4px 0 0;
  color: var(--ev-muted);
}

.gp-evidence-verdict-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--ev-orange);
  background: rgba(251,146,60,.14);
  font-weight: 900;
}

.gp-evidence-risk-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--ev-line);
  border-radius: 10px;
  background: var(--ev-bg-2);
}

.gp-evidence-risk-ring {
  width: 132px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--ev-bg-2) 0 58%, transparent 59%),
    conic-gradient(var(--ev-orange) var(--score), rgba(255,255,255,.08) 0);
}

.gp-evidence-risk-ring strong {
  color: var(--ev-orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -.07em;
}

.gp-evidence-risk-card > span {
  margin-top: 8px;
  color: var(--ev-muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.gp-evidence-risk-card dl {
  width: 100%;
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--ev-line);
}

.gp-evidence-risk-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 3px 0;
  font-size: .74rem;
}

.gp-evidence-risk-card dt {
  color: var(--ev-muted);
}

.gp-evidence-risk-card dd {
  margin: 0;
  color: var(--ev-text-2);
  text-align: right;
}

.gp-evidence-action-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 18px;
  border-block: 1px solid var(--ev-line);
  background: rgba(15,17,21,.96);
  backdrop-filter: blur(16px);
}

.gp-evidence-action-group {
  gap: 6px;
  flex-wrap: wrap;
  padding-right: 10px;
  border-right: 1px solid var(--ev-line);
}

.gp-evidence-action-group.secondary {
  margin-left: auto;
}

.gp-evidence-action-group form,
.gp-evidence-action-bar .button_to {
  margin: 0;
}

.gp-evidence-btn {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--ev-line-2);
  border-radius: 7px;
  background: var(--ev-bg-2);
  color: var(--ev-text);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s var(--ease), border-color .15s var(--ease), transform .15s var(--ease);
}

.gp-evidence-btn:hover,
.gp-evidence-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(76,196,255,.42);
  background: var(--ev-bg-3);
  outline: none;
}

.gp-evidence-btn.danger {
  border-color: rgba(248,113,113,.48);
  background: var(--ev-red);
  color: #17090b;
}

.gp-evidence-btn.ghost {
  background: transparent;
  color: var(--ev-text-2);
}

.gp-evidence-workflow-select {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 0 10px;
  border: 1px solid var(--ev-line);
  border-radius: 7px;
  background: var(--ev-bg-2);
  font-size: .74rem;
}

.gp-evidence-workflow-select span {
  color: var(--ev-muted);
}

.gp-evidence-workflow-select strong {
  color: var(--ev-text-2);
}

.gp-evidence-signals {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin: 16px 18px 0;
  border: 1px solid var(--ev-line);
  border-radius: 10px;
  background: var(--ev-bg-1);
  overflow: hidden;
}

.gp-evidence-signal {
  min-width: 0;
  padding: 12px;
  border-right: 1px solid var(--ev-line);
}

.gp-evidence-signal:last-child {
  border-right: 0;
}

.gp-evidence-signal span {
  display: block;
  margin-bottom: 5px;
  color: var(--ev-muted);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gp-evidence-signal strong {
  display: block;
  color: var(--ev-text);
  font-size: .86rem;
  line-height: 1.2;
}

.gp-evidence-signal small {
  display: block;
  margin-top: 6px;
  color: var(--ev-muted);
  font-size: .72rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.gp-evidence-signal.ok strong { color: var(--ev-green); }
.gp-evidence-signal.info strong { color: var(--ev-cyan); }
.gp-evidence-signal.warn strong { color: var(--ev-yellow); }
.gp-evidence-signal.high strong { color: var(--ev-orange); }
.gp-evidence-signal.danger strong { color: var(--ev-red); }
.gp-evidence-signal.muted strong { color: var(--ev-muted); }

.gp-evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  align-items: start;
  padding: 16px 18px 24px;
}

.gp-evidence-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.gp-evidence-rail {
  position: sticky;
  top: 68px;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.gp-evidence-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ev-line);
  border-radius: 10px;
  background: var(--ev-bg-1);
}

.gp-evidence-card.compact {
  border-radius: 9px;
}

.gp-evidence-card-head {
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ev-line);
}

.gp-evidence-card-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ev-text);
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gp-evidence-card-head h2 span {
  color: var(--ev-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .72rem;
  font-weight: 700;
}

.gp-evidence-card-head p {
  margin: 0;
  color: var(--ev-muted);
  font-size: .73rem;
  text-align: right;
}

.gp-evidence-segmented {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
  background: var(--ev-bg-2);
}

.gp-evidence-segmented button {
  min-height: 26px;
  padding: 0 9px;
  border-radius: 6px;
  color: var(--ev-muted);
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
}

.gp-evidence-segmented button.active,
.gp-evidence-segmented button:hover,
.gp-evidence-segmented button:focus-visible {
  background: var(--ev-bg-3);
  color: var(--ev-text);
  outline: none;
}

.gp-evidence-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gp-evidence-visual-panel {
  min-width: 0;
  padding: 14px 16px;
}

.gp-evidence-visual-panel + .gp-evidence-visual-panel {
  border-left: 1px solid var(--ev-line);
}

.gp-evidence-panel-label {
  gap: 8px;
  margin-bottom: 9px;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.gp-evidence-panel-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.gp-evidence-visual-panel.suspect .gp-evidence-panel-label { color: var(--ev-red); }
.gp-evidence-visual-panel.suspect .gp-evidence-panel-label span { background: var(--ev-red); box-shadow: 0 0 8px var(--ev-red); }
.gp-evidence-visual-panel.legit .gp-evidence-panel-label { color: var(--ev-green); }
.gp-evidence-visual-panel.legit .gp-evidence-panel-label span { background: var(--ev-green); }

.gp-evidence-screenshot-link,
.gp-evidence-browser-placeholder {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--ev-line-2);
  border-radius: 7px;
  background: #101827;
}

.gp-evidence-screenshot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.gp-evidence-browser-placeholder {
  position: relative;
  background: linear-gradient(135deg, #1f2937, #020617);
}

.gp-evidence-browser-placeholder.suspect {
  background: linear-gradient(135deg, rgba(248,113,113,.24), rgba(15,23,42,1));
}

.gp-evidence-browser-placeholder.legit {
  background: linear-gradient(135deg, rgba(74,222,128,.18), rgba(15,23,42,1));
}

.gp-evidence-browser-bar {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .65rem;
}

.gp-evidence-browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}

.gp-evidence-browser-bar span {
  min-width: 0;
  margin-left: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gp-evidence-login-card,
.gp-evidence-legit-card {
  position: absolute;
  inset: 50px 34px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: #111827;
  text-align: center;
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}

.gp-evidence-fake-logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 9px;
  background: #2563eb;
  color: #fff;
  font-weight: 900;
}

.gp-evidence-fake-logo.legit {
  background: #15803d;
}

.gp-evidence-login-card h3,
.gp-evidence-legit-card h3 {
  max-width: 100%;
  margin: 0 0 4px;
  color: #111827;
  font-size: .86rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.gp-evidence-login-card p,
.gp-evidence-legit-card p {
  margin: 0 0 10px;
  color: #4b5563;
  font-size: .68rem;
  overflow-wrap: anywhere;
}

.gp-evidence-login-card div:not(.gp-evidence-fake-logo) {
  width: 76%;
  height: 18px;
  margin: 4px 0;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #f9fafb;
}

.gp-evidence-login-card strong {
  width: 76%;
  min-height: 22px;
  display: grid;
  place-items: center;
  margin-top: 6px;
  border-radius: 4px;
  background: #2563eb;
  color: #fff;
  font-size: .65rem;
}

.gp-evidence-legit-lines {
  display: grid;
  gap: 6px;
  width: 78%;
}

.gp-evidence-legit-lines span {
  height: 9px;
  border-radius: 999px;
  background: #e5e7eb;
}

.gp-evidence-visual-meta {
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: var(--ev-muted);
  font-size: .72rem;
}

.gp-evidence-visual-meta .mono {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gp-evidence-match-strip {
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border-top: 1px solid var(--ev-line);
  background: rgba(248,113,113,.04);
}

.gp-evidence-match-strip > div:first-child {
  min-width: 220px;
}

.gp-evidence-match-strip strong {
  display: block;
  color: var(--ev-text);
  font-size: .84rem;
}

.gp-evidence-match-strip span {
  display: block;
  color: var(--ev-muted);
  font-size: .72rem;
  line-height: 1.4;
}

.gp-evidence-match-bars {
  min-width: min(360px, 100%);
  display: grid;
  gap: 7px;
}

.gp-evidence-match-row {
  gap: 8px;
}

.gp-evidence-match-row span,
.gp-evidence-match-row strong {
  width: 58px;
  color: var(--ev-muted);
  font-size: .68rem;
}

.gp-evidence-match-row strong {
  width: 38px;
  text-align: right;
}

.gp-evidence-match-row div {
  flex: 1;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.gp-evidence-match-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ev-yellow), var(--ev-orange), var(--ev-red));
}

.gp-evidence-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.gp-evidence-content-grid article {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--ev-line);
  border-bottom: 1px solid var(--ev-line);
}

.gp-evidence-content-grid article:nth-child(2n),
.gp-evidence-content-grid article:last-child {
  border-right: 0;
}

.gp-evidence-content-grid article.wide {
  grid-column: 1 / -1;
  border-right: 0;
}

.gp-evidence-content-grid h3 {
  margin: 0 0 12px;
  color: var(--ev-text);
  font-size: .82rem;
  letter-spacing: -.02em;
}

.gp-evidence-form-fields,
.gp-evidence-term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gp-evidence-form-fields div {
  min-width: min(220px, 100%);
  padding: 10px;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
  background: var(--ev-bg-2);
}

.gp-evidence-form-fields div.warn { border-color: rgba(251,191,36,.3); background: rgba(251,191,36,.06); }
.gp-evidence-form-fields div.danger { border-color: rgba(248,113,113,.34); background: rgba(248,113,113,.07); }

.gp-evidence-form-fields strong,
.gp-evidence-form-fields span {
  display: block;
}

.gp-evidence-form-fields strong {
  color: var(--ev-text);
  font-size: .82rem;
  overflow-wrap: anywhere;
}

.gp-evidence-form-fields span {
  margin-top: 4px;
  color: var(--ev-muted);
  font-size: .72rem;
}

.gp-evidence-term-list span {
  padding: 5px 8px;
  border: 1px solid var(--ev-line);
  border-radius: 999px;
  background: var(--ev-bg-2);
  color: var(--ev-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .69rem;
}

.gp-evidence-term-list span.hit {
  color: var(--ev-cyan);
  border-color: rgba(76,196,255,.24);
  background: rgba(76,196,255,.07);
}

.gp-evidence-term-list span.warn {
  color: var(--ev-orange);
  border-color: rgba(251,146,60,.26);
  background: rgba(251,146,60,.07);
}

.gp-evidence-ocr {
  margin: 0;
  color: var(--ev-text-2);
  line-height: 1.65;
}

.gp-evidence-ocr mark {
  padding: 1px 4px;
  border-radius: 4px;
  background: rgba(251,191,36,.18);
  color: var(--ev-yellow);
}

.gp-evidence-empty {
  margin: 0;
  color: var(--ev-muted);
  font-size: .8rem;
  line-height: 1.5;
}

.gp-evidence-empty.padded {
  padding: 12px 16px;
}

.gp-evidence-redirects {
  display: grid;
  gap: 0;
  padding: 10px 16px;
  border-bottom: 1px solid var(--ev-line);
}

.gp-evidence-redirects div {
  min-width: 0;
  gap: 8px;
  padding: 4px 0;
  font-size: .75rem;
}

.gp-evidence-redirects span,
.gp-evidence-http-block .status {
  width: 38px;
  flex: 0 0 auto;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--ev-bg-2);
  color: var(--ev-muted);
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .65rem;
  font-weight: 900;
}

.gp-evidence-redirects span.ok,
.gp-evidence-http-block .status.ok { color: var(--ev-green); background: rgba(74,222,128,.1); }
.gp-evidence-redirects span.warn,
.gp-evidence-http-block .status.warn { color: var(--ev-yellow); background: rgba(251,191,36,.1); }
.gp-evidence-redirects span.danger,
.gp-evidence-http-block .status.danger { color: var(--ev-red); background: rgba(248,113,113,.1); }

.gp-evidence-redirects strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ev-text-2);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gp-evidence-http-block {
  display: grid;
  gap: 0;
  padding: 14px 16px;
  background: rgba(0,0,0,.24);
  color: var(--ev-text-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .76rem;
  line-height: 1.6;
  overflow-x: auto;
}

.gp-evidence-http-block div {
  min-width: max-content;
  gap: 8px;
}

.gp-evidence-http-block span {
  color: var(--ev-muted);
}

.gp-evidence-http-block strong {
  color: var(--ev-text);
  font-weight: 600;
}

.gp-evidence-http-block div.missing strong,
.gp-evidence-http-block div.missing span {
  color: var(--ev-red);
}

.gp-evidence-http-block em {
  padding: 0 5px;
  border-radius: 4px;
  background: rgba(248,113,113,.11);
  color: var(--ev-red);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .65rem;
  font-style: normal;
}

.gp-evidence-record-list {
  display: grid;
  gap: 0;
}

.gp-evidence-record-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 190px;
  gap: 14px;
  align-items: start;
  padding: 13px 16px;
  border-bottom: 1px solid var(--ev-line);
}

.gp-evidence-record-list article:last-child {
  border-bottom: 0;
}

.gp-evidence-record-list article > strong {
  color: var(--ev-text);
  font-size: .8rem;
}

.gp-evidence-record-list code,
.gp-evidence-kv-grid dd {
  display: inline-block;
  max-width: 100%;
  color: var(--ev-text-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .76rem;
  overflow-wrap: anywhere;
}

.gp-evidence-record-list code {
  display: block;
  margin-bottom: 5px;
}

.gp-evidence-record-list small {
  color: var(--ev-muted);
  font-size: .72rem;
}

.gp-evidence-record-list article.ok > strong { color: var(--ev-green); }
.gp-evidence-record-list article.warn > strong { color: var(--ev-yellow); }
.gp-evidence-record-list article.high > strong { color: var(--ev-orange); }
.gp-evidence-record-list article.danger > strong { color: var(--ev-red); }
.gp-evidence-record-list article.info > strong { color: var(--ev-cyan); }

.gp-evidence-cert-chain {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--ev-line);
}

.gp-evidence-cert-chain article {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--ev-line);
  border-radius: 9px;
  background: var(--ev-bg-2);
}

.gp-evidence-cert-chain span,
.gp-evidence-cert-chain strong,
.gp-evidence-cert-chain small,
.gp-evidence-cert-chain em {
  display: block;
}

.gp-evidence-cert-chain span,
.gp-evidence-kv-grid dt {
  color: var(--ev-muted);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gp-evidence-cert-chain strong {
  margin-top: 8px;
  color: var(--ev-text);
  font-size: .82rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.gp-evidence-cert-chain small,
.gp-evidence-cert-chain em {
  margin-top: 7px;
  color: var(--ev-muted);
  font-size: .72rem;
  font-style: normal;
  overflow-wrap: anywhere;
}

.gp-evidence-kv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.gp-evidence-kv-grid div {
  min-width: 0;
  padding: 13px 16px;
  border-right: 1px solid var(--ev-line);
  border-bottom: 1px solid var(--ev-line);
}

.gp-evidence-kv-grid div:nth-child(2n) {
  border-right: 0;
}

.gp-evidence-kv-grid dt {
  margin-bottom: 6px;
}

.gp-evidence-kv-grid dd {
  margin: 0;
}

.gp-evidence-reg-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 16px;
  border-bottom: 1px solid var(--ev-line);
}

.gp-evidence-reg-timeline article {
  position: relative;
  min-width: 0;
  padding: 0 12px;
}

.gp-evidence-reg-timeline article::before,
.gp-evidence-reg-timeline article::after {
  content: "";
  position: absolute;
  top: 10px;
}

.gp-evidence-reg-timeline article::before {
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ev-muted);
  z-index: 1;
}

.gp-evidence-reg-timeline article::after {
  left: 10px;
  right: 0;
  height: 1px;
  background: var(--ev-line-2);
}

.gp-evidence-reg-timeline article:last-child::after {
  display: none;
}

.gp-evidence-reg-timeline article.danger::before { background: var(--ev-red); }
.gp-evidence-reg-timeline article.warn::before { background: var(--ev-yellow); }
.gp-evidence-reg-timeline article.info::before { background: var(--ev-cyan); }

.gp-evidence-reg-timeline span,
.gp-evidence-reg-timeline strong {
  display: block;
  min-width: 0;
  padding-left: 12px;
}

.gp-evidence-reg-timeline span {
  margin-top: 24px;
  color: var(--ev-muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gp-evidence-reg-timeline strong {
  margin-top: 5px;
  color: var(--ev-text-2);
  font-size: .78rem;
  overflow-wrap: anywhere;
}

.gp-evidence-timeline {
  display: grid;
  gap: 0;
}

.gp-evidence-timeline article {
  position: relative;
  padding: 13px 16px 13px 34px;
  border-bottom: 1px solid var(--ev-line);
}

.gp-evidence-timeline article:last-child {
  border-bottom: 0;
}

.gp-evidence-timeline article::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ev-muted);
}

.gp-evidence-timeline article.critical::before,
.gp-evidence-timeline article.danger::before { background: var(--ev-red); box-shadow: 0 0 8px rgba(248,113,113,.65); }
.gp-evidence-timeline article.warn::before,
.gp-evidence-timeline article.high::before { background: var(--ev-orange); }
.gp-evidence-timeline article.info::before { background: var(--ev-cyan); }
.gp-evidence-timeline article.ok::before { background: var(--ev-green); }

.gp-evidence-timeline time {
  display: block;
  color: var(--ev-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .66rem;
}

.gp-evidence-timeline strong {
  display: block;
  margin-top: 5px;
  color: var(--ev-text);
  font-size: .8rem;
}

.gp-evidence-timeline p {
  margin: 4px 0 0;
  color: var(--ev-muted);
  font-size: .75rem;
  line-height: 1.45;
}

.gp-evidence-related-list,
.gp-evidence-feed-list,
.gp-evidence-notes {
  display: grid;
  gap: 0;
}

.gp-evidence-related-list a {
  display: grid;
  gap: 4px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ev-line);
}

.gp-evidence-related-list a:last-child {
  border-bottom: 0;
}

.gp-evidence-related-list a:hover {
  background: var(--ev-bg-2);
}

.gp-evidence-related-list strong {
  color: var(--ev-text);
  font-size: .8rem;
  overflow-wrap: anywhere;
}

.gp-evidence-related-list span {
  color: var(--ev-muted);
  font-size: .72rem;
}

.gp-evidence-feed-list div {
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--ev-line);
  font-size: .76rem;
}

.gp-evidence-feed-list div:last-child {
  border-bottom: 0;
}

.gp-evidence-feed-list span {
  color: var(--ev-text-2);
}

.gp-evidence-feed-list strong {
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--ev-bg-2);
  color: var(--ev-muted);
  font-size: .67rem;
}

.gp-evidence-feed-list strong.ok { color: var(--ev-green); background: rgba(74,222,128,.08); }
.gp-evidence-feed-list strong.danger { color: var(--ev-red); background: rgba(248,113,113,.08); }

.gp-evidence-notes {
  padding: 14px 16px;
}

.gp-evidence-notes p,
.gp-evidence-note-body {
  margin: 0 0 12px;
  color: var(--ev-text-2);
  font-size: .78rem;
  line-height: 1.55;
}

.gp-evidence-note-body p {
  margin: 0 0 8px;
}

.gp-evidence-notes-form {
  display: grid;
  gap: 10px;
}

.gp-evidence-notes-form textarea {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  padding: 10px;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
  background: var(--ev-bg-2);
  color: var(--ev-text);
  font: inherit;
  outline: none;
}

.gp-evidence-notes-form textarea:focus {
  border-color: rgba(76,196,255,.42);
  box-shadow: 0 0 0 3px rgba(76,196,255,.08);
}

@media (max-width: 1180px) {
  .gp-evidence-hero,
  .gp-evidence-grid {
    grid-template-columns: 1fr;
  }

  .gp-evidence-rail {
    position: static;
  }

  .gp-evidence-signals {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gp-evidence-signal:nth-child(4n) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .gp-evidence-shell {
    width: 100vw;
    height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .gp-evidence-topbar {
    padding-left: 12px;
  }

  .gp-evidence-hero,
  .gp-evidence-signals,
  .gp-evidence-grid {
    margin-left: 10px;
    margin-right: 10px;
  }

  .gp-evidence-hero {
    padding: 16px;
  }

  .gp-evidence-action-bar {
    align-items: stretch;
  }

  .gp-evidence-action-group,
  .gp-evidence-action-group.secondary {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .gp-evidence-workflow-select {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .gp-evidence-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gp-evidence-signal:nth-child(2n) {
    border-right: 0;
  }

  .gp-evidence-visual-grid,
  .gp-evidence-content-grid,
  .gp-evidence-cert-chain,
  .gp-evidence-kv-grid,
  .gp-evidence-reg-timeline {
    grid-template-columns: 1fr;
  }

  .gp-evidence-visual-panel + .gp-evidence-visual-panel,
  .gp-evidence-content-grid article,
  .gp-evidence-kv-grid div {
    border-left: 0;
    border-right: 0;
  }

  .gp-evidence-record-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gp-evidence-card-head,
  .gp-evidence-match-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .gp-evidence-card-head p {
    text-align: left;
  }
}

@media print {
  .site-header,
  .gp-evidence-topbar,
  .gp-evidence-action-bar,
  .gp-evidence-close {
    display: none !important;
  }

  .modal-backdrop,
  .gp-evidence-shell,
  .gp-evidence-scroll {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    background: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
  }

  .gp-evidence-grid,
  .gp-evidence-hero,
  .gp-evidence-signals {
    break-inside: avoid;
  }
}
