:root{
    --blue:#0b66d6;
    --blue-2:#06c3e0;
    --muted:#6b7580;
    --bg:#ffffff;
    --container-max:1200px;
    --radius:10px;
    --ease: cubic-bezier(.2,.9,.2,1);
  }

  *{box-sizing:border-box}
  body{ margin:0; font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial; color:#122034; background:#f3f6fb; -webkit-font-smoothing:antialiased;}

  /* wrapper / container */
  .split-wrap{
    width:100%;
    max-width:calc(100% - 40px);
    margin:30px auto;
    display:block;
  }

  .split {
    display:flex;
    gap:0;
    background:transparent;
    border-radius:var(--radius);
    overflow:hidden;
    min-height:420px;
    box-shadow: 0 18px 50px rgba(10,40,80,0.06);
  }

  /* left panel - blue overlay with image */
  .split-left{
    flex:1;
    min-width:320px;
    padding:56px;
    color:#fff;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    background-color:var(--blue);
    /* background image behind overlay */
    background-image: url("/mnt/data/Screen%20Shot%202025-09-06%20at%2011.37.44%20AM.png");
    background-size: cover;
    background-position: center;
  }
  .split-left::after{
    /* blue overlay to darken image */
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(90deg, rgba(11,102,214,0.95) 0%, rgba(6,163,218,0.85) 100%);
    mix-blend-mode: multiply;
    pointer-events:none;
  }
  .left-inner{
    position:relative;
    z-index:2;
    max-width:560px;
  }
  .kicker{
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
    color: rgba(255,255,255,0.95);
    font-weight:700;
    margin-bottom:18px;
  }
  .headline{
    font-family: "Jost", sans-serif;
    font-size:40px;
    line-height:1.02;
    margin:0 0 18px;
    color:#fff;
    font-weight:800;
    text-shadow: 0 6px 20px rgba(4,20,50,0.08);
  }
  .lead{
    color: rgba(255,255,255,0.92);
    font-size:15px;
    margin-bottom:26px;
    max-width:520px;
  }
  .btn-primary{
    display:inline-block;
    background: var(--blue-2);
    color:#003044;
    padding:12px 20px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    box-shadow: 0 10px 30px rgba(6,160,218,0.18);
    transition: transform .18s var(--ease), box-shadow .18s var(--ease);
  }
  .btn-primary:hover{ transform: translateY(-3px); }

  /* right panel - stats with faded background image */
  .split-right{
    width:460px;
    min-width:300px;
    background-color:#fff;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 28px;
    overflow:hidden;
  }

  .split-right::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: url("/mnt/data/Screen%20Shot%202025-09-06%20at%2011.37.44%20AM.png");
    background-position:center right;
    background-size:cover;
    opacity:0.08;
    pointer-events:none;
  }

  .stats-grid{
    position:relative;
    z-index:2;
    width:100%;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:30px 10px;
    align-items:center;
    justify-items:center;
  }

  .stat{
    text-align:center;
    min-width:120px;
  }

  .stat-number{
    font-family: "Jost", sans-serif;
    font-size:46px;
    font-weight:800;
    color:#0e2038;
    line-height:1;
    margin-bottom:8px;
    transition: transform .25s ease;
  }
  .stat-label{
    color:var(--blue);
    font-weight:700;
    font-size:14px;
  }

  /* small screens: stack */
  @media (max-width: 960px){
    .split{ flex-direction:column; min-height:auto;}
    .split-left{ padding:30px; min-height:320px; }
    .split-right{ width:100%; padding:28px;}
    .stats-grid{ gap:18px; grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width:560px){
    .split-left{ padding:20px; text-align:left;}
    .headline{ font-size:26px; }
    .stats-grid{ grid-template-columns: 1fr 1fr; gap:12px;}
    .stat-number{ font-size:30px; }
  }

  /* small animation classes */
  .fade-in-up{ opacity:0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease);}
  .fade-in-up.show{ opacity:1; transform: translateY(0); }
