/* AI Compliance page styles */

:root {
  --ink: #0A0A0B;
  --bone: #F7F6F2;
  --violet: #7C3AED;
  --acid: #D4FF4F;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #fff; color: var(--ink);
  font-family: var(--mono);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; line-height: 1.6;
}

/* ── SYSTEM BAR ── */
.sys-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 48px; border-bottom: 3px solid var(--ink);
  background: #fff; position: sticky; top: 0; z-index: 50;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--ink); font-weight: 600;
}
.sys-bar .brand { color: #fff; background: var(--ink); padding: 6px 14px; font-weight: 800; font-size: 14px; letter-spacing: 0.08em; }
.sys-status { display: flex; gap: 16px; }
.sys-status span { display: flex; align-items: center; gap: 6px; border: 2px solid var(--ink); padding: 4px 12px; font-weight: 700; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ── SYSTEM LABELS ── */
.sys-label {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: var(--violet); text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 24px;
}

/* ── HERO ── */
.hero { padding: 100px 48px 80px; max-width: 1200px; margin: 0 auto; border-bottom: 3px solid var(--ink); }
.hero-status-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 48px;
}
.hero-status-card {
  padding: 20px 24px; border: 2px solid var(--ink); border-right: none;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700;
}
.hero-status-card:last-child { border-right: 2px solid var(--ink); }
.hero-status-card .label { color: rgba(10,10,11,0.4); margin-bottom: 4px; font-weight: 600; }
.hero-status-card .value { color: var(--ink); font-size: 13px; font-weight: 800; }
.hero-status-card .value.accent-val { color: var(--violet); }
.hero h1 {
  font-family: var(--mono); font-weight: 800;
  font-size: clamp(56px, 9vw, 120px); line-height: 0.9;
  text-transform: uppercase; letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero h1 .accent { color: var(--violet); }
.hero-divider { border: none; border-top: 3px solid var(--ink); margin: 0 0 32px 0; }
.hero-tagline {
  font-family: var(--mono); font-size: 16px; color: rgba(10,10,11,0.6);
  line-height: 1.7; max-width: 680px; margin-bottom: 40px;
  text-transform: uppercase;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: var(--ink); color: var(--acid);
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none; border: 3px solid var(--ink); cursor: pointer; transition: none;
}
.btn-primary:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: transparent; color: var(--ink);
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none; border: 3px solid var(--ink); transition: none;
}
.btn-secondary:hover { background: var(--ink); color: #fff; }

/* ── SECTIONS ── */
.section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; border-bottom: 3px solid var(--ink); }
.section-dark {
  background: var(--ink); color: #fff; max-width: 100%; padding: 80px 48px;
  border-bottom: 3px solid var(--ink);
}
.section-dark .sys-label { color: var(--acid); }
.section-dark .inner { max-width: 1200px; margin: 0 auto; }
.section-bone { background: var(--bone); max-width: 100%; padding: 80px 48px; border-bottom: 3px solid var(--ink); }
.section-bone .inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: var(--mono); font-weight: 800;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.1;
  text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 16px;
}
.section-desc {
  font-family: var(--mono); font-size: 14px; color: rgba(10,10,11,0.55);
  line-height: 1.7; max-width: 600px; margin-bottom: 48px; text-transform: uppercase;
}
.section-dark .section-desc { color: rgba(255,255,255,0.5); }
.divider { border: none; border-top: 3px solid var(--ink); margin: 0; }

