/* ── ORGVISOR SPECIFIC ── */
:root {
  --amber: #d97706;
  --amber-light: #fef3c7;
}

/* ══ HERO OVERRIDES ══ */
.hero-img {
  background: url('../images/10.jpg') center/cover no-repeat;
}

/* ══ PROBLEM ══ */
#problem {
  background: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.28s;
}

.problem-card:hover {
  background: #fff;
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: 0 8px 28px var(--shadow);
  transform: translateY(-3px);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(217, 119, 6, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══ WHAT IS ORGVISOR ══ */
#what {
  background: var(--bg);
}

.what-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}

.workspace-visual {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-md);
}

.wv-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wv-dots {
  display: flex;
  gap: 6px;
}

.wv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.wv-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  margin-inline-start: 8px;

  text-transform: uppercase;
}

.wv-body {
  padding: 20px;
}

.dept-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
  background: var(--bg);
  transition: all 0.2s;
  cursor: default;
}

.dept-row:hover,
.dept-row.active {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.dept-icon {
  font-size: 1rem;
  width: 30px;
  text-align: center;
  color: #64748b;
}

.dept-name {
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--navy);
  flex: 1;
}

.dept-projects {
  display: flex;
  gap: 6px;
}

.dept-tag {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.dept-tag.fixed {
  background: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}

.dept-tag.dynamic {
  background: #f8fafc;
  color: #475569;
  border-color: #e2e8f0;
}

.dept-tag.db {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.dept-tag.agent {
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}

.oversight-bar {
  margin-top: 14px;
  padding: 10px 14px;
  background: #0b2239;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.oversight-bar span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.9;
}

.oversight-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}

.what-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.what-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.25s;
}

.what-point:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 4px 16px var(--shadow);
}

.wp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.wp-icon.fixed {
  background: #f1f5f9;
  color: #64748b;
}

.wp-icon.dynamic {
  background: #eff6ff;
  color: #2563eb;
}

.wp-icon.db {
  background: #ecfdf5;
  color: #059669;
}

.wp-icon.gov {
  background: #fffbeb;
  color: #d97706;
}

.what-point h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.what-point p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══ FOR EVERY ROLE ══ */
#roles {
  background: var(--bg);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.role-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.role-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 36px var(--shadow-md);
  transform: translateY(-4px);
}

.role-header {
  padding: 24px 22px 16px;
  border-bottom: 1px solid var(--border);
}

.role-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.role-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.role-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;

}

.role-body {
  padding: 16px 22px 22px;
}

.role-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 9px;
}

.role-feature::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 1px;
}

.roles-image-wrap {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px var(--shadow);
  height: 280px;
  background: var(--bg);
}

.roles-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ══ MULTI-MODEL ══ */
#multimodel {
  background: #fff;
}

.mm-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}

.mm-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px var(--shadow-md);
  height: 320px;
  background: var(--bg);
}

.mm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mm-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mm-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  transition: all 0.25s;
}

.mm-card:hover {
  background: #fff;
  border-color: var(--teal-mid);
  box-shadow: 0 6px 20px var(--shadow);
}

.mm-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.mm-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mm-card-icon.runtime {
  background: #f1f5f9;
  color: #475569;
}

.mm-card-icon.routing {
  background: #fff1f2;
  color: #e11d48;
}

.mm-card-icon.policies {
  background: #ecfdf5;
  color: #059669;
}

.mm-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.mm-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

.threshold-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pill {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  border: 1px solid transparent;
}

.pill.intelligence {
  background: #f0fdf4;
  color: #166534;
  border-color: #dcfce7;
}

.pill.latency {
  background: #f5f3ff;
  color: #5b21b6;
  border-color: #ede9fe;
}

.pill.cost {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fee2e2;
}

/* ══ AGENTS ══ */
#agents {
  background: var(--bg);
}

