:root{
  --bg:#0b1220;
  --panel:rgba(255,255,255,.06);
  --card:rgba(255,255,255,.07);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --border:rgba(255,255,255,.10);
  --primary:#2f7dff;
  --accent:#00d1c1;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(47,125,255,.30), transparent 55%),
    radial-gradient(800px 500px at 90% 0%, rgba(0,209,193,.20), transparent 55%),
    linear-gradient(180deg, #070b12 0%, #0b1220 55%, #0b1220 100%);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:22px 22px 38px;}

.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(11,18,32,.75);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--border);
}
.navInner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{font-weight:900; letter-spacing:.2px}
.links{
  display:flex; gap:6px; flex-wrap:wrap;
  color:var(--muted); font-weight:800; font-size:13px;
}
.links a{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
}
.links a:hover{border-color:var(--border); color:var(--text); background:rgba(255,255,255,.05)}
.links a.active{background:rgba(255,255,255,.07); border-color:var(--border); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  font-weight:900; font-size:14px;
}
.btn:hover{background:rgba(255,255,255,.08)}
.btn.primary{
  background:linear-gradient(135deg, rgba(47,125,255,.95), rgba(0,209,193,.85));
  border-color:transparent;
  color:#06101b;
}

.hero{padding:26px 0 10px;}
.heroShell{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:stretch;
}
.heroCopy{
  padding:22px;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.kicker{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(234,240,255,.78);
  font-weight:900;
}
h1{margin:14px 0 12px; font-size:42px; line-height:1.05;}
.sub{margin:0; color:var(--muted); font-size:16px; line-height:1.65; max-width:70ch;}

.heroList{margin:14px 0 0; padding-left:18px; color:var(--muted); line-height:1.7; font-size:14px}
.heroList li{margin:6px 0}

.pillRow{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 0;}
.pill{
  padding:8px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:800; font-size:12px;
}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px;}

.heroPhoto{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
  min-height: 420px;
}
.heroPhoto img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: 50% 20%;
  display:block;
}

.section{padding:22px 0;}
.section h2{margin:0 0 10px; font-size:24px;}
.card{
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.small{font-size:13px; line-height:1.7; color:var(--muted);}
.footer{
  border-top:1px solid var(--border);
  padding:18px 0;
  color:var(--muted);
  font-size:14px;
}

@media (max-width: 980px){
  .heroShell{grid-template-columns:1fr;}
  h1{font-size:34px;}
  .heroPhoto{min-height:300px;}
}
/* === Premium hero layout + aesthetics === */

.heroShell{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:22px;
  align-items:stretch;
}

.panel{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.06));
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
}

.heroCopy{padding:28px;}

.heroPhoto{
  overflow:hidden;
  min-height:520px;
  max-height:520px;
}

.heroPhoto img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 12%;
  display:block;
}

/* Make headline feel premium (less “loud”) */
h1{
  font-size:40px;
  letter-spacing:-.02em;
  line-height:1.06;
  margin:14px 0 12px;
}

/* Reduce “wall of text” feeling */
.heroList{
  color: rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.75;
  margin:14px 0 0;
}
.heroList li{margin:8px 0;}

/* KPI row adds visual structure */
.kpiRow{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:14px;
}
.kpi{padding:14px;}
.kpi .n{font-size:18px; font-weight:900;}
.kpi .l{font-size:12px; opacity:.75; font-weight:800; margin-top:4px;}

/* Buttons look cleaner */
.btn.ghost{background:transparent;}

/* Mobile */
@media (max-width: 980px){
  .heroShell,.kpiRow{grid-template-columns:1fr;}
  .heroPhoto{min-height:320px; max-height:320px;}
  h1{font-size:32px;}
}
.kpi:first-child{
  background: linear-gradient(135deg, rgba(59,130,246,.18), rgba(0,209,193,.12));
  border-color: rgba(59,130,246,.45);
}  
/* ===== Mobile + iPad layout fix (prevents “empty left space” + ugly footer nav) ===== */

@media (max-width: 1024px){

  /* Make layout use full screen width */
  .wrap{
    padding: 18px 16px !important;
  }

  /* Ensure main cards stretch */
  .panel, .card{
    width: 100% !important;
  }

  /* If any nav-like chips appear in footer, hide them */
  footer .links,
  footer nav,
  footer .navInner{
    display: none !important;
  }

  /* Make any grid stacks cleanly */
  .grid, .cards3, .cards4, .twoCol, .kpiRow{
    grid-template-columns: 1fr !important;
  }

  /* Hero: stack image under copy properly */
  .heroShell{
    grid-template-columns: 1fr !important;
  }

  .heroPhoto{
    min-height: 320px !important;
    max-height: 320px !important;
  }

  /* Reduce headline slightly for tablet */
  h1{
    font-size: 30px !important;
    line-height: 1.12 !important;
  }
}
/* ===== iPad / tablet centering fix (Leadership page issue) ===== */

/* Ensure all main containers center correctly */
.wrap{
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

/* Fix tablet widths where content gets pushed right */
@media (max-width: 1024px){

  body{
    overflow-x: hidden;
  }

  .wrap{
    max-width: 100% !important;
    padding: 18px 16px !important;
  }

  /* If any section has a fixed width or offset, neutralize it */
  .hero, .section, main{
    width: 100% !important;
    margin: 0 !important;
  }

  /* Make any 2-col/3-col grids stack cleanly */
  .grid, .cards3, .cards4, .twoCol, .kpiRow{
    grid-template-columns: 1fr !important;
  }
}
/* ===== Hard fix: prevent “content pushed to the right” on iPad ===== */
@media (max-width: 1024px){

  html, body { width: 100%; overflow-x: hidden; }

  /* Make main container center and fill */
  main.wrap{
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 16px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Force every section/card block to occupy full width */
  main.wrap > section,
  main.wrap > div{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* If any layout uses grid/flex with empty left column, collapse to one column */
  .heroShell{
    grid-template-columns: 1fr !important;
  }

  /* If any grids exist, stack them */
  .grid, .cards3, .cards4, .twoCol, .kpiRow{
    grid-template-columns: 1fr !important;
  }
}
/* =========================
   MOBILE OPTIMISATION
   ========================= */
@media (max-width: 900px) {

  body {
    overflow-x: hidden;
  }

  /* NAV */
  .navInner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* HERO */
  .heroShell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .heroCopy {
    padding: 24px;
  }

  .heroPhoto img {
    max-width: 260px;
    margin: 0 auto;
    display: block;
  }

  h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  /* KPI CARDS */
  .kpiRow {
    grid-template-columns: repeat(2, 1fr);
  }

  /* GENERAL SECTIONS */
  .section {
    padding: 40px 20px;
  }

  /* GRIDS */
  .grid.cards4,
  .grid.cards3,
  .grid.twoCol {
    grid-template-columns: 1fr;
  }

  /* BUTTONS */
  .ctaRow {
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* FOOTER */
  .footer {
    text-align: center;
  }
}

