/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 174, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 174, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  animation: grid-scan 12s linear infinite;
}

.hero__radar {
  position: absolute;
  right: 5%;
  top: 50%;
  width: min(420px, 45vw);
  height: min(420px, 45vw);
  transform: translateY(-50%);
  opacity: 0.18;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 157, 0.25);
  background:
    radial-gradient(circle, transparent 55%, rgba(0, 255, 157, 0.04) 56%, transparent 70%),
    conic-gradient(from 0deg, transparent 0deg, rgba(0, 255, 157, 0.2) 40deg, transparent 80deg);
  animation: radar-spin 8s linear infinite;
}

.hero__radar::before,
.hero__radar::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 157, 0.15);
}

.hero__radar::after {
  inset: 35%;
}

.hero__streams {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.35;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-emerald);
  line-height: 1.4;
  pointer-events: none;
}

.hero__stream {
  position: absolute;
  white-space: nowrap;
  opacity: 0.4;
  animation: stream-fall linear infinite;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 30% 45%, transparent 0%, rgba(5, 7, 11, 0.55) 70%, var(--bg-carbon) 100%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.4) 0%, transparent 30%, transparent 70%, var(--bg-carbon) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__brand {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.hero__brand span {
  color: var(--accent-emerald);
  text-shadow: 0 0 40px var(--accent-emerald-glow);
}

.hero__headline {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 1rem;
  max-width: 22ch;
  line-height: 1.25;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text-silver);
  margin-bottom: 2rem;
  max-width: 42ch;
}

/* Hero Dashboard */
.hero-dash {
  position: relative;
  padding: 1.25rem;
  background: rgba(8, 12, 20, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(0, 255, 157, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-dash__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-dash__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dash__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.dash-metric {
  padding: 0.9rem;
  background: rgba(17, 24, 39, 0.55);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.dash-metric:hover {
  border-color: rgba(0, 255, 157, 0.35);
  box-shadow: 0 0 20px var(--accent-emerald-dim);
}

.dash-metric__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.dash-metric__value {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
}

.dash-metric__value--emerald {
  color: var(--accent-emerald);
}

.dash-metric__value--blue {
  color: var(--highlight-blue);
}

.dash-metric__value--danger {
  color: var(--danger);
}

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

.dash-map {
  grid-column: 1 / -1;
  height: 140px;
  position: relative;
  overflow: hidden;
  background: rgba(5, 7, 11, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.dash-map__svg {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.dash-map__pulse {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 12px rgba(255, 77, 90, 0.8);
  animation: map-pulse 2.5s ease-out infinite;
}

.dash-map__label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ========== Live Widgets ========== */
.widgets {
  background: linear-gradient(180deg, var(--bg-carbon) 0%, var(--bg-steel) 50%, var(--bg-carbon) 100%);
  border-block: 1px solid var(--border-subtle);
}

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

.widget {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: rgba(5, 7, 11, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}

.widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-emerald), transparent);
  opacity: 0.5;
}

.widget:hover {
  border-color: rgba(0, 255, 157, 0.4);
  transform: translateY(-3px);
}

.widget__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.widget__value {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.widget__value span {
  color: var(--accent-emerald);
}

.widget__trend {
  font-size: 0.75rem;
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.widget__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 255, 157, 0.04), transparent);
  background-size: 100% 200%;
  animation: widget-scan 3.5s linear infinite;
  pointer-events: none;
}

/* ========== Modules ========== */
.modules {
  overflow: hidden;
}

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

.module {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: rgba(17, 24, 39, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out);
  cursor: default;
}

.module__chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.module__chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.module__chrome i:nth-child(1) {
  background: var(--danger);
}
.module__chrome i:nth-child(2) {
  background: #f5a623;
}
.module__chrome i:nth-child(3) {
  background: var(--accent-emerald);
}

.module__icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  color: var(--accent-emerald);
  background: var(--accent-emerald-dim);
}

.module__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.module__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.module__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: none;
  transition: color 0.3s;
}

.module__terminal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-emerald);
  margin-top: 0;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s, margin 0.4s;
}

