﻿:root {
      --bg-main: #050608;
      --bg-sub: #080A0D;
      --bg-card: rgba(17,22,27,.92);
      --text-main: #F8FAFC;
      --text-muted: #A3AAB7;
      --text-sub: #CBD5E1;
      --gold: #D6A84F;
      --gold-dark: #A77C2F;
      --emerald: #10B981;
      --emerald-dark: #047857;
      --cyan: #22D3EE;
      --orange: #F97316;
      --border: rgba(214,168,79,.18);
      --shadow: 0 30px 90px rgba(0,0,0,.38);
    }

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

    
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(5,6,8,.82);
      backdrop-filter:blur(22px) saturate(150%);
      border-bottom:1px solid rgba(214,168,79,.18);
      box-shadow:0 16px 48px rgba(0,0,0,.35);
    }
    .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(214,168,79,.14);
      border-color:rgba(214,168,79,.28);
    }

    .mobile-menu-btn{
      display:none;
      width:46px;
      height:46px;
      border:1px solid rgba(214,168,79,.26);
      border-radius:16px;
      background:rgba(214,168,79,.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,.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,#050608 0%,#0B0F12 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(214,168,79,.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;
      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(214,168,79,.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, 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-section {
      padding: 80px 0 100px;
      background: radial-gradient(circle at top, rgba(214,168,79,0.06) 0%, rgba(5,6,8,0) 60%);
      border-bottom: 1px solid var(--border);
    }
    .container {
      width: min(1240px, calc(100% - 32px));
      margin: 0 auto;
    }
    .hero-text {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }
    .badge-premium {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(214,168,79,0.1);
      border: 1px solid var(--border);
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero-text h1 {
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.15;
      font-weight: 900;
      letter-spacing: -0.02em;
      margin: 0 0 20px;
      background: linear-gradient(135deg, #F8FAFC 30%, #CBD5E1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-text p {
      font-size: clamp(16px, 2vw, 19px);
      color: var(--text-muted);
      margin: 0 0 32px;
      line-height: 1.6;
    }
    .cta-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: #050608;
      font-weight: 800;
      padding: 14px 28px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 4px 20px rgba(214,168,79,0.25);
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(214,168,79,0.35);
    }
    .btn-outline {
      border: 1px solid var(--border);
      background: rgba(17,22,27,0.4);
      color: var(--text-main);
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 12px;
    }
    .btn-outline:hover {
      background: rgba(214,168,79,0.1);
      border-color: var(--gold);
    }

    
    .dashboard-mock {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: var(--shadow);
      padding: 24px;
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 20px;
      position: relative;
    }
    .dashboard-mock::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .dash-panel {
      background: rgba(8,10,13,0.8);
      border: 1px solid rgba(214,168,79,0.1);
      border-radius: 16px;
      padding: 20px;
    }
    .dash-panel h4 {
      margin: 0 0 16px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .dash-panel h4 span {
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 99px;
      background: rgba(16,185,129,0.1);
      color: var(--emerald);
    }
    .p-1 { grid-column: span 4; }
    .p-2 { grid-column: span 5; }
    .p-3 { grid-column: span 3; }
    .p-4 { grid-column: span 7; }
    .p-5 { grid-column: span 5; }

    .dash-value {
      font-size: 28px;
      font-weight: 900;
      color: var(--text-main);
      letter-spacing: -0.01em;
      margin: 0 0 8px;
    }
    .dash-value-sub {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      gap: 8px;
    }
    .text-emerald { color: var(--emerald); }
    .text-cyan { color: var(--cyan); }
    .text-orange { color: var(--orange); }

    
    .stream-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .stream-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .stream-item:last-child { border-bottom: none; padding-bottom: 0; }
    .stream-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .stream-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
    }
    .icon-usdc { background: rgba(34,211,238,0.1); color: var(--cyan); }
    .icon-usdt { background: rgba(16,185,129,0.1); color: var(--emerald); }
    .stream-meta h5 { margin: 0; font-size: 14px; font-weight: 700; }
    .stream-meta p { margin: 0; font-size: 11px; color: var(--text-muted); }
    .stream-amount { text-align: right; }
    .stream-amount .amt { font-size: 14px; font-weight: 800; }
    .stream-status {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      padding: 1px 6px;
      border-radius: 4px;
      margin-top: 4px;
    }
    .status-settled { background: rgba(16,185,129,0.15); color: var(--emerald); }
    .status-processing { background: rgba(214,168,79,0.15); color: var(--gold); }
    
    
    .risk-radial-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .risk-circle {
      position: relative;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: conic-gradient(var(--emerald) 95%, rgba(255,255,255,0.05) 0);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .risk-circle::before {
      content: '';
      position: absolute;
      inset: 6px;
      background: rgba(8,10,13,1);
      border-radius: 50%;
    }
    .risk-circle span {
      position: relative;
      font-weight: 800;
      font-size: 14px;
      color: var(--text-main);
    }

    
    .section-spacing {
      padding: 100px 0;
      border-bottom: 1px solid var(--border);
    }
    .section-title {
      max-width: 700px;
      margin-bottom: 60px;
    }
    .section-title h2 {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 900;
      margin: 0 0 16px;
      color: var(--text-main);
    }
    .section-title p {
      font-size: 16px;
      color: var(--text-muted);
      margin: 0;
    }
    .pillar-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .pillar-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      padding: 36px;
      border-radius: 20px;
      transition: all 0.3s ease;
    }
    .pillar-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }
    .pillar-icon-box {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      background: rgba(214,168,79,0.1);
      border: 1px solid rgba(214,168,79,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: var(--gold);
    }
    .pillar-card h3 {
      font-size: 20px;
      font-weight: 800;
      margin: 0 0 14px;
      color: var(--text-main);
    }
    .pillar-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.6;
    }

    
    .row-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .row-image-container {
      background: linear-gradient(135deg, rgba(17,22,27,0.8) 0%, rgba(5,6,8,0.9) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      box-shadow: var(--shadow);
    }
    .row-image-container ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .row-image-container li {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      padding: 16px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .bullet-point {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    
    .insights-section {
      background: var(--bg-sub);
    }
    .insight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }
    .insight-card {
      background: var(--bg-main);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .insight-card:hover {
      border-color: var(--border);
      transform: translateY(-2px);
    }
    .insight-img-wrap {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #111;
      position: relative;
    }
    .insight-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .insight-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .insight-tag {
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--gold);
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .insight-title {
      font-size: 18px;
      font-weight: 800;
      margin: 0 0 12px;
      line-height: 1.4;
      color: var(--text-main);
    }
    .insight-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0 0 20px;
      line-height: 1.5;
    }
    .insight-meta {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 11px;
      color: var(--text-muted);
    }

    
    .site-footer{
      background:#050608;
      border-top:1px solid rgba(214,168,79,.18);
      padding:80px 0 30px;
    }
    .footer-inner{
      width:min(1240px, calc(100% - 32px));
      margin:0 auto;
      display:grid;
      grid-template-columns:2fr 1fr 1fr 1fr;
      gap:40px;
      padding-bottom:50px;
    }
    .footer-brand{
      max-width:320px;
    }
    .footer-brand p{
      color:#A3AAB7;
      font-size:13px;
      line-height:1.6;
      margin-top:16px;
    }
    .footer-column h3{
      color:#F8FAFC;
      font-size:14px;
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:0.05em;
      margin:0 0 20px;
    }
    .footer-column ul{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .footer-column a, .footer-column span{
      color:#A3AAB7;
      font-size:13px;
      font-weight:700;
    }
    .footer-column a:hover{
      color:#F8FAFC;
    }
    .footer-bottom{
      width:min(1240px, calc(100% - 32px));
      margin:0 auto;
      padding-top:30px;
      border-top:1px solid rgba(255,255,255,.05);
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      font-size:12px;
      color:#A3AAB7;
    }
    .footer-bottom p{margin:0;}
    .footer-bottom a{color:#A3AAB7;margin-left:14px;}
    .footer-bottom a:hover{color:#F8FAFC;}

    @media (max-width: 992px) {
      .dashboard-mock { display: flex; flex-direction: column; }
      .row-layout { grid-template-columns: 1fr; gap: 40px; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .footer-inner { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-bottom a { margin: 0 7px; }
    }