/* ── PROBLEM CARDS ── */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.problem-card { background: var(--bone); padding: 48px 32px; border: 2px solid var(--ink); border-right: none; transition: none; }
.problem-card:last-child { border-right: 2px solid var(--ink); }
.problem-card:hover { background: var(--ink); color: #fff; }
.problem-card:hover .problem-num { color: rgba(255,255,255,0.08); }
.problem-card:hover .problem-stat { color: var(--acid); }
.problem-card:hover .problem-text { color: rgba(255,255,255,0.6); }
.problem-num {
  font-family: var(--mono); font-size: 80px; font-weight: 800;
  color: rgba(10,10,11,0.06); line-height: 1; margin-bottom: 16px;
}
.problem-stat {
  font-family: var(--mono); font-size: 36px; font-weight: 800;
  color: var(--violet); margin-bottom: 8px; text-transform: uppercase;
}
.problem-text {
  font-family: var(--mono); font-size: 13px; color: rgba(10,10,11,0.55);
  line-height: 1.7; text-transform: uppercase;
}

/* ── COMPLIANCE CARDS ── */
.comp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.comp-card {
  border: 2px solid rgba(255,255,255,0.2); padding: 40px 32px;
  background: rgba(255,255,255,0.03); transition: none;
}
.comp-card:hover { border-color: var(--acid); background: rgba(255,255,255,0.08); }
.comp-tag {
  font-size: 11px; font-weight: 700; color: var(--acid);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px;
}
.comp-card h3 {
  font-family: var(--mono); font-size: 18px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 12px; line-height: 1.2; color: #fff;
}
.comp-card p {
  font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.7; text-transform: uppercase;
}

/* ── FRAMEWORK BADGES ── */
.fw-grid { display: flex; flex-wrap: wrap; gap: 0; }
.fw-badge {
  padding: 12px 24px; border: 2px solid var(--ink);
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: none; margin-right: -2px; margin-bottom: -2px;
}
.fw-badge:hover { background: var(--ink); color: #fff; }
.fw-badge.active {
  background: var(--ink); color: var(--acid); border-color: var(--ink);
}

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step-card {
  padding: 40px 28px; border: 2px solid var(--ink); border-right: none; transition: none;
}
.step-card:last-child { border-right: 2px solid var(--ink); }
.step-card:hover { background: var(--ink); color: #fff; }
.step-card:hover .step-num { color: rgba(255,255,255,0.08); }
.step-card:hover p { color: rgba(255,255,255,0.6); }
.step-num {
  font-family: var(--mono); font-size: 48px; font-weight: 800;
  color: rgba(10,10,11,0.06); line-height: 1; margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--mono); font-size: 16px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 12px; line-height: 1.3;
}
.step-card p {
  font-family: var(--mono); font-size: 12px; color: rgba(10,10,11,0.5);
  line-height: 1.7; text-transform: uppercase;
}

/* ── ROI STATS ── */
.roi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.roi-card { text-align: center; padding: 48px 20px; border: 2px solid rgba(255,255,255,0.2); border-right: none; }
.roi-card:last-child { border-right: 2px solid rgba(255,255,255,0.2); }
.roi-num {
  font-family: var(--mono); font-size: 56px; font-weight: 800;
  color: var(--acid); line-height: 1; margin-bottom: 8px;
}
.roi-label {
  font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.4);
}

/* ── INDUSTRY CARDS ── */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.ind-card {
  padding: 32px 24px; border: 2px solid var(--ink);
  margin-right: -2px; margin-bottom: -2px; transition: none;
}
.ind-card:hover { background: var(--ink); color: #fff; }
.ind-card:hover .ind-fw { color: var(--acid); }
.ind-card h4 {
  font-family: var(--mono); font-size: 14px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 8px;
}
.ind-card .ind-fw {
  font-family: var(--mono); font-size: 11px; color: var(--violet);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}

/* ── BEFORE / AFTER ── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.compare-col { padding: 48px 32px; border: 2px solid var(--ink); }
.compare-col.before { background: rgba(220,38,38,0.04); border-right: none; }
.compare-col.after { background: rgba(124,58,237,0.04); }
.compare-col h3 {
  font-family: var(--mono); font-size: 18px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.compare-col.before h3 { color: #DC2626; }
.compare-col.after h3 { color: var(--violet); }
.compare-col ul { list-style: none; }
.compare-col li {
  padding: 12px 0; border-bottom: 2px solid rgba(10,10,11,0.08);
  font-family: var(--mono); font-size: 13px; color: rgba(10,10,11,0.6);
  text-transform: uppercase; display: flex; align-items: flex-start; gap: 10px;
}
.compare-col.before li::before {
  content: '✕'; color: #DC2626; font-weight: 800; font-family: var(--mono);
  font-size: 12px; flex-shrink: 0; margin-top: 3px;
}
.compare-col.after li::before {
  content: '✓'; color: var(--violet); font-weight: 800; font-family: var(--mono);
  font-size: 12px; flex-shrink: 0; margin-top: 3px;
}

/* ── CTA ── */
.cta-section {
  padding: 100px 48px; text-align: center; max-width: 100%; margin: 0 auto;
  border-bottom: 3px solid var(--ink);
}
.cta-section .inner-cta { max-width: 1200px; margin: 0 auto; }
.cta-section .section-title { margin: 0 auto 16px; }
.cta-section .section-desc { margin: 0 auto 40px; text-align: center; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer-top {
  background: var(--ink); color: #fff; padding: 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 600;
}
.footer-top a { color: var(--acid); text-decoration: none; }
.footer-top a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo {
  width: 32px; height: 32px; background: var(--acid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 14px; font-weight: 800; color: var(--ink);
}
.footer-bottom {
  background: #fff; color: var(--ink); padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 600;
  border-top: 3px solid var(--ink);
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .comp-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sys-bar { padding: 12px 24px; flex-direction: column; gap: 8px; }
  .hero { padding: 60px 24px 60px; }
  .hero h1 { font-size: clamp(32px, 8vw, 52px); }
  .hero-meta { flex-direction: column; gap: 8px; }
  .section, .section-dark, .section-bone { padding: 60px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { border-right: 2px solid var(--ink) !important; border-bottom: none; margin-right: 0; margin-bottom: -2px; }
  .step-card:last-child { border-bottom: 2px solid var(--ink); margin-bottom: 0; }
  .hero-status-grid { grid-template-columns: 1fr; }
  .hero-status-card { border-right: 2px solid var(--ink) !important; border-bottom: none; }
  .hero-status-card:last-child { border-bottom: 2px solid var(--ink); }
  .roi-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 16px; text-align: center; padding: 32px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 24px; }
}
@media (max-width: 480px) {
  .roi-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}