/*!************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/projects/cobratoxin.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700;800&display=swap");

body:has(.cb) {
  background: #000000;
}
body:has(.cb)::after {
  display: none;
}

.cb {
  --cb-bg: #000000;
  --cb-surface: #0a0a0a;
  --cb-surface-2: #111111;
  --cb-border: rgba(200, 8, 8, 0.22);
  --cb-border-dim: rgba(255, 255, 255, 0.06);
  --cb-text: #f5f5f5;
  --cb-muted: #9ca3af;
  --cb-red: #c80808;
  --cb-red-light: #d81818;
  --cb-red-dark: #8a0606;
  --cb-red-glow: rgba(200, 8, 8, 0.4);
  --cb-grey: #505050;
  --cb-mono: "IBM Plex Mono", ui-monospace, monospace;
  --cb-sans: "Inter", system-ui, sans-serif;
  --cb-max: 1140px;

  position: relative;
  z-index: 10;
  min-height: 100vh;
  background: var(--cb-bg);
  color: var(--cb-text);
  font-family: var(--cb-sans);
  line-height: 1.6;
  overflow-x: hidden;
  isolation: isolate;
}

.cb-grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(200, 8, 8, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 8, 8, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}

.cb-scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 4px
  );
  opacity: 0.35;
}

.cb > *:not(.cb-grid-bg):not(.cb-scanline) {
  position: relative;
  z-index: 2;
}

.cb-wrap {
  max-width: var(--cb-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* ─── Topbar ─────────────────────────────────────────────────── */
.cb-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--cb-border);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.cb-topbar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.cb-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.cb-logo img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(200, 8, 8, 0.35));
}

.cb-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  font-family: var(--cb-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cb-nav a {
  color: var(--cb-muted);
  transition: color 0.2s;
}

.cb-nav a:hover {
  color: var(--cb-red-light);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.cb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}

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

.cb-btn-lg {
  padding: 0.75rem 1.35rem;
  font-size: 0.92rem;
}

.cb-btn-primary {
  background: linear-gradient(135deg, var(--cb-red-light), var(--cb-red-dark));
  color: #fff;
  box-shadow: 0 0 24px var(--cb-red-glow);
}

.cb-btn-primary:hover {
  box-shadow: 0 0 32px var(--cb-red-glow);
}

.cb-btn-ghost {
  border-color: var(--cb-border);
  color: var(--cb-text);
  background: transparent;
}

.cb-btn-ghost:hover {
  border-color: var(--cb-red);
  color: var(--cb-red-light);
}

/* ─── Hero ───────────────────────────────────────────────────── */
.cb-hero {
  padding: 4rem 0 3.5rem;
}

.cb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.cb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--cb-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cb-red-light);
  margin-bottom: 1.25rem;
}

