@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&display=swap');
    :root{
      --bg:#08111e;
      --secondary:#60A5FA;
      --btn:#10b981;

      --text:#ecf4ff;
      --muted:rgba(236,244,255,.72);
      --line:rgba(255,255,255,.10);
      --surface:rgba(255,255,255,.04);
      --shadow:0 22px 70px rgba(0,0,0,.50);

      --r12:12px;
      --r16:16px;
      --r22:22px;

      --max:1280px;
    }

    body{
      background: var(--bg);
      color: var(--text);
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      overflow-x:hidden;
    }

    
    h1,h2,h3,h4,h5,h6{
           font-family: "Google Sans", sans-serif;
          font-optical-sizing: auto;
          font-style: normal;
          font-variation-settings:
            "slnt" 0,
            "wdth" 100,
            "GRAD" 0,
            "XOPQ" 96,
            "XTRA" 468,
            "YOPQ" 79,
            "YTAS" 750,
            "YTDE" -203,
            "YTFI" 738,
            "YTLC" 514,
            "YTUC" 712;
    }
    
    
    .container{max-width:var(--max)}
    a{text-decoration:none}

    /* ===== Topbar ===== */
    .topbar{
      background: rgba(8,17,30,.78);
      border-bottom:1px solid var(--line);
      backdrop-filter: blur(10px);
    }
    .topbar .mini{
      font-size: 13px;
      color: rgba(236,244,255,.78);
    }
    .topbar .mini a{color: rgba(236,244,255,.78)}
    .topbar .mini a:hover{color: var(--secondary)}
    .social a{
      width:34px;height:34px;
      display:inline-flex;align-items:center;justify-content:center;
      border-radius: 12px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      color: rgba(236,244,255,.82);
      transition:.2s ease;
    }
    .social a:hover{
      transform: translateY(-2px);
      border-color: rgba(96,165,250,.40);
      background: rgba(96,165,250,.10);
      color: var(--secondary);
    }

    /* ===== Navbar ===== */
    .navbar{
      background: white !important;
      padding: 0px;
    }
    .navbar-brand{
      display:flex;align-items:center;gap:12px;
      font-weight:900; letter-spacing:-.4px;
      color: var(--text);
    }
    .logo{
      width:42px;height:42px;border-radius:16px;
      background:
        radial-gradient(circle at 25% 25%, rgba(96,165,250,.95), transparent 60%),
        radial-gradient(circle at 80% 75%, rgba(16,185,129,.95), transparent 55%),
        linear-gradient(135deg, rgba(96,165,250,.40), rgba(16,185,129,.30));
      border:1px solid rgba(255,255,255,.14);
      box-shadow: 0 12px 28px rgba(0,0,0,.40);
    }
    .nav-link{
      color: rgb(8 17 30) !important;
      font-weight:700;
      font-size:14px;
      padding: 12px 12px !important;
      border-radius: 14px;
      transition:.2s ease;
    }
    .nav-link:hover{
      background: rgba(96,165,250,.10);
      color:black !important;
    }
    .nav-link.active{
      background: rgb(8 17 30);
      box-shadow: inset 0 0 0 1px rgba(96,165,250,.18);
      color:#fff !important;
    }.btn:hover {
    background: #5a9bec;
}

    /* ===== Buttons ===== */
    .btn-green{
      background: var(--btn);
      border: 1px solid rgba(16,185,129,.55);
      color: #061319;
      font-weight: 900;
      border-radius: 14px;
      padding: 10px 16px;
      transition:.2s ease;
    }
    .btn-ghost{
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.14);
      color: var(--text);
      font-weight: 800;
      border-radius: 14px;
      padding: 10px 16px;
      transition:.2s ease;
    }
    .btn-ghost:hover{
      background: rgba(96,165,250,.10);
      border-color: rgba(96,165,250,.35);
      color:#fff;
      transform: translateY(-1px);
    }

    /* ===== Hero ===== */
    .hero{
      position:relative;
      min-height: 86vh;
      display:flex;
      align-items:center;
      overflow:hidden;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .hero::before{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(90deg, rgba(8,17,30,.92) 0%, rgba(8,17,30,.55) 55%, rgba(8,17,30,.70) 100%),
        url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?auto=format&fit=crop&w=2400&q=80");
      background-size: cover;
      background-position: center;
      transform: scale(1.03);
      filter: saturate(1.08) contrast(1.04);
    }
    .hero::after{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(900px 420px at 15% 20%, rgba(96,165,250,.22), transparent 60%),
        radial-gradient(820px 520px at 80% 30%, rgba(16,185,129,.18), transparent 60%);
      pointer-events:none;
    }
    .hero .content{
      position:relative;
      z-index:2;
      padding: 96px 0;
    }
    .hero-badge{
      display:inline-flex;align-items:center;gap:10px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(96,165,250,.28);
      background: rgb(8 17 30);
      color: rgba(236,244,255,.92);
      font-weight: 800;
      font-size: 13px;
      backdrop-filter: blur(10px);
    }
    .hero h1{
      font-weight: 950;
      letter-spacing: -1px;
      line-height: 1.03;
      margin: 16px 0 14px;
      font-size: clamp(34px, 4.5vw, 64px);
      max-width: 18ch;
      color: white;
    }
    .hero p{
      color: rgba(236,244,255,.78);
      font-size: 16px;
      line-height: 1.7;
      max-width: 62ch;
      margin: 22px auto;
    }
    .hero-note{
      margin-top: 22px;
      display:flex; gap:10px; flex-wrap:wrap;
      color: rgba(236,244,255,.72);
      font-size: 13px;
    }
    .hero-pill {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: white;
    color: black;
}

    /* ===== Sections ===== */
    .section{
      padding: 88px 0;
      position:relative;
      overflow: hidden;
    }
    .section.alt{
      background: radial-gradient(800px 380px at 20% 10%, rgba(96,165,250,.10), transparent 60%),
                  rgba(255,255,255,.02);
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .kicker{
      color: rgba(96,165,250,.95);
      font-weight: 900;
      letter-spacing: .5px;
      font-size: 12px;
      text-transform: uppercase;
    }
    .title{
      font-weight: 950;
      letter-spacing:-.6px;
      line-height:1.08;
      margin: 10px 0 12px;
      color: white;
    }
    .sub{
      color: rgb(236 244 255);
      line-height:1.75;
      max-width: 70ch;
      margin:0;
    }

    /* ===== About (clean split) ===== */
    .about-img{
      border-radius: var(--r22);
      overflow:hidden;
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: var(--shadow);
      min-height: 420px;
      background:
        linear-gradient(160deg, rgba(8,17,30,.25), rgba(8,17,30,.85)),
        url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2000&q=80");
      background-size: cover;
      background-position: center;
    }
    .soft-list{
      margin: 18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .soft-list li{
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(236,244,255,.76);
    }
    .soft-list i{
      color: var(--secondary);
      margin-top: 2px;
      font-size: 16px;
    }

    /* ===== Icon cards (clean, not patchy) ===== */
    .feature{
      height:100%;
      padding: 22px;
      border-radius: var(--r22);
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      transition: .22s ease;
    }
    .feature:hover{
      transform: translateY(-6px);
      border-color: rgba(96,165,250,.22);
      background: rgba(96,165,250,.06);
    }
    .feature .ico{
      width:54px;height:54px;border-radius:18px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(96,165,250,.12);
      border:1px solid rgba(96,165,250,.24);
      color: var(--secondary);
      font-size: 20px;
      margin-bottom: 14px;
    }
    .feature h5{
      font-weight: 900;
      margin:0 0 8px;
      letter-spacing:-.2px;
    }
    .feature p{
      margin:0;
      color: rgba(236,244,255,.72);
      line-height:1.7;
      font-size: 14px;
    }

    /* ===== Bands (visual rows) ===== */
    .bands-wrap{
      border-radius: var(--r22);
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      overflow:hidden;
    }
    .band-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:0;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .band-row:first-child{border-top:0}
    .band-cell{
      padding: 22px;
    }
    .band-cell + .band-cell{
      border-left: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.02);
    }
    .tag{
      display:inline-flex;align-items:center;gap:10px;
      border-radius: 999px;
      padding: 8px 12px;
      font-weight: 900;
      font-size: 13px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(8,17,30,.35);
      margin-bottom: 10px;
    }
    .tag.fire i{color:#fb7185}
    .tag.air i{color: var(--secondary)}
    .tag.water i{color:#38bdf8}
    .band-cell ul{
      margin:0;
      padding-left: 18px;
      color: rgba(236,244,255,.74);
      line-height:1.75;
    }

    /* ===== Research strip ===== */
    .strip{
      border-radius: var(--r22);
      border: 1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(700px 320px at 10% 20%, rgba(16,185,129,.12), transparent 60%),
        rgba(255,255,255,.03);
      padding: 26px;
    }
    .metric{
      padding: 18px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      height:100%;
    }
    .metric strong{
      font-weight: 950;
      font-size: 26px;
      letter-spacing:-.5px;
    }
    .metric span{
      display:block;
      color: rgba(236,244,255,.70);
      margin-top: 6px;
      font-size: 13px;
      line-height: 1.5;
    }

    /* ===== Testimonials ===== */
    .t-card{
      border-radius: var(--r22);
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      padding: 22px;
      height:100%;
    }
    .t-quote{
      color: rgba(236,244,255,.78);
      line-height:1.8;
      margin:0 0 16px;
      font-size: 14px;
    }
    .t-user{
      display:flex;align-items:center;gap:12px;
      color: rgba(236,244,255,.80);
      font-weight: 800;
      font-size: 13px;
    }
    .avatar{
      width:44px;height:44px;border-radius: 16px;
      background: rgba(96,165,250,.12);
      border: 1px solid rgba(96,165,250,.22);
      display:flex;align-items:center;justify-content:center;
      color: var(--secondary);
      font-weight: 950;
    }

    /* ===== FAQ accordion ===== */
    .accordion-item{
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 16px !important;
      overflow:hidden;
      margin-bottom: 12px;
    }
    .accordion-button{
      background: transparent !important;
      color: rgba(236,244,255,.92) !important;
      font-weight: 900;
      padding: 18px 18px;
      box-shadow:none !important;
    }
    .accordion-body{
      color: rgba(236,244,255,.74);
      padding: 0 18px 18px;
      line-height: 1.75;
    }
    .accordion-button::after{filter: brightness(1.8);}

    /* ===== CTA footer ===== */
    .cta{
      border-radius: var(--r22);
      border: 1px solid rgba(255,255,255,.10);
      background:
        linear-gradient(120deg, rgba(96,165,250,.16), rgba(16,185,129,.12)),
        rgba(255,255,255,.03);
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .site-footer{
    border-top: 1px solid rgba(255,255,255,.10);
    background:
      radial-gradient(900px 420px at 15% 0%, rgba(96,165,250,.10), transparent 60%),
      radial-gradient(800px 420px at 85% 20%, rgba(16,185,129,.10), transparent 60%),
      rgba(8,17,30,.92);
    padding: 64px 0 22px;
  }

  .footer-brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight: 950;
    letter-spacing: -.4px;
  }
  .footer-logo{
    width:44px;height:44px;border-radius:16px;
    background:
      radial-gradient(circle at 25% 25%, rgba(96,165,250,.95), transparent 60%),
      radial-gradient(circle at 80% 75%, rgba(16,185,129,.95), transparent 55%),
      linear-gradient(135deg, rgba(96,165,250,.40), rgba(16,185,129,.30));
    border:1px solid rgba(255,255,255,.14);
    box-shadow: 0 12px 28px rgba(0,0,0,.40);
    flex: 0 0 auto;
  }

  .footer-text{
    color: rgba(236,244,255,.72);
    line-height: 1.75;
    font-size: 14px;
    margin-top: 12px;
  }

  .footer-title{
    font-weight: 950;
    color: rgba(236,244,255,.92);
    font-size: 14px;
    letter-spacing: .2px;
    margin-bottom: 14px;
  }

  .footer-links{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:10px;
  }
  .footer-links a{
    color: rgba(236,244,255,.70);
    font-weight: 700;
    font-size: 13px;
    transition: .2s ease;
  }
  .footer-links a:hover{
    color: var(--secondary);
    transform: translateX(2px);
  }

  .footer-contact{
    display:grid;
    gap:10px;
    font-size: 13px;
    color: rgba(236,244,255,.72);
  }
  .footer-contact a{
    color: rgba(236,244,255,.78);
    font-weight: 800;
  }
  .footer-contact a:hover{ color: var(--secondary); }

  .footer-pill{
    display:inline-flex;
    gap:10px;
    align-items:flex-start;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    color: rgba(236,244,255,.70);
    font-size: 13px;
    line-height: 1.6;
    margin-top: 14px;
  }
  .footer-pill i{ color: var(--secondary); margin-top:2px; }

  .footer-social{
    display:flex;
    gap:10px;
    margin-top: 14px;
  }
  .footer-social a{
    width:40px;height:40px;
    display:inline-flex;align-items:center;justify-content:center;
    border-radius: 14px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: rgba(236,244,255,.85);
    transition:.2s ease;
  }
  .footer-social a:hover{
    transform: translateY(-2px);
    border-color: rgba(96,165,250,.40);
    background: rgba(96,165,250,.10);
    color: var(--secondary);
  }

  .footer-bottom{
    margin-top: 38px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(236,244,255,.62);
    font-size: 12.5px;
  }
  .footer-bottom a{
    color: rgba(236,244,255,.70);
    font-weight: 800;
  }
  .footer-bottom a:hover{ color: var(--secondary); }
  
  .footer-brand img {
    width: 120px;
}button.navbar-toggler.text-white.border-0 {
    background: black;
    height: 40px;
}

  @media (max-width: 991.98px){
    .site-footer{ padding: 52px 0 18px; }
  }a.navbar-brand img {
    width: 100px;
}

    /* Mobile adjustments */
    @media (max-width: 991.98px){
      .hero{min-height: 78vh;}
      .hero h1{max-width: 22ch;}
      .band-row{grid-template-columns: 1fr;}
      .band-cell + .band-cell{border-left:0;border-top:1px solid rgba(255,255,255,.08);}
      .about-img{min-height: 300px;}
      .section{padding: 70px 0;}
    }
    
    @media screen and (max-width: 600px) {
 a.navbar-brand img {
    width: 80px;
}.hero-badge {
    width: 300px;
}a.navbar-brand img {
    width: 80px;
}
}



  .about-hero{
    position:relative;
    min-height: 62vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
      linear-gradient(90deg, rgba(8,17,30,.92) 0%, rgba(8,17,30,.55) 55%, rgba(8,17,30,.75) 100%);
    background-size: cover;
    background-position: center;
  }
  .about-hero::after{
    content:"";
    position:absolute; inset:-2px;
    background:
      radial-gradient(900px 420px at 18% 20%, rgba(96,165,250,.22), transparent 60%),
      radial-gradient(820px 520px at 82% 30%, rgba(16,185,129,.16), transparent 60%);
    pointer-events:none;
  }
  .about-hero .container{ z-index:2; position:relative; padding: 88px 12px; max-width: var(--max); }
  .about-badge{
    display:inline-flex;align-items:center;gap:10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(96,165,250,.28);
    background: rgb(8 17 30);
    color: rgba(236,244,255,.92);
    font-weight: 900;
    font-size: 13px;
    backdrop-filter: blur(10px);
  }
  .about-hero h1{
    font-weight: 950;
    letter-spacing: -1px;
    line-height: 1.03;
    margin: 16px 0 12px;
    font-size: clamp(34px, 4vw, 56px);
    max-width: 26ch;
    color: var(--text);
  }
  .about-hero p{
    color: rgba(236,244,255,.78);
    font-size: 16px;
    line-height: 1.75;
    max-width: 72ch;
    margin: 0 0 16px;
  }

  .about-pills{ display:flex; gap:10px; flex-wrap:wrap; }
  .about-pill{
    padding: 8px 12px;
    border-radius: 999px;
    border:1px solid rgba(255,255,255,.14);
    background: white;
    font-weight: 800;
    font-size: 13px;
    color: black;
  }

  .about-section{ padding: 90px 0; background: var(--bg); color: var(--text); }
  .about-section.alt{
    background: radial-gradient(800px 380px at 20% 10%, rgba(96,165,250,.10), transparent 60%),
                rgba(255,255,255,.02);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .kicker{
    color: rgba(96,165,250,.95);
    font-weight: 950;
    letter-spacing: .6px;
    font-size: 12px;
    text-transform: uppercase;
  }
  .title{
    font-weight: 950;
    letter-spacing:-.6px;
    line-height:1.08;
    margin: 10px 0 12px;
  }
  .sub{
    color: rgb(236 244 255);
    line-height:1.8;
    font-size: 15px;
  }
  .strong{ color: rgba(236,244,255,.92); font-weight: 950; }

  .btn-green{
    background: var(--btn);
    border: 1px solid rgba(16,185,129,.55);
    color: #061319;
    font-weight: 900;
    border-radius: 14px;
    padding: 10px 16px;
    transition:.2s ease;
  }
  .btn-green:hover{filter:brightness(1.06); transform: translateY(-1px)}
  .btn-ghost{
    background: rgb(8 17 30);
    border: 1px solid rgba(255,255,255,.14);
    color: var(--text);
    font-weight: 800;
    border-radius: 14px;
    padding: 10px 16px;
    transition:.2s ease;
  }
  .btn-ghost:hover{
    background: rgba(96,165,250,.10);
    border-color: rgba(96,165,250,.35);
    color:#fff;
    transform: translateY(-1px);
  }

  .img-block{
    border-radius: var(--r22);
    overflow:hidden;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position:relative;
  }
  .img-overlay{
    position:absolute; inset:0;
    background:
      radial-gradient(700px 360px at 20% 15%, rgba(96,165,250,.18), transparent 60%),
      linear-gradient(160deg, rgba(8,17,30,.15), rgba(8,17,30,.75));
    pointer-events:none;
  }
  .img-caption{
    position:absolute; left:18px; right:18px; bottom:18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(8,17,30,.55);
    backdrop-filter: blur(10px);
    color: rgba(236,244,255,.85);
    font-weight: 900;
    font-size: 13px;
    line-height: 1.5;
  }
  .muted{ color: rgba(236,244,255,.70); font-weight: 800; }

  .panel{
    border-radius: var(--r22);
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    padding: 26px;
  }
  .panel-head{ display:flex; gap:12px; align-items:flex-start; }
  .panel-ico{
    width:46px;height:46px;border-radius:16px;
    display:flex;align-items:center;justify-content:center;
    background: rgba(96,165,250,.12);
    border:1px solid rgba(96,165,250,.24);
    color: var(--secondary);
    font-size: 18px;
    flex:0 0 auto;
  }
  .panel-title{ font-weight: 950; letter-spacing:-.2px; font-size: 18px; }
  .panel-sub{ color: rgba(236,244,255,.70); font-weight: 700; font-size: 13px; margin-top:4px; line-height:1.6; }
  .panel-line{ height:1px; background: rgba(255,255,255,.08); margin: 14px 0; }
  .panel-mini{ display:flex; flex-wrap:wrap; gap:10px; }
  .mini-pill{
    display:inline-flex;align-items:center;gap:8px;
    padding: 8px 10px;
    border-radius: 999px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.03);
    color: rgba(236,244,255,.72);
    font-weight: 800;
    font-size: 12px;
  }
  .mini-pill i{ color: var(--secondary); }

  .list-clean{
    margin: 0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
  }
  .list-clean li{
    display:flex; gap:10px; align-items:flex-start;
    color: rgba(236,244,255,.76);
    font-weight: 800;
    line-height: 1.6;
  }
  .list-clean i{ color: var(--secondary); margin-top:2px; }

  .feature{
    height:100%;
    padding: 22px;
    border-radius: var(--r22);
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    transition: .22s ease;
  }
  .feature:hover{
    transform: translateY(-6px);
    border-color: rgba(96,165,250,.22);
    background: rgba(96,165,250,.06);
  }
  .feature .ico{
    width:54px;height:54px;border-radius:18px;
    display:flex;align-items:center;justify-content:center;
    background: rgba(96,165,250,.12);
    border:1px solid rgba(96,165,250,.24);
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 14px;
  }
  .feature h5{ font-weight: 950; margin:0 0 8px; letter-spacing:-.2px; }
  .feature p{ margin:0; color: rgba(236,244,255,.72); line-height:1.7; font-size: 14px; }

  .quote-band{
    border-radius: var(--r22);
    border: 1px solid rgba(255,255,255,.10);
    background:
      linear-gradient(120deg, rgba(96,165,250,.16), rgba(16,185,129,.12)),
      rgba(255,255,255,.03);
    padding: 28px;
    box-shadow: var(--shadow);
    text-align:center;
  }
  .quote-band .q{
    font-weight: 950;
    letter-spacing: -.4px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.35;
    margin:0 0 10px;
  }
  .quote-band .s{
    color: rgba(236,244,255,.74);
    line-height: 1.85;
    font-size: 14px;
  }

  @media (max-width: 991.98px){
    .about-section{ padding: 72px 0; }
    .img-block{ min-height: 320px; }
    .about-hero{ min-height: 56vh; }
  }
  
  
 /* Hero */
  .team-hero{
    position:relative;
    min-height: 52vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
      linear-gradient(90deg, rgba(8,17,30,.92) 0%, rgba(8,17,30,.55) 55%, rgba(8,17,30,.75) 100%);
    background-size: cover;
    background-position: center;
  }
  .team-hero::after{
    content:"";
    position:absolute; inset:-2px;
    background:
      radial-gradient(900px 420px at 18% 20%, rgba(96,165,250,.22), transparent 60%),
      radial-gradient(820px 520px at 82% 30%, rgba(16,185,129,.16), transparent 60%);
    pointer-events:none;
  }
  .team-hero .content{position:relative; z-index:2; padding: 80px 0;}
  .badge-pill{
    display:inline-flex;align-items:center;gap:10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(96,165,250,.28);
    background: rgb(8 17 30);
    color: rgba(236,244,255,.92);
    font-weight: 900;
    font-size: 13px;
    backdrop-filter: blur(10px);
  }
  .team-hero h1{
    font-weight: 950; letter-spacing: -1px; line-height: 1.03;
    margin: 16px 0 12px;
    font-size: clamp(34px, 4vw, 54px);
    max-width: 22ch;
  }
  .team-hero p{color: rgba(236,244,255,.78); font-size: 16px; line-height: 1.75; max-width: 72ch; margin: 0 0 16px;}

  .pill-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px;}
  .pill{
    padding: 8px 12px;
    border-radius: 999px;
    border:1px solid rgba(255,255,255,.14);
    background: white;
    font-weight: 800;
    font-size: 13px;
    color: black;
  }

  /* Section */
  .section{padding: 86px 0;}
  .kicker{color: rgba(96,165,250,.95); font-weight: 950; letter-spacing: .6px; font-size: 12px; text-transform: uppercase;}
  .title{font-weight: 950; letter-spacing:-.6px; line-height:1.08; margin: 10px 0 12px;}
  .sub{ccolor: rgb(236 244 255); line-height:1.85; font-size: 15px; margin:0;}

  /* Card */
  .team-card{
    height:100%;
    border-radius: var(--r22);
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    overflow:hidden;
    box-shadow: 0 10px 34px rgba(0,0,0,.28);
    transition: .22s ease;
    position:relative;
  }
  .team-card:hover{
    transform: translateY(-8px);
    border-color: rgba(96,165,250,.22);
    background: rgba(96,165,250,.06);
  }

  .team-img{
    position:relative;
    height: 240px;
    background-size: cover;
    background-position: center;
  }

  .team-body{padding: 18px 18px 20px;}
  .team-name{font-weight: 950; letter-spacing:-.3px; margin:0; font-size: 18px;}
  .team-role{color: rgba(236,244,255,.72); font-weight: 800; font-size: 13px; margin-top: 6px; line-height: 1.6;}
  .team-tags{display:flex; flex-wrap:wrap; gap:8px; margin-top: 14px;}
  .tag{
    display:inline-flex; align-items:center; gap:8px;
    padding: 7px 10px;
    border-radius: 999px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: rgba(236,244,255,.72);
    font-weight: 800;
    font-size: 12px;
  }
  .tag i{color: var(--secondary);}

  /* Featured founder */
  .featured{
    border-color: rgba(16,185,129,.18);
    background:
      radial-gradient(700px 280px at 30% 10%, rgba(16,185,129,.12), transparent 60%),
      rgba(255,255,255,.03);
  }
  .featured::before{
    content:"Founder";
    position:absolute; top:14px; left:14px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    color: #061319;
    background: var(--btn);
    border: 1px solid rgba(16,185,129,.55);
  }

  /* CTA */
  .cta{
    border-radius: var(--r22);
    border: 1px solid rgba(255,255,255,.10);
    background:
      radial-gradient(700px 320px at 10% 20%, rgba(16,185,129,.12), transparent 60%),
      rgba(255,255,255,.03);
    padding: 26px;
    box-shadow: var(--shadow);
  }
  .btn-green{
    background: var(--btn);
    border: 1px solid rgba(16,185,129,.55);
    color: #061319;
    font-weight: 900;
    border-radius: 14px;
    padding: 10px 16px;
    transition:.2s ease;
  }
  .btn-green:hover{filter:brightness(1.06); transform: translateY(-1px)}
  .btn-ghost{
    background: rgb(8 17 30);
    border: 1px solid rgba(255,255,255,.14);
    color: var(--text);
    font-weight: 800;
    border-radius: 14px;
    padding: 10px 16px;
    transition:.2s ease;
  }
  .btn-ghost:hover{
    background: rgba(96,165,250,.10);
    border-color: rgba(96,165,250,.35);
    color:#fff;
    transform: translateY(-1px);
  }

  @media (max-width: 991.98px){
    .section{padding: 70px 0;}
    .team-img{height: 210px;}
    .team-hero{min-height: 48vh;}
  }.footer-brand img {
    background: white;
    border-radius: 8px;
}
