/* =========================
   VBS (Blue / White / Gold / Purple)
   Base + Layout + Typography
   ========================= */

:root{
  --bg: #0b1220;              /* deep blue (used in accents) */
  --surface: #0f1b33;         /* card background */
  --text: #0d1220;            /* main text on white */
  --muted: #5d6a7d;

  --white: #ffffff;
  --offwhite: #f6f8fc;

  --blue: #1e4ed8;            /* primary blue */
  --blue2: #0b5cff;           /* vibrant */
  --purple: #6d28d9;          /* purple */
  --gold: #d4af37;            /* gold */

  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 18px 55px rgba(2, 6, 23, 0.12);

  --radius: 18px;
  --container: 1180px;

  --ease: cubic-bezier(.2,.8,.2,1);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--offwhite);
  line-height:1.55;
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.eyebrow{
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: rgba(30, 78, 216, .9);
}

/* Top strip */
.top-strip{
  background: linear-gradient(90deg, rgba(30,78,216,.12), rgba(109,40,217,.10), rgba(212,175,55,.10));
  border-bottom: 1px solid var(--border);
}
.top-strip p{
  margin:0;
  padding: 10px 0;
  text-align:center;
  font-size: 13px;
  color: rgba(13,18,32,.88);
}

/* Sections */
.section{
  padding: 88px 0;
}
.section-alt{
  background: linear-gradient(180deg, var(--white), rgba(30,78,216,.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head h2{
  margin:0;
  font-size: clamp(22px, 3vw, 34px);
}
.section-head p{ margin:0; max-width: 700px; }

/* Two column */
.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
}
@media (max-width: 980px){
  .two-col{ grid-template-columns: 1fr; }
}