.cb-hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.cb-hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, var(--cb-grey), var(--cb-red-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cb-lead {
  color: var(--cb-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.cb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cb-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin: 0;
}

.cb-stat dt {
  font-family: var(--cb-mono);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cb-red-light);
  margin-bottom: 0.15rem;
}

.cb-stat dd {
  margin: 0;
  font-size: 0.75rem;
  color: var(--cb-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Scan console ───────────────────────────────────────────── */
.cb-console {
  border: 1px solid var(--cb-border);
  border-radius: 6px;
  background: var(--cb-surface);
  box-shadow: 0 0 60px rgba(200, 8, 8, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.cb-console-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--cb-border-dim);
  background: #050505;
  font-family: var(--cb-mono);
  font-size: 0.68rem;
}

.cb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.cb-dot-red { background: #c80808; }
.cb-dot-amber { background: #f59e0b; }
.cb-dot-green { background: #22c55e; }

.cb-console-title {
  margin-left: 0.35rem;
  color: var(--cb-muted);
}

.cb-console-status {
  margin-left: auto;
  color: var(--cb-red-light);
  animation: cb-blink 1.4s step-end infinite;
}

@keyframes cb-blink {
  50% { opacity: 0.35; }
}

.cb-console-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  min-height: 260px;
}

.cb-radar {
  position: relative;
  border-right: 1px solid var(--cb-border-dim);
  background: radial-gradient(circle at center, rgba(200, 8, 8, 0.08), transparent 70%);
  overflow: hidden;
}

.cb-radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(200, 8, 8, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cb-radar-ring-1 { width: 40px; height: 40px; }
.cb-radar-ring-2 { width: 80px; height: 80px; }
.cb-radar-ring-3 { width: 120px; height: 120px; }

.cb-radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--cb-red-light), transparent);
  transform-origin: left center;
  animation: cb-sweep 3s linear infinite;
}

@keyframes cb-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cb-radar-blip {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cb-red-light);
  box-shadow: 0 0 8px var(--cb-red-glow);
}

.cb-radar-blip-1 { top: 28%; left: 62%; }
.cb-radar-blip-2 { top: 58%; left: 38%; animation: cb-pulse 2s ease-in-out infinite; }
.cb-radar-blip-3 { top: 42%; left: 72%; animation: cb-pulse 2.5s ease-in-out infinite 0.5s; }

@keyframes cb-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.cb-terminal {
  padding: 1rem 1.1rem;
  font-family: var(--cb-mono);
  font-size: 0.68rem;
  line-height: 1.85;
  color: #a8b4c4;
  overflow: hidden;
}

.cb-terminal p {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: cb-type-in 0.6s ease both;
}

.cb-terminal p:nth-child(2) { animation-delay: 0.1s; }
.cb-terminal p:nth-child(3) { animation-delay: 0.2s; }
.cb-terminal p:nth-child(4) { animation-delay: 0.3s; }
.cb-terminal p:nth-child(5) { animation-delay: 0.4s; }
.cb-terminal p:nth-child(6) { animation-delay: 0.5s; }

@keyframes cb-type-in {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}

.cb-prompt {
  color: var(--cb-red-light);
}

.cb-console-foot {
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--cb-border-dim);
  font-family: var(--cb-mono);
  font-size: 0.68rem;
  color: var(--cb-muted);
}

.cb-console-foot svg {
  color: var(--cb-red);
}

/* ─── Sections ───────────────────────────────────────────────── */
.cb-section {
  padding: 4rem 0;
}

.cb-section-dim {
  background: rgba(200, 8, 8, 0.03);
  border-top: 1px solid var(--cb-border-dim);
  border-bottom: 1px solid var(--cb-border-dim);
}

.cb-section-head {
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.cb-section-tag {
  font-family: var(--cb-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cb-red-light);
  margin-bottom: 0.65rem;
}

.cb-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cb-section-head p {
  color: var(--cb-muted);
  font-size: 0.95rem;
}

/* ─── Modules ────────────────────────────────────────────────── */
.cb-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cb-module {
  padding: 1.35rem;
  border: 1px solid var(--cb-border-dim);
  border-radius: 4px;
  background: var(--cb-surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cb-module:hover {
  border-color: var(--cb-border);
  box-shadow: 0 0 24px rgba(200, 8, 8, 0.08);
}

.cb-module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  color: var(--cb-red-light);
}

.cb-module-status {
  font-family: var(--cb-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #22c55e;
}

.cb-module h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.cb-module p {
  font-size: 0.82rem;
  color: var(--cb-muted);
  line-height: 1.55;
}

/* ─── Pipeline ───────────────────────────────────────────────── */
.cb-pipeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
}

.cb-pipeline li {
  position: relative;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--cb-border-dim);
  background: var(--cb-surface);
}

.cb-pipeline li:first-child { border-radius: 4px 0 0 4px; }
.cb-pipeline li:last-child { border-radius: 0 4px 4px 0; }

.cb-pipeline-step {
  display: block;
  font-family: var(--cb-mono);
  font-size: 0.62rem;
  color: var(--cb-red-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
}

.cb-pipeline h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.cb-pipeline p {
  font-size: 0.8rem;
  color: var(--cb-muted);
  line-height: 1.5;
}

.cb-pipeline-connector {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 2px;
  height: 24px;
  background: var(--cb-red);
  transform: translateY(-50%);
  z-index: 1;
}

/* ─── Surface map ────────────────────────────────────────────── */
.cb-surface-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.25rem;
  align-items: start;
}

.cb-monitor {
  border: 1px solid var(--cb-border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cb-surface);
  box-shadow: 0 0 40px rgba(200, 8, 8, 0.1);
}

.cb-monitor-bar {
  display: flex;
  gap: 6px;
  padding: 0.55rem 0.85rem;
  background: #050505;
  border-bottom: 1px solid var(--cb-border-dim);
}

.cb-monitor-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cb-red);
  opacity: 0.6;
}

.cb-monitor img {
  width: 100%;
  display: block;
}

.cb-threat-feed {
  border: 1px solid var(--cb-border);
  border-radius: 6px;
  background: var(--cb-surface);
  overflow: hidden;
}

.cb-threat-feed h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  font-family: var(--cb-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--cb-border-dim);
  color: var(--cb-red-light);
}

.cb-threat-feed ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cb-threat {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--cb-border-dim);
  display: grid;
  gap: 0.2rem;
}

.cb-threat:last-child {
  border-bottom: none;
}