.agents-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.agent-group {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agent-group-header {
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.agh-icon {
  font-size: 1.1rem;
  color: var(--navy);
  margin-top: 2px;
}

.agh-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.agh-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

.agent-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agent-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.agent-item:hover {
  background: var(--teal-light);
  border-color: var(--teal-mid);
}

.ai-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.ai-text {
  flex: 1;
}

.ai-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.ai-text p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.ai-status {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  border: 1px solid transparent;
  align-self: flex-start;
  margin-top: 2px;
}

.ai-status.ready {
  background: #f0fdf4;
  color: #16a34a;
  border-color: #dcfce7;
}

.ai-status.custom {
  background: #f5f3ff;
  color: #7c3aed;
  border-color: #ede9fe;
}

.oversight-card {
  background: #0d2d4a;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oversight-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.oversight-card p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.oversight-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.of-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.of-icon.general {
  color: #f59e0b;
}

.of-icon.specialized {
  color: #3b82f6;
}

.of-icon.policy {
  color: #cbd5e1;
}

.of-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.of-text strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
  font-size: 0.84rem;
}

/* ══ SECURITY ══ */
#security {
  background: #fff;
}

.security-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}

.security-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px var(--shadow-md);
  height: 340px;
  background: var(--bg);
}

.security-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.security-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sec-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.25s;
}

.sec-point:hover {
  background: #fff;
  border-color: var(--teal-mid);
  box-shadow: 0 4px 16px var(--shadow);
}

.sec-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.sec-point h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.sec-point p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── BENCHMARK SECTION ── */
.benchmark-side-section {
  padding: 90px 7% 70px;
  background: radial-gradient(circle at top right, rgba(10, 135, 111, 0.08), transparent 34%), #ffffff;
  color: #071f3d;
  overflow: visible;
}

.benchmark-container {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 48px;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
}

.benchmark-copy {
  max-width: 520px;
  padding-top: 6px;
}

.benchmark-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  color: #052244;

}

.benchmark-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #48647e;
}

.benchmark-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.dataset-card {
  position: relative;
  min-height: 118px;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid #dce7ef;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(7, 31, 61, 0.06);
  overflow: hidden;
}

.dataset-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -36px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.14;
}

.dataset-card.green {
  border-color: #bce9de;
  background: linear-gradient(135deg, #ffffff 0%, #f0fffb 100%);
}

.dataset-card.green::after {
  background: #07876f;
}

.dataset-card.blue {
  border-color: #c8def7;
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}

.dataset-card.blue::after {
  background: #1775d1;
}

.dataset-card.purple {
  border-color: #dfcff7;
  background: linear-gradient(135deg, #ffffff 0%, #faf6ff 100%);
}

.dataset-card.purple::after {
  background: #7a45d8;
}

.dataset-card.orange {
  border-color: #f5d6bc;
  background: linear-gradient(135deg, #ffffff 0%, #fff8f2 100%);
}

.dataset-card.orange::after {
  background: #ef7d2d;
}

.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  box-shadow: inset 0 0 0 1px rgba(7, 31, 61, 0.06);
}

.dataset-card h3 {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 900;
  color: #052244;
}

.dataset-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #526b83;
}

.metrics-box {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid #dce7ef;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(7, 31, 61, 0.05);
}

.metrics-box h3 {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 850;

  text-transform: uppercase;
  color: #496176;
}

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

.metric-pill {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  border-radius: 16px;
  background: #f7fafc;
  border: 1px solid #e5edf3;
}

.metric-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #07876f;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.metric-pill strong {
  display: block;
  font-size: 16px;
  color: #052244;
}

.metric-pill small {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: #60778e;
}

.results-note {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 16px;
  background: #052244;
  color: #ffffff;
}

.note-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #10b981;
  font-size: 1.4rem;
}

.results-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 850;
}

.results-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #c8d8e8;
}

/* ── MOBILE ── */
@media (max-width: 1050px) {
  .benchmark-container {
    grid-template-columns: 1fr;
  }

  .benchmark-copy {
    max-width: 780px;
  }
}

@media (max-width: 900px) {

  .what-wrap,
  .mm-wrap,
  .security-wrap {
    grid-template-columns: 1fr;
  }

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

  .roles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .agents-wrap {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .benchmark-side-section {
    padding: 64px 5%;
  }

  .dataset-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .results-note {
    align-items: flex-start;
  }
}