/* Kevora premium landing page. Isolated from dashboard/feed styles. */

:root {
  --bg: #030711;
  --panel: rgba(10, 16, 31, 0.72);
  --panel-strong: rgba(13, 20, 38, 0.9);
  --border: rgba(148, 163, 184, 0.16);
  --border-strong: rgba(103, 232, 249, 0.34);
  --text: #f8fafc;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #60a5fa;
  --violet: #a78bfa;
  --amber: #f59e0b;
  --red: #fb7185;
  --green: #34d399;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Fira Sans", system-ui, sans-serif;
}

.mono,
.kevora-preview .mono,
.kevora-preview__eyebrow,
.plan-card li {
  font-family: "Fira Code", "Courier New", monospace;
  font-variant-ligatures: contextual;
  font-variant-numeric: tabular-nums;
}

.landing-body {
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.07), transparent 24rem),
    linear-gradient(215deg, rgba(167, 139, 250, 0.08), transparent 28rem),
    linear-gradient(180deg, #030711 0%, #07101d 42%, #030711 100%);
  overflow-x: hidden;
}

.landing-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 82%);
  pointer-events: none;
}

.landing-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0%, rgba(34, 211, 238, 0.08) 26%, transparent 48%),
    linear-gradient(68deg, transparent 18%, rgba(251, 113, 133, 0.055) 42%, transparent 64%),
    linear-gradient(155deg, transparent 34%, rgba(167, 139, 250, 0.065) 55%, transparent 76%);
  background-size: 180% 180%;
  animation: atmospheric-drift 16s ease-in-out infinite alternate;
  pointer-events: none;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.threat-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(3, 7, 17, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.nav-link {
  position: relative;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover {
  color: white;
}

.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

@keyframes logo-ring-glow {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.08);
  }
  50% {
    box-shadow: 0 0 22px rgba(6, 182, 212, 0.22), 0 0 8px rgba(6, 182, 212, 0.12) inset;
  }
}

.nav-logo-ring {
  animation: logo-ring-glow 2.5s ease-in-out infinite;
}

@keyframes glitch-auto {
  0%,
  88%,
  100% {
    transform: none;
    filter: none;
  }
  89% {
    transform: translate(-2px, 0);
    filter: hue-rotate(20deg) brightness(1.15);
  }
  90% {
    transform: translate(2px, 0);
    filter: hue-rotate(-20deg);
  }
  91% {
    transform: translate(-1px, 1px);
    filter: brightness(1.2);
  }
  92% {
    transform: none;
    filter: none;
  }
  94% {
    transform: translate(2px, -1px);
    filter: hue-rotate(10deg);
  }
  95% {
    transform: none;
    filter: none;
  }
}

.glitch-auto {
  animation: glitch-auto 9s steps(1) infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid rgba(34, 211, 238, 0.8);
  outline-offset: 3px;
}

.btn-sm {
  min-height: 2.3rem;
  padding: 0.72rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  min-height: 3.25rem;
  padding: 1rem 1.25rem;
  font-size: 0.96rem;
}