.cb-threat-level {
  font-family: var(--cb-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cb-threat strong {
  font-size: 0.82rem;
  font-weight: 600;
}

.cb-threat span:last-child {
  font-size: 0.75rem;
  color: var(--cb-muted);
}

.cb-threat-critical .cb-threat-level { color: #ef4444; }
.cb-threat-high .cb-threat-level { color: #f97316; }
.cb-threat-medium .cb-threat-level { color: #f59e0b; }
.cb-threat-low .cb-threat-level { color: #22c55e; }

/* ─── About ──────────────────────────────────────────────────── */
.cb-about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.cb-about-main h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cb-about-main > p {
  color: var(--cb-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.cb-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cb-features li {
  padding-left: 1rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--cb-muted);
}

.cb-features li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cb-red);
  font-size: 0.75rem;
}

.cb-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cb-stack-tag {
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--cb-border-dim);
  border-radius: 3px;
  font-family: var(--cb-mono);
  font-size: 0.68rem;
  color: var(--cb-red-light);
}

.cb-about-panels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cb-panel {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--cb-border-dim);
  border-radius: 4px;
  background: var(--cb-surface);
}

.cb-panel-warn {
  border-left: 3px solid #f59e0b;
}

.cb-panel-ok {
  border-left: 3px solid var(--cb-red);
  background: rgba(200, 8, 8, 0.05);
}

.cb-panel h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--cb-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.cb-panel-warn h3 { color: #fbbf24; }
.cb-panel-ok h3 { color: var(--cb-red-light); }

.cb-panel p {
  font-size: 0.86rem;
  color: var(--cb-muted);
  line-height: 1.65;
}

/* ─── CTA & footer ───────────────────────────────────────────── */
.cb-cta {
  padding: 4rem 0;
}

.cb-cta-inner {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--cb-border);
  border-radius: 6px;
  background: var(--cb-surface);
}

.cb-cta-prompt {
  font-family: var(--cb-mono);
  font-size: 0.72rem;
  color: var(--cb-muted);
  margin-bottom: 1.25rem;
  word-break: break-all;
}

.cb-cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cb-cta-inner > p {
  color: var(--cb-muted);
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

.cb-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cb-footer {
  padding: 1.75rem 0 2.5rem;
  border-top: 1px solid var(--cb-border-dim);
}

.cb-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--cb-muted);
}

.cb-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.cb-footer-links a {
  color: var(--cb-muted);
  transition: color 0.2s;
}

.cb-footer-links a:hover {
  color: var(--cb-red-light);
}

/* ─── About page ─────────────────────────────────────────────── */
.cb-about-hero {
  padding: 3.5rem 0 1rem;
  text-align: center;
}
.cb-about-hero-logo {
  display: block;
  width: min(320px, 85vw);
  height: auto;
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 0 24px rgba(200, 8, 8, 0.45));
}
.cb-about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.cb-about-hero-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--cb-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.cb-about-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cb-about-teaser h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.cb-about-teaser p {
  color: var(--cb-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}
.cb-about-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.cb-about-principle {
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--cb-border-dim);
  border-radius: 4px;
  background: var(--cb-surface);
  border-left: 3px solid var(--cb-red);
}
.cb-about-principle h3 {
  font-weight: 600;
  margin-bottom: 0.45rem;
  font-family: var(--cb-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  color: var(--cb-red-light);
}
.cb-about-principle p {
  font-size: 0.85rem;
  color: var(--cb-muted);
  line-height: 1.6;
  margin: 0;
}
.cb-about-audiences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cb-about-audience {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--cb-border-dim);
  border-radius: 4px;
  background: var(--cb-surface);
}
.cb-about-audience svg {
  color: var(--cb-red);
  margin-bottom: 0.75rem;
}
.cb-about-audience h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.cb-about-audience p {
  font-size: 0.8rem;
  color: var(--cb-muted);
  line-height: 1.55;
  margin: 0;
}
.cb-about-monitor {
  max-width: 900px;
  margin: 0 auto;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .cb-nav { display: none; }
  .cb-hero-grid { grid-template-columns: 1fr; }
  .cb-console { order: -1; }
  .cb-modules { grid-template-columns: 1fr 1fr; }
  .cb-pipeline { grid-template-columns: 1fr 1fr; }
  .cb-pipeline li:first-child,
  .cb-pipeline li:last-child { border-radius: 0; }
  .cb-surface-layout { grid-template-columns: 1fr; }
  .cb-about { grid-template-columns: 1fr; }
  .cb-about-principles { grid-template-columns: 1fr; }
  .cb-about-audiences { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .cb-modules { grid-template-columns: 1fr; }
  .cb-pipeline { grid-template-columns: 1fr; }
  .cb-console-body { grid-template-columns: 1fr; }
  .cb-radar { min-height: 120px; border-right: none; border-bottom: 1px solid var(--cb-border-dim); }
  .cb-hero-actions { flex-direction: column; }
  .cb-hero-actions .cb-btn { width: 100%; justify-content: center; }
  .cb-stats { flex-direction: column; gap: 1rem; }
  .cb-about-audiences { grid-template-columns: 1fr; }
  .cb-about-teaser { flex-direction: column; align-items: flex-start; }
}

