:root {
  --color-bg: #0a0f1f;
  --color-bg-elevated: #111317;
  --color-border-subtle: #1e2435;
  --color-border-strong: #272d42;
  --color-text: #f3f5ff;
  --color-text-muted: #a2a8c3;
  --color-accent: #5a3bff;
  --color-accent-soft: rgba(90, 59, 255, 0.25);
  --color-green: #00c896;
  --color-red: #b3261e;
  --color-amber: #ffaa3b;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --border-thin: 1px solid rgba(255, 255, 255, 0.03);
  --border-strong: 1px solid rgba(255, 255, 255, 0.09);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151a2a 0, #050712 55%, #02030a 100%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.security-strip {
  position: relative;
  z-index: 45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(to right, #111317, #0a0f1f);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

.security-strip__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.55rem 5vw 0.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.9rem;
  position: relative;
}

.security-strip__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #b3261e, #ffaa3b);
  box-shadow: 0 0 14px rgba(179, 38, 30, 0.65);
  animation: securityGlow 4s ease-in-out infinite;
}

.security-strip__label {
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #ffb4a9;
  padding: 0.15rem 0.6rem 0.18rem;
  border-radius: 999px;
  border: 1px solid rgba(179, 38, 30, 0.8);
  background: radial-gradient(circle at top, rgba(179, 38, 30, 0.32), transparent 70%);
}

.security-strip__text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.security-strip__text--secondary {
  opacity: 0.9;
}

@keyframes securityGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(179, 38, 30, 0.45);
  }
  40% {
    box-shadow: 0 0 20px rgba(179, 38, 30, 0.9);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(7, 10, 24, 0.94), rgba(7, 10, 24, 0.86), transparent);
  border-bottom: var(--border-thin);
  padding: 1.25rem 5vw 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-mark {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-mark__logo {
  display: block;
  height: 44px;
  width: auto;
}

.site-mark__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.site-mark__descriptor {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 38px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 10, 24, 0.96);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle__bar {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
}

.nav-toggle__bar + .nav-toggle__bar {
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-text);
  border-color: rgba(90, 59, 255, 0.9);
}

main {
  flex: 1;
  padding: 3.5rem 5vw 4rem;
  max-width: 1120px;
  margin: 0 auto;
}

.hero {
  position: relative;
  margin-top: 1.5rem;
  padding: 2.75rem 2.5rem 2.4rem;
  border-radius: var(--radius-lg);
  border: var(--border-strong);
  background: radial-gradient(circle at top left, rgba(90, 59, 255, 0.16), transparent 55%),
    radial-gradient(circle at top right, rgba(0, 200, 150, 0.13), transparent 50%),
    linear-gradient(to bottom right, rgba(9, 12, 31, 0.96), rgba(4, 6, 18, 0.98));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(to right, rgba(29, 35, 63, 0.6) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29, 35, 63, 0.7) 1px, transparent 1px);
  background-size: 52px 52px;
  mix-blend-mode: screen;
}

.hero__radar {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 150, 0.18);
  top: -140px;
  right: -140px;
  background:
    radial-gradient(circle, rgba(0, 200, 150, 0.22), transparent 55%),
    radial-gradient(circle at center, transparent 0, transparent 32%, rgba(0, 200, 150, 0.16) 32%, transparent 40%),
    radial-gradient(circle at center, transparent 0, transparent 56%, rgba(0, 200, 150, 0.18) 56%, transparent 64%);
}

.hero__radar::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: inherit;
  border: 1px solid rgba(0, 200, 150, 0.55);
  box-shadow: 0 0 40px rgba(0, 200, 150, 0.35);
  opacity: 0.7;
  transform: scale(0.55);
  animation: radarPulse 8s ease-out infinite;
}

@keyframes radarPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.55);
  }
  40% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.hero__col--panel {
  max-width: 420px;
  margin-left: auto;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 0.9rem;
}

