﻿*,*::before,*::after{box-sizing:border-box;}
    html{width:100%;overflow-x:hidden;scroll-behavior:smooth;}
    body{
      width:100%;
      margin:0;
      overflow-x:hidden;
      background:#050816;
      color:#F8FAFC;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
      line-height:1.6;
    }
    img,video,iframe,embed{max-width:100%;height:auto;display:block;}
    a{text-decoration:none;color:inherit;transition:all 0.2s ease;}
    
    
    :root {
      --bg-main: #050816;
      --bg-darker: #02040a;
      --bg-card: rgba(16, 24, 39, 0.92);
      --sapphire: #2563EB;
      --sapphire-hover: #1D4ED8;
      --cyan: #22D3EE;
      --gold: #D6A84F;
      --purple: #8B5CF6;
      --orange: #F97316;
      --green: #22C55E;
      --text-main: #F8FAFC;
      --text-muted: #A8B3C7;
      --border-color: rgba(37, 99, 235, 0.22);
      --glow-shadow: 0 0 25px rgba(37, 99, 235, 0.15);
    }

    
    .container {
      width: min(1240px, calc(100% - 32px));
      margin-inline: auto;
    }
    .section-padding {
      padding-block: 80px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      border: 1px solid transparent;
      gap: 8px;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--sapphire), var(--purple));
      color: var(--text-main);
      box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    }
    .btn-primary:hover {
      box-shadow: 0 4px 30px rgba(37, 99, 235, 0.5);
      transform: translateY(-2px);
    }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      border-color: var(--border-color);
    }
    .btn-secondary:hover {
      background: rgba(37, 99, 235, 0.15);
      border-color: var(--sapphire);
      transform: translateY(-2px);
    }
    .section-title-wrap {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 900;
      background: linear-gradient(135deg, var(--text-main) 30%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 12px;
    }
    .section-subtitle {
      color: var(--text-muted);
      max-width: 700px;
      margin-inline: auto;
      font-size: clamp(14px, 2.5vw, 16px);
    }

    
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(5,8,22,.84);
      backdrop-filter:blur(22px) saturate(150%);
      border-bottom:1px solid rgba(37,99,235,.22);
      box-shadow:0 16px 48px rgba(0,0,0,.38);
    }
    .header-inner{
      width:min(1240px, 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;
      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;
      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:#CBD5E1;
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
      border:1px solid transparent;
    }
    .desktop-nav a:hover{
      color:#F8FAFC;
      background:rgba(37,99,235,.18);
      border-color:rgba(214,168,79,.24);
      box-shadow:0 8px 26px rgba(37,99,235,.16);
    }

    .mobile-menu-btn{
      display:none;
      width:46px;
      height:46px;
      border:1px solid rgba(37,99,235,.32);
      border-radius:16px;
      background:rgba(37,99,235,.14);
      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,.66);
      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,#050816 0%,#0A1020 100%);
      color:#F8FAFC;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(0,0,0,.45);
      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(37,99,235,.18);
      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;
      cursor:pointer;
      flex:0 0 auto;
    }
    .drawer-body{
      flex:1 1 auto;
      min-height:0;
      overflow-y:auto;
      overflow-x:hidden;
      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,.07);
      color:#F8FAFC;
      font-size:15px;
      font-weight:800;
      line-height:1.35;
      word-break:break-word;
      overflow-wrap:anywhere;
      border:1px solid rgba(255,255,255,.10);
    }
    .drawer-nav a:hover{
      background:rgba(37,99,235,.20);
    }

    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, 1240px);min-height:68px;}
      .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;}
    }

    
    .hero {
      background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.12) 0%, rgba(5, 8, 22, 0) 70%), var(--bg-main);
      padding-top: 60px;
      padding-bottom: 90px;
      border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    }
    .hero-content {
      text-align: center;
      max-width: 900px;
      margin-inline: auto;
      margin-bottom: 60px;
    }
    .hero-tagline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37, 99, 235, 0.12);
      border: 1px solid rgba(37, 99, 235, 0.3);
      padding: 6px 16px;
      border-radius: 99px;
      font-size: 13px;
      font-weight: 700;
      color: var(--cyan);
      margin-bottom: 24px;
    }
    .hero-title {
      font-size: clamp(34px, 5.5vw, 64px);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
      background: linear-gradient(135deg, var(--text-main) 40%, #94A3B8 70%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-desc {
      font-size: clamp(16px, 2.5vw, 20px);
      color: var(--text-muted);
      margin-bottom: 36px;
      max-width: 760px;
      margin-inline: auto;
    }
    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    
    .console-wrapper {
      background: rgba(10, 16, 32, 0.85);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), var(--glow-shadow);
      backdrop-filter: blur(20px);
    }
    .console-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .console-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 800;
      color: var(--cyan);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .console-title .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 10px var(--green);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { opacity: 0.4; }
      50% { opacity: 1; }
      100% { opacity: 0.4; }
    }
    .console-meta {
      display: flex;
      gap: 16px;
      font-size: 12px;
      color: var(--text-muted);
    }
    .console-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 20px;
    }

    
    .console-card {
      background: rgba(16, 24, 39, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 18px;
    }
    .c-col-4 { grid-column: span 4; }
    .c-col-8 { grid-column: span 8; }
    .c-col-6 { grid-column: span 6; }
    .c-col-3 { grid-column: span 3; }
    .c-col-12 { grid-column: span 12; }

    .card-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .card-value {
      font-size: 24px;
      font-weight: 800;
      color: var(--text-main);
    }
    .card-trend {
      font-size: 12px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--green);
      margin-top: 4px;
    }
    .card-trend.down {
      color: var(--orange);
    }

    
    .bar-chart {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      height: 100px;
      padding-top: 20px;
      gap: 8px;
    }
    .bar-item {
      flex: 1;
      background: linear-gradient(180deg, var(--sapphire), rgba(37, 99, 235, 0.1));
      border-radius: 4px 4px 0 0;
      position: relative;
    }
    .bar-item:nth-child(even) {
      background: linear-gradient(180deg, var(--purple), rgba(139, 92, 246, 0.1));
    }

    
    .queue-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .queue-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 12px;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      font-size: 12px;
    }
    .badge {
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
    }
    .badge-pending { background: rgba(249, 115, 22, 0.15); color: var(--orange); }
    .badge-approved { background: rgba(34, 197, 94, 0.15); color: var(--green); }
    .badge-processing { background: rgba(37, 99, 235, 0.15); color: var(--cyan); }

    
    @media (max-width: 992px) {
      .c-col-4, .c-col-8, .c-col-6, .c-col-3 {
        grid-column: span 6;
      }
    }
    @media (max-width: 600px) {
      .c-col-4, .c-col-8, .c-col-6, .c-col-3 {
        grid-column: span 12;
      }
      .console-grid {
        gap: 12px;
      }
      .console-wrapper {
        padding: 14px;
      }
    }

    
    .b-section {
      background: #07111F;
      border-top: 1px solid rgba(37, 99, 235, 0.1);
      border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    }
    .b-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
    }
    .b-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 32px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .b-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--sapphire);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .b-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--glow-shadow);
      border-color: rgba(37, 99, 235, 0.4);
    }
    .b-card:hover::before {
      opacity: 1;
    }
    .b-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(37, 99, 235, 0.15);
      color: var(--cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 24px;
      font-weight: bold;
    }
    .b-card h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 14px;
      color: var(--text-main);
    }
    .b-card p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    
    .info-section {
      background: var(--bg-main);
    }
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
      gap: 24px;
    }
    @media(max-width:480px){
      .info-grid {
        grid-template-columns: 1fr;
      }
    }
    .info-card {
      background: rgba(16, 24, 39, 0.6);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    .info-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-color);
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    .info-img-wrap {
      aspect-ratio: 16 / 9;
      background: rgba(255,255,255,0.02);
      overflow: hidden;
      position: relative;
    }
    .info-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .info-card:hover .info-img-wrap img {
      transform: scale(1.05);
    }
    .info-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .info-tag {
      font-size: 11px;
      color: var(--cyan);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
    }
    .info-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.4;
      margin-bottom: 10px;
    }
    .info-summary {
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .info-meta {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--text-muted);
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 12px;
    }

    
    .site-footer {
      background: var(--bg-darker);
      border-top: 1px solid rgba(37, 99, 235, 0.2);
      padding-top: 80px;
      padding-bottom: 40px;
      color: var(--text-muted);
    }
    .footer-inner {
      width: min(1240px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 60px;
    }
    @media (max-width: 900px) {
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }
    .footer-brand .logo {
      margin-bottom: 16px;
    }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.6;
      max-width: 420px;
    }
    .footer-column h3 {
      font-size: 15px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-column a {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-column a:hover {
      color: var(--text-main);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 12px;
      width: min(1240px, calc(100% - 32px));
      margin: 0 auto;
    }
    .footer-bottom p {
      margin: 0;
    }
    .footer-bottom a {
      margin-left: 8px;
    }
    .footer-bottom a:hover {
      color: var(--text-main);
    }