:root{
      --bg:#ffffff;
      --section:#f9fafb;
      --primary:#2563eb;
      --text:#111827;
      --muted:#6b7280;
      --border:#dbe4f0;
      --gradient:linear-gradient(135deg,#60a5fa,#2563eb);
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:'Space Grotesk',sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.6;
    }
    a{text-decoration:none;color:inherit}
    .fade-in{
      animation:fadeIn .9s ease both;
    }
    @keyframes fadeIn{
      from{opacity:0;transform:translateY(18px)}
      to{opacity:1;transform:translateY(0)}
    }
    .navbar{
      background:rgba(255,255,255,.96);
      border-bottom:1px solid var(--border);
      padding:1rem 0;
    }
    .navbar-brand{
      font-weight:700;
      color:var(--primary);
      letter-spacing:.02em;
    }
    .nav-link{
      color:var(--text);
      font-weight:500;
      margin-left:1rem;
      position:relative;
    }
    .nav-link:hover{
      color:var(--primary);
    }
    .btn-gradient{
      background:var(--gradient);
      color:#fff;
      border:none;
      border-radius:999px;
      padding:.9rem 1.35rem;
      font-weight:700;
      box-shadow:0 10px 30px rgba(37,99,235,.18);
      transition:.25s ease;
    }
    .btn-gradient:hover{
      transform:translateY(-2px);
      color:#fff;
    }
    .section-soft{
      background:var(--section);
      border-radius:32px;
    }
    .outlined-title{
      color:transparent;
      -webkit-text-stroke:1px var(--primary);
      text-stroke:1px var(--primary);
      font-weight:700;
      letter-spacing:-.03em;
    }
    .hero-wrap{
      padding:3rem 0 2rem;
    }
    .hero-panel{
      background:linear-gradient(180deg,#ffffff 0%, #f9fafb 100%);
      border:1px solid var(--border);
      border-radius:36px;
      overflow:hidden;
    }
    .hero-copy{
      padding:3rem;
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      background:#eef4ff;
      color:var(--primary);
      border:1px solid #cfe0ff;
      padding:.45rem .85rem;
      border-radius:999px;
      font-size:.9rem;
      font-weight:700;
      margin-bottom:1rem;
    }
    .hero-title{
      font-size:clamp(2.4rem,5vw,5rem);
      line-height:.95;
      margin:0 0 1rem;
    }
    .hero-text{
      color:var(--muted);
      max-width:580px;
      font-size:1.05rem;
      margin-bottom:1.6rem;
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:1rem;
      margin-top:2rem;
    }
    .metric{
      background:#fff;
      border:1px solid var(--border);
      border-radius:22px;
      padding:1rem;
    }
    .metric strong{
      display:block;
      font-size:1.4rem;
      color:var(--primary);
    }
    .hero-image-shell{
      position:relative;
      height:100%;
      min-height:420px;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:2rem;
      background:var(--section);
    }
    .hero-image-ring{
      width:min(82%,380px);
      aspect-ratio:1/1;
      border-radius:50%;
      padding:14px;
      background:linear-gradient(145deg,#dbeafe,#ffffff);
      border:1px solid var(--border);
      box-shadow:0 24px 60px rgba(17,24,39,.08);
    }
    .hero-image-ring img{
      width:100%;
      height:100%;
      object-fit:cover;
      border-radius:50%;
      display:block;
      border:8px solid #fff;
    }
    .floating-note{
      position:absolute;
      background:#fff;
      border:1px solid var(--border);
      border-radius:18px;
      padding:.85rem 1rem;
      box-shadow:0 12px 30px rgba(17,24,39,.06);
      font-size:.92rem;
      max-width:220px;
    }
    .floating-note.top{
      top:10%;
      left:6%;
    }
    .floating-note.bottom{
      right:8%;
      bottom:12%;
    }
    .features-area{
      padding:2rem 0;
    }
    .feature-tall{
      height:100%;
      padding:2rem;
      border:1px solid var(--border);
      border-radius:28px;
      background:#fff;
    }
    .feature-tall.primary{
      background:linear-gradient(180deg,#eff6ff 0%, #ffffff 100%);
    }
    .feature-icon{
      width:58px;
      height:58px;
      border-radius:18px;
      display:grid;
      place-items:center;
      color:var(--primary);
      background:#eff6ff;
      font-size:1.4rem;
      margin-bottom:1rem;
      border:1px solid #dbeafe;
    }
    .feature-tall h3{
      font-size:1.25rem;
      margin-bottom:.65rem;
    }
    .feature-tall p{
      color:var(--muted);
      margin:0;
    }
    .content-zone{
      padding:2rem 0 3rem;
    }
    .content-shell{
      padding:2rem;
      border:1px solid var(--border);
      border-radius:34px;
      background:var(--section);
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:1rem;
      margin-bottom:1.5rem;
      flex-wrap:wrap;
    }
    .section-head p{
      color:var(--muted);
      margin:0;
      max-width:620px;
    }
    .carousel-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:28px;
      overflow:hidden;
      height:100%;
      transition:.25s ease;
    }
    .carousel-card:hover{
      transform:translateY(-4px);
      box-shadow:0 18px 35px rgba(17,24,39,.06);
    }
    .carousel-card .post-img-wrap{
      padding:1.5rem 1.5rem 0;
      display:flex;
      justify-content:center;
    }
    .carousel-card img{
      width:180px;
      height:180px;
      object-fit:cover;
      border-radius:50%;
      border:8px solid #f3f4f6;
      background:#fff;
    }
    .carousel-card .card-body{
      padding:1.4rem 1.5rem 1.6rem;
    }
    .carousel-card h4{
      font-size:1.18rem;
      margin-bottom:.7rem;
    }
    .carousel-card p{
      color:var(--muted);
      margin-bottom:1rem;
    }
    .read-more{
      color:var(--primary);
      font-weight:700;
    }
    .sidebar-box{
      background:#fff;
      border:1px solid var(--border);
      border-radius:28px;
      padding:1.4rem;
      margin-bottom:1.25rem;
    }
    .sidebar-box h5{
      margin-bottom:1rem;
      font-size:1.05rem;
    }
    .tag-list{
      display:flex;
      flex-wrap:wrap;
      gap:.6rem;
    }
    .tag{
      padding:.5rem .85rem;
      border-radius:999px;
      background:#eff6ff;
      color:var(--primary);
      font-weight:600;
      border:1px solid #dbeafe;
      font-size:.9rem;
    }
    .mini-post{
      display:flex;
      gap:.9rem;
      align-items:center;
      padding:.7rem 0;
      border-bottom:1px solid #edf2f7;
    }
    .mini-post:last-child{border-bottom:none;padding-bottom:0}
    .mini-post:first-child{padding-top:0}
    .mini-post img{
      width:58px;
      height:58px;
      object-fit:cover;
      border-radius:50%;
      border:3px solid #f3f4f6;
      flex-shrink:0;
    }
    .mini-post a{
      font-weight:600;
      color:var(--text);
      line-height:1.35;
    }
    .newsletter{
      background:linear-gradient(180deg,#ffffff,#f8fbff);
    }
    .newsletter input{
      border-radius:999px;
      padding:.95rem 1rem;
      border:1px solid var(--border);
    }
    .footer{
      padding:2rem 0 3rem;
    }
    .footer-inner{
      border-top:1px solid var(--border);
      padding-top:1.5rem;
    }
    .footer a{
      color:var(--muted);
      margin-right:1rem;
      font-weight:500;
    }
    .footer a:hover{
      color:var(--primary);
    }
    .carousel-indicators [data-bs-target]{
      width:10px;
      height:10px;
      border-radius:50%;
      background-color:#93c5fd;
      border:none;
    }
    .carousel-indicators .active{
      background-color:var(--primary);
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon{
      background-size:70% 70%;
      filter:invert(31%) sepia(96%) saturate(2020%) hue-rotate(212deg) brightness(96%) contrast(92%);
    }
    @media (max-width:991.98px){
      .hero-copy{padding:2rem}
      .hero-metrics{grid-template-columns:1fr}
      .floating-note{position:static;margin-top:1rem;max-width:none}
      .hero-image-shell{min-height:auto}
    }
    @media (max-width:767.98px){
      .content-shell{padding:1.2rem}
      .hero-panel{border-radius:24px}
      .section-soft{border-radius:24px}
      .feature-tall,.sidebar-box,.carousel-card{border-radius:22px}
      .hero-title{font-size:2.3rem}
    }
