﻿:root {
      --primary: #2563EB;
      --primary-rgb: 37, 99, 235;
      --auxiliary: #0EA5E9;
      --compliance: #22D3EE;
      --trust: #10B981;
      --bg-dark: #020617;
      --bg-darker: #07111F;
      --card-bg: #0F172A;
      --card-bg-alt: #111827;
      --text-light: #F8FAFC;
      --text-muted: #CBD5E1;
      --border-dark: rgba(148, 163, 184, 0.18);
      --highlight: #FBBF24;
      --alert: #F59E0B;
      --theme-red: rgb(234,67,53);
    }

    
    *, *::before, *::after { box-sizing: border-box; }
    html { width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
    body { 
      width: 100%; 
      margin: 0; 
      overflow-x: hidden; 
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-light);
      line-height: 1.6;
    }
    img { max-width: 100%; height: auto; }

    
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      background: rgba(5, 11, 24, 0.90);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-dark);
    }
    .header-inner {
      width: min(1200px, calc(100% - 32px));
      min-height: 72px;
      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: 800;
      line-height: 1.2;
      color: var(--text-light);
      white-space: nowrap;
      max-width: 180px;
      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 13px;
      border-radius: 999px;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
      flex: 0 0 auto;
      transition: all 0.25s ease;
    }
    .desktop-nav a:hover {
      color: var(--text-light);
      background: rgba(37, 99, 235, 0.18);
    }
    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 14px;
      background: rgba(148, 163, 184, 0.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: var(--text-light);
    }
    .mobile-nav-mask {
      position: fixed;
      inset: 0;
      z-index: 1100;
      background: rgba(15, 23, 42, 0.56);
      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: var(--bg-darker);
      color: var(--text-light);
      transform: translateX(-105%);
      transition: transform .28s ease;
      box-shadow: 24px 0 60px rgba(0,0,0,.42);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .drawer-head {
      min-height: 76px;
      padding: 16px 16px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid var(--border-dark);
      flex: 0 0 auto;
    }
    .drawer-logo { min-width: 0; }
    .drawer-logo img { height: 34px; max-width: 120px; }
    .drawer-logo span { font-size: 16px; max-width: 145px; }
    .drawer-close {
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 14px;
      background: rgba(148, 163, 184, 0.14);
      color: var(--text-light);
      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;
      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(148, 163, 184, 0.10);
      color: var(--text-light);
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.35;
      word-break: break-word;
      overflow-wrap: anywhere;
      border: 1px solid rgba(148, 163, 184, 0.14);
      transition: all 0.25s ease;
    }
    .drawer-nav a:hover {
      background: rgba(37, 99, 235, 0.16);
      color: #ffffff;
    }
    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); }

    
    .site-footer {
      position: relative;
      z-index: 1;
      width: 100%;
      background: var(--bg-dark);
      color: var(--text-muted);
      padding: 56px 0 24px;
      border-top: 1px solid var(--border-dark);
    }
    .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 { min-width: 0; }
    .footer-brand p {
      margin: 16px 0 0;
      color: rgba(226, 232, 240, 0.78);
      line-height: 1.8;
      font-size: 14px;
      word-break: break-word;
      overflow-wrap: anywhere;
    }
    .footer-logo span { color: #ffffff; }
    .footer-column { min-width: 0; }
    .footer-column h3 { margin: 0 0 14px; font-size: 15px; color: #ffffff; }
    .footer-column ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
    .footer-column li { min-width: 0; }
    .footer-column a, .footer-column span {
      display: inline;
      color: rgba(226, 232, 240, 0.78);
      text-decoration: none;
      font-size: 14px;
      line-height: 1.55;
      word-break: break-word;
      overflow-wrap: anywhere;
      transition: color 0.25s ease;
    }
    .footer-column a:hover { color: #ffffff; }
    .footer-bottom {
      width: min(1200px, calc(100% - 32px));
      margin: 32px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: rgba(226, 232, 240, 0.62);
      font-size: 13px;
    }
    .footer-bottom p { margin: 0; min-width: 0; word-break: break-word; overflow-wrap: anywhere; }
    .footer-bottom a { color: rgba(226, 232, 240, 0.78); text-decoration: none; word-break: break-word; overflow-wrap: anywhere; }

    
    @media (max-width: 900px){
      .header-inner{ width: min(100% - 24px, 1200px); min-height: 64px; 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; }
      .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; }
    }
    @media (max-width: 420px){
      .mobile-drawer { width: 88vw; }
      .logo span { max-width: 112px; }
      .drawer-logo span { max-width: 118px; }
      .footer-inner, .footer-bottom { width: min(100% - 24px, 1200px); }
    }

    
    .hero-layout-08 {
      background: radial-gradient(circle at 50% -20%, rgba(37, 99, 235, 0.18), transparent 70%), var(--bg-dark);
      padding: 80px 0 60px;
      border-bottom: 1px solid var(--border-dark);
    }
    .hero-inner-08 {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      text-align: center;
    }
    .hero-content-08 {
      max-width: 800px;
      margin: 0 auto 56px;
    }
    .hero-badge-08 {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(34, 211, 238, 0.1);
      border: 1px solid rgba(34, 211, 238, 0.2);
      border-radius: 99px;
      color: var(--compliance);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 24px;
    }
    .hero-badge-08 .dot {
      width: 8px;
      height: 8px;
      background: var(--trust);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--trust);
    }
    .hero-content-08 h1 {
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.15;
      font-weight: 900;
      margin: 0 0 20px;
      letter-spacing: -0.02em;
    }
    .hero-content-08 h1 span {
      background: linear-gradient(135deg, #ffffff, var(--auxiliary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-content-08 p {
      font-size: clamp(16px, 2.5vw, 19px);
      color: var(--text-muted);
      margin: 0 0 32px;
      line-height: 1.6;
    }
    .hero-actions-08 {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      color: #ffffff;
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.25s ease;
      box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    }
    .btn-primary:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(148, 163, 184, 0.1);
      color: var(--text-light);
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 12px;
      text-decoration: none;
      border: 1px solid var(--border-dark);
      transition: all 0.25s ease;
    }
    .btn-secondary:hover {
      background: rgba(148, 163, 184, 0.18);
      transform: translateY(-2px);
    }

    
    .dashboard-panel-08 {
      background: var(--card-bg);
      border: 1px solid var(--border-dark);
      border-radius: 20px;
      padding: 24px;
      text-align: left;
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
      margin-top: 16px;
    }
    .dashboard-header-08 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-dark);
      margin-bottom: 24px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .dashboard-title {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .dashboard-title h2 {
      margin: 0;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.02em;
    }
    .status-pill {
      background: rgba(16, 185, 129, 0.12);
      color: var(--trust);
      border: 1px solid rgba(16, 185, 129, 0.2);
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
    }
    .dashboard-meta {
      display: flex;
      gap: 16px;
      color: var(--text-muted);
      font-size: 13px;
    }
    .meta-item span {
      color: var(--compliance);
      font-weight: 600;
    }

    .dashboard-grid-08 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .dash-card {
      background: var(--card-bg-alt);
      border: 1px solid var(--border-dark);
      border-radius: 12px;
      padding: 20px;
      transition: all 0.25s ease;
    }
    .dash-card:hover {
      border-color: rgba(37, 99, 235, 0.4);
    }
    .card-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }
    .card-head h3 {
      margin: 0;
      font-size: 15px;
      color: var(--text-muted);
      font-weight: 700;
    }
    .indicator-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    .indicator-active { background: var(--trust); box-shadow: 0 0 8px var(--trust); }
    .indicator-pending { background: var(--alert); box-shadow: 0 0 8px var(--alert); }
    .indicator-cyan { background: var(--compliance); box-shadow: 0 0 8px var(--compliance); }
    
    .card-metric {
      font-size: 24px;
      font-weight: 800;
      margin: 0 0 8px;
    }
    .card-metric span {
      font-size: 13px;
      color: var(--compliance);
      font-weight: 500;
    }
    .card-foot {
      font-size: 13px;
      color: var(--text-muted);
    }
    .card-link {
      color: var(--primary);
      text-decoration: none;
      font-weight: 700;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: 10px;
    }
    .card-link:hover {
      text-decoration: underline;
    }

    
    .features-sec {
      padding: 80px 0;
      background-color: var(--bg-darker);
    }
    .section-head {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto 56px;
      text-align: center;
    }
    .section-head h2 {
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 800;
      margin: 0 auto 16px;
    }
    .section-head p {
      max-width: 680px;
      margin: 0 auto;
      color: var(--text-muted);
    }
    .features-grid {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
    }
    .feat-card {
      background: var(--card-bg);
      border: 1px solid var(--border-dark);
      border-radius: 16px;
      padding: 32px;
      transition: all 0.3s ease;
    }
    .feat-card:hover {
      transform: translateY(-4px);
      border-color: rgba(34, 211, 238, 0.3);
    }
    .feat-icon {
      width: 48px;
      height: 48px;
      background: rgba(37, 99, 235, 0.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .feat-card h3 {
      font-size: 18px;
      font-weight: 800;
      margin: 0 0 12px;
    }
    .feat-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.6;
    }

    
    .info-banner {
      background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent), var(--bg-dark);
      padding: 80px 0;
      border-top: 1px solid var(--border-dark);
      border-bottom: 1px solid var(--border-dark);
    }
    .info-banner-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .info-banner-inner h2 {
      font-size: 28px;
      font-weight: 800;
      margin: 0 0 16px;
    }
    .info-banner-inner p {
      max-width: 700px;
      color: var(--text-muted);
      margin: 0 0 32px;
    }

    
    .articles-sec {
      padding: 80px 0;
      background-color: var(--bg-darker);
    }
    .articles-grid {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 24px;
    }
    .art-card {
      background: var(--card-bg);
      border: 1px solid var(--border-dark);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.25s ease;
    }
    .art-card:hover {
      border-color: rgba(37, 99, 235, 0.3);
      transform: translateY(-2px);
    }
    .art-image-wrap {
      width: 100%;
      aspect-ratio: 16 / 9;
      background-color: #07111f;
      position: relative;
    }
    .art-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .art-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .art-tag-wrap {
      display: flex;
      gap: 8px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }
    .art-tag {
      font-size: 11px;
      font-weight: 700;
      color: var(--compliance);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .art-body h3 {
      font-size: 18px;
      font-weight: 800;
      margin: 0 0 12px;
      line-height: 1.4;
    }
    .art-body h3 a {
      color: var(--text-light);
      text-decoration: none;
    }
    .art-body h3 a:hover {
      color: var(--primary);
    }
    .art-summary {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0 0 20px;
      line-height: 1.6;
      flex-grow: 1;
    }
    .art-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--text-muted);
      border-top: 1px solid var(--border-dark);
      padding-top: 14px;
    }
    .art-author {
      font-weight: 600;
      color: var(--text-light);
    }