    :root {
      --bg: #2E6FAF;
      --inner-bg: linear-gradient(180deg, #EAF6FF 0%, #CBE8FF 100%);
      --fg: #0D2B4B;
      --muted: #557A9E;
      --card: #FFFFFF;
      --border: #BBD9FF;
      --accent: #0099FF;
      --accent-2: #4DB8FF;
      --radius-xl: 20px;
      --radius-lg: 16px;
      --shadow: 0 8px 20px rgba(0, 0, 0, .08);
      --header-blue: #4FA8FF;
      --white: #FFFFFF;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: var(--bg);
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      color: var(--fg);
      letter-spacing: .2px;
      line-height: 1.6;
      display: flex;
      justify-content: center;
    }

    /* Mobile card layout container */
    .app-container {
      background: var(--inner-bg);
      width: 100%;
      max-width: 490px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      border-radius: 0px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    /* ===== HEADER ===== */
   header.site-header{
  --glass: rgba(255,255,255,.55);
  --glass-edge: rgba(255,255,255,.85);
  --ink: #0c2b4a;
  --pill-bg: rgba(255,255,255,.7);
  --pill-active: #1B9EDF;

  max-width: var(--body-max-width);
  position: var(--header-position, sticky);
  top: 0; 
  z-index: 200; 
  width: 100%;
  background: var(--header-background, linear-gradient(0deg, #a8d5f6b9 0%, #fffffffc 100%));
  backdrop-filter: saturate(120%) blur(8px);
  box-shadow: 0 6px 20px rgba(16,56,94,.12);
  border-bottom: 1px solid rgba(20,66,114,.08);
}
header.site-header::before{
  content:""; 
  display:block; 
  height:3px;
  background: linear-gradient(90deg,#72c6ff,#1B9EDF,#72c6ff);
  background-size:200% 100%; 
  animation: moveAccent 8s linear infinite;
}
@keyframes moveAccent{0%{background-position:0%}100%{background-position:200%}}

/* .header-inner{
  height: 90px; 
  display:flex; 
  align-items:center; 
  gap:.4rem;
  padding: 0 .24rem; 
  color: var(--ink);
} */

.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center; /* <-- centers the logo horizontally */
  gap: .4rem;
  padding: 0 .24rem;
  color: var(--ink);
}


/* brand */
.brand{ 
    display:flex; 
    align-items:center; 
    gap:.18rem; min-width:0; 
    text-decoration:none; 
    color:var(--ink); }
.brand-logo{ 
    height: 100px; 
    width:auto; 
    object-fit:contain; 
    vertical-align:top; 
    margin-left: 0%; 
}
.brand-name{
  font-size:.34rem; 
  font-weight:900; 
  letter-spacing:.5px;
  background: linear-gradient(180deg,#0b4b86 0%,#1B9EDF 100%);
  -webkit-background-clip:text; 
  background-clip:text; 
  color:transparent;
  white-space:nowrap; 
  overflow:hidden; 
  text-overflow:ellipsis;
}


    .btn-back {
      position: absolute;
      left: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 42px;
      width: 42px;
      border-radius: 12px;
      background: rgba(255,255,255,0.6);
      border: 1px solid rgba(255,255,255,0.8);
      color: #0c2b4a;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-back:active {
      transform: scale(.97);
    }

    /* ===== MAIN CONTENT ===== */
    .wrap {
      padding: 20px 16px 60px;
    }

    .meta-row {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      margin: 10px 0;
      font-size: 0.9rem;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #DDF0FF;
      color: var(--accent);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .3px;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #9AB6D8;
      opacity: .9;
    }

    h1.title {
      font-size: clamp(1.8rem, 5vw, 2.2rem);
      line-height: 1.2;
      margin: 6px 0 18px;
      font-weight: 900;
      color: #0D2B4B;
      text-align: left;
    }

    /* Hero image */
    .hero {
      border-radius: var(--radius-xl);
      overflow: hidden;
      margin: 20px auto;
      width: 100%;
      background: #FFFFFF;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .hero img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 260px;
      object-fit: cover;
    }

    .lead {
      color: var(--fg);
      font-size: 1rem;
      line-height: 1.6;
      margin-top: 10px;
    }

    /* Partners section */
    .partners {
      background: var(--card);
      border-radius: var(--radius-lg);
      padding: 20px;
      margin-top: 30px;
      border: 1px solid var(--border);
      text-align: center;
      box-shadow: var(--shadow);
    }

    .partners p,
    .partners h3 {
      font-size: 1rem;
      color: var(--fg);
      max-width: 600px;
      margin: 0 auto 16px;
      line-height: 1.6;
    }

    .partners h3 {
      color: var(--muted);
      margin-bottom: 10px;
      font-weight: 800;
    }

    .partner-btns {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }

   
    .partner-btns a:hover {
      background: var(--accent-2);
      transform: translateY(-1px);
    }
