@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-void: #030009;
  --bg-base: #08001a;
  --bg-surface: #0f0228;
  --bg-card: #130330;
  --bg-card-hover: #1a0440;

  --cyan: #00e5ff;
  --cyan-dim: #00b8d4;
  --cyan-ghost: rgba(0, 229, 255, 0.08);

  --green: #00ff88;
  --green-dim: #00cc6a;
  --green-ghost: rgba(0, 255, 136, 0.08);

  --purple: #c44fff;
  --purple-mid: #7b2be2;
  --purple-ghost: rgba(196, 79, 255, 0.08);

  --text-bright: #f2f0ff;
  --text-primary: #ccc8e8;
  --text-secondary: #8a87a8;
  --text-muted: #504d6a;

  --border-subtle: rgba(0, 229, 255, 0.1);
  --border-mid: rgba(0, 229, 255, 0.28);
  --border-bright: rgba(0, 229, 255, 0.6);

  --glow-cyan: 0 0 24px rgba(0, 229, 255, 0.35), 0 0 60px rgba(0, 229, 255, 0.1);
  --glow-green: 0 0 24px rgba(0, 255, 136, 0.35), 0 0 60px rgba(0, 255, 136, 0.1);

  --radius: 6px;
  --radius-lg: 12px;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Cyber grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient purple glow */
body::after {
  content: '';
  position: fixed;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(100, 30, 180, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-bright);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

code, pre { font-family: var(--font-mono); }

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

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8, 0, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img { height: 34px; width: auto; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: 0.1em;
}

.nav-logo-text span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.nav-cta {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 7px 18px;
  border-radius: var(--radius);
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-links a.nav-cta::after { display: none; }

.nav-links a.nav-cta:hover {
  background: var(--cyan-ghost);
  box-shadow: var(--glow-cyan);
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-mid);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before { content: '//'; color: var(--green); }

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan) 30%, var(--purple) 70%, transparent);
  opacity: 0.5;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-ghost);
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
  margin-bottom: 1.8rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.0;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 45%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--cyan-dim);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-stat-value.c { color: var(--cyan); }
.hero-stat-value.g { color: var(--green); }
.hero-stat-value.p { color: var(--purple); }

/* ── Slideshow ───────────────────────────────────────────── */
.slideshow-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 0 80px rgba(0, 229, 255, 0.08), 0 0 40px rgba(120, 43, 226, 0.08);
}

.slide {
  display: none;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.slide.active { display: block; }

.slide-nav {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  padding: 0;
}

.slide-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple-mid) 100%);
  color: var(--bg-void);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.5), 0 0 60px rgba(123, 43, 226, 0.25);
  transform: translateY(-2px);
  color: var(--bg-void);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-mid);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.12);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--cyan-dim) 100%);
  color: var(--bg-void);
}

.btn-green:hover {
  box-shadow: var(--glow-green);
  transform: translateY(-2px);
  color: var(--bg-void);
}

.btn-lg { padding: 16px 40px; font-size: 0.8rem; }
.btn-xl { padding: 20px 48px; font-size: 0.88rem; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-ghost), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.card:hover {
  border-color: var(--border-mid);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.icon-c { background: var(--cyan-ghost); border: 1px solid rgba(0, 229, 255, 0.2); }
.icon-g { background: var(--green-ghost); border: 1px solid rgba(0, 255, 136, 0.2); }
.icon-p { background: var(--purple-ghost); border: 1px solid rgba(196, 79, 255, 0.2); }

.card-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Grids ───────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Terminal block ──────────────────────────────────────── */
.terminal {
  background: #04000e;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.83rem;
}

.terminal-bar {
  background: var(--bg-card);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-red { background: #ff5f57; }
.t-yellow { background: #febc2e; }
.t-green-d { background: #28c840; }

.terminal-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-left: auto;
}

.terminal-body {
  padding: 1.5rem;
  line-height: 2.2;
}

.t-prompt { color: var(--green); }
.t-cmd { color: var(--text-primary); }
.t-comment { color: var(--text-muted); }
.t-out { color: var(--cyan-dim); }
.t-key { color: var(--purple); }

/* ── Feature table ───────────────────────────────────────── */
.ftable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.ftable th {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.ftable td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  vertical-align: top;
}

.ftable tr:hover td {
  background: rgba(0, 229, 255, 0.025);
  color: var(--text-primary);
}

.ftable td:first-child {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--green);
  white-space: nowrap;
}

/* ── Feature list ────────────────────────────────────────── */
.feat-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

.feat-list li::before {
  content: '▸';
  color: var(--green);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 3px;
}

/* ── Tags ────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}

.tag-c { background: var(--cyan-ghost); color: var(--cyan); border: 1px solid rgba(0, 229, 255, 0.2); }
.tag-g { background: var(--green-ghost); color: var(--green); border: 1px solid rgba(0, 255, 136, 0.2); }
.tag-p { background: var(--purple-ghost); color: var(--purple); border: 1px solid rgba(196, 79, 255, 0.2); }

.tag-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }

/* ── Neon divider ────────────────────────────────────────── */
.neon-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan) 30%, var(--purple) 70%, transparent);
  opacity: 0.3;
  margin: 5rem 0;
}