.module:hover,
.module:focus-within {
  background: rgba(8, 12, 20, 0.92);
  border-color: rgba(0, 255, 157, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 32px var(--accent-emerald-dim);
  transform: translateY(-4px) scale(1.01);
  z-index: 2;
}

.module:hover .module__chrome,
.module:focus-within .module__chrome {
  opacity: 1;
}

.module:hover .module__desc,
.module:focus-within .module__desc {
  color: var(--text-silver);
}

.module:hover .module__terminal,
.module:focus-within .module__terminal {
  max-height: 120px;
  opacity: 0.85;
  margin-top: 1rem;
}

/* ========== Threat Map ========== */
.threat-map {
  background: var(--bg-steel);
}

.threat-map__stage {
  position: relative;
  min-height: 480px;
  background: rgba(5, 7, 11, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.threat-map__canvas {
  width: 100%;
  height: 480px;
  display: block;
}

.threat-map__tooltip {
  position: absolute;
  pointer-events: none;
  padding: 0.75rem 1rem;
  background: rgba(8, 12, 20, 0.95);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-white);
  opacity: 0;
  transform: translate(-50%, -120%);
  transition: opacity 0.2s;
  z-index: 5;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.threat-map__tooltip.is-visible {
  opacity: 1;
}

.threat-map__tooltip strong {
  display: block;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.threat-map__tooltip span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-emerald);
}

.threat-map__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.threat-map__legend li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.threat-map__legend i {
  width: 10px;
  height: 2px;
  border-radius: 1px;
}

.threat-map__legend i.crit {
  background: var(--danger);
  box-shadow: 0 0 6px rgba(255, 77, 90, 0.6);
}
.threat-map__legend i.high {
  background: #f5a623;
}
.threat-map__legend i.mon {
  background: var(--highlight-blue);
}
.threat-map__legend i.safe {
  background: var(--accent-emerald);
}

/* ========== Workflow ========== */
.workflow__track {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
  padding-left: 2.5rem;
}

.workflow__track::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    var(--accent-emerald),
    var(--highlight-blue),
    var(--accent-emerald)
  );
  background-size: 100% 200%;
  animation: line-flow 4s linear infinite;
  box-shadow: 0 0 8px var(--accent-emerald-glow);
}

.workflow__step {
  position: relative;
  padding-bottom: 2.5rem;
}

.workflow__step:last-child {
  padding-bottom: 0;
}

.workflow__node {
  position: absolute;
  left: -2.5rem;
  top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--bg-carbon);
  border: 2px solid var(--accent-emerald);
  box-shadow: 0 0 12px var(--accent-emerald-glow);
  display: grid;
  place-items: center;
}

.workflow__node span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-emerald);
}

.workflow__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--highlight-blue);
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.workflow__title {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.workflow__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 48ch;
}

/* ========== Dashboard Preview ========== */
.dash-preview {
  overflow: hidden;
}

.dash-preview__stage {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.dash-panel {
  position: absolute;
  padding: 1.25rem;
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition: border-color 0.35s, transform 0.5s var(--ease-out), box-shadow 0.35s;
  width: min(280px, 42vw);
}

.dash-panel:hover {
  border-color: rgba(29, 174, 255, 0.4);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 30px var(--highlight-blue-dim);
  z-index: 5;
}

.dash-panel__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-panel__body {
  min-height: 100px;
}

.dash-panel--1 {
  top: 8%;
  left: 4%;
  z-index: 3;
}
.dash-panel--2 {
  top: 5%;
  right: 8%;
  z-index: 2;
}
.dash-panel--3 {
  top: 42%;
  left: 18%;
  z-index: 4;
}
.dash-panel--4 {
  top: 38%;
  right: 4%;
  z-index: 3;
}
.dash-panel--5 {
  bottom: 6%;
  left: 8%;
  z-index: 2;
}
.dash-panel--6 {
  bottom: 10%;
  right: 16%;
  z-index: 4;
}

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

.heatmap-grid span {
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--accent-emerald-dim);
}