.btn-primary {
  color: #03101c;
  background: linear-gradient(135deg, #67e8f9, #38bdf8 48%, #a78bfa);
  box-shadow: 0 18px 55px rgba(34, 211, 238, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 24px 75px rgba(34, 211, 238, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn-secondary {
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(34, 211, 238, 0.42);
  background: rgba(15, 23, 42, 0.82);
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 5rem -10vw auto -10vw;
  height: 34rem;
  z-index: -1;
  background:
    conic-gradient(from 220deg at 50% 52%, transparent 0deg, rgba(34, 211, 238, 0.16) 46deg, transparent 96deg, rgba(167, 139, 250, 0.14) 174deg, transparent 250deg),
    linear-gradient(90deg, transparent, rgba(251, 113, 133, 0.05), transparent);
  filter: blur(30px);
  opacity: 0.9;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 12%, rgba(34, 211, 238, 0.12), transparent 46%),
    linear-gradient(78deg, transparent 28%, rgba(245, 158, 11, 0.08), transparent 58%),
    linear-gradient(138deg, transparent 42%, rgba(96, 165, 250, 0.1), transparent 72%);
  background-size: 160% 160%;
  mask-image: linear-gradient(to bottom, black 0%, black 56%, transparent 92%);
  animation: atmospheric-drift 14s ease-in-out infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  margin-bottom: 1.4rem;
  padding: 0.62rem 0.85rem;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 8px;
  background: rgba(8, 15, 30, 0.68);
  color: #b8f7ff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 18px 48px rgba(34, 211, 238, 0.08);
}

.signal-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.9);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.hero-title {
  max-width: 46rem;
  color: var(--text);
  font-size: 3.3rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 20px 80px rgba(34, 211, 238, 0.12);
}

.hero-subtitle {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 44rem;
  margin-top: 2.2rem;
}

.hero-proof span {
  position: relative;
  overflow: hidden;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.42);
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.hero-proof span::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.18), transparent 58%),
    radial-gradient(circle at 88% 22%, rgba(167, 139, 250, 0.12), transparent 54%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.hero-proof span:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.34);
  background: rgba(15, 23, 42, 0.68);
  color: #e0f2fe;
  box-shadow: 0 16px 40px rgba(34, 211, 238, 0.08), 0 0 0 1px rgba(34, 211, 238, 0.06) inset;
}

.hero-proof span:hover::before {
  opacity: 1;
}

.hero-visual {
  position: relative;
  min-height: 42rem;
  display: grid;
  place-items: center;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.radar-halo {
  position: absolute;
  width: min(36rem, 92vw);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.12);
  background:
    repeating-radial-gradient(circle, rgba(34, 211, 238, 0.08) 0 1px, transparent 1px 4.6rem),
    conic-gradient(from 0deg, rgba(34, 211, 238, 0.18), transparent 55deg, rgba(167, 139, 250, 0.16) 130deg, transparent 210deg, rgba(251, 113, 133, 0.12) 290deg, transparent);
  filter: drop-shadow(0 0 70px rgba(34, 211, 238, 0.16));
  opacity: 0.9;
}

.radar-halo::before,
.radar-halo::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 999px;
}

.radar-halo::after {
  inset: 32%;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 0deg, rgba(34, 211, 238, 0.28), transparent 54deg);
  mask-image: radial-gradient(circle, transparent 0 10%, black 10% 72%, transparent 73%);
  animation: radar-spin 7.5s linear infinite;
}

.threat-node {
  position: absolute;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 7px rgba(34, 211, 238, 0.08), 0 0 28px currentColor;
  animation: node-pulse 2.4s ease-in-out infinite;
}

.node-critical {
  left: 23%;
  top: 26%;
  color: var(--red);
  background: var(--red);
}

.node-amber {
  right: 18%;
  top: 36%;
  color: var(--amber);
  background: var(--amber);
  animation-delay: 0.4s;
}

.node-cyan {
  right: 30%;
  bottom: 19%;
  color: var(--cyan);
  background: var(--cyan);
  animation-delay: 0.8s;
}

.node-violet {
  left: 18%;
  bottom: 34%;
  color: var(--violet);
  background: var(--violet);
  animation-delay: 1.2s;
}

/* ── Kevora hero product preview ───────────────────────────────
   Faithful echo of the real Exposure Operations Dashboard
   (panel chrome, eyebrow + live dot, Today's Priority cards,
   CVE feed pills, Kevora Score) for trust-first product theater. */

.kevora-preview {
  position: relative;
  z-index: 2;
  width: min(43rem, 100%);
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(13, 18, 32, 0.94), rgba(6, 11, 24, 0.92)),
    linear-gradient(135deg, rgba(34, 211, 238, 0.1), transparent 48%, rgba(167, 139, 250, 0.08));
  box-shadow:
    0 44px 130px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 0 90px rgba(34, 211, 238, 0.1);
  overflow: hidden;
  transform: rotateX(6deg) rotateY(-7deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.kevora-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 75%);
  opacity: 0.6;
}

