﻿*,*::before,*::after{box-sizing:border-box;}
    html{width:100%;overflow-x:hidden;scroll-behavior:smooth;}
    body{width:100%;margin:0;overflow-x:hidden;background:#080A0F;color:#F8FAFC;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;line-height:1.5;}
    img,video,iframe,embed{max-width:100%;height:auto;}
    a{text-decoration:none;transition:color .25s ease,background .25s ease,border-color .25s ease;}
    
    
    .container{width:min(1200px, calc(100% - 32px));margin:0 auto;}
    
    
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(8,10,15,.82);
      backdrop-filter:blur(20px) saturate(145%);
      border-bottom:1px solid rgba(192,132,62,.16);
      box-shadow:0 14px 44px rgba(0,0,0,.30);
    }
    .header-inner{
      width:min(1200px, calc(100% - 32px));
      min-height:76px;
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
      max-width:100%;
      text-decoration:none;
      flex-shrink:0;
    }
    .logo img{
      display:block;
      height:40px;
      width:auto;
      max-width:150px;
      object-fit:contain;
      flex-shrink:0;
    }
    .logo span{
      display:inline-block;
      font-size:18px;
      font-weight:900;
      line-height:1.2;
      color:#F8FAFC;
      white-space:nowrap;
      max-width:190px;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .desktop-nav-wrap{
      flex:1 1 auto;
      min-width:0;
      display:flex;
      justify-content:flex-end;
      overflow:hidden;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      max-width:100%;
      overflow-x:auto;
      overflow-y:hidden;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      white-space:nowrap;
    }
    .desktop-nav::-webkit-scrollbar{display:none;}
    .desktop-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      color:#A7B0C0;
      text-decoration:none;
      font-size:14px;
      font-weight:800;
      line-height:1;
      white-space:nowrap;
      flex:0 0 auto;
      border:1px solid transparent;
    }
    .desktop-nav a:hover{
      color:#F8FAFC;
      background:rgba(192,132,62,.14);
      border-color:rgba(192,132,62,.28);
      box-shadow:0 8px 24px rgba(192,132,62,.10);
    }
    .mobile-menu-btn{
      display:none;
      width:46px;
      height:46px;
      border:1px solid rgba(192,132,62,.28);
      border-radius:16px;
      background:rgba(192,132,62,.12);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex:0 0 auto;
    }
    .mobile-menu-btn span{
      display:block;
      width:20px;
      height:2px;
      border-radius:99px;
      background:#F8FAFC;
    }
    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:1100;
      background:rgba(0,0,0,.64);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .25s ease, visibility .25s ease;
    }
    .mobile-drawer{
      position:fixed;
      top:0;
      left:0;
      z-index:1110;
      width:min(86vw, 360px);
      height:100vh;
      height:100dvh;
      max-width:90vw;
      background:linear-gradient(180deg,#0D1117 0%,#080A0F 100%);
      color:#F8FAFC;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(0,0,0,.44);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }
    .drawer-head{
      min-height:76px;
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(192,132,62,.16);
      flex:0 0 auto;
    }
    .drawer-logo img{height:34px;max-width:120px;}
    .drawer-logo span{font-size:16px;max-width:145px;color:#F8FAFC;}
    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(255,255,255,.10);
      color:#F8FAFC;
      font-size:26px;
      line-height:1;
      cursor:pointer;
      flex:0 0 auto;
    }
    .drawer-body{
      flex:1 1 auto;
      min-height:0;
      overflow-y:auto;
      overflow-x:hidden;
      -webkit-overflow-scrolling:touch;
      padding:14px;
    }
    .drawer-nav{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .drawer-nav a{
      display:flex;
      align-items:center;
      width:100%;
      min-height:48px;
      padding:13px 14px;
      border-radius:14px;
      background:rgba(255,255,255,.06);
      color:#F8FAFC;
      text-decoration:none;
      font-size:15px;
      font-weight:800;
      line-height:1.35;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
      border:1px solid rgba(255,255,255,.10);
    }
    .drawer-nav a:hover{
      background:rgba(192,132,62,.18);
    }
    body.drawer-open{overflow:hidden;touch-action:none;}
    body.drawer-open .mobile-nav-mask{opacity:1;visibility:visible;pointer-events:auto;}
    body.drawer-open .mobile-drawer{transform:translateX(0);}
    @media (max-width:900px){
      .header-inner{width:min(100% - 24px, 1200px);min-height:68px;gap:12px;}
      .desktop-nav-wrap,.desktop-nav{display:none !important;}
      .mobile-menu-btn{display:inline-flex !important;}
      .logo img{height:34px;max-width:118px;}
      .logo span{font-size:16px;max-width:145px;}
    }
    @media (max-width:420px){
      .mobile-drawer{width:88vw;}
      .logo span{max-width:118px;}
    }

    
    .hero-section{
      padding:80px 0 100px;
      background:radial-gradient(ellipse 60% 50% at 50% 0%, rgba(192,132,62,0.12) 0%, rgba(8,10,15,0) 100%);
      border-bottom:1px solid rgba(192,132,62,.1);
      position:relative;
    }
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      background:rgba(192,132,62,.1);
      border:1px solid rgba(192,132,62,.3);
      padding:6px 14px;
      border-radius:99px;
      font-size:12px;
      font-weight:700;
      color:#F59E0B;
      text-transform:uppercase;
      letter-spacing:1px;
      margin-bottom:24px;
    }
    .hero-content{
      text-align:center;
      max-width:800px;
      margin:0 auto 40px;
    }
    .hero-content h1{
      font-size:clamp(32px, 5vw, 56px);
      font-weight:900;
      line-height:1.15;
      margin:0 0 20px;
      color:#F8FAFC;
    }
    .hero-content h1 span{
      color:#C0843E;
      background:linear-gradient(135deg, #F59E0B 0%, #C0843E 100%);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }
    .hero-content p{
      font-size:clamp(16px, 2vw, 19px);
      color:#A7B0C0;
      line-height:1.6;
      margin:0 auto 32px;
    }
    .cta-group{
      display:flex;
      justify-content:center;
      gap:16px;
      flex-wrap:wrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:14px 28px;
      font-size:15px;
      font-weight:700;
      border-radius:12px;
      cursor:pointer;
      transition:all .25s ease;
    }
    .btn-primary{
      background:#C0843E;
      color:#080A0F;
      border:1px solid #C0843E;
    }
    .btn-primary:hover{
      background:#F59E0B;
      border-color:#F59E0B;
      box-shadow:0 0 24px rgba(245,158,11,0.25);
    }
    .btn-secondary{
      background:rgba(21,26,35,.8);
      color:#F8FAFC;
      border:1px solid rgba(192,132,62,.3);
    }
    .btn-secondary:hover{
      background:rgba(192,132,62,.1);
      border-color:rgba(192,132,62,.6);
    }

    
    .orchestration-mesh{
      max-width:1040px;
      margin:40px auto 0;
      background:#11151F;
      border:1px solid rgba(192,132,62,.2);
      border-radius:20px;
      padding:24px;
      box-shadow:0 30px 60px rgba(0,0,0,.4), 0 0 80px rgba(192,132,62,.06);
      position:relative;
      overflow:hidden;
    }
    .mesh-header{
      display:flex;
      justify-content:space-between;
      align-items:center;
      border-bottom:1px solid rgba(255,255,255,.05);
      padding-bottom:16px;
      margin-bottom:24px;
    }
    .mesh-dots{
      display:flex;
      gap:6px;
    }
    .mesh-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:rgba(255,255,255,.15);
    }
    .mesh-dot.active{background:#C0843E;}
    .mesh-endpoint{
      font-family:monospace;
      font-size:13px;
      color:#22D3EE;
      background:rgba(34,211,238,.08);
      padding:4px 10px;
      border-radius:6px;
      border:1px solid rgba(34,211,238,.2);
    }
    .mesh-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
      gap:20px;
    }
    .mesh-node{
      background:#151A23;
      border:1px solid rgba(192,132,62,.15);
      border-radius:12px;
      padding:20px;
      position:relative;
    }
    .node-tag{
      font-size:11px;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:1px;
      color:#C0843E;
      margin-bottom:8px;
    }
    .node-title{
      font-size:16px;
      font-weight:700;
      color:#F8FAFC;
      margin:0 0 10px;
    }
    .node-desc{
      font-size:13px;
      color:#A7B0C0;
      margin:0;
    }
    .node-status{
      display:inline-flex;
      align-items:center;
      gap:6px;
      font-size:12px;
      font-weight:600;
      color:#34D399;
      margin-top:14px;
      background:rgba(52,211,153,.08);
      padding:4px 8px;
      border-radius:6px;
    }
    .status-pulse{
      width:6px;
      height:6px;
      background:#34D399;
      border-radius:50%;
      box-shadow:0 0 8px #34D399;
    }

    
    .features-section{
      padding:100px 0;
      background:#0D1117;
      border-bottom:1px solid rgba(192,132,62,.1);
    }
    .section-header{
      text-align:center;
      max-width:700px;
      margin:0 auto 60px;
    }
    .section-header h2{
      font-size:clamp(28px, 4vw, 42px);
      font-weight:900;
      color:#F8FAFC;
      margin:0 0 16px;
    }
    .section-header p{
      color:#A7B0C0;
      font-size:16px;
    }
    .features-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
      gap:24px;
    }
    .feature-card{
      background:#151A23;
      border:1px solid rgba(192,132,62,.12);
      border-radius:16px;
      padding:32px;
      transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    }
    .feature-card:hover{
      transform:translateY(-4px);
      border-color:rgba(192,132,62,.4);
      box-shadow:0 12px 36px rgba(192,132,62,.08);
    }
    .feature-icon{
      width:48px;
      height:48px;
      background:rgba(192,132,62,.12);
      border:1px solid rgba(192,132,62,.25);
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#C0843E;
      font-size:20px;
      font-weight:700;
      margin-bottom:24px;
    }
    .feature-card h3{
      font-size:20px;
      font-weight:700;
      margin:0 0 12px;
      color:#F8FAFC;
    }
    .feature-card p{
      color:#A7B0C0;
      font-size:14px;
      line-height:1.6;
      margin:0;
    }

    
    .articles-section{
      padding:100px 0;
      background:#080A0F;
    }
    .articles-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(350px, 1fr));
      gap:28px;
    }
    .article-card{
      background:#151A23;
      border:1px solid rgba(192,132,62,.12);
      border-radius:16px;
      overflow:hidden;
      display:flex;
      flex-direction:column;
    }
    .article-img-wrap{
      aspect-ratio:16/10;
      overflow:hidden;
      background:#0D1117;
      position:relative;
    }
    .article-img-wrap img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .3s ease;
    }
    .article-card:hover .article-img-wrap img{
      transform:scale(1.04);
    }
    .article-body{
      padding:24px;
      display:flex;
      flex-direction:column;
      flex:1 1 auto;
    }
    .article-meta{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:12px;
      color:#A7B0C0;
      margin-bottom:12px;
    }
    .article-card h3{
      font-size:18px;
      font-weight:800;
      line-height:1.4;
      margin:0 0 12px;
    }
    .article-card h3 a{
      color:#F8FAFC;
    }
    .article-card h3 a:hover{
      color:#C0843E;
    }
    .article-excerpt{
      font-size:14px;
      color:#A7B0C0;
      line-height:1.6;
      margin:0 0 20px;
      display:-webkit-box;
      -webkit-line-clamp:3;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .article-tags{
      display:flex;
      flex-wrap:wrap;
      gap:6px;
      margin-top:auto;
    }
    .article-tag{
      font-size:11px;
      font-weight:700;
      color:#C0843E;
      background:rgba(192,132,62,.08);
      border:1px solid rgba(192,132,62,.15);
      padding:2px 8px;
      border-radius:4px;
    }

    
    .cta-section{
      padding:80px 0;
      background:linear-gradient(180deg, #080A0F 0%, #0D1117 100%);
      border-top:1px solid rgba(192,132,62,.14);
      position:relative;
    }
    .cta-box{
      background:linear-gradient(135deg, #151A23 0%, #11151F 100%);
      border:1px solid rgba(192,132,62,.2);
      border-radius:24px;
      padding:60px 40px;
      text-align:center;
      max-width:960px;
      margin:0 auto;
      box-shadow:0 30px 60px rgba(0,0,0,.4);
    }
    .cta-box h2{
      font-size:clamp(26px, 3.5vw, 38px);
      font-weight:900;
      margin:0 0 16px;
    }
    .cta-box p{
      color:#A7B0C0;
      font-size:16px;
      max-width:600px;
      margin:0 auto 32px;
    }

    
    .site-footer{
      position:relative;
      width:100%;
      background:linear-gradient(180deg,#0D1117 0%,#080A0F 100%);
      color:#F8FAFC;
      padding:60px 0 24px;
      overflow:hidden;
      border-top:1px solid rgba(192,132,62,.14);
    }
    .site-footer .logo span{color:#F8FAFC;}
    .footer-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      display:grid;
      grid-template-columns:minmax(260px,1.35fr) repeat(3,minmax(150px,1fr));
      gap:28px;
      align-items:start;
    }
    .footer-brand,.footer-column{min-width:0;}
    .footer-brand p{
      margin:16px 0 0;
      color:rgba(248,250,252,.74);
      line-height:1.8;
      font-size:14px;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column h3{
      margin:0 0 14px;
      font-size:15px;
      color:#fff;
    }
    .footer-column ul{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footer-column a,.footer-column span{
      display:inline;
      color:rgba(248,250,252,.74);
      text-decoration:none;
      font-size:14px;
      line-height:1.55;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column a:hover{color:#fff;}
    .footer-bottom{
      width:min(1200px, calc(100% - 32px));
      margin:32px auto 0;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:rgba(248,250,252,.58);
      font-size:13px;
    }
    .footer-bottom p{
      margin:0;
      min-width:0;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-bottom a{
      color:rgba(248,250,252,.74);
      text-decoration:none;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    @media (max-width:900px){
      .footer-inner{grid-template-columns:1fr 1fr;gap:24px;}
      .footer-brand{grid-column:1 / -1;}
      .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;}
    }
    @media (max-width:640px){
      .footer-inner{grid-template-columns:1fr;}
      .footer-inner,.footer-bottom{width:min(100% - 24px, 1200px);}
    }