.heatmap-grid span[data-l="1"] {
  background: rgba(0, 255, 157, 0.2);
}
.heatmap-grid span[data-l="2"] {
  background: rgba(29, 174, 255, 0.35);
}
.heatmap-grid span[data-l="3"] {
  background: rgba(245, 166, 35, 0.5);
}
.heatmap-grid span[data-l="4"] {
  background: rgba(255, 77, 90, 0.65);
}

.compliance-bars {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.compliance-bars li {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.compliance-bars .bar {
  height: 4px;
  background: var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
}

.compliance-bars .bar i {
  display: block;
  height: 100%;
  background: var(--accent-emerald);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--accent-emerald-glow);
}

.vuln-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
}

.vuln-chart span {
  flex: 1;
  background: linear-gradient(180deg, var(--highlight-blue), transparent);
  border-radius: 2px 2px 0 0;
  opacity: 0.7;
  min-height: 10%;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feed-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.72rem;
  color: var(--text-silver);
  line-height: 1.35;
}

.feed-list time {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.exec-score {
  text-align: center;
  padding: 0.5rem 0;
}

.exec-score__num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-emerald);
  line-height: 1;
  text-shadow: 0 0 24px var(--accent-emerald-glow);
}

.exec-score__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

.analytics-ring {
  width: 80px;
  height: 80px;
  margin: 0.5rem auto;
  border-radius: 50%;
  background: conic-gradient(var(--accent-emerald) 0 78%, var(--border-subtle) 78% 100%);
  display: grid;
  place-items: center;
  position: relative;
}

.analytics-ring::before {
  content: "78%";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(8, 12, 20, 0.95);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-white);
}

/* ========== Industries ========== */
.industries__orbit {
  position: relative;
  width: min(560px, 90vw);
  height: min(560px, 90vw);
  margin: 2rem auto 0;
}

.industries__core {
  position: absolute;
  inset: 50%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: rgba(0, 255, 157, 0.08);
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 40px var(--accent-emerald-dim);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  z-index: 2;
}

.industries__hex {
  position: absolute;
  inset: 0;
  animation: orbit-spin 60s linear infinite;
}

.industries__hex:nth-child(2) {
  animation-duration: 80s;
  animation-direction: reverse;
  opacity: 0.35;
  transform: scale(0.72);
  pointer-events: none;
}

.industry-node {
  position: absolute;
  width: 120px;
  height: 72px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-white);
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid var(--border-subtle);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, background 0.3s;
  margin: -36px 0 0 -60px;
  animation: orbit-spin 60s linear infinite reverse;
}

.industry-node:hover {
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  box-shadow: 0 0 24px var(--accent-emerald-dim);
  z-index: 3;
}

/* ========== Comparison ========== */
.compare__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.compare__col {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.compare__col--trad {
  background: rgba(17, 24, 39, 0.35);
}

.compare__col--velt {
  background: rgba(0, 255, 157, 0.04);
  border-color: rgba(0, 255, 157, 0.3);
  box-shadow: 0 0 40px var(--accent-emerald-dim);
}

.compare__heading {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.compare__col--velt .compare__heading {
  color: var(--accent-emerald);
}

.compare__list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.compare__list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.compare__col--velt .compare__list li {
  color: var(--text-white);
}

.compare__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--text-muted);
}

.compare__col--velt .compare__list li::before {
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald-glow);
}

.compare__vs {
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--highlight-blue);
  align-self: center;
}

/* ========== Certifications ========== */
.certs {
  padding-block: 3rem;
  border-block: 1px solid var(--border-subtle);
  overflow: hidden;
  background: rgba(17, 24, 39, 0.3);
}