.kevora-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  background-size: 220% 100%;
  animation: deck-sheen 9s ease-in-out infinite;
}

.kevora-preview > * {
  position: relative;
  z-index: 1;
}

.kevora-preview__chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.kevora-preview__chrome span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.32);
}

.kevora-preview__chrome span:first-child { background: rgba(251, 113, 133, 0.55); }
.kevora-preview__chrome span:nth-child(2) { background: rgba(245, 158, 11, 0.55); }
.kevora-preview__chrome span:nth-child(3) { background: rgba(52, 211, 153, 0.55); }

.kevora-preview__chrome em {
  margin-left: auto;
  color: #64748b;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.kevora-preview__topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  padding-block: 0.15rem 0.35rem;
}

.kevora-preview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #67e8f9;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kevora-preview__live-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.85);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.kevora-preview__topbar h3 {
  margin: 0.4rem 0 0.18rem;
  color: #f8fafc;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.kevora-preview__subline {
  margin: 0;
  color: #94a3b8;
  font-size: 0.74rem;
}

.kevora-preview__plan-badge {
  align-self: center;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(139, 92, 246, 0.16));
  color: #dbeafe;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.08);
}

.kevora-preview__statbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.kevora-preview__statbar > div {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-top-width: 2px;
  border-radius: 12px;
  padding: 0.55rem 0.65rem 0.6rem;
  background: rgba(2, 6, 23, 0.55);
}

.kevora-preview__statbar [data-stat="total"] { border-top-color: rgba(34, 211, 238, 0.7); }
.kevora-preview__statbar [data-stat="critical"] { border-top-color: rgba(248, 113, 113, 0.78); }
.kevora-preview__statbar [data-stat="high"] { border-top-color: rgba(251, 146, 60, 0.78); }
.kevora-preview__statbar [data-stat="kev"] { border-top-color: rgba(192, 132, 252, 0.78); }

.kevora-preview__stat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #94a3b8;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kevora-preview__stat-label i { font-size: 0.62rem; }

