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

/* ── DESIGN TOKENS — DO NOT HARDCODE COLORS OUTSIDE THIS BLOCK ── */
:root {
  /* Backgrounds */
  --bg:          #080a0c;
  --bg2:         #0d1117;
  --bg3:         #111318;
  --border:      rgba(255,255,255,.08);

  /* Brand Colors */
  --red:         #e63946;
  --red-bright:  #ff1a2e;
  --red-glow:    rgba(230,57,70,.3);
  --purple:      #8b5cf6;
  --green:       #10b981;
  --orange:      #f59e0b;
  --blue:        #4361ee;

  /* Text */
  --text:        #e6edf3;
  --sub:         #8b949e;
  --white:       #ffffff;

  /* Fonts */
  --font-sans:   'Inter', -apple-system, sans-serif;
  --font-mono:   'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --max-w:       1100px;
  --radius:      12px;
  --radius-sm:   8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITY ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--sub);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
  transform: translateY(-2px);
}

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }
.fade-in-delay-5 { transition-delay: .5s; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}

.navbar.scrolled {
  background: rgba(8,10,12,.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}

.navbar-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -.3px;
  flex-shrink: 0;
}

.navbar-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.navbar-logo .logo-text {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.navbar-logo .logo-text span { color: var(--red); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--sub);
  transition: color .2s;
}
.navbar-links a:hover { color: var(--white); }

.navbar-cta {
  margin-left: 24px;
  padding: 8px 20px;
  font-size: 14px;
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.navbar-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(8,10,12,.97);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.btn) {
  font-size: 16px;
  font-weight: 500;
  color: var(--sub);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:not(.btn):last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 4px; width: fit-content; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(230,57,70,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-purple {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.hero-content { flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,.1);
  border: 1px solid rgba(230,57,70,.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--white);
}
.hero-title .hl { color: var(--red); }

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--sub);
  letter-spacing: .05em;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 17px;
  color: var(--sub);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  flex-shrink: 0;
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px var(--red-glow));
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin-slow linear infinite;
}
.hero-ring-1 {
  width: 260px; height: 260px;
  border-color: rgba(230,57,70,.2);
  animation-duration: 20s;
}
.hero-ring-2 {
  width: 310px; height: 310px;
  border-color: rgba(139,92,246,.12);
  animation-duration: 30s;
  animation-direction: reverse;
}
.hero-ring-3 {
  width: 360px; height: 360px;
  border-color: rgba(230,57,70,.06);
  animation-duration: 45s;
}

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

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}

.stats-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}
.stat-number .suffix { font-size: .6em; color: var(--red); margin-bottom: 4px; }

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.stat-feat-icon { font-size: 30px; line-height: 1; margin-bottom: 12px; }
.stat-feat-name { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.stat-feat-desc { font-size: 12px; color: var(--sub); line-height: 1.5; }

/* ══════════════════════════════════════
   WHAT IS BT
══════════════════════════════════════ */
.what-section {
  background: var(--bg);
}

.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what-content {}

.what-visual {
  position: relative;
}

.what-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
}

.what-card .wc-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.what-card .wc-prompt { color: var(--red); flex-shrink: 0; }
.what-card .wc-text { color: var(--sub); }
.what-card .wc-text strong { color: var(--text); }

.what-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.threat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid;
}
.threat-tag.red   { background: rgba(230,57,70,.1); border-color: rgba(230,57,70,.25); color: #ff6b78; }
.threat-tag.purple { background: rgba(139,92,246,.1); border-color: rgba(139,92,246,.25); color: #a78bfa; }
.threat-tag.orange { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.25); color: #fbbf24; }
.threat-tag.blue  { background: rgba(67,97,238,.1); border-color: rgba(67,97,238,.25); color: #6b8fff; }

/* ══════════════════════════════════════
   REPORT CATEGORIES
══════════════════════════════════════ */
.categories-section {
  background: var(--bg2);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.category-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .25s ease, transform .25s ease;
  cursor: default;
}

.category-card:hover {
  border-color: var(--card-color, var(--red));
  transform: translateY(-4px);
}

.category-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: var(--card-bg, rgba(230,57,70,.1));
}

.category-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.category-desc {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features-section {
  background: var(--bg);
}

.features-header {
  text-align: center;
  margin-bottom: 56px;
}
.features-header .section-sub { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--feat-color, var(--red));
  opacity: 0;
  transition: opacity .25s ease;
}

.feature-card:hover {
  border-color: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: var(--feat-bg, rgba(230,57,70,.1));
}

.feature-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how-section {
  background: var(--bg2);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}
.how-header .section-sub { margin: 0 auto; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--purple));
  opacity: .4;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--red);
  margin: 0 auto 24px;
  transition: border-color .25s, box-shadow .25s;
}
.how-step:hover .how-step-num {
  border-color: var(--red);
  box-shadow: 0 0 24px var(--red-glow);
}

