:root{
      --bg:#f9fafb;
      --section:#e5e7eb;
      --primary:#2563eb;
      --text:#111827;
      --white:#ffffff;
      --muted:#6b7280;
      --line:rgba(17,24,39,.14);
      --shadow:0 18px 60px rgba(37,99,235,.10);
      --radius:22px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      background:var(--bg);
      color:var(--text);
      overflow-x:hidden;
    }
    body::before,
    body::after{
      content:"";
      position:fixed;
      inset:auto;
      width:340px;
      height:340px;
      border-radius:50%;
      filter:blur(80px);
      z-index:0;
      pointer-events:none;
      opacity:.28;
    }
    body::before{
      top:-80px;
      left:-60px;
      background:rgba(37,99,235,.18);
    }
    body::after{
      right:-90px;
      top:220px;
      background:rgba(229,231,235,.95);
    }
    .site-wrap{
      position:relative;
      z-index:1;
      max-width:1440px;
      margin:0 auto;
      padding:24px;
    }
    .top-shell{
      background:rgba(255,255,255,.55);
      backdrop-filter:blur(12px);
      border:1px solid rgba(17,24,39,.06);
      border-radius:28px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .top-menu{
      padding:18px 28px 8px;
    }
    .navbar-center{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .nav-pill{
      color:var(--text);
      text-decoration:none;
      padding:10px 18px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.7);
      transition:.28s ease;
      font-weight:600;
      letter-spacing:.01em;
    }
    .nav-pill:hover{
      color:var(--primary);
      border-color:var(--primary);
      transform:translateY(-2px);
      background:#fff;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
      padding:18px 22px 22px;
    }
    .hero-card,
    .hero-note,
    .section-card,
    .sidebar-card,
    .footer-shell{
      background:var(--section);
      border-radius:var(--radius);
      position:relative;
      overflow:hidden;
    }
    .hero-card{
      min-height:430px;
      display:flex;
      align-items:flex-end;
      padding:34px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.82)),
        radial-gradient(circle at top right, rgba(37,99,235,.16), transparent 42%),
        var(--section);
    }
    .hero-card::after{
      content:"";
      position:absolute;
      right:-40px;
      top:30px;
      width:220px;
      height:220px;
      border:1px solid rgba(37,99,235,.16);
      border-radius:30px;
      transform:rotate(12deg);
      background:rgba(255,255,255,.25);
      backdrop-filter:blur(8px);
    }
    .hero-content{
      position:relative;
      z-index:2;
      max-width:700px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:.82rem;
      font-weight:700;
      color:var(--primary);
      text-transform:uppercase;
      letter-spacing:.12em;
      margin-bottom:14px;
    }
    .eyebrow span{
      display:inline-block;
      width:30px;
      height:1px;
      background:var(--primary);
    }
    .outlined-title{
      font-size:clamp(2.4rem,5vw,4.8rem);
      line-height:.98;
      margin:0 0 18px;
      color:transparent;
      -webkit-text-stroke:1.35px var(--text);
      text-transform:uppercase;
      letter-spacing:.03em;
      font-weight:900;
    }
    .hero-text{
      font-size:1.06rem;
      line-height:1.75;
      max-width:58ch;
      color:rgba(17,24,39,.9);
      margin-bottom:24px;
    }
    .button.is-ghost-custom{
      background:transparent;
      border:1.5px solid var(--primary);
      color:var(--primary);
      border-radius:999px;
      padding:12px 22px;
      font-weight:700;
      transition:.28s ease;
    }
    .button.is-ghost-custom:hover{
      transform:translateY(-2px);
      background:#fff;
      box-shadow:0 10px 25px rgba(37,99,235,.12);
      color:var(--primary);
    }
    .hero-note{
      padding:24px;
      display:grid;
      grid-template-rows:auto 1fr auto;
      min-height:430px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.45)),
        var(--section);
    }
    .mini-kpis{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .kpi{
      background:rgba(255,255,255,.75);
      border:1px solid rgba(17,24,39,.06);
      border-radius:18px;
      padding:18px;
      transition:.3s ease;
      min-height:120px;
    }
    .kpi:hover{
      transform:translateY(-4px);
      box-shadow:0 16px 30px rgba(17,24,39,.08);
    }
    .kpi strong{
      display:block;
      font-size:1.6rem;
      color:var(--primary);
      margin-bottom:6px;
    }
    .kpi span{
      color:var(--muted);
      font-size:.94rem;
      line-height:1.45;
    }
    .hero-note-copy{
      align-self:end;
      padding-top:22px;
    }
    .hero-note-copy h2{
      margin:0 0 10px;
      font-size:1.3rem;
      color:var(--text);
      font-weight:800;
    }
    .hero-note-copy p{
      margin:0;
      color:rgba(17,24,39,.82);
      line-height:1.7;
    }

    .main-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 320px;
      gap:22px;
      margin-top:22px;
    }
    .section-card{
      padding:26px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.56), rgba(255,255,255,.3)),
        var(--section);
    }
    .section-heading{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:20px;
      align-items:end;
      margin-bottom:18px;
    }
    .section-heading .outlined-small{
      margin:0;
      font-size:clamp(1.7rem,3vw,3rem);
      color:transparent;
      -webkit-text-stroke:1px var(--text);
      text-transform:uppercase;
      line-height:1.02;
      font-weight:900;
      letter-spacing:.03em;
    }
    .section-heading p{
      margin:0;
      color:rgba(17,24,39,.82);
      line-height:1.7;
    }

    .about-weave{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:18px;
      align-items:stretch;
    }
    .about-panel,
    .about-list{
      background:rgba(255,255,255,.7);
      border:1px solid rgba(17,24,39,.06);
      border-radius:20px;
      padding:22px;
      transition:.3s ease;
    }
    .about-panel:hover,
    .about-list:hover{
      transform:translateY(-3px);
      box-shadow:0 14px 26px rgba(17,24,39,.07);
    }
    .about-panel .lead{
      font-size:1.08rem;
      line-height:1.9;
      margin:0;
    }
    .about-list{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .about-item{
      padding:16px;
      border-radius:16px;
      background:rgba(229,231,235,.65);
      border:1px solid rgba(17,24,39,.05);
    }
    .about-item h3{
      margin:0 0 8px;
      font-size:1rem;
      color:var(--primary);
    }
    .about-item p{
      margin:0;
      color:rgba(17,24,39,.84);
      line-height:1.6;
      font-size:.95rem;
    }

    .carousel-wrap{
      position:relative;
      overflow:hidden;
      margin-top:6px;
    }
    .carousel-track{
      display:grid;
      grid-auto-flow:column;
      grid-auto-columns:minmax(280px, 31%);
      gap:18px;
      overflow-x:auto;
      padding:8px 4px 10px;
      scroll-snap-type:x mandatory;
      scrollbar-width:thin;
      scrollbar-color:var(--primary) rgba(255,255,255,.55);
    }
    .carousel-track::-webkit-scrollbar{height:10px}
    .carousel-track::-webkit-scrollbar-track{background:rgba(255,255,255,.6); border-radius:999px}
    .carousel-track::-webkit-scrollbar-thumb{background:var(--primary); border-radius:999px}
    .post-card{
      scroll-snap-align:start;
      display:grid;
      grid-template-rows:190px auto;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.06);
      border-radius:22px;
      overflow:hidden;
      text-decoration:none;
      color:var(--text);
      transition:.3s ease;
      min-height:100%;
    }
    .post-card:hover{
      transform:translateY(-5px);
      box-shadow:0 16px 34px rgba(17,24,39,.08);
    }
    .post-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      filter:contrast(1.04) saturate(1.02);
    }
    .post-body{
      padding:18px 18px 20px;
      display:grid;
      gap:12px;
    }
    .post-tag{
      display:inline-flex;
      width:max-content;
      border:1px solid rgba(37,99,235,.2);
      color:var(--primary);
      background:rgba(37,99,235,.06);
      border-radius:999px;
      padding:6px 12px;
      font-size:.76rem;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.08em;
    }
    .post-body h3{
      margin:0;
      font-size:1.16rem;
      line-height:1.35;
      font-weight:800;
    }
    .post-body p{
      margin:0;
      color:rgba(17,24,39,.78);
      line-height:1.7;
      font-size:.96rem;
    }
    .post-link{
      margin-top:4px;
      color:var(--primary);
      font-weight:700;
    }

    .sidebar{
      display:grid;
      gap:22px;
      align-content:start;
    }
    .sidebar-card{
      padding:22px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.42)),
        var(--section);
      border:1px solid rgba(17,24,39,.05);
    }
    .sidebar-card h3{
      margin:0 0 14px;
      font-size:1rem;
      text-transform:uppercase;
      letter-spacing:.08em;
      color:transparent;
      -webkit-text-stroke:.7px var(--text);
      font-weight:900;
    }
    .topic-list,
    .link-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .topic-list li,
    .link-list li a{
      background:rgba(255,255,255,.68);
      border:1px solid rgba(17,24,39,.06);
      border-radius:16px;
      padding:12px 14px;
      color:var(--text);
      transition:.28s ease;
    }
    .link-list li a{
      display:block;
      text-decoration:none;
      font-weight:600;
    }
    .topic-list li:hover,
    .link-list li a:hover{
      transform:translateX(4px);
      border-color:rgba(37,99,235,.25);
      color:var(--primary);
      background:#fff;
    }
    .newsletter{
      display:grid;
      gap:12px;
    }
    .newsletter p{
      margin:0;
      color:rgba(17,24,39,.8);
      line-height:1.7;
      font-size:.96rem;
    }
    .newsletter .input{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.1);
      box-shadow:none;
      background:rgba(255,255,255,.86);
      color:var(--text);
    }
    .newsletter .input:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 3px rgba(37,99,235,.08);
    }

    .footer-shell{
      margin-top:22px;
      padding:18px 24px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
      align-items:center;
      background:
        linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.4)),
        var(--section);
    }
    .footer-shell p{
      margin:0;
      color:rgba(17,24,39,.78);
      line-height:1.6;
    }
    .footer-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .footer-links a{
      color:var(--text);
      text-decoration:none;
      border:1px solid rgba(17,24,39,.08);
      border-radius:999px;
      padding:8px 14px;
      background:rgba(255,255,255,.7);
      transition:.28s ease;
      font-weight:600;
    }
    .footer-links a:hover{
      color:var(--primary);
      border-color:var(--primary);
      transform:translateY(-2px);
      background:#fff;
    }

    @media (max-width: 1100px){
      .hero-grid,
      .main-layout,
      .section-heading,
      .about-weave{
        grid-template-columns:1fr;
      }
      .carousel-track{
        grid-auto-columns:minmax(280px, 72%);
      }
    }
    @media (max-width: 768px){
      .site-wrap{padding:14px}
      .top-menu{padding:16px 16px 6px}
      .hero-grid{padding:12px 12px 14px}
      .hero-card,
      .hero-note,
      .section-card,
      .sidebar-card,
      .footer-shell{border-radius:20px}
      .hero-card{padding:24px; min-height:380px}
      .hero-note{min-height:auto}
      .mini-kpis{grid-template-columns:1fr 1fr}
      .about-list{grid-template-columns:1fr}
      .carousel-track{grid-auto-columns:minmax(260px, 88%)}
      .footer-shell{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }
    @media (max-width: 480px){
      .outlined-title{font-size:2rem}
      .mini-kpis{grid-template-columns:1fr}
      .nav-pill{width:100%; text-align:center}
    }