.kevora-preview__statbar [data-stat="total"] .kevora-preview__stat-label i { color: #67e8f9; }
.kevora-preview__statbar [data-stat="critical"] .kevora-preview__stat-label i { color: #fca5a5; }
.kevora-preview__statbar [data-stat="high"] .kevora-preview__stat-label i { color: #fdba74; }
.kevora-preview__statbar [data-stat="kev"] .kevora-preview__stat-label i { color: #d8b4fe; }

.kevora-preview__statbar strong {
  display: block;
  margin-top: 0.32rem;
  color: #f8fafc;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.kevora-preview__statbar [data-stat="critical"] strong { color: #fda4af; }
.kevora-preview__statbar [data-stat="high"] strong { color: #fdba74; }
.kevora-preview__statbar [data-stat="kev"] strong { color: #d8b4fe; }

.kevora-preview__priority {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 14px;
  background: rgba(8, 13, 26, 0.55);
}

.kevora-preview__priority header h4 {
  margin: 0.3rem 0 0;
  color: #f8fafc;
  font-size: 0.92rem;
  font-weight: 900;
}

.kevora-preview__priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.kevora-preview__priority-card {
  position: relative;
  overflow: hidden;
  min-height: 5.4rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 8%, rgba(34, 211, 238, 0.07), transparent 40%),
    rgba(8, 13, 26, 0.7);
  text-align: left;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.kevora-preview__priority-card.is-active {
  border-color: rgba(34, 211, 238, 0.4);
  background:
    radial-gradient(circle at 88% 8%, rgba(34, 211, 238, 0.16), transparent 38%),
    rgba(8, 13, 26, 0.88);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.1);
}

.kevora-preview__priority-card.is-active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(34, 211, 238, 0.78);
  pointer-events: none;
  border-radius: 10px 10px 0 0;
}

.kevora-preview__priority-label {
  display: block;
  color: #94a3b8;
  font-family: "Fira Code", monospace;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kevora-preview__priority-card strong {
  display: block;
  margin-top: 0.32rem;
  color: #f8fafc;
  font-size: 1.4rem;
  line-height: 1;
}

.kevora-preview__priority-card span:last-child {
  display: block;
  margin-top: 0.45rem;
  color: #64748b;
  font-size: 0.65rem;
  line-height: 1.45;
}

.kevora-preview__split {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 0.6rem;
}

.kevora-preview__feed,
.kevora-preview__score {
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.5);
  padding: 0.7rem 0.75rem;
}

.kevora-preview__feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.kevora-preview__feed-head h5 {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 800;
}

.kevora-preview__filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.22rem 0.5rem;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  color: #67e8f9;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kevora-preview__feed-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.kevora-preview__feed-row {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.5);
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.kevora-preview__feed-row:hover {
  filter: brightness(1.06);
}

/* Hover/selected — tone-aware. The selected row gets a soft tinted gradient,
   tone-matched border, and a low-amplitude lift. */
.kevora-preview__feed-row.is-active {
  border-color: rgba(248, 113, 113, 0.42);
  background: linear-gradient(90deg, rgba(127, 29, 29, 0.32), rgba(15, 23, 42, 0.55));
  transform: translateX(2px);
  box-shadow: 0 8px 26px rgba(248, 113, 113, 0.16), 0 0 0 1px rgba(248, 113, 113, 0.18) inset;
}

.kevora-preview__feed-row[data-tone="high"].is-active {
  border-color: rgba(251, 146, 60, 0.42);
  background: linear-gradient(90deg, rgba(124, 45, 18, 0.32), rgba(15, 23, 42, 0.55));
  box-shadow: 0 8px 26px rgba(251, 146, 60, 0.14), 0 0 0 1px rgba(251, 146, 60, 0.18) inset;
}

.kevora-preview__feed-row[data-tone="medium"].is-active {
  border-color: rgba(250, 204, 21, 0.36);
  background: linear-gradient(90deg, rgba(113, 63, 18, 0.3), rgba(15, 23, 42, 0.55));
  box-shadow: 0 8px 26px rgba(250, 204, 21, 0.12), 0 0 0 1px rgba(250, 204, 21, 0.16) inset;
}

/* Hover the same row when not already active — quieter version of the
   selected look, plus a tiny lift so it feels reactive on pointer-fine. */
.kevora-preview__feed-row:not(.is-active):hover {
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(15, 23, 42, 0.7);
  transform: translateX(2px) translateY(-1px);
  box-shadow: 0 8px 22px rgba(34, 211, 238, 0.1);
}

/* When a row inside the feed is hovered, dim the others slightly so the
   hovered row reads as the focal point — but keep the selected (.is-active)
   row visible. Avoids scope leaking outside the feed list. */
.kevora-preview__feed-list:hover .kevora-preview__feed-row:not(:hover):not(.is-active) {
  opacity: 0.78;
}

/* Pills brighten with the selected row. Subtle — borders move from the
   /50 base toward /70-ish, fills get a touch more saturation. */
.kevora-preview__feed-row.is-active .kevora-preview__sev-pill,
.kevora-preview__feed-row:hover .kevora-preview__sev-pill,
.kevora-preview__feed-row.is-active .kevora-preview__source-pill,
.kevora-preview__feed-row:hover .kevora-preview__source-pill,
.kevora-preview__feed-row.is-active .kevora-preview__match-badge,
.kevora-preview__feed-row:hover .kevora-preview__match-badge {
  filter: brightness(1.12);
}

/* Keyboard focus parity for the inner anchor — bumps the row to match
   selected when the tab focus lands on a CVE id. */
.kevora-preview__feed-row:focus-within:not(.is-active) {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(15, 23, 42, 0.72);
  transform: translateX(2px);
  box-shadow: 0 8px 22px rgba(34, 211, 238, 0.12);
}

.kevora-preview__cve-id {
  color: #67e8f9;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  cursor: default;
}

.kevora-preview__sev-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  border: 1px solid;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.kevora-preview__sev-pill--critical {
  background: rgba(127, 29, 29, 0.45);
  border-color: rgba(185, 28, 28, 0.5);
  color: #fca5a5;
}

.kevora-preview__sev-pill--high {
  background: rgba(124, 45, 18, 0.45);
  border-color: rgba(194, 65, 12, 0.5);
  color: #fdba74;
}

.kevora-preview__sev-pill--medium {
  background: rgba(113, 63, 18, 0.45);
  border-color: rgba(161, 98, 7, 0.5);
  color: #fde68a;
}

.kevora-preview__source-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.14rem 0.42rem;
  border-radius: 999px;
  border: 1px solid;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.kevora-preview__source-pill--kev {
  background: rgba(76, 29, 149, 0.4);
  border-color: rgba(126, 34, 206, 0.5);
  color: #d8b4fe;
}

.kevora-preview__source-pill--nvd {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(148, 163, 184, 0.22);
  color: #94a3b8;
}

.kevora-preview__match-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.14rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.08);
  color: #67e8f9;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kevora-preview__row-meta {
  justify-self: end;
  color: #94a3b8;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.kevora-preview__score {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.kevora-preview__score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.kevora-preview__score-head strong {
  color: #f8fafc;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.kevora-preview__score-track {
  position: relative;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(71, 85, 105, 0.4);
  overflow: hidden;
}

.kevora-preview__score-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fb7185 0%, #f59e0b 60%, #fde68a 100%);
  box-shadow: 0 0 18px rgba(251, 113, 133, 0.45);
  animation: kevora-score-pulse 4.5s ease-in-out infinite;
  transition: width 320ms cubic-bezier(0.4, 0, 0.2, 1), background 320ms ease, box-shadow 320ms ease;
}

.kevora-preview__score[data-tone="high"] .kevora-preview__score-fill {
  background: linear-gradient(90deg, #fb923c 0%, #fbbf24 60%, #fde68a 100%);
  box-shadow: 0 0 18px rgba(251, 146, 60, 0.4);
}

.kevora-preview__score[data-tone="medium"] .kevora-preview__score-fill {
  background: linear-gradient(90deg, #facc15 0%, #fde047 60%, #fef9c3 100%);
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.35);
}

.kevora-preview__score-label {
  margin: 0;
  color: #fda4af;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  transition: color 320ms ease;
}

.kevora-preview__score[data-tone="high"] .kevora-preview__score-label {
  color: #fdba74;
}

.kevora-preview__score[data-tone="medium"] .kevora-preview__score-label {
  color: #fde68a;
}

.kevora-preview__score-head strong,
.kevora-preview__score-factors em {
  transition: color 320ms ease;
}

.kevora-preview__score-factors {
  list-style: none;
  margin: 0.15rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  display: grid;
  gap: 0.32rem;
}

.kevora-preview__score-factors li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.7rem;
}

.kevora-preview__score-factors em {
  color: #f8fafc;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}


.hero-fade-divider {
  height: 4rem;
  background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.5));
  pointer-events: none;
}

.section-band {
  position: relative;
  overflow: hidden;
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.055), transparent 34%, rgba(167, 139, 250, 0.045)),
    linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.24), transparent);
  opacity: 0.85;
}

