/* Start custom CSS */:root{
  --ink:#0b1220;
  --muted:#4b5563;
  --soft:#f8fafc;
  --line:#e5e7eb;

  /* UPDATED BRAND COLORS */
  --accent:#D7C826;
  --accent_hover:#63B1BC;

  --radius:18px;
  --shadow:0 10px 30px rgba(2,6,23,.08);
  --max:980px;
}

.sp-wrap{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--ink);
  line-height:1.65;
}

.sp-container{
  max-width:var(--max);
  margin:0 auto;
  padding:52px 18px;
}

.sp-hero,
.sp-card,
.sp-mini,
.sp-quote,
.sp-footer-cta{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
}

.sp-hero{
  background:linear-gradient(180deg,#fff 0%,var(--soft) 100%);
  padding:52px 38px;
}

.sp-card{ padding:26px; }
.sp-mini{ padding:22px; }
.sp-quote{ padding:22px; margin-top:18px; }

.sp-kicker{
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
  font-size:12px;
  color:var(--muted);
  margin:0 0 14px;
}

.sp-h1{
  font-size:clamp(32px,4.2vw,50px);
  line-height:1.06;
  margin:0 0 16px;
}

.sp-h2{
  font-size:28px;
  margin:0 0 16px;
}

.sp-subhead{
  font-size:18px;
  color:var(--muted);
  margin:0 0 24px;
  max-width:80ch;
}

.sp-lead{
  color:var(--muted);
  margin:0 0 20px;
  max-width:88ch;
}

.sp-section{
  margin-top:44px;
  padding:44px 0;
  border-bottom:1px solid var(--line);
}

.sp-section:last-child{ border-bottom:none; }

.sp-pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.sp-pill{
  font-size:13px;
  color:var(--muted);
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
}

.sp-hero-grid{
  display:grid;
  grid-template-columns:1.45fr .85fr;
  gap:30px;
  align-items:start;
  margin-top:34px;
}

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

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

.sp-checklist{
  margin:16px 0 0;
  padding:0;
  list-style:none;
}

.sp-checklist li{
  padding:12px 0;
  border-bottom:1px dashed var(--line);
  color:var(--muted);
}

.sp-checklist li:last-child{ border-bottom:none; }
.sp-checklist strong{ color:var(--ink); }

.sp-btns{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.sp-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:100%;
  padding:16px;
  border-radius:14px;
  background:var(--accent);
  color:#1a1a1a;
  font-weight:900;
  text-decoration:none;
  transition:background .2s ease, transform .08s ease;
}

.sp-btn:hover{
  background:var(--accent_hover);
  transform:translateY(-1px);
}

.sp-who{
  margin:0;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

.sp-invest{
  margin-top:14px;
  padding-top:14px;
  border-top:1px dashed var(--line);
  font-size:14px;
  color:var(--muted);
}

.sp-footer-cta{
  margin-top:50px;
  padding:38px;
  box-shadow:var(--shadow);
}

.sp-trust{
  font-size:13px;
  color:var(--muted);
  margin-top:16px;
}

.sp-small{
  font-size:12px;
  color:var(--muted);
}

/* MOBILE */
@media (max-width:900px){
  .sp-grid-2,
  .sp-grid-3,
  .sp-hero-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .sp-container{ padding:44px 16px; }
  .sp-hero{ padding:42px 24px; }
}/* End custom CSS */