/* ── Pricing card ────────────────────────────────────────── */
.pricing-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
}

.pricing-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--cyan), var(--purple-mid));
  z-index: -1;
  opacity: 0.5;
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan-ghost), var(--purple-ghost));
  border: 1px solid var(--border-mid);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--text-bright);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pricing-period {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.pricing-feats {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

.pricing-feats li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-feats li:last-child { border-bottom: none; }

.chk { color: var(--green); font-size: 0.8rem; flex-shrink: 0; margin-top: 3px; }

.pricing-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.pricing-note svg { opacity: 0.5; }

/* ── Download page ───────────────────────────────────────── */
.download-hero {
  text-align: center;
  padding: 5rem 0 3rem;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-ghost);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.dl-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
}

.dl-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--glow-cyan);
  transform: translateY(-5px);
}

.dl-card-icon { font-size: 3rem; margin-bottom: 1rem; }

.dl-card-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-bright);
  margin-bottom: 0.4rem;
}

.dl-card-file {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.dl-steps {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.dl-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.dl-step:last-child { border-bottom: none; }

.dl-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cyan-ghost);
  border: 1px solid var(--border-mid);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dl-step-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
}

.dl-step-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.dl-step-code {
  margin-top: 0.75rem;
  background: var(--bg-void);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--green);
  white-space: pre;
}

/* ── Docs page ───────────────────────────────────────────── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.doc-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: all 0.22s;
  color: inherit;
}

.doc-link:hover {
  border-color: var(--border-mid);
  background: var(--bg-card-hover);
  transform: translateX(5px);
  color: inherit;
}

.doc-link-icon { font-size: 1.5rem; flex-shrink: 0; }

.doc-link-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-bright);
  margin-bottom: 3px;
}

.doc-link-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ── Architecture visual ─────────────────────────────────── */
.arch-visual {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
}

.arch-layer {
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  text-align: center;
  transition: background 0.3s;
}

.arch-layer:hover { background: var(--bg-card-hover); }

.arch-layer-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.arch-layer-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.arch-layer-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

.arch-prefix {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── Veteran badge ───────────────────────────────────────── */
.veteran-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  max-width: 480px;
  margin-top: 2rem;
}

.veteran-strip img { height: 44px; width: auto; opacity: 0.9; }

.veteran-text-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-bright);
  margin-bottom: 3px;
}

.veteran-text-sub { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.03) 50%, transparent);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-band p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

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

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-void);
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 28px; width: auto; opacity: 0.7; }

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a { font-size: 0.72rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--text-secondary); }

/* ── Utility ─────────────────────────────────────────────── */
.text-c { color: var(--cyan); }
.text-g { color: var(--green); }
.text-p { color: var(--purple); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mono { font-family: var(--font-mono); }

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .feat-list { grid-template-columns: 1fr; }
  .arch-visual { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .slideshow-wrap { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(8, 0, 26, 0.98);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav { position: relative; }

  .section { padding: 3.5rem 0; }
  .pricing-price { font-size: 3.5rem; }

  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