.section-heading p {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 43rem;
  margin-top: 0.75rem;
  color: white;
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 900;
  text-wrap: balance;
}

.section-heading span {
  display: block;
  max-width: 36rem;
  margin-top: 1rem;
  color: #94a3b8;
  line-height: 1.75;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center h2,
.section-heading.center span {
  margin-inline: auto;
}

.value-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background: rgba(6, 11, 24, 0.6);
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.26);
}

.value-lane {
  min-height: 12rem;
  display: grid;
  align-content: center;
  border-radius: 8px;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.value-lane:hover {
  transform: translateY(-4px);
}

.value-lane span {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-lane strong {
  margin-top: 0.55rem;
  color: white;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 900;
}

.value-lane small {
  margin-top: 0.6rem;
  color: #94a3b8;
  line-height: 1.5;
}

.value-lane.focus {
  border-color: rgba(34, 211, 238, 0.34);
  box-shadow: 0 0 50px rgba(34, 211, 238, 0.1);
}

.value-lane.urgent {
  border-color: rgba(251, 113, 133, 0.34);
  box-shadow: 0 0 50px rgba(251, 113, 133, 0.1);
}

.value-arrow {
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  position: relative;
}

.value-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
  transform: translateY(-50%) rotate(45deg);
}

.feature-band {
  background: rgba(2, 6, 23, 0.22);
}

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

.feature-card,
.plan-card,
.workflow-rail article,
.ops-matrix div {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.66), rgba(2, 6, 23, 0.62)),
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.feature-card,
.plan-card,
.workflow-rail article,
.ops-matrix div {
  --card-glow-x: 18%;
  --card-glow-y: 0%;
}

