/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --bg-2: #111111;
  --fg: #e8e8e0;
  --fg-dim: #888;
  --lime: #BFFF60;
  --lime-dim: rgba(191,255,96,0.12);
  --lime-border: rgba(191,255,96,0.2);
  --red: #FF4D4D;
  --yellow: #FFD84D;
  --green: #4DFF88;
  --font-display: 'Syne', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191,255,96,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  color: #080808;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all 0.15s;
  letter-spacing: -0.01em;
}
.nav-cta:hover {
  background: #d4ff80;
  transform: translateY(-1px);
}
.nav-link {
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }

/* === HERO === */
.hero {
  position: relative;
  padding: 100px 32px 100px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(191,255,96,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191,255,96,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-weight: 500;
}
.hero-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(191,255,96,0.15);
}

/* === TERMINAL === */
.hero-terminal {
  position: absolute;
  right: 32px;
  top: 60px;
  width: 420px;
  background: #0f0f0f;
  border: 1px solid rgba(191,255,96,0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(191,255,96,0.05);
  z-index: 2;
}
.terminal-bar {
  background: #1a1a1a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.terminal-dot.red { background: #FF5F57; }
.terminal-dot.yellow { background: #FEBC2E; }
.terminal-dot.green { background: #28C840; }
.terminal-title {
  font-size: 11px;
  color: var(--fg-dim);
  margin-left: 8px;
  font-family: 'IBM Plex Mono', monospace;
}
.terminal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
}
.terminal-line { line-height: 1.6; }
.t-dim { color: #555; }
.t-cmd { color: var(--lime); }
.t-small { font-size: 11px; }
.t-warn { color: var(--yellow); }
.t-error { color: var(--red); }
.result { padding: 6px 10px; background: rgba(255,255,255,0.03); border-radius: 4px; }
.terminal-scan-bar {
  padding: 12px 20px;
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 14px;
}
.scan-pct {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--lime);
  min-width: 44px;
}
.scan-bar {
  flex: 1;
  height: 4px;
  background: #222;
  border-radius: 2px;
  overflow: hidden;
}
.scan-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lime), #7FFF00);
  border-radius: 2px;
  transition: width 1s ease;
}
.scan-count {
  font-size: 11px;
  color: var(--fg-dim);
  white-space: nowrap;
}

/* === SCAN SECTION === */
.scan-section {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.scan-header, .surface-header, .how-header, .principles-header {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}
.scan-title, .surface-title, .how-title, .principles-title, .closing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.scan-sub, .surface-sub, .how-sub, .principles-sub, .closing-body {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.7;
}
.scan-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(191,255,96,0.08);
  border: 1px solid rgba(191,255,96,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.scan-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.scan-card:hover { background: #0c0c0c; }
.scan-icon {
  width: 44px;
  height: 44px;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.scan-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.scan-card-body {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* === SURFACE SECTION === */
.surface-section {
  padding: 100px 32px;
  background: var(--bg);
}
.surface-comparison {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(191,255,96,0.08);
  border: 1px solid rgba(191,255,96,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.comp-col { background: var(--bg); padding: 40px 36px; }
.comp-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 28px;
}
.comp-label.lime { color: var(--lime); }
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  line-height: 1.5;
}
.comp-item:last-child { border-bottom: none; }
.comp-item.fail .comp-icon { color: #555; }
.comp-item.pass .comp-icon { color: var(--lime); }
.comp-item.pass { color: var(--fg); }
.comp-item.fail { color: var(--fg-dim); }
.comp-icon {
  font-size: 14px;
  font-weight: 700;
  min-width: 18px;
  margin-top: 1px;
}

/* === HOW SECTION === */
.how-section {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.how-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 64px;
}
.how-step { padding: 0 16px; }
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.step-body {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.65;
}
.step-arrow {
  width: 40px;
  height: 40px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step-arrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime-border), transparent);
}
.oss-badge {
  max-width: 700px;
  margin: 0 auto;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.oss-icon {
  width: 40px;
  height: 40px;
  background: rgba(191,255,96,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oss-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.oss-sub {
  display: block;
  font-size: 12px;
  color: var(--fg-dim);
  font-family: 'IBM Plex Mono', monospace;
}

/* === PRINCIPLES === */
.principles-section {
  padding: 100px 32px;
  background: var(--bg);
}
.principles-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(191,255,96,0.08);
  border: 1px solid rgba(191,255,96,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.principle {
  background: var(--bg);
  padding: 40px 32px;
}
.principle-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.principle-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.principle-body {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* === CLOSING === */
.closing-section {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.closing-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-cta { margin-top: 48px; }
.cta-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 10px;
}
.cta-sub {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* === HERO ACTIONS === */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  color: #080808;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  letter-spacing: -0.01em;
  transition: all 0.15s;
  width: fit-content;
}
.hero-cta-primary:hover { background: #d4ff80; transform: translateY(-1px); }
.hero-cta-cli {
  display: flex;
  align-items: center;
  gap: 0;
  background: #0f0f0f;
  border: 1px solid rgba(191,255,96,0.2);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
}
.hero-cli-code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--lime);
  padding: 10px 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-cli-copy {
  background: rgba(191,255,96,0.08);
  border: none;
  border-left: 1px solid rgba(191,255,96,0.15);
  color: var(--fg-dim);
  font-size: 11px;
  font-weight: 600;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}
.hero-cli-copy:hover { background: rgba(191,255,96,0.15); color: var(--lime); }

/* === SCANNER PREVIEW SECTION === */
.scanner-preview-section {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.sp-inner { max-width: 1100px; margin: 0 auto; }
.sp-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.sp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  font-weight: 500;
}
.sp-label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s ease-in-out infinite;
}
.sp-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.sp-accent { color: var(--lime); }
.sp-sub {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 28px;
}
.sp-cta {
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  color: #080808;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 7px;
  transition: all 0.15s;
}
.sp-cta:hover { background: #d4ff80; transform: translateY(-1px); }
.sp-report {
  background: #0f0f0f;
  border: 1px solid rgba(191,255,96,0.15);
  border-radius: 14px;
  overflow: hidden;
  /* display:flex column ensures footer anchors to bottom without extra height constraints */
  display: flex;
  flex-direction: column;
}
.sp-report-bar {
  background: #1a1a1a;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sp-report-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sp-report-target {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--fg-dim);
}
.sp-report-status {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sp-status-done { color: var(--green); }
.sp-report-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sp-risk-score {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.sp-score-ring {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.sp-ring-svg { width: 36px; height: 36px; }
.sp-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.sp-grade-badge {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--red); /* grade F = red for mock */
  line-height: 1;
}
.sp-report-summary { display: flex; align-items: center; gap: 8px; }
.sp-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.sp-badge-critical { background: rgba(255,77,77,0.15); color: var(--red); }
.sp-badge-high { background: rgba(255,184,0,0.12); color: #FFB800; }
.sp-badge-medium { background: rgba(255,216,77,0.12); color: var(--yellow); }
.sp-findings { padding: 8px 0 16px; flex: 1; } /* flex:1 prevents bottom clip in flex column sp-report */
.sp-finding {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sp-finding:last-child { border-bottom: none; }
.sp-finding-critical { border-left: 3px solid var(--red); }
.sp-finding-high { border-left: 3px solid #FFB800; }
.sp-finding-medium { border-left: 3px solid var(--yellow); }
.sp-finding-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.sp-sev {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 3px;
}
.sp-sev-critical { background: rgba(255,77,77,0.15); color: var(--red); }
.sp-sev-high { background: rgba(255,184,0,0.12); color: #FFB800; }
.sp-sev-medium { background: rgba(255,216,77,0.1); color: var(--yellow); }
.sp-finding-tool {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--fg-dim);
}
.sp-finding-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.sp-finding-loc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--lime);
  margin-bottom: 8px;
}
.sp-finding-desc {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
  margin-bottom: 10px;
}
.sp-finding-desc code {
  font-family: 'IBM Plex Mono', monospace;
  background: rgba(255,255,255,0.05);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 11px;
}
.sp-finding-fix {
  font-size: 12px;
  color: var(--fg-dim);
  background: rgba(191,255,96,0.04);
  border: 1px solid rgba(191,255,96,0.1);
  border-radius: 6px;
  padding: 10px 14px;
  line-height: 1.6;
}
.sp-fix-label {
  color: var(--lime);
  font-weight: 600;
  margin-right: 4px;
}
.sp-report-footer {
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px;
  text-align: center;
}
.sp-run-link {
  color: var(--lime);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity 0.15s;
}
.sp-run-link:hover { opacity: 0.75; }

/* === SCAN GRID 4-COL === */
.scan-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.scan-card-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.scan-tool-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: 3px;
  padding: 2px 7px;
  letter-spacing: 0.02em;
}

/* === SURFACE CALLOUT === */
.surface-callout {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
}
.surface-callout-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg-dim);
  font-style: italic;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.surface-callout-cta {
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  color: #080808;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 7px;
  transition: all 0.15s;
}
.surface-callout-cta:hover { background: #d4ff80; transform: translateY(-1px); }

/* === FOOTER === */
.footer {
  padding: 64px 32px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand { max-width: 260px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.65;
}
.footer-links-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}
.footer-link-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.footer-link {
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--lime); }
.footer-email-form {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(191,255,96,0.2);
}
.footer-email-input {
  background: #111;
  border: none;
  color: var(--fg);
  font-size: 12px;
  padding: 8px 12px;
  outline: none;
  flex: 1;
  font-family: var(--font-body);
  min-width: 0;
}
.footer-email-input::placeholder { color: #444; }
.footer-email-btn {
  background: var(--lime);
  border: none;
  color: #080808;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.15s;
}
.footer-email-btn:hover { background: #d4ff80; }
.footer-email-hint {
  font-size: 11px;
  color: #444;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-legal, .footer-legal-links {
  font-size: 12px;
  color: #444;
}

/* === GITHUB SECURITY SECTION === */
.gh-security-section {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.ghs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.ghs-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.ghs-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
.ghs-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}
.ghs-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-dim);
  margin-bottom: 32px;
}
.ghs-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.ghs-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ghs-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.ghs-step-text {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.5;
}
.ghs-step-text code {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 12px;
  color: var(--lime);
}
.ghs-perms-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,216,77,0.06);
  border: 1px solid rgba(255,216,77,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #c8a820;
  line-height: 1.5;
}
.ghs-perms-note strong { color: var(--yellow); }
.ghs-perms-note code {
  background: rgba(255,216,77,0.1);
  border-radius: 3px;
  padding: 1px 4px;
  font-size: 11px;
}
.ghs-perms-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* Mock GitHub UI */
.ghs-mockup {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
}
.ghs-chrome {
  background: #161b22;
  border-bottom: 1px solid #30363d;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ghs-chrome-dots {
  display: flex;
  gap: 5px;
}
.ghs-chrome-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #30363d;
}
.ghs-chrome-bar {
  flex: 1;
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: #8b949e;
  font-family: monospace;
}
.ghs-tab-bar {
  display: flex;
  gap: 0;
  padding: 0 14px;
  border-bottom: 1px solid #30363d;
  background: #161b22;
}
.ghs-tab {
  padding: 10px 16px;
  font-size: 12px;
  color: #8b949e;
  border-bottom: 2px solid transparent;
  cursor: default;
}
.ghs-tab-active {
  color: #e6edf3;
  border-bottom-color: #f78166;
}
.ghs-alert-list { padding: 8px 0; }
.ghs-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #21262d;
  gap: 12px;
}
.ghs-alert:last-child { border-bottom: none; }
.ghs-alert-left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.ghs-severity {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.ghs-severity-critical { background: rgba(218,54,51,0.2); color: #f85149; border: 1px solid rgba(248,81,73,0.3); }
.ghs-severity-high { background: rgba(210,153,34,0.2); color: #d29922; border: 1px solid rgba(210,153,34,0.3); }
.ghs-severity-medium { background: rgba(210,153,34,0.12); color: #d29922; border: 1px solid rgba(210,153,34,0.2); }
.ghs-alert-title {
  font-size: 13px;
  color: #e6edf3;
  line-height: 1.3;
  margin-bottom: 3px;
}
.ghs-alert-meta {
  font-size: 11px;
  color: #8b949e;
}
.ghs-file { color: #58a6ff; }
.ghs-alert-tool {
  flex-shrink: 0;
  font-size: 11px;
  color: #8b949e;
  background: #21262d;
  padding: 2px 8px;
  border-radius: 12px;
}
.ghs-mockup-footer {
  padding: 10px 16px;
  font-size: 11px;
  color: #8b949e;
  border-top: 1px solid #21262d;
  background: #161b22;
}

/* Workflow snippet */
.ghs-snippet-wrap {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.ghs-snippet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ghs-snippet-filename {
  font-size: 12px;
  color: var(--fg-dim);
  font-family: monospace;
}
.ghs-snippet-link {
  font-size: 12px;
  color: var(--lime);
  text-decoration: none;
}
.ghs-snippet-link:hover { text-decoration: underline; }
.ghs-snippet {
  padding: 20px 24px;
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  color: var(--fg);
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
}
.ghs-snippet code { font-family: inherit; }
.ghs-kw { color: var(--lime); }
.ghs-cm { color: #555; }
.ghs-lime { color: var(--lime); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .scan-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-terminal { display: none; }
  .hero-headline { font-size: 40px; }
  .scan-grid { grid-template-columns: 1fr 1fr; }
  .scan-grid-4 { grid-template-columns: 1fr 1fr; }
  .surface-comparison { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-arrow { display: none; }
  .principles-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sp-report-bar { flex-direction: column; align-items: flex-start; }
  .sp-report-right { width: 100%; justify-content: space-between; }
  .ghs-inner { grid-template-columns: 1fr; gap: 40px; }
  .ghs-title { font-size: 28px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px 60px; }
  .scanner-preview-section, .scan-section, .surface-section, .how-section, .principles-section, .pricing-section { padding: 60px 20px; }
  .scan-grid, .scan-grid-4 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .nav-inner { padding: 14px 20px; }
  .hero-cta-cli { max-width: 100%; }
  .hero-cli-code { font-size: 10px; }
  .footer { padding: 48px 20px 24px; }
  .footer-links-grid { flex-direction: column; gap: 32px; }
}

/* === PRICING SECTION === */
.pricing-section {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  font-weight: 500;
}
.pricing-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 12px;
}
.pricing-sub {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* Pricing cards grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: rgba(191,255,96,0.2); }
.pricing-card.pc-popular {
  border-color: rgba(191,255,96,0.4);
  background: #0a0d05;
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #080808;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.pc-top { margin-bottom: 24px; }
.pc-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 12px;
}
.pc-price {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}
.pc-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-dim);
  letter-spacing: 0;
}
.pc-tagline {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.5;
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.pc-feat {
  font-size: 13px;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}
.pc-feat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-feat-ok { color: var(--fg); }
.pc-feat-ok::before {
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23BFFF60' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pc-feat-no { color: #555; }
.pc-feat-no::before {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pc-cta-wrap { margin-top: auto; }
.pc-cta {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
  letter-spacing: -0.01em;
}
.pc-cta-free {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--fg-dim);
}
.pc-cta-free:hover { color: var(--fg); border-color: rgba(255,255,255,0.3); text-decoration: none; }
.pc-cta-primary {
  background: var(--lime);
  color: #080808;
}
.pc-cta-primary:hover { background: #d4ff80; transform: translateY(-1px); text-decoration: none; }
.pc-cta-enterprise {
  background: transparent;
  border: 1px solid rgba(191,255,96,0.3);
  color: var(--lime);
}
.pc-cta-enterprise:hover { background: var(--lime-dim); text-decoration: none; }

/* Comparison table */
.pricing-compare {
  margin-bottom: 56px;
}
.compare-table {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.compare-head, .compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  align-items: center;
}
.compare-head {
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.compare-head .compare-col {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-align: center;
}
.compare-head .compare-col-pop {
  color: var(--lime);
  background: rgba(191,255,96,0.05);
}
.compare-row {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.02); }
.compare-feature {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--fg-dim);
}
.compare-val {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--fg);
  text-align: center;
}
.compare-val-pop {
  background: rgba(191,255,96,0.04);
  color: var(--lime);
  font-weight: 600;
}

/* FAQ */
.pricing-faq { text-align: center; }
.faq-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 32px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.faq-item {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px 24px;
}
.faq-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.faq-a {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-head, .compare-row { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .compare-table { overflow-x: auto; }
  .compare-head, .compare-row { min-width: 600px; }
}

/* ─── Live Findings Marquee Strip ───────────────────────────────────────────── */

/* Header bar */
.fs-section {
  background: var(--bg-alt, #111);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  overflow: hidden;
}
.fs-hd {
  padding: 18px 24px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.fs-hd-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fs-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  flex-shrink: 0;
}
.fs-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: fs-pulse 2s ease-in-out infinite;
}
@keyframes fs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}
.fs-hd-text {
  font-size: 13px;
  color: var(--fg-dim);
  flex: 1;
  min-width: 0;
}
.fs-see-all {
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.fs-see-all:hover { opacity: 1; }

/* Marquee scroll container */
.fs-marquee-wrap {
  overflow: hidden;
  /* Edge fades for perception of infinite scroll */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  padding: 16px 0;
}
.fs-marquee-track {
  display: flex;
  gap: 12px;
  /* Width = 50% per "set" because we duplicate cards for seamless loop */
  width: max-content;
  animation: fs-scroll 40s linear infinite;
}
@keyframes fs-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual finding card */
.fs-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--bg, #080808);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.15s, transform 0.15s;
  cursor: pointer;
}
.fs-card:hover {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
/* severity left-border accent */
.fs-sev-critical { border-left: 3px solid #ff4545; }
.fs-sev-high     { border-left: 3px solid #ff8c42; }
.fs-sev-medium   { border-left: 3px solid #f5c842; }
.fs-sev-low      { border-left: 3px solid #5ba4cf; }

.fs-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fs-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}
.fs-badge-critical { background: rgba(255,69,69,0.15);  color: #ff6b6b; }
.fs-badge-high     { background: rgba(255,140,66,0.15); color: #ff9a5c; }
.fs-badge-medium   { background: rgba(245,200,66,0.12); color: #f5c842; }
.fs-badge-low      { background: rgba(91,164,207,0.12); color: #5ba4cf; }
.fs-engine {
  font-size: 11px;
  color: var(--fg-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fs-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin: 0;
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fs-card-foot {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}
.fs-repo {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg);
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fs-when {
  font-size: 10px;
  color: var(--fg-dim);
  opacity: 0.55;
}

/* Reduced-motion: show static horizontal scroll instead of animation */
@media (prefers-reduced-motion: reduce) {
  .fs-marquee-track { animation: none; }
  .fs-marquee-wrap  { overflow-x: auto; padding: 16px 24px; }
}
/* Mobile: slightly narrower cards */
@media (max-width: 600px) {
  .fs-card { width: 240px; }
  .fs-marquee-track { animation-duration: 30s; }
}
/* ─── Pricing compliance CTA banner ─────────────────────────────────────── */
.pricing-compliance-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(77,255,160,0.06) 0%, rgba(77,160,255,0.06) 100%);
  border: 1px solid rgba(77,255,160,0.25);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.pcc-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.pcc-badge { background: var(--accent); color: #080808; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; padding: 3px 8px; border-radius: 4px; flex-shrink: 0; }
.pcc-text { display: flex; flex-direction: column; gap: 2px; }
.pcc-text strong { font-size: 15px; color: var(--text); }
.pcc-text span { font-size: 13px; color: var(--text-muted); }
.pcc-btn { background: var(--accent); color: #080808; font-weight: 700; font-size: 14px; padding: 10px 20px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: opacity 0.15s; flex-shrink: 0; }
.pcc-btn:hover { opacity: 0.88; }
@media (max-width: 640px) {
  .pricing-compliance-cta { flex-direction: column; align-items: flex-start; }
  .pcc-btn { width: 100%; text-align: center; }
}

/* === ADVISORIES STRIP === */
.adv-strip { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.adv-strip-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.adv-strip-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.adv-strip-label { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #ff3d5a; }
.adv-strip-all { font-size: 13px; color: var(--lime); font-weight: 600; }
.adv-strip-all:hover { text-decoration: none; }
.adv-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.adv-strip-card { display: flex; flex-direction: column; gap: 8px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 20px; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
.adv-strip-card:hover { text-decoration: none; transform: translateY(-2px); }
.adv-strip-card--critical { border-color: rgba(229,62,62,0.3); }
.adv-strip-card--critical:hover { border-color: rgba(229,62,62,0.6); }
.adv-strip-card--high { border-color: rgba(237,137,54,0.3); }
.adv-strip-card--high:hover { border-color: rgba(237,137,54,0.6); }
.adv-strip-card--medium { border-color: rgba(236,201,75,0.2); }
.adv-strip-card--medium:hover { border-color: rgba(236,201,75,0.5); }
.adv-strip-card--low { border-color: rgba(113,128,150,0.2); }
.adv-strip-card-top { display: flex; align-items: center; justify-content: space-between; }
.adv-strip-id { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--fg-dim); letter-spacing: 0.04em; }
.adv-strip-sev { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 2px 8px; border-radius: 4px; }
.adv-strip-sev--critical { background: rgba(229,62,62,0.15); color: #fc8181; }
.adv-strip-sev--high { background: rgba(237,137,54,0.15); color: #f6ad55; }
.adv-strip-sev--medium { background: rgba(236,201,75,0.12); color: #f6e05e; }
.adv-strip-sev--low { background: rgba(113,128,150,0.15); color: #a0aec0; }
.adv-strip-title { font-size: 14px; font-weight: 700; color: var(--fg); line-height: 1.3; }
.adv-strip-meta { display: flex; gap: 12px; font-size: 12px; color: var(--fg-dim); }
@media (max-width: 768px) {
  .adv-strip-grid { grid-template-columns: 1fr; }
}