h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.9rem, 2.3vw + 1rem, 2.4rem);
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.hero__subtitle {
  margin: 0 0 1.6rem;
  color: var(--color-text-muted);
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn--primary {
  background: linear-gradient(120deg, #00c896, #5a3bff);
  border-color: rgba(255, 255, 255, 0.08);
  color: #050712;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(0, 0, 0, 0.7);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(0, 0, 0, 0.9);
}

.btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--color-text);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  border-color: rgba(90, 59, 255, 0.9);
  background: rgba(11, 14, 33, 0.8);
}

.hero__footnote {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.panel {
  background: radial-gradient(circle at top, rgba(90, 59, 255, 0.18), transparent 70%),
    linear-gradient(to bottom right, rgba(9, 11, 27, 0.98), rgba(5, 7, 18, 0.98));
  border-radius: var(--radius-md);
  border: var(--border-strong);
  padding: 1.2rem 1.25rem 1.1rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.8);
}

.panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.panel__title {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.panel__status {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.panel__status--elevated {
  background: rgba(178, 38, 30, 0.12);
  border-color: rgba(178, 38, 30, 0.7);
  color: #ffb4a9;
}

.panel__body--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.2rem;
}

.metric__label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.18rem;
}

.metric__value {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.metric__value--alert {
  color: var(--color-red);
}

.metric__value--warning {
  color: var(--color-amber);
}

.metric__meta {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.panel__footer {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.panel__footnote {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.section {
  margin-top: 3.4rem;
}

.section--bordered {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section__header {
  max-width: 40rem;
}

.section__header--compact {
  max-width: 44rem;
}

.section__header--centered {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.4rem;
}

.section__lead {
  margin: 0.2rem 0 1.6rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section__grid {
  display: grid;
  gap: 1.4rem;
}

.section__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.card {
  background: linear-gradient(to bottom, rgba(17, 19, 23, 0.9), rgba(5, 7, 14, 0.95));
  border-radius: var(--radius-md);
  border: var(--border-strong);
  padding: 1.3rem 1.25rem 1.2rem;
}

.card__title {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card__body {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.card__list {
  margin: 0;
  padding-left: 1rem;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.diagram-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.diagram {
  background: linear-gradient(to bottom, rgba(10, 12, 24, 0.96), rgba(5, 7, 16, 0.98));
  border-radius: var(--radius-md);
  border: var(--border-thin);
  padding: 1.1rem 1.05rem 1rem;
}

.diagram__label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.8rem;
}

.diagram__placeholder {
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(90, 59, 255, 0.55);
  padding: 0.8rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.diagram__placeholder--stack {
  gap: 0.4rem;
}

.diagram__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.diagram__row--stacked {
  flex-direction: column;
  align-items: flex-start;
}

.diagram__row--cluster {
  justify-content: flex-start;
}

.chip {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  color: var(--color-text-muted);
}

.chip--muted {
  opacity: 0.8;
}

.chip--outline {
  border-style: dashed;
}

.stack-layer {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(to right, rgba(90, 59, 255, 0.16), rgba(10, 14, 30, 0.95));
  padding: 0.4rem 0.6rem;
  font-size: 0.74rem;
}

.diagram__note {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: auto;
}

.threat-matrix {
  margin-top: 1.8rem;
  border-radius: var(--radius-md);
  border: var(--border-strong);
  background: linear-gradient(to bottom, rgba(10, 12, 24, 0.98), rgba(3, 5, 14, 0.98));
  overflow: hidden;
}

.threat-matrix__header,
.threat-matrix__row {
  display: grid;
  grid-template-columns: 1.1fr 2fr 0.7fr;
  gap: 1rem;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
}

.threat-matrix__header {
  background: rgba(12, 16, 32, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}

.threat-matrix__row:nth-child(odd) {
  background: rgba(8, 10, 22, 0.8);
}

.threat-matrix__row:nth-child(even) {
  background: rgba(6, 8, 18, 0.9);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.badge--high {
  border-color: rgba(179, 38, 30, 0.78);
  color: #ffb4a9;
  background: radial-gradient(circle at top, rgba(179, 38, 30, 0.32), transparent 70%);
}

.badge--elevated {
  border-color: rgba(255, 170, 59, 0.82);
  color: #ffe0b2;
  background: radial-gradient(circle at top, rgba(255, 170, 59, 0.32), transparent 70%);
}

.badge--medium {
  border-color: rgba(0, 200, 150, 0.8);
  color: #a5ffe3;
  background: radial-gradient(circle at top, rgba(0, 200, 150, 0.3), transparent 70%);
}

.note-block {
  margin-top: 1.3rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(6, 9, 20, 0.9);
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

.note-block--compact {
  margin-top: 1rem;
}

.note-block__title {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.impact-layout {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.65fr);
  gap: 1.7rem;
  align-items: flex-start;
}

.impact-layout__visual {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.impact-figure {
  margin: 0;
  border-radius: var(--radius-md);
  border: var(--border-strong);
  background: linear-gradient(to bottom, rgba(10, 12, 24, 0.98), rgba(3, 5, 14, 0.98));
  overflow: hidden;
}

.impact-figure__image {
  display: block;
  width: 100%;
  height: auto;
}

.impact-figure__caption {
  padding: 0.6rem 0.8rem 0.7rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-figure__download {
  align-self: flex-start;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--color-text-muted);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--color-text);
  border-color: rgba(90, 59, 255, 0.9);
  background: rgba(11, 14, 33, 0.8);
}

.capability-matrix {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  border: var(--border-strong);
  background: linear-gradient(to bottom, rgba(10, 12, 24, 0.98), rgba(3, 5, 14, 0.98));
  overflow: hidden;
}

.capability-matrix__header,
.capability-matrix__row {
  display: grid;
  grid-template-columns: 1.4fr 2.1fr 2fr;
  gap: 1rem;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
}

.capability-matrix__header {
  background: rgba(12, 16, 32, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}

.capability-matrix__row:nth-child(odd) {
  background: rgba(8, 10, 22, 0.8);
}

.capability-matrix__row:nth-child(even) {
  background: rgba(6, 8, 18, 0.9);
}

.live-layout {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 1.6rem;
  align-items: stretch;
}

.live-layout__map {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.live-map {
  position: relative;
  border-radius: var(--radius-md);
  border: var(--border-strong);
  background:
    radial-gradient(circle at top, rgba(90, 59, 255, 0.16), transparent 65%),
    radial-gradient(circle at bottom, rgba(0, 200, 150, 0.12), transparent 70%),
    #050712;
  overflow: hidden;
  min-height: 260px;
}

.live-map__grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(to right, rgba(35, 44, 80, 0.8) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(35, 44, 80, 0.8) 1px, transparent 1px);
  background-size: 46px 46px;
}

.live-map__overlay {
  position: absolute;
  inset: 10% 6% 12%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.45);
}

.live-map__events {
  position: absolute;
  inset: 10% 6% 12%;
}

.live-attack {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  animation: livePulse 7s ease-out forwards;
}

.live-attack--threat {
  background: var(--color-red);
  box-shadow: 0 0 0 0 rgba(179, 38, 30, 0.7);
}

.live-attack--probe {
  background: var(--color-amber);
  box-shadow: 0 0 0 0 rgba(255, 170, 59, 0.7);
}

.live-attack--mitigated {
  background: var(--color-green);
  box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.7);
}

@keyframes livePulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
  }
  40% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    opacity: 0;
    box-shadow: 0 0 0 32px rgba(255, 255, 255, 0);
  }
}

.live-map__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.legend-dot--threat {
  background: var(--color-red);
}

.legend-dot--probe {
  background: var(--color-amber);
}

.legend-dot--mitigated {
  background: var(--color-green);
}

.live-layout__feed {
  display: flex;
  flex-direction: column;
}

.live-feed {
  border-radius: var(--radius-md);
  border: var(--border-strong);
  background: linear-gradient(to bottom, rgba(10, 12, 24, 0.98), rgba(3, 5, 14, 0.98));
  padding: 0.9rem 0.95rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.live-feed__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.live-feed__title {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-feed__status {
  font-size: 0.72rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 150, 0.8);
  color: #a5ffe3;
  background: radial-gradient(circle at top, rgba(0, 200, 150, 0.26), transparent 70%);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-feed__list {
  list-style: none;
  margin: 0.1rem 0 0.3rem;
  padding: 0;
  max-height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.35rem;
}

.live-feed__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.55rem;
  font-size: 0.78rem;
  padding: 0.35rem 0.4rem;
  border-radius: var(--radius-sm);
  background: rgba(8, 10, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.live-feed__time {
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-feed__label {
  color: var(--color-text-muted);
}

.live-feed__details {
  grid-column: 1 / -1;
  color: var(--color-text);
}

.live-feed__tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.live-feed__tag--threat {
  border-color: rgba(179, 38, 30, 0.75);
  color: #ffb4a9;
}

.live-feed__tag--probe {
  border-color: rgba(255, 170, 59, 0.78);
  color: #ffe0b2;
}

.live-feed__tag--mitigated {
  border-color: rgba(0, 200, 150, 0.8);
  color: #a5ffe3;
}

.live-feed__footnote {
  margin: 0;
  font-size: 0.74rem;
  color: var(--color-text-muted);
}

.architecture {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 1.8rem;
}

.architecture__layers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.layer {
  border-radius: var(--radius-md);
  border: var(--border-thin);
  background: linear-gradient(to right, rgba(16, 19, 35, 0.96), rgba(5, 7, 16, 0.98));
  padding: 0.7rem 0.8rem 0.8rem;
}

.layer__title {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.layer__body {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

.architecture__diagram {
  border-radius: var(--radius-md);
  border: var(--border-strong);
  background: radial-gradient(circle at top, rgba(90, 59, 255, 0.18), transparent 70%),
    linear-gradient(to bottom, rgba(10, 12, 24, 0.98), rgba(3, 5, 14, 0.98));
  padding: 1.1rem 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
}

.architecture__box {
  border-radius: var(--radius-md);
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.architecture__box--device {
  background: linear-gradient(to right, rgba(0, 200, 150, 0.22), rgba(6, 10, 22, 0.96));
}

.architecture__box--service {
  background: linear-gradient(to right, rgba(90, 59, 255, 0.22), rgba(6, 9, 20, 0.96));
}

.architecture__box--intel {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.08), rgba(6, 8, 16, 0.98));
}

.architecture__label {
  font-size: 0.83rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.architecture__caption {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.architecture__connector {
  height: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

.architecture__connector--down {
  height: 14px;
}

.architecture__note {
  margin-top: 0.3rem;
  font-size: 0.74rem;
  color: var(--color-text-muted);
}

.regulatory-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.reg-card {
  border-radius: var(--radius-md);
  border: var(--border-thin);
  background: linear-gradient(to bottom, rgba(13, 16, 30, 0.98), rgba(4, 6, 14, 0.98));
  padding: 1rem 0.9rem 0.95rem;
}

.reg-card__title {
  margin: 0 0 0.4rem;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reg-card__body {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

.institution-grid {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.institution-card {
  border-radius: var(--radius-md);
  border: var(--border-thin);
  background: linear-gradient(to bottom, rgba(11, 13, 26, 0.98), rgba(4, 5, 13, 0.98));
  padding: 0.95rem 0.95rem 0.9rem;
}

.institution-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.institution-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

.partner-strip {
  margin-top: 2.2rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(to right, rgba(10, 12, 24, 0.98), rgba(5, 7, 16, 0.98));
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.partner-strip__label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.partner-strip__name {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
}

.section--final {
  margin-top: 3.6rem;
  padding-top: 2.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.final-statement {
  max-width: 34rem;
  margin: 0 auto 0.9rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at top, rgba(0, 200, 150, 0.16), transparent 70%),
    linear-gradient(to bottom, rgba(10, 12, 24, 0.98), rgba(4, 5, 14, 0.98));
  font-size: 0.98rem;
  line-height: 1.7;
}

.final-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 5vw 1.3rem;
  background: radial-gradient(circle at top, rgba(90, 59, 255, 0.12), rgba(3, 4, 10, 1));
}

.site-footer__content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.site-footer__label {
  display: block;
}

.site-footer__value {
  display: block;
  margin-top: 0.1rem;
  color: var(--color-text);
}

.security-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease-out;
  z-index: 60;
}

.security-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.security-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(10, 16, 32, 0.9), rgba(3, 4, 10, 0.96));
  backdrop-filter: blur(4px);
}

.security-overlay__panel {
  position: relative;
  max-width: 720px;
  margin: 14vh auto 0;
  padding: 1.6rem 1.7rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at top left, rgba(90, 59, 255, 0.22), transparent 65%),
    linear-gradient(to bottom, rgba(8, 10, 22, 0.98), rgba(3, 4, 11, 0.98));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.security-overlay__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 2px solid rgba(0, 200, 150, 0.4);
  border-left: 1px solid rgba(90, 59, 255, 0.4);
  border-right: 1px solid rgba(90, 59, 255, 0.3);
  pointer-events: none;
  opacity: 0.9;
}

.security-overlay__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.security-overlay__title {
  margin: 0 0 0.9rem;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.security-overlay__body {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.security-overlay__body,
.security-overlay__title {
  font-family: "Consolas", "SF Mono", ui-monospace, Menlo, Monaco, "Courier New", monospace;
}

.security-overlay__cursor {
  display: inline-block;
  width: 0.7ch;
  color: var(--color-green);
  animation: cursorBlink 1s steps(2, start) infinite;
}

@keyframes cursorBlink {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .security-overlay__panel {
    margin-top: 18vh;
    margin-inline: 7vw;
    padding: 1.3rem 1.2rem 1.2rem;
  }
}

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.2rem;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.9rem 1.4rem;
  }

  .hero {
    padding: 2.1rem 1.6rem 1.9rem;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__col--panel {
    max-width: none;
    margin-left: 0;
  }

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

  .section__grid--3,
  .diagram-grid,
  .regulatory-grid,
  .institution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-matrix__header,
  .capability-matrix__row,
  .threat-matrix__header,
  .threat-matrix__row {
    grid-template-columns: 1fr;
  }

  .architecture {
    grid-template-columns: minmax(0, 1fr);
  }

  .live-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  main {
    padding-inline: 5vw;
  }

  .site-header {
    padding-inline: 5vw;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    order: 2;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.6rem 0.2rem 0.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
  }

  .site-nav.site-nav--open {
    display: flex;
  }
}

@media (max-width: 640px) {
  main {
    padding-inline: 5vw;
  }

  .hero {
    margin-top: 1rem;
    padding: 1.8rem 1.1rem 1.5rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  .hero__grid {
    background-size: 32px 32px;
  }

  .hero__radar {
    width: 320px;
    height: 320px;
    top: -120px;
    right: -140px;
  }

  .panel__body--grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section__grid--3,
  .diagram-grid,
  .regulatory-grid,
  .institution-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .threat-matrix__header,
  .threat-matrix__row,
  .capability-matrix__header,
  .capability-matrix__row {
    grid-template-columns: 1fr;
    word-wrap: break-word;
    word-break: break-word;
  }

  .site-footer__content {
    flex-direction: column;
  }

  .live-feed__list {
    max-height: 180px;
  }
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10, 12, 24, 0.98), rgba(5, 7, 16, 0.98));
  border: 1px solid rgba(0, 200, 150, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 200, 150, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
  z-index: 50;
  animation: whatsappFloat 3s ease-in-out infinite;
}

@keyframes whatsappFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.whatsapp-btn:hover {
  transform: scale(1.08) translateY(-4px);
  border-color: rgba(0, 200, 150, 0.9);
  box-shadow: 0 6px 24px rgba(0, 200, 150, 0.4), 0 0 20px rgba(0, 200, 150, 0.15);
  animation-play-state: paused;
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
  color: #00c896;
  transition: color 0.25s ease;
}

.whatsapp-btn:hover svg {
  color: #a5ffe3;
}

@media (max-width: 640px) {
  .whatsapp-btn {
    width: 48px;
    height: 48px;
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }
}