.feature-card::before,
.plan-card::before,
.workflow-rail article::before,
.ops-matrix div::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
    radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(34, 211, 238, 0.18), transparent 46%),
    radial-gradient(circle at 92% 14%, rgba(167, 139, 250, 0.12), transparent 44%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.feature-card > *,
.plan-card > *,
.workflow-rail article > *,
.ops-matrix div > * {
  position: relative;
  z-index: 1;
}

.feature-card {
  min-height: 14rem;
  padding: 1.35rem;
}

.feature-card:hover,
.plan-card:hover,
.workflow-rail article:hover,
.ops-matrix div:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.34);
  background:
    linear-gradient(180deg, rgba(18, 28, 50, 0.72), rgba(3, 8, 20, 0.68)),
    linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(167, 139, 250, 0.08));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(34, 211, 238, 0.08) inset,
    0 0 44px rgba(34, 211, 238, 0.08);
}

.feature-card:hover::before,
.plan-card:hover::before,
.workflow-rail article:hover::before,
.ops-matrix div:hover::before {
  opacity: 1;
}

.feature-card i {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
}

.feature-card h3,
.ops-matrix h3 {
  position: relative;
  z-index: 1;
  margin-top: 1.15rem;
  color: white;
  font-size: 1.12rem;
  font-weight: 900;
}

.feature-card p,
.ops-matrix p,
.workflow-rail p,
.plan-card p {
  position: relative;
  z-index: 1;
  margin-top: 0.65rem;
  color: #94a3b8;
  line-height: 1.72;
  font-size: 0.94rem;
}

.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.workflow-rail::before {
  display: none;
}

.workflow-rail article {
  position: relative;
  z-index: 1;
  min-height: 15rem;
  padding: 1.35rem;
}

.workflow-rail span {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  font-family: "Fira Code", monospace;
  font-weight: 900;
}

.workflow-rail h3 {
  margin-top: 1.3rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
}

.ops-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.ops-matrix div {
  min-height: 12rem;
  padding: 1.25rem;
}

.ops-matrix i {
  color: var(--green);
  font-size: 1.25rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.2rem;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 30rem;
  padding: 1.3rem;
}

.plan-card.recommended {
  border-color: rgba(34, 211, 238, 0.48);
  background:
    linear-gradient(180deg, rgba(8, 47, 73, 0.58), rgba(15, 23, 42, 0.78)),
    linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(167, 139, 250, 0.12));
  box-shadow: 0 32px 100px rgba(34, 211, 238, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: translateY(-0.6rem);
}

.plan-card::after {
  content: attr(data-plan-tier);
  position: absolute;
  right: 1rem;
  top: 1rem;
  border-radius: 999px;
  padding: 0.28rem 0.5rem;
  color: rgba(226, 232, 240, 0.78);
  font-family: "Fira Code", monospace;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card--free {
  border-color: rgba(148, 163, 184, 0.18);
}

.plan-card--free::after {
  background: rgba(100, 116, 139, 0.14);
}

.plan-card--starter {
  border-color: rgba(34, 211, 238, 0.26);
  box-shadow: 0 22px 70px rgba(34, 211, 238, 0.08);
}

.plan-card--starter::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.22), transparent 48%),
    radial-gradient(circle at 92% 14%, rgba(96, 165, 250, 0.1), transparent 44%);
}

