/* ── CSS variables ───────────────────────────────────────── */
:root {
  --lime: #84cc16;
  --lime-dim: #65a30d;
  --lime-glow: rgba(132,204,22,0.12);
  --border: rgba(132,204,22,0.12);
}
* { box-sizing: border-box; }
body { background: #030608; color: #f1f5f9; font-family: 'Inter', sans-serif; overflow-x: hidden; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* ── Section backgrounds ─────────────────────────────────── */
.bg-hero {
  background: #030608
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(132,204,22,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(56,189,248,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 10% 80%, rgba(167,139,250,0.05) 0%, transparent 50%);
}
.bg-section { background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(132,204,22,0.04) 0%, transparent 70%); }
.section-dark { background: rgba(0,0,0,0.3); }
.section-border {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.3);
}

/* ── Glass surfaces ──────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}
.glass-lime {
  background: rgba(132,204,22,0.04);
  border: 1px solid rgba(132,204,22,0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

/* ── Nav ─────────────────────────────────────────────────── */
.navbar { backdrop-filter: blur(20px); background: rgba(3,6,8,0.8); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-link { color: #94a3b8; font-size: 14px; transition: color 0.2s; }
.nav-link:hover { color: #f1f5f9; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  background: var(--lime);
  color: #030608;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover { background: #a3e635; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(132,204,22,0.3); }
.btn-primary--sm   { padding: 9px 20px; font-size: 13px; }
.btn-primary--lg   { font-size: 15px; padding: 14px 32px; }
.btn-primary--xl   { font-size: 16px; padding: 16px 40px; }
.btn-primary--full { width: 100%; justify-content: center; }

.btn-ghost {
  background: transparent;
  color: #94a3b8;
  font-weight: 500;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: #f1f5f9; }
.btn-ghost--lg   { font-size: 15px; padding: 14px 32px; }
.btn-ghost--xl   { font-size: 16px; padding: 16px 40px; }
.btn-ghost--full { width: 100%; justify-content: center; }

/* ── Gradient text ───────────────────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, #84cc16 0%, #4ade80 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-subtle {
  background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes float      { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes fadeUp     { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse-glow { 0%,100%{box-shadow:0 0 20px rgba(132,204,22,0.2)} 50%{box-shadow:0 0 40px rgba(132,204,22,0.4)} }
@keyframes scan       { 0%{transform:translateY(0)} 100%{transform:translateY(100%)} }
@keyframes blink      { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes marquee    { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes badge-drift{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes badge-ping { 0%{transform:scale(1);opacity:0.8} 70%{transform:scale(2.2);opacity:0} 100%{transform:scale(2.2);opacity:0} }

.float     { animation: float 6s ease-in-out infinite; }
.fade-up   { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.delay-1   { animation-delay: 0.1s; }
.delay-2   { animation-delay: 0.2s; }
.delay-3   { animation-delay: 0.3s; }
.delay-4   { animation-delay: 0.4s; }
.delay-5   { animation-delay: 0.5s; }
.glow-border { animation: pulse-glow 3s ease-in-out infinite; }

/* ── Logo icon ───────────────────────────────────────────── */
.logo-icon {
  width: 45px; height: 45px;
  background: linear-gradient(135deg, #84cc16, #4ade80);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(132,204,22,0.35);
}
.logo-icon-sm {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #84cc16, #4ade80);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-name { font-size: 17px; letter-spacing: 0.04em; }

/* ── Hero decorative rings ───────────────────────────────── */

/* ── Threat attack badges ────────────────────────────────── */
.attack-badge {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  padding: 6px 13px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  pointer-events: none;
  backdrop-filter: blur(10px);
  animation: badge-drift ease-in-out infinite;
  z-index: 2;
  letter-spacing: 0.02em;
}
.attack-badge--red {
  top: 22%; left: 5%;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.18);
  color: #fca5a5;
  animation-duration: 10s;
  animation-delay: 0s;
}
.attack-badge--amber {
  top: 30%; right: 5%;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.18);
  color: #fcd34d;
  animation-duration: 13s;
  animation-delay: -4s;
}
.attack-badge--lime {
  top: 55%; right: 4%;
  background: rgba(132,204,22,0.06);
  border: 1px solid rgba(132,204,22,0.18);
  color: #84cc16;
  animation-duration: 11s;
  animation-delay: -2s;
}
.attack-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; position: relative; }
.attack-dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 1px solid currentColor; animation: badge-ping 2s ease-out infinite; }
.attack-dot--red   { background: #ef4444; color: #ef4444; }
.attack-dot--amber { background: #f59e0b; color: #f59e0b; }
.attack-dot--lime  { background: #84cc16; color: #84cc16; }

/* ── Pill tag ─────────────────────────────────────────────── */
.pill-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(132,204,22,0.08);
  border: 1px solid rgba(132,204,22,0.2);
  border-radius: 20px; padding: 5px 14px;
  font-size: 12px; font-family: 'JetBrains Mono', monospace;
  color: var(--lime);
}
.blink-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
  animation: blink 1.5s step-end infinite;
}

/* ── Hero text ───────────────────────────────────────────── */
.hero-headline { font-size: clamp(38px, 5.5vw, 76px); letter-spacing: -0.03em; }
.hero-sub      { color: #94a3b8; font-size: clamp(16px, 1.8vw, 19px); line-height: 1.75; }
.hero-fade {
  height: 80px;
  background: linear-gradient(to bottom, transparent, #030608);
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

/* ── Dashboard preview ───────────────────────────────────── */
.dashboard-preview { border-radius: 16px; overflow: hidden; border: 1px solid rgba(132,204,22,0.15); box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 60px rgba(132,204,22,0.08); }

.dash-navbar {
  background: #030608;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(132,204,22,0.1);
  display: flex; align-items: center; justify-content: space-between;
}
.dash-logo-name { font-size: 13px; letter-spacing: 0.04em; color: white; }
.dash-cmd       { color: var(--lime); }
.dash-meta      { display: flex; align-items: center; gap: 12px; }
.dash-divider   { width: 1px; height: 16px; background: rgba(255,255,255,0.08); }
.dash-tro-indicator { display: flex; align-items: center; gap: 6px; }
.dash-tro-dot   { width: 6px; height: 6px; border-radius: 50%; background: #ef4444; box-shadow: 0 0 6px #ef4444; }
.dash-tro-label { color: #ef4444; }
.dash-posture   { color: var(--lime); }
.dash-time      { color: #64748b; }

.dash-body {
  background: #050a05;
  padding: 16px;
  display: grid;
  grid-template-columns: 180px 1fr 200px;
  gap: 12px;
  min-height: 320px;
}

/* Sidebar */
.dash-sidebar { display: flex; flex-direction: column; gap: 4px; }
.sidebar-label {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: #475569;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.sidebar-label--mt { margin-top: 8px; }
.sidebar-item { padding: 6px 10px; border-radius: 6px; font-size: 11px; color: #475569; }
.sidebar-item--active {
  background: rgba(132,204,22,0.1);
  border-left: 2px solid var(--lime);
  color: var(--lime);
}

/* Center panel */
.dash-center { display: flex; flex-direction: column; gap: 10px; }
.chart-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(132,204,22,0.08);
  border-radius: 8px;
  padding: 8px 10px;
  height: 80px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.chart-header { display: flex; align-items: center; justify-content: space-between; }
.chart-label  { font-size: 9px; color: #475569; font-family: 'JetBrains Mono', monospace; }
.chart-peak   { font-size: 9px; color: #ef4444; font-family: 'JetBrains Mono', monospace; }
.bars         { display: flex; align-items: flex-end; gap: 2px; height: 44px; }

.tro-list { display: flex; flex-direction: column; gap: 4px; }
.tro-row  { border-radius: 6px; padding: 7px 10px; display: flex; align-items: center; gap: 8px; }
.tro-row--crit { background: rgba(239,68,68,0.06);   border: 1px solid rgba(239,68,68,0.15); }
.tro-row--high { background: rgba(245,158,11,0.05);  border: 1px solid rgba(245,158,11,0.12); }
.tro-row--med  { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); }
.tro-dot       { width: 6px; height: 6px; border-radius: 50%; }
.tro-dot--crit { background: #ef4444; }
.tro-dot--high { background: #f59e0b; }
.tro-dot--med  { background: #4ade80; }
.tro-id        { font-size: 10px; font-family: 'JetBrains Mono', monospace; color: var(--lime); }
.tro-title     { font-size: 11px; color: #f1f5f9; flex: 1; }
.tro-title--muted { color: #94a3b8; }
.tro-sev       { font-size: 10px; font-family: 'JetBrains Mono', monospace; padding: 1px 6px; border-radius: 3px; }
.tro-sev--crit { background: rgba(239,68,68,0.15);  color: #ef4444; }
.tro-sev--high { background: rgba(245,158,11,0.15); color: #f59e0b; }
.tro-sev--med  { background: rgba(56,189,248,0.1);  color: #38bdf8; }

.feed-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}
.feed-ts   { color: #475569; }
.feed-crit { color: #ef4444; }
.feed-high { color: #f59e0b; }
.feed-rule { color: var(--lime); }
.feed-desc { color: #94a3b8; }
.feed-muted{ color: #475569; }

/* Right panel */
.dash-right { display: flex; flex-direction: column; gap: 8px; }
.dash-panel { border-radius: 8px; padding: 10px; }
.dash-panel--approvals { background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.15); }
.dash-panel--ooda      { background: rgba(132,204,22,0.04); border: 1px solid rgba(132,204,22,0.12); text-align: center; }
.dash-panel--battery   { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); }

.panel-label       { font-size: 9px; font-family: 'JetBrains Mono', monospace; color: #64748b; margin-bottom: 6px; }
.panel-label--mb4  { margin-bottom: 4px; }
.panel-label--mb2  { margin-bottom: 2px; }
.approval-id       { font-size: 10px; color: #f59e0b; font-family: 'JetBrains Mono', monospace; margin-bottom: 4px; }
.approval-btns     { display: flex; gap: 4px; }
.btn-approve {
  flex: 1; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80; padding: 3px; border-radius: 4px;
  font-size: 9px; cursor: pointer; font-family: 'JetBrains Mono', monospace;
}
.btn-deny {
  flex: 1; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444; padding: 3px; border-radius: 4px;
  font-size: 9px; cursor: pointer; font-family: 'JetBrains Mono', monospace;
}
.ooda-score { font-size: 22px; font-weight: 900; font-family: 'JetBrains Mono', monospace; color: var(--lime); line-height: 1; }
.ooda-label { font-size: 8px; color: #64748b; margin-top: 2px; }

.battery-list { display: flex; flex-direction: column; gap: 4px; }
.battery-header { display: flex; justify-content: space-between; font-size: 9px; margin-bottom: 2px; }
.battery-name       { color: #94a3b8; }
.battery-name--red  { color: #ef4444; }
.battery-pct        { color: var(--lime); }
.battery-pct--amber { color: #f59e0b; }
.battery-pct--red   { color: #ef4444; }
.battery-track      { height: 2px; background: rgba(255,255,255,0.06); border-radius: 1px; }
.battery-track--red { background: rgba(239,68,68,0.15); }
.battery-fill       { height: 100%; border-radius: 1px; background: var(--lime); }
.battery-fill--amber{ background: #f59e0b; }
.battery-fill--w98  { width: 98%; }
.battery-fill--w94  { width: 94%; }
.battery-fill--w65  { width: 65%; }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee       { overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; gap: 64px; animation: marquee 30s linear infinite; align-items: center; }
.marquee-label { color: #475569; letter-spacing: 0.12em; }
.marquee-item  { color: #334155; }

/* ── Stats ───────────────────────────────────────────────── */
.stat-number {
  background: linear-gradient(135deg, #84cc16, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}
.stat-desc { color: #64748b; }

/* ── Section headings ────────────────────────────────────── */
.section-heading { letter-spacing: -0.02em; }
.text-muted-lg   { color: #94a3b8; }
.text-muted      { color: #64748b; }
.text-slate      { color: #94a3b8; }

/* ── Feature icon boxes ──────────────────────────────────── */
.icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-box--lime   { background: rgba(132,204,22,0.1);  border: 1px solid rgba(132,204,22,0.2); }
.icon-box--lime-b { background: rgba(132,204,22,0.15); border: 1px solid rgba(132,204,22,0.3); }
.icon-box--violet { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.2); }
.icon-box--sky    { background: rgba(56,189,248,0.1);  border: 1px solid rgba(56,189,248,0.2); }
.icon-box--amber  { background: rgba(245,158,11,0.1);  border: 1px solid rgba(245,158,11,0.2); }

.icon-box-sm {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box-sm--lime   { background: rgba(132,204,22,0.1); }
.icon-box-sm--sky    { background: rgba(56,189,248,0.1); }
.icon-box-sm--violet { background: rgba(167,139,250,0.1); }
.icon-box-sm--green  { background: rgba(74,222,128,0.1); }
.icon-box-sm--amber  { background: rgba(245,158,11,0.1); }
.icon-box-sm--red    { background: rgba(239,68,68,0.1); }

/* ── Feature / value-prop cards ─────────────────────────── */
.feat-card { transition: all 0.3s; }
.feat-card:hover { transform: translateY(-4px); border-color: rgba(132,204,22,0.3) !important; background: rgba(132,204,22,0.04) !important; }
.feat-card--highlight { border-color: rgba(132,204,22,0.15) !important; background: rgba(132,204,22,0.03) !important; }

.card-link        { color: var(--lime); }
.card-link--violet{ color: #a78bfa; }
.stars            { font-size: 20px; }
.quote-text       { line-height: 1.7; font-size: 15px; }
.pill-tag--auto   { width: fit-content; }

/* ── How it works ────────────────────────────────────────── */
.hiw-line {
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132,204,22,0.3), rgba(56,189,248,0.3), rgba(167,139,250,0.3), transparent);
  z-index: 0;
}
.step-icon {
  width: 56px; height: 56px;
  background: #030608;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-icon--lime   { border: 2px solid var(--lime); box-shadow: 0 0 20px rgba(132,204,22,0.3); }
.step-icon--sky    { border: 2px solid #38bdf8;    box-shadow: 0 0 20px rgba(56,189,248,0.3); }
.step-icon--violet { border: 2px solid #a78bfa;    box-shadow: 0 0 20px rgba(167,139,250,0.3); }
.step-icon--green  { border: 2px solid #4ade80;    box-shadow: 0 0 20px rgba(74,222,128,0.3); }

/* ── Testimonials ────────────────────────────────────────── */
.quote-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 28px; transition: all 0.3s; }
.quote-card:hover { border-color: rgba(132,204,22,0.2); }
.quote-card--highlight { border-color: rgba(132,204,22,0.15) !important; }

.avatar         { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--lime); }
.avatar--dark   { background: linear-gradient(135deg, #334155, #475569); }
.avatar--darker { background: linear-gradient(135deg, #1e293b, #334155); }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 36px; transition: all 0.3s; }
.pricing-card:hover { border-color: rgba(132,204,22,0.2); }
.pricing-card.featured { background: rgba(132,204,22,0.04); border-color: rgba(132,204,22,0.3); }

.price-badge {
  background: rgba(132,204,22,0.15);
  color: var(--lime);
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}
.price-period  { font-size: 18px; font-weight: 400; color: #64748b; }
.price-features{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-feature { display: flex; gap: 8px; font-size: 14px; }

/* ── CTA section ─────────────────────────────────────────── */
.cta-deco-tr {
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(rgba(132,204,22,0.15), transparent);
  pointer-events: none;
}
.cta-deco-bl {
  position: absolute; bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(rgba(56,189,248,0.08), transparent);
  pointer-events: none;
}

/* ── Terminal mockup ─────────────────────────────────────── */
.terminal      { background: #010204; border: 1px solid rgba(132,204,22,0.2); border-radius: 12px; overflow: hidden; }
.terminal-bar  { background: rgba(255,255,255,0.04); padding: 10px 16px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.t-dot         { width: 10px; height: 10px; border-radius: 50%; }

.scan-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(132,204,22,0.6), transparent);
  animation: scan 3s linear infinite;
}

/* ── Noise texture overlay ───────────────────────────────── */
.noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 24px 32px;
}
.footer-desc        { color: #64748b; line-height: 1.7; }
.footer-col-title   { color: #475569; letter-spacing: 0.1em; }
.footer-links       { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom      { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy        { color: #334155; }
.footer-status-link { text-decoration: none; }
.footer-status-link:hover { opacity: 0.75; }
.status-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 6px var(--lime); }
.status-text { color: var(--lime); }

.social-link {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #64748b;
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover { border-color: rgba(132,204,22,0.3); color: var(--lime); }

/* ── Careers page ────────────────────────────────────────── */
.role-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 24px; transition: all 0.3s; text-decoration: none; display: block; }
.role-card:hover { border-color: rgba(132,204,22,0.25); background: rgba(132,204,22,0.02); transform: translateX(4px); }
.role-apply { display: flex; align-items: center; gap: 8px; color: var(--lime); font-size: 13px; font-weight: 600; white-space: nowrap; }

.careers-value-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 28px; transition: border-color 0.3s; }
.careers-value-card:hover { border-color: rgba(132,204,22,0.2); }
.careers-value-icon { width: 40px; height: 40px; background: rgba(132,204,22,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

.benefit-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.benefit-item:last-child { border-bottom: none; }
.benefit-icon { width: 36px; height: 36px; background: rgba(132,204,22,0.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-title { font-weight: 500; color: white; font-size: 14px; }
.benefit-desc  { font-size: 13px; color: #64748b; margin-top: 2px; line-height: 1.5; }

.process-step-num { width: 36px; height: 36px; border-radius: 50%; background: rgba(132,204,22,0.15); border: 1px solid rgba(132,204,22,0.3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--lime); flex-shrink: 0; }
.process-line { width: 1px; flex: 1; background: rgba(255,255,255,0.06); margin: 6px 0; }
.process-title { font-weight: 700; color: white; font-size: 15px; margin-bottom: 4px; }
.process-desc  { font-size: 13px; color: #64748b; line-height: 1.6; }

.dept-tab { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 500; color: #64748b; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.dept-tab:hover, .dept-tab.active { background: rgba(132,204,22,0.08); border-color: rgba(132,204,22,0.25); color: var(--lime); }

.loc-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 2px 9px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #64748b; }
.level-senior { background: rgba(132,204,22,0.08);  border: 1px solid rgba(132,204,22,0.2);  border-radius: 6px; padding: 2px 9px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--lime); }
.level-mid    { background: rgba(56,189,248,0.08);  border: 1px solid rgba(56,189,248,0.2);  border-radius: 6px; padding: 2px 9px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #38bdf8; }
.level-lead   { background: rgba(139,92,246,0.08);  border: 1px solid rgba(139,92,246,0.2);  border-radius: 6px; padding: 2px 9px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #a78bfa; }

.dept-eng    { background: rgba(132,204,22,0.06); border: 1px solid rgba(132,204,22,0.15); border-radius: 6px; padding: 2px 9px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--lime); }
.dept-sec    { background: rgba(239,68,68,0.06);  border: 1px solid rgba(239,68,68,0.15);  border-radius: 6px; padding: 2px 9px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #f87171; }
.dept-prod   { background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.15); border-radius: 6px; padding: 2px 9px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #fbbf24; }
.dept-go     { background: rgba(56,189,248,0.06); border: 1px solid rgba(56,189,248,0.15); border-radius: 6px; padding: 2px 9px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #38bdf8; }
.dept-design { background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.15); border-radius: 6px; padding: 2px 9px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #a78bfa; }

.role-title { font-size: 17px; font-weight: 700; color: white; }
.role-desc  { font-size: 13px; color: #64748b; margin-top: 4px; }

.no-role-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 28px; text-align: center; margin-top: 16px; }
.open-app-btn { background: rgba(132,204,22,0.08); border: 1px solid rgba(132,204,22,0.2); border-radius: 8px; padding: 10px 20px; font-size: 13px; font-weight: 600; color: var(--lime); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: background 0.2s; }
.open-app-btn:hover { background: rgba(132,204,22,0.14); }

.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.08); }
.hero-stat-num  { font-size: 32px; font-weight: 900; letter-spacing: -0.02em; }
.hero-stat-label{ font-size: 11px; color: #475569; }

/* ── Blog page ───────────────────────────────────────────── */
.bg-page { background: #030608 radial-gradient(ellipse 70% 40% at 50% -5%, rgba(132,204,22,0.07) 0%, transparent 55%); }

.post-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; transition: all 0.3s; text-decoration: none; display: flex; flex-direction: column; }
.post-card:hover { border-color: rgba(132,204,22,0.25); transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

.post-card-featured { background: rgba(255,255,255,0.025); border: 1px solid rgba(132,204,22,0.15); border-radius: 20px; overflow: hidden; transition: all 0.3s; text-decoration: none; display: grid; }
.post-card-featured:hover { border-color: rgba(132,204,22,0.3); box-shadow: 0 24px 80px rgba(0,0,0,0.5); }

.post-thumb { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.post-thumb--h180 { height: 180px; aspect-ratio: unset; }

.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-title { font-size: 17px; line-height: 1.4; flex: 1; }
.post-excerpt { font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 16px; }
.post-meta { font-size: 12px; color: #64748b; }

.post-author { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.post-author--orange  { background: linear-gradient(135deg, #f97316, #ef4444); color: white; }
.post-author--violet  { background: linear-gradient(135deg, #6366f1, #a78bfa); color: white; }
.post-author--lime    { background: linear-gradient(135deg, #84cc16, #4ade80); color: #030608; }
.post-author--sky     { background: linear-gradient(135deg, #0ea5e9, #6366f1); color: white; }
.post-author--pink    { background: linear-gradient(135deg, #ec4899, #a78bfa); color: white; }

.post-author-lg { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.post-author-lg--orange { background: linear-gradient(135deg, #f97316, #ef4444); color: white; }

.tag { display: inline-flex; align-items: center; gap: 5px; border-radius: 6px; padding: 3px 10px; font-size: 11px; font-family: 'JetBrains Mono', monospace; font-weight: 600; letter-spacing: 0.04em; }
.tag-threat  { background: rgba(239,68,68,0.08);   border: 1px solid rgba(239,68,68,0.2);   color: #f87171; }
.tag-product { background: rgba(132,204,22,0.08);  border: 1px solid rgba(132,204,22,0.2);  color: #84cc16; }
.tag-research{ background: rgba(139,92,246,0.08);  border: 1px solid rgba(139,92,246,0.2);  color: #a78bfa; }
.tag-guide   { background: rgba(56,189,248,0.08);  border: 1px solid rgba(56,189,248,0.2);  color: #38bdf8; }
.tag-company { background: rgba(245,158,11,0.08);  border: 1px solid rgba(245,158,11,0.2);  color: #fbbf24; }

.filter-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 20px; padding: 7px 16px; font-size: 13px; font-weight: 500; color: #64748b; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.filter-pill:hover, .filter-pill.active { background: rgba(132,204,22,0.08); border-color: rgba(132,204,22,0.25); color: #84cc16; }
.filter-dot { width: 6px; height: 6px; border-radius: 50%; }
.filter-dot--red    { background: #f87171; }
.filter-dot--lime   { background: #84cc16; }
.filter-dot--violet { background: #a78bfa; }
.filter-dot--sky    { background: #38bdf8; }
.filter-dot--amber  { background: #fbbf24; }

.search-wrap  { position: relative; min-width: 280px; }
.search-icon  { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; color: #334155; }
.search-input { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 10px; padding: 11px 16px 11px 40px; font-size: 14px; color: #f1f5f9; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; width: 100%; }
.search-input::placeholder { color: #334155; }
.search-input:focus { border-color: rgba(132,204,22,0.3); }

.newsletter-box { background: rgba(132,204,22,0.04); border: 1px solid rgba(132,204,22,0.15); border-radius: 20px; padding: 40px; }
.newsletter-input { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px 18px; font-size: 14px; color: #f1f5f9; font-family: 'Inter', sans-serif; outline: none; width: 280px; }
.newsletter-input:focus { border-color: rgba(132,204,22,0.3); }

.load-more-btn { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 10px; padding: 12px 32px; font-size: 14px; font-weight: 500; color: #94a3b8; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.load-more-btn:hover { border-color: rgba(132,204,22,0.25); color: #f1f5f9; }

.featured-body { padding: 40px; }
.featured-read-cta { color: #84cc16; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 4px; }

.thumb-terminal { background: #0a0d0f; border: 1px solid rgba(132,204,22,0.2); border-radius: 12px; padding: 16px; width: 80%; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #64748b; }
.thumb-dots { display: flex; gap: 6px; margin-bottom: 12px; }
.thumb-dot { width: 8px; height: 8px; border-radius: 50%; }
.thumb-dot--red   { background: #ef4444; }
.thumb-dot--amber { background: #f59e0b; }
.thumb-dot--green { background: #22c55e; }
.thumb-line--red  { color: #f87171; margin-bottom: 6px; }
.thumb-line--amber{ color: #fbbf24; margin-bottom: 6px; }
.thumb-line--lime { color: #84cc16; margin-bottom: 6px; }

/* ── About page ──────────────────────────────────────────── */
.value-card             { border-left: 3px solid var(--lime); transition: all 0.3s; }
.value-card:hover       { transform: translateX(4px); }
.value-card--sky        { border-left-color: #38bdf8; }
.value-card--violet     { border-left-color: #a78bfa; }
.value-card--amber      { border-left-color: #f59e0b; }

.team-card              { transition: all 0.3s; }
.team-card:hover        { transform: translateY(-4px); border-color: rgba(132,204,22,0.25) !important; }

.avatar-lg              { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; margin: 0 auto 16px; }
.avatar-lg--lime        { background: linear-gradient(135deg, rgba(132,204,22,0.25), rgba(56,189,248,0.15)); color: var(--lime); }
.avatar-lg--violet      { background: linear-gradient(135deg, rgba(167,139,250,0.25), rgba(132,204,22,0.15)); color: #a78bfa; }
.avatar-lg--sky         { background: linear-gradient(135deg, rgba(56,189,248,0.25), rgba(132,204,22,0.15)); color: #38bdf8; }
.avatar-lg--amber       { background: linear-gradient(135deg, rgba(245,158,11,0.25), rgba(132,204,22,0.15)); color: #f59e0b; }
.avatar-lg--red-lime    { background: linear-gradient(135deg, rgba(132,204,22,0.2), rgba(239,68,68,0.15)); color: var(--lime); }
.avatar-lg--sky-violet  { background: linear-gradient(135deg, rgba(56,189,248,0.2), rgba(167,139,250,0.2)); color: #38bdf8; }
.avatar-sm-quote        { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, rgba(132,204,22,0.3), rgba(74,222,128,0.2)); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--lime); }

.team-card--hire        { border-color: rgba(132,204,22,0.15) !important; background: rgba(132,204,22,0.02) !important; }

.timeline-dot           { width: 12px; height: 12px; border-radius: 50%; background: var(--lime); flex-shrink: 0; margin-top: 5px; box-shadow: 0 0 10px rgba(132,204,22,0.5); }
.timeline-dot--sky      { background: #38bdf8; box-shadow: 0 0 10px rgba(56,189,248,0.5); }
.timeline-line          { width: 1px; background: rgba(255,255,255,0.07); flex: 1; margin-top: 6px; }

.investor-badge         { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 16px 28px; color: #94a3b8; font-weight: 600; font-size: 14px; transition: all 0.2s; }
.investor-badge:hover   { border-color: rgba(132,204,22,0.2); color: #f1f5f9; }

.posture-ring           { position: relative; display: inline-block; }
.posture-score          { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.posture-score-num      { font-size: 26px; font-weight: 900; color: var(--lime); font-family: 'JetBrains Mono', monospace; line-height: 1; }
.posture-score-denom    { font-size: 9px; color: #475569; font-family: 'JetBrains Mono', monospace; }

.posture-bar-track      { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; }
.posture-bar-fill       { height: 100%; border-radius: 2px; background: var(--lime); }
.posture-bar-fill--amber{ background: #f59e0b; }
.posture-bar-track--red { background: rgba(239,68,68,0.15); }

.posture-stat           { margin-top: 16px; padding: 10px; background: rgba(132,204,22,0.04); border: 1px solid rgba(132,204,22,0.1); border-radius: 8px; display: flex; justify-content: space-between; align-items: center; }
.posture-stat-label     { color: #64748b; }
.posture-stat-value     { color: var(--lime); font-weight: 700; }

.reveal                 { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible         { opacity: 1; transform: none; }
.reveal-delay-1         { transition-delay: 0.1s; }
.reveal-delay-2         { transition-delay: 0.2s; }
.reveal-delay-3         { transition-delay: 0.3s; }

.about-hero-ring-lg     { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; border-radius: 50%; border: 1px solid rgba(132,204,22,0.04); pointer-events: none; }
.about-hero-ring-md     { position: absolute; top: -150px; left: 50%; transform: translateX(-50%); width: 620px; height: 620px; border-radius: 50%; border: 1px solid rgba(132,204,22,0.06); pointer-events: none; }

/* ── Challenge page ──────────────────────────────────────── */
.bg-hero-red {
  background: #030608
    radial-gradient(ellipse 80% 50% at 50% -5%, rgba(239,68,68,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 30%, rgba(132,204,22,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 10% 70%, rgba(132,204,22,0.04) 0%, transparent 50%);
}
.grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }

.btn-red { background: #ef4444; color: #fff; font-weight: 700; border-radius: 10px; padding: 13px 28px; font-size: 14px; cursor: pointer; transition: all 0.2s; border: none; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-red:hover { background: #f87171; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(239,68,68,0.3); }
.btn-red--sm { padding: 9px 20px !important; font-size: 13px !important; }

.glass-red   { background: rgba(239,68,68,0.04);  border: 1px solid rgba(239,68,68,0.15);  border-radius: 16px; }
.glass-amber { background: rgba(245,158,11,0.04); border: 1px solid rgba(245,158,11,0.15); border-radius: 16px; }

@keyframes live-ping { 0%{transform:scale(1);opacity:1} 70%{transform:scale(2.4);opacity:0} 100%{transform:scale(2.4);opacity:0} }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; position: relative; flex-shrink: 0; }
.live-dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: rgba(239,68,68,0.4); animation: live-ping 1.5s ease-out infinite; }
.live-dot--sm { width: 6px !important; height: 6px !important; }

.pill-tag--red { background: rgba(239,68,68,0.06); border-color: rgba(239,68,68,0.2); color: #ef4444; }

.stat-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 28px 24px; transition: all 0.3s; }
.stat-card:hover { border-color: rgba(132,204,22,0.2); }

.obj-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 24px; transition: all 0.3s; cursor: default; }
.obj-card:hover { border-color: rgba(239,68,68,0.2); background: rgba(239,68,68,0.02); }
.obj-card.locked { opacity: 0.5; }
.obj-num         { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); border-radius: 8px; padding: 8px 12px; }
.obj-diff--medium { background: rgba(245,158,11,0.1);  border: 1px solid rgba(245,158,11,0.2);  border-radius: 6px; padding: 3px 10px; }
.obj-diff--hard   { background: rgba(239,68,68,0.1);   border: 1px solid rgba(239,68,68,0.2);   border-radius: 6px; padding: 3px 10px; }
.obj-diff--easy   { background: rgba(132,204,22,0.1);  border: 1px solid rgba(132,204,22,0.2);  border-radius: 6px; padding: 3px 10px; }
.obj-diff--elite  { background: rgba(139,92,246,0.1);  border: 1px solid rgba(139,92,246,0.25); border-radius: 6px; padding: 3px 10px; }
.obj-hint         { background: rgba(255,255,255,0.03); border-radius: 8px; padding: 10px 12px; }
.obj-attempts     { display: flex; align-items: center; gap: 4px; margin-top: 16px; font-size: 12px; color: #475569; }

.terminal-body { padding: 16px; }

.timeline-entry { display: grid; grid-template-columns: 80px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-family: 'JetBrains Mono', monospace; font-size: 11px; line-height: 1.5; align-items: start; }
.timeline-entry:last-child { border-bottom: none; }
.timeline-entry--last { border-bottom: none !important; }

.rule-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); border-radius: 6px; padding: 3px 10px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #f59e0b; font-weight: 600; }

.lb-row         { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 10px; transition: background 0.2s; }
.lb-row:hover   { background: rgba(255,255,255,0.03); }
.lb-rank        { font-size: 16px; width: 28px; font-family: 'JetBrains Mono', monospace; font-weight: 700; }
.lb-avatar      { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.lb-badge        { padding: 4px 10px; border-radius: 6px; }
.lb-badge--close   { background: rgba(245,158,11,0.04); border: 1px solid rgba(245,158,11,0.15); }
.lb-badge--stopped { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }

.counter    { font-feature-settings: 'tnum'; }
.flag-input { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 14px; font-size: 13px; font-family: 'JetBrains Mono', monospace; color: #f1f5f9; width: 100%; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.flag-input::placeholder { color: #334155; }
.flag-input:focus { border-color: rgba(239,68,68,0.4); box-shadow: 0 0 0 3px rgba(239,68,68,0.06); }
.flag-submit-btn { width: 100%; background: #ef4444; color: white; font-weight: 700; border-radius: 8px; padding: 10px; font-size: 13px; border: none; cursor: pointer; transition: background 0.2s; font-family: 'Inter', sans-serif; }
.flag-submit-btn:hover { background: #f87171; }

.grad-red { background: linear-gradient(135deg, #ef4444, #f97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-wrap  { position: fixed; top: 64px; left: 0; right: 0; z-index: 49; background: rgba(239,68,68,0.08); border-bottom: 1px solid rgba(239,68,68,0.15); padding: 7px 0; overflow: hidden; }
.ticker-track { display: flex; animation: ticker 28s linear infinite; white-space: nowrap; font-size: 11px; color: #f87171; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-span  { padding: 0 32px; }

.scan-line--red { background: linear-gradient(90deg, transparent, rgba(239,68,68,0.4), transparent); }

@keyframes glitch-1 { 0%,100%{clip-path:inset(0 0 98% 0);transform:translate(-2px,0)} 50%{clip-path:inset(30% 0 50% 0);transform:translate(2px,0)} }
@keyframes glitch-2 { 0%,100%{clip-path:inset(60% 0 20% 0);transform:translate(2px,0)} 50%{clip-path:inset(80% 0 5% 0);transform:translate(-2px,0)} }
.glitch-wrap { position: relative; display: inline-block; }
.glitch-wrap::before, .glitch-wrap::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.glitch-wrap::before { color: #ef4444; animation: glitch-1 3s step-end infinite; opacity: 0.6; }
.glitch-wrap::after  { color: #84cc16;  animation: glitch-2 3s step-end infinite; opacity: 0.4; }

.surface-item       { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.03); border-radius: 10px; padding: 12px 16px; }
.surface-dot--red   { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; flex-shrink: 0; }
.surface-dot--amber { width: 8px; height: 8px; border-radius: 50%; background: #f59e0b; flex-shrink: 0; }

.mini-stat { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 14px; }

.stat-bar-track      { height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.stat-bar-fill--lime { height: 100%; width: 100%; background: linear-gradient(90deg,#84cc16,#4ade80); border-radius: 3px; }
.stat-bar-fill--red  { height: 100%; width: 0%;   background: linear-gradient(90deg,#ef4444,#f97316); border-radius: 3px; }

.first-blood-box  { background: linear-gradient(135deg,rgba(239,68,68,0.06),rgba(239,68,68,0.02)); border: 1px solid rgba(239,68,68,0.2); border-radius: 16px; padding: 32px; text-align: center; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.first-blood-icon { width: 64px; height: 64px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }

.challenge-label  { display: block; font-size: 13px; font-weight: 500; color: #94a3b8; margin-bottom: 6px; }
.challenge-input  { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 11px 14px; font-size: 14px; color: #f1f5f9; font-family: 'JetBrains Mono', monospace; outline: none; }
.challenge-input--text { font-family: 'Inter', sans-serif; }
.challenge-select { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 11px 14px; font-size: 14px; color: #94a3b8; font-family: 'Inter', sans-serif; outline: none; cursor: pointer; }

.icon-box--red    { background: rgba(239,68,68,0.1); border-radius: 10px; }
.target-icon-box  { width: 42px; height: 42px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; }

.hero-glass-stat    { padding: 20px 32px; text-align: center; }
.hero-counter       { font-size: 36px; letter-spacing: -0.02em; font-weight: 900; }
.hero-counter-label { font-size: 11px; color: #64748b; letter-spacing: 0.06em; margin-top: 4px; }

/* ── Features page ───────────────────────────────────────── */
.feat-section { border-bottom: 1px solid rgba(255,255,255,0.05); }

.feat-badge { display: inline-flex; align-items: center; gap: 6px; border-radius: 9999px; padding: 4px 14px; font-size: 11px; font-weight: 600; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em; }

.feat-nav-bar { padding: 14px 0; position: sticky; top: 64px; z-index: 40; backdrop-filter: blur(12px); background: rgba(3,6,8,0.85); border-bottom: 1px solid rgba(255,255,255,0.05); }
.feat-nav-pill { flex-shrink: 0; padding: 8px 16px; border-radius: 9999px; font-size: 12px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.feat-nav-pill--active { background: rgba(132,204,22,0.08); border: 1px solid rgba(132,204,22,0.2); color: var(--lime); }
.feat-nav-pill--inactive { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); color: #94a3b8; }
.feat-nav-pill--inactive:hover { color: #f1f5f9; }

.feature-card { transition: transform 0.2s, border-color 0.2s; }
.feature-card:hover { transform: translateY(-3px); border-color: rgba(132,204,22,0.25) !important; }

.feat-stat-row { display: flex; align-items: center; gap: 24px; }
.feat-stat-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }
.feat-stat-num { font-size: 30px; font-weight: 900; }

.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-item { display: flex; gap: 12px; }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(132,204,22,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

.det-feed-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #64748b; margin-bottom: 16px; }
.det-alert { border-radius: 10px; padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.det-alert--crit { background: rgba(132,204,22,0.04); border: 1px solid rgba(132,204,22,0.15); }
.det-alert--high { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.det-alert--med  { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.det-alert-header { display: flex; justify-content: space-between; align-items: center; }
.det-severity--crit { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #f87171; font-weight: 600; }
.det-severity--high { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #fbbf24; font-weight: 600; }
.det-severity--med  { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #60a5fa; font-weight: 600; }
.det-time { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #475569; }
.det-title { font-size: 14px; font-weight: 500; color: #f1f5f9; }
.det-meta  { font-size: 12px; color: #64748b; }

.response-tier { border-radius: 12px; padding: 24px; text-align: center; }
.response-tier-num { font-size: 48px; font-weight: 900; color: var(--lime); margin-bottom: 12px; }
.response-tier-badge { display: inline-block; margin-top: 12px; padding: 4px 12px; border-radius: 9999px; font-size: 11px; background: rgba(132,204,22,0.15); color: var(--lime); }

.icon-box--purple { background: rgba(168,85,247,0.1); border-radius: 10px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.icon-box-feat { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

.entity-graph { border-radius: 12px; height: 180px; overflow: hidden; position: relative; }
.graph-label { position: absolute; bottom: 8px; right: 8px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #334155; }

.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.coverage-stat { border-radius: 12px; padding: 16px; text-align: center; }
.coverage-stat-num { font-size: 24px; font-weight: 900; }
.coverage-stat-label { font-size: 11px; color: #64748b; margin-top: 4px; }

.posture-score-bar-track { height: 8px; border-radius: 9999px; background: rgba(255,255,255,0.05); }
.posture-score-bar-fill  { height: 100%; border-radius: 9999px; background: linear-gradient(90deg, var(--lime), #4ade80); }

.compliance-card { border-radius: 12px; padding: 20px; text-align: center; }
.compliance-framework-name { font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.compliance-sub { font-size: 11px; color: #64748b; }
.compliance-pct { font-size: 22px; font-weight: 700; margin-top: 12px; }
.compliance-pct-label { font-size: 11px; color: #64748b; }

.ai-meter-track { height: 6px; border-radius: 9999px; background: rgba(255,255,255,0.05); margin-top: 8px; }
.ai-meter-fill--lime { height: 100%; border-radius: 9999px; background: var(--lime); }
.ai-meter-fill--red  { height: 100%; border-radius: 9999px; background: #ef4444; }
.ai-meter-note { font-size: 11px; color: #64748b; margin-top: 6px; }

.ai-assessment-box { border-radius: 12px; padding: 20px; }
.ai-assessment-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--lime); margin-bottom: 12px; }
.ai-assessment-text { font-size: 14px; color: #e2e8f0; line-height: 1.7; }
.ai-assessment-footer { display: flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); }
.ai-conf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.ai-conf-text { font-size: 12px; color: #64748b; }

/* ── Contact page ────────────────────────────────────────── */
.mesh {
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(132,204,22,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(56,189,248,0.05) 0%, transparent 60%);
}

.demo-type { border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 16px; cursor: pointer; transition: all 0.2s; }
.demo-type.selected { border-color: rgba(132,204,22,0.4); background: rgba(132,204,22,0.04); }
.demo-type:hover:not(.selected) { border-color: rgba(255,255,255,0.15); }

.contact-input { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; color: #f1f5f9; padding: 12px 16px; width: 100%; font-size: 14px; transition: border-color 0.2s; outline: none; font-family: 'Inter', sans-serif; }
.contact-input:focus { border-color: rgba(132,204,22,0.4); }
.contact-input::placeholder { color: #475569; }
.contact-select { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; color: #f1f5f9; padding: 12px 16px; width: 100%; font-size: 14px; transition: border-color 0.2s; outline: none; cursor: pointer; font-family: 'Inter', sans-serif; }
.contact-select:focus { border-color: rgba(132,204,22,0.4); }
.contact-select option { background: #0f172a; color: #f1f5f9; }
.contact-textarea { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; color: #f1f5f9; padding: 12px 16px; width: 100%; font-size: 14px; transition: border-color 0.2s; outline: none; resize: vertical; font-family: 'Inter', sans-serif; }
.contact-textarea:focus { border-color: rgba(132,204,22,0.4); }
.contact-textarea::placeholder { color: #475569; }
.contact-label { display: block; font-size: 13px; font-weight: 500; color: #94a3b8; margin-bottom: 6px; }

@keyframes check-draw { from { stroke-dashoffset: 50; } to { stroke-dashoffset: 0; } }
.check-anim { stroke-dasharray: 50; stroke-dashoffset: 50; animation: check-draw 0.5s ease 0.2s forwards; }
.success-check-circle { width: 64px; height: 64px; background: rgba(132,204,22,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }

.what-next-num { width: 20px; height: 20px; border-radius: 50%; background: rgba(132,204,22,0.2); color: var(--lime); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

.quote-border--lime { border-left: 2px solid rgba(132,204,22,0.4); padding-left: 16px; }
.quote-border--blue { border-left: 2px solid rgba(59,130,246,0.4); padding-left: 16px; }

.contact-icon-box-sm { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sidebar-icon-box { width: 32px; height: 32px; border-radius: 8px; background: rgba(132,204,22,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── Platform page ───────────────────────────────────────── */
.glow { animation: pulse-glow 3s ease-in-out infinite; }

.platform-tab { border-bottom: 2px solid transparent; color: #64748b; transition: all 0.2s; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; padding-bottom: 16px; font-family: 'Inter', sans-serif; }
.platform-tab.active { border-bottom-color: var(--lime); color: var(--lime); }
.platform-tab:hover:not(.active) { color: #94a3b8; }

/* ── Pricing page ────────────────────────────────────────── */
.pricing-card { transition: transform 0.2s; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: rgba(132,204,22,0.3) !important; }

.check { color: var(--lime); }
.dash  { color: #334155; }

.billing-toggle { display: flex; align-items: center; gap: 12px; }
.toggle-track   { width: 48px; height: 26px; background: rgba(255,255,255,0.08); border-radius: 999px; position: relative; cursor: pointer; transition: background 0.2s; }
.toggle-track.on { background: var(--lime); }
.toggle-thumb   { width: 20px; height: 20px; background: white; border-radius: 50%; position: absolute; top: 3px; left: 3px; transition: transform 0.2s; }
.toggle-track.on .toggle-thumb { transform: translateX(22px); }

/* ── Status page ─────────────────────────────────────────── */
.bg-page {
  background: #030608
    radial-gradient(ellipse 70% 40% at 50% -5%, rgba(132,204,22,0.07) 0%, transparent 55%);
}

.status-banner-ok { background: rgba(132,204,22,0.06); border: 1px solid rgba(132,204,22,0.2); border-radius: 20px; padding: 28px 36px; display: flex; align-items: center; gap: 20px; }

.service-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.2s; border-radius: 8px; }
.service-row:hover { background: rgba(255,255,255,0.02); }
.service-row:last-child { border-bottom: none; }

.badge-ok          { display: inline-flex; align-items: center; gap: 6px; background: rgba(132,204,22,0.08); border: 1px solid rgba(132,204,22,0.2); border-radius: 6px; padding: 3px 10px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #84cc16; font-weight: 600; letter-spacing: 0.04em; }
.badge-degraded    { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); border-radius: 6px; padding: 3px 10px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #f59e0b; font-weight: 600; letter-spacing: 0.04em; }
.badge-incident    { display: inline-flex; align-items: center; gap: 6px; background: rgba(239,68,68,0.08);  border: 1px solid rgba(239,68,68,0.2);  border-radius: 6px; padding: 3px 10px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #ef4444; font-weight: 600; letter-spacing: 0.04em; }
.badge-maintenance { display: inline-flex; align-items: center; gap: 6px; background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.2); border-radius: 6px; padding: 3px 10px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: #818cf8; font-weight: 600; letter-spacing: 0.04em; }

.uptime-bar  { display: flex; gap: 2px; align-items: flex-end; height: 28px; }
.uptime-tick { width: 6px; border-radius: 2px; flex-shrink: 0; cursor: default; transition: opacity 0.2s; }
.uptime-tick:hover { opacity: 0.7; }

.incident-entry { padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.incident-entry:last-child { border-bottom: none; }

.region-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.metric-pill { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 14px 18px; text-align: center; }

/* ── Auth pages ──────────────────────────────────────────── */
.bg-page--auth {
  background: #030608
    radial-gradient(ellipse 70% 50% at 50% 0%,  rgba(132,204,22,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 50%, rgba(56,189,248,0.04)  0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 10% 80%, rgba(167,139,250,0.04) 0%, transparent 50%);
}

.grid-bg--auth {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(132,204,22,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132,204,22,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none; z-index: 0;
}

.auth-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

.auth-input { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px 16px; font-size: 14px; color: #f1f5f9; font-family: 'Inter', sans-serif; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.auth-input::placeholder { color: #475569; }
.auth-input:focus { border-color: rgba(132,204,22,0.5); box-shadow: 0 0 0 3px rgba(132,204,22,0.08); }

.auth-label { display: block; font-size: 13px; font-weight: 500; color: #94a3b8; margin-bottom: 6px; }

.btn-social { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 11px 16px; font-size: 14px; font-weight: 500; color: #cbd5e1; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 10px; font-family: 'Inter', sans-serif; text-decoration: none; }
.btn-social:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); color: #f1f5f9; }

.divider { display: flex; align-items: center; gap: 12px; color: #334155; font-size: 12px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }

.sso-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(132,204,22,0.08); border: 1px solid rgba(132,204,22,0.2); border-radius: 6px; padding: 2px 8px; font-size: 10px; font-family: 'JetBrains Mono', monospace; color: #84cc16; font-weight: 600; letter-spacing: 0.05em; }

.pw-wrap { position: relative; }
.pw-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #475569; cursor: pointer; padding: 0; display: flex; align-items: center; transition: color 0.2s; }
.pw-toggle:hover { color: #94a3b8; }

@keyframes ring-pulse { 0% { box-shadow: 0 4px 14px rgba(132,204,22,0.35), 0 0 0 0 rgba(132,204,22,0.2); } 70% { box-shadow: 0 4px 14px rgba(132,204,22,0.35), 0 0 0 12px rgba(132,204,22,0); } 100% { box-shadow: 0 4px 14px rgba(132,204,22,0.35), 0 0 0 0 rgba(132,204,22,0); } }
.logo-pulse { animation: ring-pulse 2.5s ease-out infinite; }

@keyframes shake { 0%,100% { transform: translateX(0); } 20%,60% { transform: translateX(-6px); } 40%,80% { transform: translateX(6px); } }
.shake { animation: shake 0.4s ease; }

@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin 0.8s linear infinite; }

@keyframes dot-bounce { 0%,80%,100% { transform: translateY(0); opacity: 0.4; } 40% { transform: translateY(-8px); opacity: 1; } }

/* ── Hover link helpers (replaces inline onmouseover/out) ── */
.hover-bright { color: #cbd5e1; text-decoration: none; transition: color 0.15s; }
.hover-bright:hover { color: #f1f5f9; }
.hover-lime   { color: #84cc16; text-decoration: none; transition: color 0.15s; }
.hover-lime:hover   { color: #a3e635; }
.hover-back   { color: #64748b; text-decoration: none; transition: color 0.15s; }
.hover-back:hover   { color: #cbd5e1; }

/* ── Use Cases ───────────────────────────────────────────── */
.use-case-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.use-case-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.use-case-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.use-case-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  margin-bottom: 16px;
}
.use-case-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(132,204,22,0.3); border-radius: 2px; }
