﻿:root {
      --bg-main: #F6F8FC;
      --bg-white: #FFFFFF;
      --bg-dark: #061525;
      --bg-dark-card: #0A1A2F;
      --text-main: #0F172A;
      --text-muted: #64748B;
      --prism-blue: #2563EB;
      --pay-cyan: #0891B2;
      --comp-green: #16A34A;
      --risk-orange: #EA580C;
      --brand-gray: rgb(116,125,140);
      --border-color: rgba(15,23,42,0.08);
      --card-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    }

    *, *::before, *::after {
      box-sizing: border-box;
    }
    html, body {
      width: 100%;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background: var(--bg-main);
      color: var(--text-main);
      line-height: 1.5;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }

    
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(246, 248, 252, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }
    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--text-main);
    }
    .logo img {
      height: 32px;
      width: auto;
    }
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .desktop-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
    }
    .desktop-nav a:hover, .desktop-nav a.active {
      color: var(--prism-blue);
    }
    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }
    .mobile-menu-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text-main);
      transition: 0.3s;
    }

    
    .mobile-nav-mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.4);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }
    body.drawer-open .mobile-nav-mask {
      opacity: 1;
      visibility: visible;
    }
    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -320px;
      width: 320px;
      height: 100dvh;
      background: var(--bg-white);
      z-index: 999;
      box-shadow: -10px 0 30px rgba(0,0,0,0.1);
      transition: right 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    body.drawer-open .mobile-drawer {
      right: 0;
    }
    .drawer-head {
      padding: 1.5rem;
      border-bottom: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .drawer-close {
      background: none;
      border: none;
      font-size: 1.75rem;
      cursor: pointer;
      color: var(--text-muted);
    }
    .drawer-body {
      padding: 2rem 1.5rem;
      overflow-y: auto;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .drawer-nav a {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-main);
    }

    
    .hero-section {
      padding: 5rem 1.5rem;
      background: radial-gradient(120% 120% at 50% 0%, #FFFFFF 0%, #EDF3FF 50%, #F6F8FC 100%);
      text-align: center;
      position: relative;
    }
    .hero-badge {
      display: inline-block;
      padding: 0.5rem 1.25rem;
      background: rgba(37, 99, 235, 0.08);
      color: var(--prism-blue);
      border-radius: 99px;
      font-weight: 600;
      font-size: 0.85rem;
      margin-bottom: 1.5rem;
    }
    .hero-title {
      font-size: 3rem;
      font-weight: 800;
      max-width: 900px;
      margin: 0 auto 1.5rem;
      line-height: 1.15;
    }
    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 650px;
      margin: 0 auto 2.5rem;
    }
    .hero-ctas {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 4rem;
    }
    .btn {
      padding: 0.85rem 2rem;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }
    .btn-primary {
      background: var(--prism-blue);
      color: #FFFFFF;
    }
    .btn-primary:hover {
      background: #1d4ed8;
    }
    .btn-secondary {
      background: #FFFFFF;
      color: var(--text-main);
      border: 1px solid var(--border-color);
    }
    .btn-secondary:hover {
      background: #f8fafc;
    }

    
    .control-grid-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      background: var(--bg-dark);
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 30px 60px rgba(6, 21, 37, 0.25);
      border: 1px solid rgba(255,255,255,0.05);
      color: #FFFFFF;
      text-align: left;
    }
    .grid-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding-bottom: 1.25rem;
      margin-bottom: 1.5rem;
    }
    .grid-status {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: var(--comp-green);
    }
    .status-dot {
      width: 8px;
      height: 8px;
      background: var(--comp-green);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }
    .control-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .control-card {
      background: var(--bg-dark-card);
      border-radius: 12px;
      padding: 1.5rem;
      border: 1px solid rgba(255,255,255,0.05);
    }
    .card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }
    .badge-deposit {
      background: rgba(15, 186, 172, 0.15);
      color: #0fbacd;
      font-size: 0.75rem;
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
    }
    .badge-withdrawal {
      background: rgba(139, 92, 246, 0.15);
      color: #a78bfa;
      font-size: 0.75rem;
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
    }
    .card-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
    }
    .card-desc {
      font-size: 0.85rem;
      color: #94a3b8;
      margin: 0 0 1.25rem;
    }
    .indicator-lane {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      background: rgba(0,0,0,0.2);
      padding: 0.75rem;
      border-radius: 6px;
      font-family: monospace;
      font-size: 0.8rem;
    }
    .indicator-step {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .step-ok { color: var(--comp-green); }
    .step-pending { color: var(--risk-orange); }

    
    .section-wrap {
      padding: 6rem 1.5rem;
    }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-title-wrap {
      text-align: center;
      margin-bottom: 4rem;
    }
    .section-pre {
      color: var(--prism-blue);
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .section-main-title {
      font-size: 2.25rem;
      font-weight: 800;
      margin: 0.5rem 0 1rem;
    }
    .section-subtitle {
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
    }

    
    .lane-showcase {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
    }
    .lane-box {
      background: var(--bg-white);
      border-radius: 12px;
      padding: 2rem;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      transition: transform 0.3s;
    }
    .lane-box:hover {
      transform: translateY(-4px);
    }
    .icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      background: rgba(37,99,235,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: var(--prism-blue);
      font-size: 1.5rem;
      font-weight: bold;
    }

    
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      text-align: center;
    }
    .trust-item {
      background: rgba(255,255,255,0.6);
      border: 1px solid var(--border-color);
      padding: 2rem;
      border-radius: 10px;
    }
    .trust-val {
      font-size: 2rem;
      font-weight: 800;
      color: var(--prism-blue);
    }
    .trust-lbl {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
    }

    
    .article-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    .article-item-card {
      background: var(--bg-white);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
    }
    .article-item-img {
      height: 200px;
      background: #e2e8f0;
      object-fit: cover;
    }
    .article-item-body {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .article-item-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
      display: flex;
      gap: 1rem;
    }
    .article-item-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin: 0 0 0.75rem;
      line-height: 1.3;
    }
    .article-item-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }
    .article-item-link {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--prism-blue);
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    
    .footer-cta {
      background: var(--bg-dark);
      color: #FFFFFF;
      text-align: center;
      padding: 5rem 1.5rem;
    }
    .cta-inner {
      max-width: 650px;
      margin: 0 auto;
    }

    
    .site-footer {
      background: #030a12;
      color: #94a3b8;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 4rem 1.5rem 2rem;
      font-size: 0.9rem;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .footer-logo {
      color: #FFFFFF;
      font-weight: 700;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-logo img {
      height: 32px;
    }
    .footer-column h3 {
      color: #FFFFFF;
      font-size: 1rem;
      margin: 0 0 1.25rem;
    }
    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-column a:hover {
      color: #FFFFFF;
    }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    @keyframes pulse {
      0% { opacity: 0.4; }
      50% { opacity: 1; }
      100% { opacity: 0.4; }
    }

    @media (max-width: 900px) {
      .mobile-menu-btn { display: flex; }
      .desktop-nav-wrap { display: none; }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
      .hero-title { font-size: 2.25rem; }
    }