.plan-card--starter::after {
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: rgba(34, 211, 238, 0.11);
  color: #a5f3fc;
}

.plan-card--growth {
  border-color: rgba(34, 211, 238, 0.48);
  box-shadow: 0 32px 100px rgba(34, 211, 238, 0.14), 0 0 48px rgba(139, 92, 246, 0.08);
}

.plan-card--growth::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.24), transparent 48%),
    radial-gradient(circle at 90% 12%, rgba(167, 139, 250, 0.2), transparent 44%);
}

.plan-card--growth::after {
  border: 1px solid rgba(167, 139, 250, 0.2);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(167, 139, 250, 0.14));
  color: #e0f2fe;
}

.plan-card--pro {
  border-color: rgba(217, 70, 239, 0.3);
  box-shadow: 0 24px 80px rgba(139, 92, 246, 0.09);
}

.plan-card--pro::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(139, 92, 246, 0.22), transparent 48%),
    radial-gradient(circle at 92% 12%, rgba(217, 70, 239, 0.14), transparent 44%);
}

.plan-card--pro::after {
  border: 1px solid rgba(217, 70, 239, 0.2);
  background: rgba(139, 92, 246, 0.14);
  color: #f5d0fe;
}

.plan-card.recommended:hover {
  transform: translateY(calc(-0.6rem - 3px));
}

.recommended-badge {
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.58rem;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.14);
  color: #a5f3fc;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.plan-card strong {
  display: block;
  margin-top: 1.05rem;
  color: white;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.3rem;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: #cbd5e1;
  font-size: 0.79rem;
}

.plan-card li::before {
  content: "+";
  margin-right: 0.5rem;
  color: var(--cyan);
}

.plan-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  margin-top: auto;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  color: #e2e8f0;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.plan-link:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.42);
  background: rgba(34, 211, 238, 0.08);
}

.plan-link.primary {
  border-color: transparent;
  color: #04111f;
  background: linear-gradient(135deg, #67e8f9, #a78bfa);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 8px;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(167, 139, 250, 0.1), rgba(251, 113, 133, 0.08)),
    rgba(6, 11, 24, 0.72);
  box-shadow: 0 32px 110px rgba(34, 211, 238, 0.12);
}

.cta-panel p {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-panel h2 {
  margin-top: 0.6rem;
  color: white;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 900;
}

.landing-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(3, 7, 17, 0.84);
}

.landing-footer a {
  color: #94a3b8;
  transition: color 180ms ease;
}

.landing-footer a:hover {
  color: white;
}

.landing-js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(14px) saturate(0.86);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.landing-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.landing-js .feature-grid [data-reveal]:nth-child(2),
.landing-js .workflow-rail [data-reveal]:nth-child(2),
.landing-js .pricing-grid [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.landing-js .feature-grid [data-reveal]:nth-child(3),
.landing-js .workflow-rail [data-reveal]:nth-child(3),
.landing-js .pricing-grid [data-reveal]:nth-child(3) {
  transition-delay: 150ms;
}

.landing-js .feature-grid [data-reveal]:nth-child(4),
.landing-js .workflow-rail [data-reveal]:nth-child(4),
.landing-js .pricing-grid [data-reveal]:nth-child(4) {
  transition-delay: 220ms;
}

@keyframes atmospheric-drift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.32);
    opacity: 1;
  }
}

@keyframes radar-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes node-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.76;
  }
  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes deck-sheen {
  0%,
  100% {
    background-position: -130% 0, 0 0;
  }
  50% {
    background-position: 130% 0, 0 18px;
  }
}

@keyframes kevora-score-pulse {
  0%,
  100% {
    filter: brightness(0.95);
  }
  50% {
    filter: brightness(1.18);
  }
}

