:root{
      --bg:#f9fafb;
      --section:#e5e7eb;
      --primary:#22c55e;
      --text:#111827;
      --muted:#4b5563;
      --white:#ffffff;
      --border:rgba(17,24,39,0.08);
      --shadow:0 14px 40px rgba(34,197,94,0.08);
      --radius:22px;
    }
    html{
      scroll-behavior:smooth;
    }
    body{
      font-family:'Inter',sans-serif;
      background:var(--bg);
      color:var(--text);
      overflow-x:hidden;
    }
    .page-shell{
      position:relative;
      min-height:100vh;
      background:
        radial-gradient(circle at 10% 10%, rgba(34,197,94,0.10), transparent 24%),
        radial-gradient(circle at 90% 15%, rgba(34,197,94,0.08), transparent 22%),
        radial-gradient(circle at 50% 80%, rgba(34,197,94,0.06), transparent 28%),
        var(--bg);
    }
    .blur-orb{
      position:absolute;
      border-radius:999px;
      filter:blur(70px);
      z-index:0;
      pointer-events:none;
      opacity:.45;
    }
    .orb-1{
      width:220px;
      height:220px;
      background:rgba(34,197,94,.18);
      top:20px;
      right:-40px;
    }
    .orb-2{
      width:180px;
      height:180px;
      background:rgba(34,197,94,.14);
      left:-30px;
      top:480px;
    }
    .main-content{
      position:relative;
      z-index:1;
    }
    .compact-section{
      padding:1.25rem;
    }
    .top-rail{
      padding:1rem 1rem 0;
    }
    .brand-box{
      background:rgba(255,255,255,0.68);
      backdrop-filter:blur(16px);
      border:1px solid var(--border);
      border-radius:18px;
      box-shadow:var(--shadow);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:.8rem 1rem;
    }
    .brand-mark{
      display:flex;
      align-items:center;
      gap:.8rem;
    }
    .brand-icon{
      width:42px;
      height:42px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(34,197,94,.18), rgba(34,197,94,.32));
      color:var(--primary);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
      font-size:1.2rem;
    }
    .brand-title{
      font-size:1rem;
      font-weight:800;
      color:var(--text);
      line-height:1.1;
    }
    .brand-subtitle{
      font-size:.78rem;
      color:var(--muted);
    }
    .menu-inline{
      display:flex;
      flex-wrap:wrap;
      gap:.65rem;
      align-items:center;
      justify-content:flex-end;
    }
    .menu-inline a{
      color:var(--text);
      font-weight:600;
      font-size:.92rem;
      padding:.55rem .9rem;
      border-radius:999px;
      border:1px solid transparent;
      transition:.35s ease;
    }
    .menu-inline a:hover{
      transform:translateX(6px);
      border-color:rgba(34,197,94,.28);
      background:rgba(255,255,255,.72);
      color:var(--primary);
    }
    .hero-panel{
      background:
        linear-gradient(135deg, rgba(34,197,94,.16), rgba(255,255,255,.75) 45%, rgba(34,197,94,.09));
      border:1px solid var(--border);
      border-radius:30px;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-grid{
      display:flex;
      flex-wrap:wrap;
      align-items:stretch;
      gap:0;
    }
    .hero-copy,
    .hero-side{
      flex:1 1 320px;
      padding:1.5rem;
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      animation:slideInLeft .8s ease both;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      font-size:.8rem;
      font-weight:700;
      letter-spacing:.03em;
      color:var(--primary);
      background:rgba(255,255,255,.68);
      border:1px solid rgba(34,197,94,.15);
      width:max-content;
      border-radius:999px;
      padding:.45rem .8rem;
      margin-bottom:1rem;
      backdrop-filter:blur(10px);
    }
    .main-heading{
      font-size:clamp(2.2rem,4vw,4rem);
      line-height:1.02;
      font-weight:800;
      color:var(--text);
      margin-bottom:.9rem;
      max-width:12ch;
    }
    .hero-text{
      font-size:1rem;
      line-height:1.7;
      color:var(--muted);
      max-width:58ch;
      margin-bottom:1.25rem;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.75rem;
      margin-bottom:1.2rem;
    }
    .button.is-ghost-green{
      background:transparent;
      border:1px solid rgba(34,197,94,.4);
      color:var(--primary);
      border-radius:999px;
      font-weight:700;
      transition:.3s ease;
    }
    .button.is-ghost-green:hover{
      background:rgba(34,197,94,.09);
      color:#159947;
      transform:translateX(6px);
    }
    .hero-metrics{
      display:flex;
      flex-wrap:wrap;
      gap:.75rem;
    }
    .metric-card{
      background:rgba(255,255,255,.72);
      border:1px solid var(--border);
      border-radius:18px;
      padding:.85rem 1rem;
      min-width:120px;
      backdrop-filter:blur(14px);
    }
    .metric-card strong{
      display:block;
      font-size:1.2rem;
      color:var(--text);
    }
    .metric-card span{
      font-size:.82rem;
      color:var(--muted);
    }
    .hero-side{
      animation:slideInRight .8s ease both;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .stack-card{
      width:100%;
      max-width:430px;
      background:rgba(255,255,255,.7);
      backdrop-filter:blur(16px);
      border:1px solid var(--border);
      border-radius:26px;
      padding:1rem;
      position:relative;
    }
    .stack-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      margin-bottom:1rem;
    }
    .stack-label{
      font-size:.8rem;
      font-weight:700;
      color:var(--primary);
      text-transform:uppercase;
      letter-spacing:.04em;
    }
    .stack-title{
      font-size:1.1rem;
      font-weight:800;
      color:var(--text);
    }
    .ring-wrap{
      display:flex;
      align-items:center;
      gap:1rem;
      margin-bottom:1rem;
    }
    .circle-visual{
      width:120px;
      height:120px;
      border-radius:50%;
      background:
        conic-gradient(var(--primary) 0 68%, rgba(34,197,94,.14) 68% 100%);
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
    }
    .circle-inner{
      width:82px;
      height:82px;
      border-radius:50%;
      background:var(--bg);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
      color:var(--text);
      font-size:1.1rem;
    }
    .mini-points{
      display:flex;
      flex-direction:column;
      gap:.65rem;
      width:100%;
    }
    .mini-point{
      background:var(--section);
      border-radius:16px;
      padding:.7rem .85rem;
    }
    .mini-point strong{
      display:block;
      color:var(--text);
      font-size:.9rem;
      margin-bottom:.15rem;
    }
    .mini-point span{
      color:var(--muted);
      font-size:.82rem;
      line-height:1.4;
    }
    .feature-wrap{
      display:flex;
      flex-wrap:wrap;
      gap:1rem;
      align-items:stretch;
    }
    .feature-column-main{
      flex:2 1 420px;
      display:flex;
      flex-direction:column;
      gap:1rem;
    }
    .feature-column-side{
      flex:1 1 260px;
      display:flex;
      flex-direction:column;
      gap:1rem;
    }
    .section-card{
      background:var(--section);
      border:1px solid var(--border);
      border-radius:26px;
      padding:1.1rem;
      height:100%;
      box-shadow:0 10px 25px rgba(17,24,39,0.03);
    }
    .section-title{
      font-size:1.55rem;
      font-weight:800;
      color:var(--text);
      margin-bottom:.35rem;
    }
    .section-lead{
      color:var(--muted);
      margin-bottom:1rem;
      line-height:1.6;
    }
    .feature-ribbon{
      display:flex;
      flex-wrap:wrap;
      gap:.85rem;
    }
    .feature-chip{
      flex:1 1 180px;
      background:rgba(255,255,255,.72);
      border:1px solid var(--border);
      border-radius:20px;
      padding:1rem;
      transition:.35s ease;
      animation:slideUp .7s ease both;
    }
    .feature-chip:hover{
      transform:translateY(-4px);
    }
    .feature-chip .icon-badge{
      width:42px;
      height:42px;
      border-radius:50%;
      background:rgba(34,197,94,.14);
      color:var(--primary);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
      margin-bottom:.8rem;
    }
    .feature-chip h3{
      font-size:1rem;
      font-weight:800;
      margin-bottom:.35rem;
      color:var(--text);
    }
    .feature-chip p{
      font-size:.9rem;
      color:var(--muted);
      line-height:1.55;
    }
    .insight-box{
      background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.6));
      border:1px solid var(--border);
      border-radius:22px;
      padding:1rem;
      height:100%;
    }
    .insight-list{
      display:flex;
      flex-direction:column;
      gap:.75rem;
      margin-top:.8rem;
    }
    .insight-item{
      display:flex;
      gap:.75rem;
      align-items:flex-start;
    }
    .insight-dot{
      width:13px;
      height:13px;
      margin-top:.3rem;
      border-radius:50%;
      background:var(--primary);
      flex-shrink:0;
    }
    .insight-item strong{
      display:block;
      font-size:.92rem;
      color:var(--text);
      margin-bottom:.15rem;
    }
    .insight-item span{
      color:var(--muted);
      font-size:.85rem;
      line-height:1.45;
    }
    .posts-header{
      display:flex;
      flex-wrap:wrap;
      gap:1rem;
      align-items:end;
      justify-content:space-between;
      margin-bottom:1rem;
    }
    .posts-header .intro{
      max-width:700px;
    }
    .posts-grid{
      display:flex;
      flex-wrap:wrap;
      gap:1rem;
    }
    .post-card{
      flex:1 1 calc(33.333% - 1rem);
      min-width:260px;
      background:var(--section);
      border:1px solid var(--border);
      border-radius:24px;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      transition:.35s ease;
      animation:slideUp .7s ease both;
    }
    .post-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow);
    }
    .post-media{
      padding:1rem 1rem 0;
      display:flex;
      justify-content:center;
      align-items:center;
    }
    .post-media img{
      width:132px;
      height:132px;
      object-fit:cover;
      border-radius:50%;
      border:4px solid rgba(255,255,255,.72);
      background:#fff;
      box-shadow:0 8px 24px rgba(17,24,39,.07);
    }
    .post-body{
      padding:1rem;
      display:flex;
      flex-direction:column;
      gap:.7rem;
      flex:1;
    }
    .post-kicker{
      font-size:.75rem;
      font-weight:800;
      color:var(--primary);
      text-transform:uppercase;
      letter-spacing:.04em;
    }
    .post-title{
      font-size:1.15rem;
      line-height:1.3;
      font-weight:800;
      color:var(--text);
      margin:0;
    }
    .post-excerpt{
      color:var(--muted);
      line-height:1.6;
      font-size:.92rem;
      flex:1;
    }
    .post-link{
      color:var(--primary);
      font-weight:700;
      width:max-content;
      border-bottom:1px solid transparent;
      transition:.3s ease;
    }
    .post-link:hover{
      border-color:var(--primary);
      transform:translateX(6px);
    }
    .footer-box{
      background:rgba(229,231,235,.85);
      border-top:1px solid var(--border);
      border-radius:24px 24px 0 0;
      padding:1.2rem 1rem;
    }
    .footer-flex{
      display:flex;
      flex-wrap:wrap;
      gap:1rem;
      align-items:center;
      justify-content:space-between;
    }
    .footer-brand{
      font-weight:800;
      color:var(--text);
    }
    .footer-note{
      color:var(--muted);
      font-size:.9rem;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:.75rem;
    }
    .footer-links a{
      color:var(--text);
      font-weight:600;
      font-size:.9rem;
    }
    .footer-links a:hover{
      color:var(--primary);
    }
    @keyframes slideInLeft{
      from{opacity:0; transform:translateX(-30px);}
      to{opacity:1; transform:translateX(0);}
    }
    @keyframes slideInRight{
      from{opacity:0; transform:translateX(30px);}
      to{opacity:1; transform:translateX(0);}
    }
    @keyframes slideUp{
      from{opacity:0; transform:translateY(22px);}
      to{opacity:1; transform:translateY(0);}
    }
    @media screen and (max-width: 1023px){
      .menu-inline{
        justify-content:flex-start;
      }
      .hero-copy,
      .hero-side{
        padding:1.2rem;
      }
      .main-heading{
        max-width:none;
      }
    }
    @media screen and (max-width: 768px){
      .top-rail,
      .compact-section{
        padding:1rem .75rem;
      }
      .brand-box{
        flex-direction:column;
        align-items:flex-start;
      }
      .posts-grid{
        gap:.85rem;
      }
      .post-card{
        min-width:100%;
      }
      .ring-wrap{
        flex-direction:column;
        align-items:flex-start;
      }
      .footer-flex{
        align-items:flex-start;
        flex-direction:column;
      }
    }
