:root{
      --bg:#f9fafb;
      --section:#e0f2fe;
      --primary:#0f766e;
      --text:#0f172a;
      --glass:rgba(255,255,255,0.45);
      --glass-strong:rgba(255,255,255,0.62);
      --border:rgba(15,118,110,0.18);
      --shadow:0 20px 40px rgba(15,23,42,0.08);
      --radius:28px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:
        radial-gradient(circle at 10% 20%, rgba(224,242,254,0.9) 0%, rgba(249,250,251,0.98) 35%),
        radial-gradient(circle at 90% 15%, rgba(15,118,110,0.08) 0%, rgba(249,250,251,0.98) 30%),
        linear-gradient(135deg, #f9fafb 0%, #eef9ff 100%);
      color:var(--text);
      font-family:'Space Grotesk',sans-serif;
    }

    .page-shell{
      max-width:1440px;
      margin:0 auto;
      padding:24px;
    }

    .glass{
      background:var(--glass);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }

    .section-panel{
      background:var(--section);
      border-radius:var(--radius);
      padding:clamp(28px,4vw,56px);
      margin-bottom:32px;
      position:relative;
      overflow:hidden;
    }

    .section-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg, rgba(255,255,255,0.28), transparent 55%, rgba(15,118,110,0.05));
      pointer-events:none;
    }

    .gradient-text{
      background:linear-gradient(90deg, #0f766e 0%, #14b8a6 55%, #0f172a 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      display:inline-block;
    }

    nav{
      background:rgba(255,255,255,0.5);
      box-shadow:none;
      border:1px solid var(--border);
      border-radius:24px;
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
      margin-bottom:28px;
    }

    nav .nav-wrapper{
      display:flex;
      justify-content:center;
      align-items:center;
      min-height:74px;
      padding:0 18px;
    }

    nav ul{
      display:flex;
      justify-content:center;
      width:100%;
      gap:10px;
      flex-wrap:wrap;
    }

    nav ul a{
      color:var(--text);
      font-weight:600;
      border-radius:999px;
      transition:all .3s ease;
    }

    nav ul a:hover{
      background:rgba(15,118,110,0.08);
      color:var(--primary);
      transform:translateY(-2px);
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.2fr 0.8fr;
      gap:28px;
      align-items:stretch;
    }

    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:center;
      min-height:420px;
      border-radius:32px;
      padding:clamp(28px,4vw,58px);
      position:relative;
      overflow:hidden;
    }

    .hero-copy::after{
      content:"";
      position:absolute;
      width:280px;
      height:280px;
      right:-80px;
      top:-90px;
      background:radial-gradient(circle, rgba(15,118,110,0.15), transparent 70%);
      border-radius:50%;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-weight:700;
      letter-spacing:.04em;
      text-transform:uppercase;
      font-size:.84rem;
      margin-bottom:12px;
    }

    .hero-copy h1{
      font-size:clamp(2.4rem, 5vw, 5rem);
      line-height:1.02;
      margin:0 0 18px;
      font-weight:700;
    }

    .hero-copy p{
      font-size:1.08rem;
      line-height:1.8;
      max-width:58ch;
      margin:0 0 26px;
      color:#1e293b;
    }

    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }

    .btn-outline{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:0 22px;
      height:48px;
      border:2px solid var(--primary);
      color:var(--primary);
      background:transparent;
      border-radius:999px;
      font-weight:700;
      transition:all .3s ease;
    }

    .btn-outline:hover{
      transform:translateY(-3px);
      background:rgba(15,118,110,0.08);
      box-shadow:0 12px 24px rgba(15,118,110,0.12);
    }

    .hero-side{
      display:grid;
      grid-template-rows:1fr auto;
      gap:20px;
    }

    .hero-card{
      border-radius:32px;
      padding:28px;
      display:grid;
      gap:18px;
      min-height:260px;
    }

    .hero-stat-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }

    .stat-box{
      background:rgba(255,255,255,0.56);
      border:1px solid var(--border);
      border-radius:22px;
      padding:18px;
      transition:transform .3s ease, box-shadow .3s ease;
    }

    .stat-box:hover{
      transform:translateY(-4px);
      box-shadow:0 16px 28px rgba(15,23,42,0.08);
    }

    .stat-box strong{
      display:block;
      font-size:1.6rem;
      color:var(--primary);
      margin-bottom:6px;
    }

    .mini-note{
      border-radius:24px;
      padding:20px 22px;
      color:var(--text);
    }

    .about-layout{
      display:grid;
      grid-template-columns:0.95fr 1.05fr;
      gap:26px;
      align-items:start;
    }

    .about-stack{
      display:grid;
      gap:18px;
    }

    .about-card,
    .quote-card{
      border-radius:28px;
      padding:26px;
    }

    .about-card h2,
    .content-head h2{
      margin:0 0 14px;
      font-size:clamp(1.8rem, 3.2vw, 3rem);
    }

    .about-card p,
    .quote-card p{
      margin:0;
      line-height:1.85;
      color:#1e293b;
    }

    .feature-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
    }

    .feature-item{
      border-radius:24px;
      padding:22px;
      min-height:150px;
      transition:all .3s ease;
    }

    .feature-item:hover{
      transform:translateY(-4px) scale(1.01);
      box-shadow:0 16px 28px rgba(15,23,42,0.08);
    }

    .feature-item i{
      color:var(--primary);
      font-size:2rem;
      margin-bottom:10px;
    }

    .feature-item h3{
      font-size:1.08rem;
      margin:0 0 8px;
      color:var(--text);
    }

    .feature-item p{
      margin:0;
      line-height:1.7;
      color:#334155;
      font-size:.97rem;
    }

    .content-shell{
      display:grid;
      grid-template-columns:280px 1fr;
      gap:24px;
      align-items:start;
    }

    .content-head{
      border-radius:28px;
      padding:26px;
      height:100%;
    }

    .content-head p{
      margin:0;
      line-height:1.8;
      color:#334155;
    }

    .carousel-wrap{
      border-radius:30px;
      padding:18px 18px 8px;
    }

    .carousel.carousel-slider{
      height:580px !important;
      overflow:visible;
    }

    .carousel .carousel-item{
      width:76%;
      height:100%;
      opacity:1 !important;
      transform:translateX(0) translateY(0) scale(.92);
      transition:transform .35s ease;
    }

    .carousel .carousel-item.active{
      transform:translateX(0) translateY(-2px) scale(1);
    }

    .post-card{
      height:100%;
      border-radius:30px;
      overflow:hidden;
      display:grid;
      grid-template-rows:260px 1fr;
      transition:transform .3s ease, box-shadow .3s ease;
    }

    .post-card:hover{
      transform:translateY(-6px);
      box-shadow:0 24px 42px rgba(15,23,42,0.10);
    }

    .post-image{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      filter:saturate(1.02) contrast(1.02);
    }

    .post-body{
      padding:24px;
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .post-tag{
      align-self:flex-start;
      padding:8px 14px;
      border:1px solid var(--border);
      border-radius:999px;
      font-size:.8rem;
      font-weight:700;
      color:var(--primary);
      background:rgba(255,255,255,0.55);
    }

    .post-body h3{
      margin:0;
      font-size:1.42rem;
      line-height:1.25;
    }

    .post-body p{
      margin:0;
      color:#334155;
      line-height:1.8;
      flex-grow:1;
    }

    .post-link{
      align-self:flex-start;
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-weight:700;
      border-bottom:2px solid transparent;
      transition:all .3s ease;
    }

    .post-link:hover{
      border-color:var(--primary);
      transform:translateX(4px);
    }

    .carousel-controls{
      display:flex;
      justify-content:flex-end;
      gap:10px;
      margin-top:14px;
      padding:0 8px 12px;
    }

    .control-btn{
      width:46px;
      height:46px;
      border-radius:50%;
      border:2px solid var(--primary);
      background:transparent;
      color:var(--primary);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition:all .3s ease;
    }

    .control-btn:hover{
      transform:translateY(-3px);
      background:rgba(15,118,110,0.08);
    }

    footer{
      border-radius:32px;
      padding:34px;
      background:var(--section);
      position:relative;
      overflow:hidden;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .8fr .8fr;
      gap:24px;
    }

    .footer-box{
      border-radius:26px;
      padding:24px;
      height:100%;
    }

    .footer-box h4{
      margin:0 0 14px;
      font-size:1.15rem;
    }

    .footer-box p,
    .footer-box li,
    .footer-box a{
      color:#334155;
      line-height:1.8;
      font-size:.98rem;
    }

    .footer-box a:hover{
      color:var(--primary);
    }

    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:8px;
    }

    .footer-bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:22px;
      padding-top:18px;
      border-top:1px solid rgba(15,118,110,0.14);
      color:#475569;
      font-size:.94rem;
    }

    @media (max-width: 1100px){
      .hero-grid,
      .about-layout,
      .content-shell,
      .footer-grid{
        grid-template-columns:1fr;
      }

      .carousel.carousel-slider{
        height:620px !important;
      }
    }

    @media (max-width: 768px){
      .page-shell{padding:16px}
      .hero-copy{min-height:auto}
      .feature-grid,
      .hero-stat-grid{
        grid-template-columns:1fr;
      }
      .carousel .carousel-item{
        width:92%;
      }
      .carousel.carousel-slider{
        height:660px !important;
      }
      nav .nav-wrapper{
        min-height:auto;
        padding:10px 12px;
      }
      nav ul li a{
        padding:0 12px;
      }
    }

    @media (max-width: 480px){
      .carousel.carousel-slider{
        height:720px !important;
      }
      .post-card{
        grid-template-rows:220px 1fr;
      }
      .hero-copy h1{
        font-size:2.2rem;
      }
    }