@media (max-width: 1180px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-visual {
    min-height: 38rem;
  }

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

  .plan-card.recommended {
    transform: none;
  }

  .plan-card.recommended:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 2.55rem;
  }

  .hero-visual {
    min-height: auto;
    padding-block: 2rem;
  }

  .kevora-preview {
    transform: none;
    width: 100%;
  }

  .radar-halo {
    width: 92vw;
  }

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

  .kevora-preview__split {
    grid-template-columns: 1fr;
  }

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

  .hero-proof span:last-child {
    grid-column: span 2;
  }

  .value-stage {
    grid-template-columns: 1fr;
  }

  .value-arrow {
    width: 1px;
    height: 2.2rem;
    margin-inline: auto;
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  }

  .value-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }

  .workflow-rail,
  .ops-matrix,
  .pricing-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .workflow-rail::before {
    display: none;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .kevora-preview {
    padding: 0.85rem 0.85rem 0.95rem;
    border-radius: 14px;
  }

  .kevora-preview__topbar {
    flex-direction: column;
    gap: 0.5rem;
  }

  .kevora-preview__plan-badge {
    align-self: flex-start;
  }

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

  .kevora-preview__statbar strong {
    font-size: 1.2rem;
  }

  .kevora-preview__priority-grid {
    grid-template-columns: 1fr;
  }

  .kevora-preview__feed-row {
    grid-template-columns: auto auto 1fr;
    row-gap: 0.32rem;
  }

  .kevora-preview__match-badge,
  .kevora-preview__row-meta {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .section-heading h2 {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .kevora-preview {
    transform: none !important;
  }

  .kevora-preview::after,
  .kevora-preview__live-dot,
  .kevora-preview__score-fill {
    animation: none !important;
  }

  .landing-js [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .threat-field {
    display: none;
  }

  .feature-card:hover,
  .plan-card:hover,
  .plan-card.recommended:hover,
  .workflow-rail article:hover,
  .ops-matrix div:hover,
  .hero-proof span:hover,
  .btn:hover {
    transform: none;
  }

  /* Reduced-motion: keep the selected-row tint, but drop the lift, dim,
     and pill brightness shift so the preview reads calmly. */
  .kevora-preview__feed-row,
  .kevora-preview__feed-row:hover,
  .kevora-preview__feed-row.is-active {
    transform: none !important;
  }

  .kevora-preview__feed-list:hover .kevora-preview__feed-row:not(:hover):not(.is-active) {
    opacity: 1;
  }

  .kevora-preview__feed-row:hover .kevora-preview__sev-pill,
  .kevora-preview__feed-row:hover .kevora-preview__source-pill,
  .kevora-preview__feed-row:hover .kevora-preview__match-badge {
    filter: none;
  }
}

/* Touch / no-hover environments: don't pretend rows are interactive. The
   first row stays selected by default (set in markup) and that's the entire
   story on mobile. */
@media (hover: none) {
  .kevora-preview__feed-row {
    cursor: default;
  }

  .kevora-preview__feed-row:hover,
  .kevora-preview__feed-row:not(.is-active):hover,
  .kevora-preview__feed-list:hover .kevora-preview__feed-row:not(:hover):not(.is-active) {
    transform: none;
    opacity: 1;
    filter: none;
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(148, 163, 184, 0.1);
    box-shadow: none;
  }
}

/* ── Kevora logo ─────────────────────────────────────── */
.kevora-logo__kev {
    background: linear-gradient(90deg, #3B82F6, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kevora-logo__mark {
    transition: box-shadow 0.25s ease, filter 0.25s ease;
}

.kevora-logo:hover .kevora-logo__mark {
    box-shadow: 0 0 22px rgba(34, 211, 238, 0.2), 0 0 8px rgba(139, 92, 246, 0.12) inset;
    filter: brightness(1.08);
}

@media (prefers-reduced-motion: reduce) {
    .kevora-logo__mark {
        transition: none !important;
    }
}
