/* =========================
   INDEX PAGE — SCOPED ONLY
   Uses oc-base.css tokens
========================= */

.oc-scope .oc-hero-wrap{ padding:56px 18px 64px; }
.oc-scope .oc-hero-inner{ max-width: var(--oc-container); margin:0 auto; }

.oc-scope .oc-hero-head,
.oc-scope .oc-paras,
.oc-scope .oc-highlight{
  max-width: var(--oc-narrow);
  margin-left:auto;
  margin-right:auto;
}

/* Head centered */
.oc-scope .oc-hero-head{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.oc-scope .oc-title{
  margin:0;
  font-size:clamp(30px,3.2vw,46px);
  font-weight:800;
}

.oc-scope .oc-subtitle{
  margin:10px 0 0;
  font-size:clamp(14px,1.8vw,20px);
  font-weight:500;
}

/* Divider */
.oc-scope .oc-divider{
  margin:18px auto 0;
  gap:18px;
}
.oc-scope .oc-divider span{
  width:78px;height:3px;
  background: var(--oc-blue);
  opacity:.95;
}
.oc-scope .oc-divider .oc-plus{
  background:transparent;
  color: var(--oc-teal);
  font-weight:700;
  font-size:28px;
  line-height:1;
  transform:translateY(-2px);
}

/* Paragraphs */
.oc-scope .oc-paras{ margin-top:22px; text-align:center; }
.oc-scope .oc-paras p{
  margin:18px 0 0;
  font-size:16px;
  line-height:1.9;
  color: var(--oc-muted);
}

/* Highlight */
.oc-scope .oc-highlight{
  margin-top:36px;
  border:1px solid var(--oc-border);
  background:#f7fbff;
  border-radius:14px;
  padding:18px;
}
.oc-scope .oc-highlight p{
  margin:0;
  text-align:center;
  font-size:16px;
  font-weight:600;
  color: var(--oc-blue);
}

/* Cards */
.oc-scope .oc-cards{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
@media (max-width: 900px){
  .oc-scope .oc-cards{ grid-template-columns: 1fr; }
}
.oc-scope .oc-card{
  background:#fff;
  border:1px solid var(--oc-border);
  border-radius:18px;
  padding:22px 18px;
  text-align:center;
  box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.oc-scope .oc-icon{
  width:56px;height:56px;
  margin:0 auto 12px;
  border-radius:999px;
  background: rgba(44,182,178,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--oc-teal);
}
.oc-scope .oc-icon svg{ width:24px;height:24px; }

.oc-scope .oc-card h3{
  margin:0;
  font-size:16px;
  font-weight:800;
  color: var(--oc-blue);
}
.oc-scope .oc-card p{
  margin:8px 0 0;
  font-size:14px;
  line-height:1.8;
  color: var(--oc-muted);
}
