:root {
  --bg: #0D0D0F;
  --bg-alt: #111116;
  --bg-card: #13131A;
  --fg: #F0F0EC;
  --fg-dim: #7A7A70;
  --accent: #C8FF3C;
  --accent-dim: rgba(200, 255, 60, 0.12);
  --border: rgba(255,255,255,0.07);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --r: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* SCENARIO CHANNEL VARIANTS */
.scenario-channel {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.scenario-channel--voice {
  color: var(--fg-dim);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  font-family: var(--font-body);
}
.nav-right {
  display: flex;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--fg);
}
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--accent);
  color: #0D0D0F;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* SECTION UTILITIES */
.section-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-body {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 560px;
}

/* HERO */
.hero {
  padding: 80px 40px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,255,60,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-body {
  font-size: 18px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--accent);
  color: #0D0D0F;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 8px;
  width: fit-content;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.hero-cta-sub {
  font-size: 12px;
  color: var(--fg-dim);
  font-family: var(--font-body);
}

/* THREAT GRID */
.hero-visual {
  display: flex;
  align-items: flex-start;
}
.threat-grid {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  font-size: 11px;
  font-family: 'Courier New', monospace;
}
.threat-label-top, .threat-label-bottom {
  padding: 8px 14px;
  background: rgba(200,255,60,0.06);
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 0.15em;
  font-family: var(--font-head);
  text-align: center;
  border-top: 1px solid rgba(200,255,60,0.15);
}
.threat-label-bottom { border-top: 1px solid rgba(200,255,60,0.15); border-bottom: none; }
.threat-col-headers {
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.threat-col-head {
  padding: 6px 10px;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  font-family: var(--font-head);
}
.threat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.threat-row:last-child { border-bottom: none; }
.threat-row:hover { background: var(--accent-dim); }
.threat-cell {
  padding: 8px 10px;
  color: var(--fg-dim);
  font-size: 10px;
  line-height: 1.4;
  border-right: 1px solid var(--border);
}
.threat-cell:last-child { border-right: none; }
.threat-cell--label { color: var(--fg); }
.threat-cell--reason { color: rgba(200,255,60,0.7); }
.threat-cell--risk { text-align: center; font-weight: 700; font-size: 9px; letter-spacing: 0.08em; }
.risk-high { color: #FF4D4D; }
.risk-med { color: #FFB84D; }

/* THREAT MATRIX */
.threat-matrix {
  padding: 100px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.matrix-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.matrix-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.matrix-card:hover { border-color: rgba(200,255,60,0.25); }
.matrix-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.matrix-card:hover::after { opacity: 1; }
.matrix-icon {
  margin-bottom: 24px;
}
.matrix-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.matrix-card p {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.65;
  margin-bottom: 24px;
}
.matrix-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.matrix-tags span {
  font-size: 10px;
  font-family: var(--font-head);
  padding: 4px 10px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* ATTACK FLOW */
.attack-flow {
  padding: 100px 40px;
}
.attack-flow-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.attack-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.attack-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
}
.step-number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.attack-step h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.attack-step p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* STATS */
.proof-stats {
  padding: 80px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  padding: 0 40px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-value {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1;
}
.stat-desc {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* TRUST */
.trust-section {
  padding: 60px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,255,60,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.trust-desc {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}
.manifesto-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.manifesto-attr {
  font-size: 14px;
  color: var(--fg-dim);
  font-family: var(--font-body);
}

/* CLOSING */
.closing-section {
  padding: 100px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.closing-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 48px;
}
.closing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.closing-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.5;
}
.cf-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,255,60,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.closing-vision p {
  font-size: 17px;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.closing-cta-row {
  margin-top: 48px;
}
.btn-primary--large {
  padding: 18px 48px;
  font-size: 17px;
}

/* NEWSLETTER WIDGET */
.newsletter-section {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.newsletter-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 18px;
}
.newsletter-body {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 32px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form .newsletter-input {
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.newsletter-form .newsletter-input::placeholder { color: var(--fg-dim); }
.newsletter-form .newsletter-input:focus { border-color: rgba(200,255,60,0.4); }
.newsletter-submit {
  padding: 16px 32px;
  background: var(--accent);
  color: #0D0D0F;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.newsletter-submit:hover { opacity: 0.88; transform: translateY(-2px); }
.newsletter-fineprint {
  font-size: 12px;
  color: var(--fg-dim);
  margin: 0;
}
.newsletter-flash {
  margin: 0 auto;
  max-width: 520px;
  padding: 14px 18px;
  border: 1px solid rgba(200,255,60,0.35);
  background: rgba(200,255,60,0.08);
  border-radius: 8px;
  font-size: 14px;
  color: var(--fg);
}

/* FOOTER */
.footer {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  flex: 1;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-dim);
}
.footer-sep { color: var(--border); }
.footer-link { color: var(--fg-dim); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner,
  .attack-flow-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .matrix-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    flex-direction: column;
    gap: 48px;
  }
  .stat { padding: 0; }
  .stat-divider { width: 60px; height: 1px; }
  .closing-features {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .hero { padding: 60px 24px 80px; }
  .threat-matrix,
  .attack-flow,
  .proof-stats,
  .trust-section,
  .manifesto,
  .closing-section {
    padding: 60px 24px;
  }
  .navbar { padding: 0 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-wrap: wrap; }
  .footer-tagline { flex: 1 0 100%; order: 3; margin-top: 8px; }
  .manifesto-quote { font-size: 22px; }
  .threat-col-headers .threat-col-head:nth-child(2),
  .threat-row .threat-cell:nth-child(2) { display: none; }
  .threat-col-headers { grid-template-columns: 1fr 60px; }
  .threat-row { grid-template-columns: 1fr 60px; }
}