.certs__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.certs__track:hover {
  animation-play-state: paused;
}

.cert-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  background: rgba(5, 7, 11, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  box-shadow: 0 0 20px transparent;
  transition: border-color 0.3s, box-shadow 0.3s, color 0.3s;
}

.cert-badge:hover {
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  box-shadow: 0 0 24px var(--accent-emerald-dim);
}

.cert-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent-emerald);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--accent-emerald-glow);
}

/* ========== Reports (Success Stories) ========== */
.reports__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.report {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: rgba(8, 12, 20, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}

.report::before {
  content: "CLASSIFIED // VLTN";
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--danger);
  opacity: 0.7;
}

.report:hover {
  border-color: rgba(255, 77, 90, 0.4);
  transform: translateY(-3px);
}

.report__id {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.report__flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.report__stage {
  padding: 0.75rem 0;
}

.report__stage-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight-blue);
  margin-bottom: 0.3rem;
}

.report__stage p {
  font-size: 0.88rem;
  color: var(--text-silver);
  max-width: none;
}

.report__arrow {
  display: flex;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  opacity: 0.5;
  line-height: 1;
}

.report__impact {
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-emerald);
}

/* ========== Knowledge ========== */
.knowledge__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.article {
  position: relative;
  padding: 1.5rem;
  background: rgba(17, 24, 39, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.article__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-emerald);
  margin-bottom: 1rem;
}

.article__title {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  transition: color 0.3s;
}

.article__excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: none;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: -webkit-line-clamp 0.3s;
}

.article__more {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--highlight-blue);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}

.article:hover,
.article:focus-within {
  background: rgba(8, 12, 20, 0.9);
  border-color: rgba(29, 174, 255, 0.4);
  transform: translateY(-4px);
}

.article:hover .article__excerpt,
.article:focus-within .article__excerpt {
  -webkit-line-clamp: 6;
  color: var(--text-silver);
}

.article:hover .article__more,
.article:focus-within .article__more {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Final CTA ========== */
.final-cta {
  position: relative;
  padding: clamp(5rem, 12vw, 8rem) 0;
  text-align: center;
  overflow: hidden;
  background: #020308;
}

.final-cta__radar {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 157, 0.12);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 255, 157, 0.12) 35deg,
    transparent 70deg
  );
  animation: radar-spin-center 10s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

.final-cta__radar::before,
.final-cta__radar::after {
  content: "";
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 157, 0.1);
}

.final-cta__radar::after {
  inset: 40%;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
}

.final-cta__title {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.final-cta__lead {
  margin-inline: auto;
  margin-bottom: 2rem;
  color: var(--text-silver);
}

.final-cta .btn-group {
  justify-content: center;
}

/* ========== Footer ========== */
.footer {
  position: relative;
  padding: 4rem 0 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-carbon);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr) 1.3fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.footer__brand span {
  color: var(--accent-emerald);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 28ch;
}

.footer__col h4 {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-silver);
  padding: 0.3rem 0;
  transition: color 0.25s;
}

.footer__col a:hover {
  color: var(--accent-emerald);
}

.footer__newsletter p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  max-width: none;
}

.footer__form {
  display: flex;
  gap: 0.35rem;
}

.footer__form input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.footer__form input::placeholder {
  color: var(--text-muted);
}

.footer__form button {
  padding: 0.65rem 0.9rem;
  background: var(--accent-emerald);
  color: var(--bg-carbon);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8rem;
  transition: box-shadow 0.3s;
}

.footer__form button:hover {
  box-shadow: 0 0 20px var(--accent-emerald-glow);
}

.footer__bottom {
  position: relative;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__code-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 255, 157, 0.15);
}

.footer__code-strip span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(0, 255, 157, 0.45);
  white-space: nowrap;
  line-height: 18px;
  padding-left: 100%;
  animation: code-scroll 40s linear infinite;
}