.how-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.how-step-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   COMMANDS
══════════════════════════════════════ */
.commands-section {
  background: var(--bg);
}

.commands-header {
  margin-bottom: 48px;
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.command-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: border-color .2s, background .2s;
}
.command-row:hover {
  border-color: rgba(230,57,70,.25);
  background: rgba(230,57,70,.04);
}

.command-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 160px;
}

.command-desc {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.5;
}

.commands-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(139,92,246,.08);
  border: 1px solid rgba(139,92,246,.2);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--sub);
  display: flex;
  align-items: center;
  gap: 10px;
}
.commands-note span { color: var(--purple); }

/* ══════════════════════════════════════
   DISCORD ALERT DEMO
══════════════════════════════════════ */
.demo-section {
  background: var(--bg2);
}

.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.demo-content {}

.demo-visual {}

.discord-embed {
  background: #1e1f22;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  max-width: 440px;
}

.embed-border { width: 4px; background: var(--red); border-radius: 4px 0 0 4px; flex-shrink: 0; }
.embed-wrap { display: flex; }
.embed-body { padding: 12px 16px 12px 12px; flex: 1; }

.embed-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.embed-author-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.embed-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.embed-title {
  font-size: 15px;
  font-weight: 700;
  color: #ff6b78;
  margin-bottom: 10px;
}

.embed-desc {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.embed-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.embed-field-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 3px;
}

.embed-field-val {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.embed-field-val.red { color: #ff6b78; }
.embed-field-val.orange { color: #fbbf24; }
.embed-field-val.green { color: #10b981; }

.embed-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 11px;
  color: rgba(255,255,255,.4);
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.demo-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--sub);
}

.demo-feature-item::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(230,57,70,.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-title span { color: var(--red); }

.cta-sub {
  font-size: 17px;
  color: var(--sub);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--sub);
  opacity: .6;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 40px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo img {
  width: 32px; height: 32px;
  object-fit: contain;
}
.footer-logo-text {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.footer-logo-text span { color: var(--red); }

.footer-brand-desc {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--sub);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--sub);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--sub);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--white); }

.footer-owner {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--sub);
}
.footer-owner span { color: var(--red); font-weight: 600; }

/* ══════════════════════════════════════
   PAGE BANNER (inner pages)
══════════════════════════════════════ */
.page-banner {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 120px 40px 60px;
  position: relative;
  overflow: hidden;
}

.page-banner-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: .5;
}

.page-banner-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(230,57,70,.1) 0%, transparent 65%);
  pointer-events: none;
}

.page-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-banner-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-banner-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner-sub {
  font-size: 16px;
  color: var(--sub);
  max-width: 520px;
}

/* ══════════════════════════════════════
   DOCS PAGE
══════════════════════════════════════ */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.docs-sidebar {
  position: sticky;
  top: 84px;
}

.docs-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 14px;
}

