:root {
  --bg: #0b0c0e;
  --bg-alt: #141518;
  --panel: #1a1c20;
  --line: #2a2c31;
  --red: #a4201f;
  --red-bright: #c92a29;
  --gold: #b6924f;
  --gold-bright: #d4af6f;
  --ink: #2b2b2e;
  --paper: #f4f2ec;
  --muted: #9a9ba1;
  --white: #ffffff;
  --radius: 4px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Barlow Condensed', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.5em;
  color: var(--white);
}

p { color: var(--muted); margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.1em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red-bright);
}
.eyebrow-name { color: var(--gold-bright); font-weight: 600; }
.eyebrow-sep { color: var(--line); font-size: 0.85em; }
.eyebrow-tag { color: var(--muted); font-weight: 400; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(196, 42, 41, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(196, 42, 41, 0.75); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ---------- NAV ---------- */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 12, 14, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 40px; width: auto; }
.brand-mark {
  border-radius: 8px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.55);
}
.brand-text {
  font-family: 'Oswald', Arial, sans-serif;
  line-height: 1.05;
}
.brand-text .name {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--white);
  font-weight: 600;
}
.brand-text .sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--red-bright);
}
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a { color: var(--muted); transition: color 0.2s ease; position: relative; }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--paper); display: block; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-alt);
    padding: 22px 28px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 78% 32%, rgba(164, 32, 31, 0.22), transparent 45%),
    radial-gradient(circle at 20% 85%, rgba(182, 146, 79, 0.12), transparent 40%),
    var(--bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%; left: 82%;
  width: 900px; height: 900px;
  margin: -450px 0 0 -450px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(182,146,79,0.14) 0 1px, transparent 1px 90px);
  opacity: 0.55;
}
.hero::after {
  content: "";
  position: absolute;
  top: 50%; left: 82%;
  width: 900px; height: 900px;
  margin: -450px 0 0 -450px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(196,42,41,0.5), transparent 22%);
  animation: sweep 6s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.5;
}
@keyframes sweep { to { transform: rotate(360deg); } }

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 40px;
}
.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(182, 146, 79, 0.08);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 22px;
}
.stage-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-bright);
  animation: pulse 1.6s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.04;
  max-width: 16ch;
}
.hero h1 span { color: var(--red-bright); }
.hero .lead {
  max-width: 52ch;
  font-size: 1.08rem;
  color: #c7c8cd;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 720px;
}
.hero-stats .stat b {
  display: block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.5rem;
  color: var(--gold-bright);
}
.hero-stats .stat span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 28px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
.scroll-cue .bar { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); }

/* ---------- SECTION SHELL ---------- */
section { padding: 110px 0; position: relative; }
section.alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- THREAT ---------- */
.threat-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .threat-grid { grid-template-columns: 1fr; } }
.threat-copy p { font-size: 1.02rem; }
.threat-copy .highlight {
  border-left: 3px solid var(--red-bright);
  padding: 4px 0 4px 20px;
  color: var(--paper);
  font-size: 1.05rem;
  margin-top: 24px;
}
.threat-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(182,146,79,0.18) 0 1px, transparent 1px 13%),
    var(--panel);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.threat-visual::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(196,42,41,0.55), transparent 18%);
  animation: sweep 4.5s linear infinite;
}
.threat-visual .core {
  position: relative; z-index: 2;
  width: 34%; height: 34%;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 40px 10px rgba(196,42,41,0.45);
  display: flex; align-items: center; justify-content: center;
}
.threat-visual .core svg { width: 46%; height: 46%; }

/* ---------- CAPABILITIES ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 980px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-card {
  background: var(--bg-alt);
  padding: 34px 28px;
  transition: background 0.25s ease;
}
.cap-card:hover { background: var(--panel); }
.cap-card .idx {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 18px;
}
.cap-card .icon {
  width: 44px; height: 44px;
  margin-bottom: 20px;
  color: var(--red-bright);
}
.cap-card .icon svg { width: 100%; height: 100%; }
.cap-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.cap-card p { font-size: 0.92rem; margin: 0; }

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 44px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.2rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  display: block;
  margin-bottom: 6px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.92rem; }
.steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px; right: -18px;
  width: 14px; height: 1px;
  background: var(--line);
}
@media (max-width: 900px) { .steps .step::after { display: none; } }

/* ---------- DEMO / VIDEO ---------- */
.demo-shell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
}
.demo-shell video {
  width: 100%;
  display: block;
  max-height: 74vh;
  background: #000;
}
.demo-tag {
  position: absolute;
  top: 18px; left: 18px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(11,12,14,0.75);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 3;
}
.demo-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-bright);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- WHY ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { border-top: 2px solid var(--gold); padding-top: 20px; }
.why-item h3 { font-size: 1.1rem; }
.why-item p { font-size: 0.92rem; }

/* ---------- CTA / CONTACT ---------- */
.cta-section {
  background: linear-gradient(135deg, #1c1010, var(--bg-alt) 55%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }
.contact-info .row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.contact-info .row b { color: var(--white); min-width: 110px; display: inline-block; font-family: 'Oswald', Arial, sans-serif; letter-spacing: 0.06em; font-size: 0.78rem; text-transform: uppercase; color: var(--gold-bright); }

form.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 13px 14px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.field select { appearance: none; cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: -4px; }

.form-privacy a { color: var(--gold-bright); text-decoration: underline; }

/* ---------- PRIVACY PAGE ---------- */
.legal { padding: 130px 0 80px; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.legal h2 { font-size: 1.1rem; margin-top: 2em; color: var(--gold-bright); }
.legal p, .legal li { color: #c7c8cd; font-size: 1.02rem; }
.legal ul { padding-left: 1.2em; margin: 0 0 1em; }
.legal li { margin-bottom: 0.5em; }
.legal b { color: var(--paper); }
.legal .updated { font-size: 0.85rem; color: var(--muted); }
.legal hr { border: none; border-top: 1px solid var(--line); margin: 70px 0; }
.lang-switch { display: flex; gap: 24px; margin-bottom: 40px; font-family: 'Oswald', Arial, sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.lang-switch a { color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.lang-switch a:hover { color: var(--gold-bright); border-color: var(--gold); }
.legal article { scroll-margin-top: 100px; }

/* ---------- FOOTER ---------- */
footer {
  padding: 46px 0 34px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 30px; }
.footer-brand span { font-family: 'Oswald', Arial, sans-serif; font-size: 0.8rem; letter-spacing: 0.1em; color: var(--muted); }
.footer-brand-text { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.footer-brand-line { display: flex; align-items: baseline; gap: 8px; }
.footer-brand-line b { color: var(--paper); font-weight: 600; font-style: normal; }
.footer-brand-line i { color: var(--muted); font-style: normal; font-size: 0.9em; }
.footer-brand-line i::before { content: "\2013\00A0"; }
.footer-orgnr { font-size: 0.68rem; letter-spacing: 0.08em; color: #6a6b70; }
.footer-links { display: flex; gap: 24px; font-size: 0.8rem; color: var(--muted); }
.footer-links a:hover { color: var(--gold-bright); }
.footer-fine { font-size: 0.72rem; color: #6a6b70; margin-top: 20px; text-align: center; letter-spacing: 0.04em; }
