:root {
  --orange: #B35000;
  --orange-light: #D4600A;
  --orange-faint: rgba(191,87,0,0.08);
  --orange-border: rgba(191,87,0,0.22);
  --charcoal: #111111;
  --slate: #1B2A3B;
  --slate-2: #243446;
  --off-white: #FAF9F7;
  --warm-gray: #F3F0EB;
  --border: #E2DDD8;
  --text-primary: #141210;
  --text-secondary: #49413b;
  --text-muted: #77716b;
  --green: #15803d;
  --blue: #1d4ed8;
  --red: #b91c1c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text-primary); background: #fff; }

.ops-hero {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 48px 4.25rem;
  background: linear-gradient(160deg, #0b1017 0%, #111827 44%, #16324b 100%);
  color: #fff;
}
.ops-hero > .hero-bg,
.ops-hero > .hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ops-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(191,87,0,0.13) 0%, transparent 58%);
  pointer-events: none;
}
.ops-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.ops-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ops-eyebrow::before { content: ''; width: 18px; height: 2px; background: currentColor; }
.ops-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(34px, 4.3vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}
.ops-title span { color: #f5a461; }
.ops-sub {
  max-width: 690px;
  margin-top: 18px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.8;
}
.ops-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: 8px; text-decoration: none;
  font-size: 13px; font-weight: 600;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-ghost { border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }

.ops-scoreboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.score-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 18px;
}
.score-value {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.score-label {
  margin-top: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.score-note {
  margin-top: 7px;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  line-height: 1.45;
}

.ops-band {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.ops-band-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 48px;
}
.scope-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.scope-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.scope-value {
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.scope-label {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 52px 48px 88px;
}
.ops-section + .ops-section { margin-top: 52px; }
.section-header { margin-bottom: 20px; }
.section-label {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-title {
  margin-top: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.audit-summary-card,
.workflow-card,
.finding-card,
.strength-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.audit-summary-card {
  padding: 22px 24px;
  display: grid;
  gap: 14px;
}
.audit-summary-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.finding-grid,
.strength-grid,
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.finding-card,
.strength-card,
.workflow-card {
  padding: 20px 22px;
  display: grid;
  gap: 12px;
}
.finding-severity {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.severity-high {
  background: rgba(185,28,28,0.08);
  border: 1px solid rgba(185,28,28,0.18);
  color: var(--red);
}
.severity-medium {
  background: var(--orange-faint);
  border: 1px solid var(--orange-border);
  color: var(--orange);
}
.severity-low {
  background: rgba(29,78,216,0.08);
  border: 1px solid rgba(29,78,216,0.16);
  color: var(--blue);
}
.finding-title,
.strength-card h3,
.workflow-card h3 {
  font-size: 20px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.finding-summary,
.finding-why,
.strength-card p,
.workflow-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}
.finding-examples {
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.finding-subtitle {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.finding-examples ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}
.strength-value {
  color: var(--green);
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.workflow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--orange-faint);
  border: 1px solid var(--orange-border);
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .ops-hero {
    padding-left: 24px;
    padding-right: 24px;
  }
  .ops-hero-inner,
  .scope-band,
  .finding-grid,
  .strength-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .main,
  .ops-band-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