.docs-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.docs-nav-links a {
  font-size: 14px;
  color: var(--sub);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.docs-nav-links a:hover,
.docs-nav-links a.active {
  background: rgba(230,57,70,.08);
  color: var(--red);
}

.docs-content {}

.docs-section {
  margin-bottom: 60px;
}

.docs-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.docs-desc {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.7;
  margin-bottom: 20px;
}

.docs-command {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

.docs-command-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.docs-command-name {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
}

.docs-command-perm {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.perm-all   { background: rgba(16,185,129,.12); color: var(--green); border: 1px solid rgba(16,185,129,.25); }
.perm-mod   { background: rgba(67,97,238,.12); color: #6b8fff; border: 1px solid rgba(67,97,238,.25); }
.perm-admin { background: rgba(245,158,11,.12); color: var(--orange); border: 1px solid rgba(245,158,11,.25); }
.perm-owner { background: rgba(230,57,70,.12); color: var(--red); border: 1px solid rgba(230,57,70,.25); }

.docs-command-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.6;
  margin-bottom: 12px;
}

.docs-params {
  background: var(--bg2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.docs-param-row {
  display: flex;
  gap: 12px;
  font-size: 13px;
  padding: 4px 0;
}
.docs-param-name { font-family: var(--font-mono); color: var(--purple); min-width: 140px; }
.docs-param-desc { color: var(--sub); }

/* ══════════════════════════════════════
   SUPPORT PAGE
══════════════════════════════════════ */
.support-intro {
  font-size: 16px;
  color: var(--sub);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}

.support-card {
  max-width: 520px;
  margin: 0 auto 60px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  transition: border-color .25s;
}

.support-card:hover {
  border-color: rgba(230,57,70,.4);
}

.support-card-icon { font-size: 48px; margin-bottom: 20px; }

.support-card-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.5px;
}

.support-card-desc {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 28px;
}

.support-card-amounts {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.support-card-amounts span {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--sub);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
}

.support-card-cta {
  gap: 8px;
  font-size: 16px;
  padding: 14px 32px;
  margin-bottom: 16px;
}

.support-card-note {
  font-size: 12px;
  color: var(--sub);
  opacity: .7;
}

/* ══════════════════════════════════════
   TRUST PAGE
══════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.trust-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.trust-card-icon { font-size: 28px; margin-bottom: 16px; }
.trust-card-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.trust-card-desc { font-size: 14px; color: var(--sub); line-height: 1.7; }

.appeal-block {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 48px;
}

.appeal-block h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.appeal-block p { font-size: 15px; color: var(--sub); line-height: 1.7; margin-bottom: 24px; }

.appeal-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.appeal-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.appeal-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(230,57,70,.12);
  border: 1px solid rgba(230,57,70,.25);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.appeal-step-text { font-size: 14px; color: var(--sub); line-height: 1.6; padding-top: 4px; }

/* ── TRUST: MISSION ── */
.trust-mission {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 48px;
}

.trust-mission h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.trust-mission p { font-size: 15px; color: var(--sub); line-height: 1.75; }
.trust-mission p + p { margin-top: 12px; }

/* ── TRUST: TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s;
}

.testimonial-card:hover { border-color: rgba(139,92,246,.3); }

.testimonial-quote-mark {
  font-size: 36px;
  line-height: 1;
  color: var(--purple);
  opacity: .5;
  font-family: Georgia, serif;
}

.testimonial-text { font-size: 14px; color: var(--text); line-height: 1.75; flex: 1; }

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-author-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.testimonial-author-meta { font-size: 12px; color: var(--sub); font-family: var(--font-mono); }

/* ── DOCS: FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: border-color .2s;
}

.faq-item:hover { border-color: rgba(139,92,246,.25); }
.faq-q { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--sub); line-height: 1.7; }
.faq-a code {
  font-family: var(--font-mono);
  background: rgba(255,255,255,.06);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--purple);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 48px; text-align: center; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .hero-visual { width: 240px; height: 240px; }
  .hero-logo-img { width: 180px; height: 180px; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }

  .what-inner { grid-template-columns: 1fr; gap: 40px; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }

  .commands-grid { grid-template-columns: 1fr; }

  .demo-inner { grid-template-columns: 1fr; gap: 40px; }
  .discord-embed { max-width: 100%; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .support-card { padding: 36px 24px; }

  .trust-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: static; }

  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .navbar { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .stats-bar { padding: 40px 24px; }
  .footer { padding: 48px 24px 28px; }
  .page-banner { padding: 100px 24px 48px; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-cta { display: none; }
  .navbar-hamburger { display: flex; }

  .categories-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
