
  :root{
    --midline-blue:#0A4FA3;
    --midline-blue-2:#4D77C2;
    --ink:#1f2933;
    --muted:#3b4652;
    --bg:#f5f7fa;
    --card:#ffffff;
    --soft:#F8FBFF;
    --ring: rgba(10,79,163,.22);
    --shadow: 0 14px 35px rgba(0,0,0,.10);
    --shadow2: 0 10px 22px rgba(0,0,0,.08);
    --radius: 18px;
    --radius2: 22px;
    --max: 1120px;
  }

  .wrap{max-width:var(--max); margin:0 auto; padding:0 10px}
  .section{padding:28px 0}
  .section h2{
    margin:0 0 10px;
    font-size:28px;
    letter-spacing:-.4px;
    color:var(--ink);
  }
  .section p.lead{
    margin:0 0 18px;
    color:var(--muted);
    max-width:82ch;
    font-size:16px;
    line-height:1.55;
  }

  /* Hero */
  .hero{padding:30px 0 18px}
  .hero-grid{
    display:grid;
    grid-template-columns: 1.12fr .88fr;
    gap:18px;
    align-items:stretch;
  }
  .hero-card{
    background:var(--card);
    border-radius:var(--radius2);
    box-shadow:var(--shadow);
    overflow:hidden;
    border:1px solid rgba(0,0,0,.06);
  }
  .hero-left{padding:28px 26px}
  .kicker{
    display:inline-flex; gap:10px; align-items:center;
    background:var(--soft);
    border:1px solid rgba(10,79,163,.16);
    color:var(--midline-blue);
    font-weight:900;
    padding:8px 12px;
    border-radius:999px;
    font-size:13px;
    letter-spacing:.2px;
  }
  .hero h1{
    margin:14px 0 10px;
    font-size:42px;
    letter-spacing:-.7px;
    line-height:1.08;
    color:var(--ink);
  }
  .hero p{
    margin:0 0 14px;
    color:var(--muted);
    font-size:16px;
    max-width:74ch;
    line-height:1.6;
  }
  .conviction{
    margin:10px 0 0;
    padding:12px 14px;
    border-radius:16px;
    background:linear-gradient(90deg, rgba(10,79,163,.06), rgba(77,119,194,.06));
    border:1px solid rgba(10,79,163,.12);
    color:var(--ink);
    font-weight:900;
    font-size:14px;
  }

  /* Buttons */
  .cta-row{
    display:flex; flex-wrap:wrap; gap:12px;
    align-items:center;
    margin-top:16px;
  }
  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    padding:12px 16px;
    border-radius:14px;
    font-weight:900;
    border:1px solid transparent;
    cursor:pointer;
    transition: transform .08s ease, box-shadow .12s ease, background .12s ease;
    user-select:none;
    text-decoration:none !important;
    white-space:nowrap;
    line-height:1;
  }
  .btn:active{transform: translateY(1px)}
  .btn-primary{
    background:var(--midline-blue);
    color:#fff;
    box-shadow: 0 10px 22px rgba(10,79,163,.22);
  }
  .btn-primary:hover{background:#094890}
  .btn-ghost{
    background:#fff;
    color:var(--midline-blue);
    border-color: rgba(10,79,163,.25);
  }
  .btn-ghost:hover{box-shadow:0 0 0 6px var(--ring)}

  /* Hero right panel */
  .hero-right{
    position:relative;
    min-height:320px;
    display:flex;
    align-items:flex-end;
    justify-content:flex-start;
    padding:20px;
    background:
      linear-gradient(180deg, rgba(10,79,163,.20), rgba(0,0,0,.62)),
      url('https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&w=1400&q=80');
    background-size:cover;
    background-position:center;
    color:#fff;
  }
  .overlay-card{
    max-width: 560px;
    background: rgba(0,0,0,.40);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding:16px 16px 14px;
    box-shadow: 0 16px 30px rgba(0,0,0,.22);
  }
  .overlay-card h2{
    margin:0 0 6px;
    font-size:20px;
    letter-spacing:-.2px;
    color:#fff;
  }
  .overlay-card p{
    margin:0;
    font-size:14px;
    line-height:1.35;
    color:#fff;
  }
  .overlay-proof{
    margin-top:10px;
    font-size:13px;
    opacity:.96;
    line-height:1.35;
  }
  .overlay-proof b{color:#fff}

  /* Trust bar */
  .trustbar{
    margin:16px 0 0;
    background:var(--card);
    border-radius:var(--radius);
    box-shadow:var(--shadow2);
    border:1px solid rgba(0,0,0,.06);
    padding:12px 14px;
  }
  .trust-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:10px;
  }
  .trust{
    background:var(--soft);
    border:1px solid rgba(10,79,163,.14);
    border-radius:14px;
    padding:10px 12px;
    font-size:13px;
    color:rgba(31,41,51,.92);
  }
  .trust b{
    display:block;
    color:var(--midline-blue);
    font-size:12px;
    letter-spacing:.2px;
    text-transform:uppercase;
  }

  /* Resource grid */
  .grid-3{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:14px;
  }
  .card{
    background:var(--card);
    border-radius:var(--radius);
    box-shadow:var(--shadow2);
    border:1px solid rgba(0,0,0,.06);
    padding:18px;
  }
  .tag{
    display:inline-flex;
    font-size:12px;
    font-weight:900;
    letter-spacing:.2px;
    text-transform:uppercase;
    color:var(--midline-blue);
    background:rgba(10,79,163,.08);
    border:1px solid rgba(10,79,163,.14);
    padding:6px 10px;
    border-radius:999px;
    margin-bottom:10px;
  }
  .card h3{margin:0 0 8px; font-size:18px; color:var(--ink)}
  .card p{margin:0; color:var(--muted); font-size:14px; line-height:1.55}

  .card .meta{
    margin-top:12px;
    display:flex; flex-wrap:wrap; gap:8px;
    color:rgba(31,41,51,.86);
    font-size:13px;
  }
  .chip{
    display:inline-flex; align-items:center; gap:8px;
    padding:7px 10px;
    border-radius:999px;
    background:rgba(0,0,0,.04);
  }

  .actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
  .actions a{ text-decoration:none !important; }

  /* Evidence strip */
  .evidence{
    background: linear-gradient(90deg, rgba(10,79,163,.06), rgba(77,119,194,.07));
    border:1px solid rgba(10,79,163,.12);
  }
  .two-col{
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap:14px;
    align-items:stretch;
  }
  .mini{
    background:#fff;
    border-radius:16px;
    padding:16px;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:var(--shadow2);
  }
  .mini h3{margin:0 0 10px; color:var(--ink)}
  .checklist{
    margin:10px 0 0;
    padding:0;
    list-style:none;
    color:rgba(31,41,51,.92);
    font-size:14px;
  }
  .checklist li{margin:10px 0; padding-left:26px; position:relative}
  .checklist li:before{
    content:"✓";
    position:absolute; left:0; top:0;
    width:18px; height:18px;
    display:inline-flex; align-items:center; justify-content:center;
    color:#fff;
    background:var(--midline-blue);
    border-radius:6px;
    font-size:12px;
    line-height:1;
  }

  /* CTA strip */
  .cta-strip{
    background: linear-gradient(90deg, var(--midline-blue), var(--midline-blue-2));
    border-radius: var(--radius2);
    border:1px solid rgba(0,0,0,.06);
    box-shadow: var(--shadow);
    padding: 22px;
    color:#fff;
  }
  .cta-strip h2{color:#fff; margin:0 0 10px}
  .cta-strip p{color:#fff; margin:0 0 16px; max-width:86ch; opacity:.95}
  .cta-strip .btn-ghost{
    color:#fff !important;
    border-color: rgba(255,255,255,.85) !important;
    background: rgba(255,255,255,.10) !important;
  }
  .cta-strip .btn-ghost:hover{
    background: rgba(255,255,255,.18) !important;
    box-shadow:0 0 0 6px rgba(255,255,255,.12) !important;
  }
  .cta-strip .btn-primary{
    background:#fff !important;
    color: var(--midline-blue) !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.10) !important;
  }
  .cta-strip .btn-primary:hover{background:#f2f6ff !important;}

  @media (max-width: 980px){
    .hero-grid{grid-template-columns:1fr}
    .hero h1{font-size:36px}
    .trust-grid{grid-template-columns: repeat(2,1fr)}
    .grid-3{grid-template-columns:1fr}
    .two-col{grid-template-columns:1fr}
  }
