﻿:root {
      --primary: #B45CFF;
      --primary-rgb: 180, 92, 255;
      --secondary: rgb(14,116,144);
      --secondary-rgb: 14, 116, 144;
      --accent: #FF6B8B;
      --bg-dark: #0F172A;
      --bg-dark-900: #020617;
      --text-light: #F8FAFC;
      --text-dark: #334155;
      --border-light: rgba(15,23,42,.08);
      --pearl-white: #FFFFFF;
      --slate-50: #F8FAFC;
      --slate-100: #F1F5F9;
      --slate-800: #1E293B;
      --slate-900: #0F172A;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--slate-900);
      background-color: var(--slate-50);
      line-height: 1.5;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    
    .site-header{
      position:sticky;
      top:0;
      z-index:900;
      width:100%;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }

    .header-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }

    .logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
      min-width:0;
      flex-shrink:0;
    }

    .logo img{
      display:block;
      height:40px;
      width:auto;
      max-width:160px;
      object-fit:contain;
      flex-shrink:0;
    }

    .logo span{
      display:inline-block;
      font-size:18px;
      font-weight:800;
      line-height:1.2;
      color:#111827;
      white-space:nowrap;
      max-width:180px;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      min-width:0;
      flex:1;
      overflow-x:auto;
      scrollbar-width:none;
    }

    .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;
      font-size:14px;
      font-weight:600;
      color:#334155;
      text-decoration:none;
      white-space:nowrap;
      flex-shrink:0;
    }

    .desktop-nav a:hover {
      background: rgba(180, 92, 255, 0.08);
      color: var(--primary);
    }

    .mobile-menu-btn{
      display:none;
      width:44px;
      height:44px;
      border:0;
      border-radius:14px;
      background:rgba(15,23,42,.08);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex-shrink:0;
    }

    .mobile-menu-btn span{
      display:block;
      width:20px;
      height:2px;
      border-radius:99px;
      background:#111827;
    }

    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:998;
      background:rgba(15,23,42,.54);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .25s ease, visibility .25s ease;
    }

    .mobile-drawer{
      position:fixed;
      top:0;
      left:0;
      z-index:999;
      width:min(86vw, 360px);
      height:100vh;
      height:100dvh;
      background:#ffffff;
      color:#111827;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(15,23,42,.22);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }

    .drawer-head{
      min-height:76px;
      padding:18px 18px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      flex-shrink:0;
    }

    .drawer-logo img{
      height:36px;
      max-width:130px;
    }

    .drawer-logo span{
      max-width:150px;
      font-size:17px;
    }

    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(15,23,42,.08);
      color:#111827;
      font-size:26px;
      line-height:1;
      cursor:pointer;
      flex-shrink:0;
    }

    .drawer-body{
      flex:1;
      overflow-y:auto;
      -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(15,23,42,.04);
      color:#111827;
      text-decoration:none;
      font-size:15px;
      font-weight:700;
      line-height:1.35;
      word-break:break-word;
      overflow-wrap:anywhere;
    }

    .drawer-nav a:hover{
      background:rgba(180, 92, 255, 0.12);
      color:var(--primary);
    }

    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);
    }

    
    .hero.hero-layout-06 {
      position: relative;
      background: radial-gradient(circle at 50% -20%, #1E1B4B 0%, #0F172A 100%);
      color: var(--text-light);
      padding: 100px 16px 80px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .hero-layout-06::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 300px;
      background: radial-gradient(circle, rgba(180,92,255,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-layout-06 .hero-container {
      max-width: 800px;
      width: 100%;
      z-index: 10;
    }

    .hero-layout-06 .hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(180, 92, 255, 0.15);
      border: 1px solid rgba(180, 92, 255, 0.3);
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      color: #D8B4FE;
      margin-bottom: 24px;
      letter-spacing: 0.05em;
    }

    .hero-layout-06 .hero-title {
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.15;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #FFF 30%, #D8B4FE 70%, #FF6B8B 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-layout-06 .hero-subtitle {
      font-size: clamp(16px, 2.5vw, 18px);
      color: #94A3B8;
      max-width: 640px;
      margin: 0 auto 36px;
      line-height: 1.6;
    }

    .hero-layout-06 .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 60px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 28px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 15px;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, #9333EA 100%);
      color: white;
      border: none;
      box-shadow: 0 4px 20px rgba(180, 92, 255, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(180, 92, 255, 0.5);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-2px);
    }

    
    .hero-visual-wrapper {
      position: relative;
      width: min(100%, 640px);
      height: 320px;
      margin: 0 auto;
      z-index: 5;
    }

    .stacked-cards-container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .stacked-card {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      padding: 24px;
      text-align: left;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .card-3 {
      background: rgba(30, 41, 59, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.05);
      transform: translateY(24px) scale(0.9);
      opacity: 0.4;
      z-index: 1;
    }

    .card-2 {
      background: rgba(30, 41, 59, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transform: translateY(12px) scale(0.95);
      opacity: 0.7;
      z-index: 2;
    }

    .card-1 {
      background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
      border: 1px solid rgba(180, 92, 255, 0.25);
      transform: translateY(0) scale(1);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      z-index: 3;
    }

    .stacked-card:hover {
      transform: translateY(-6px) scale(1.02);
      border-color: rgba(180, 92, 255, 0.4);
    }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 14px;
    }

    .card-title {
      font-size: 14px;
      font-weight: 700;
      color: #94A3B8;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .card-title-dot {
      width: 8px;
      height: 8px;
      background-color: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--accent);
    }

    .card-meta {
      font-size: 12px;
      color: var(--primary);
      background: rgba(180, 92, 255, 0.15);
      padding: 4px 10px;
      border-radius: 999px;
      font-weight: 600;
    }

    .card-body {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 20px;
    }

    .main-stats {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      padding-right: 20px;
    }

    .stats-label {
      font-size: 12px;
      color: #94A3B8;
      margin-bottom: 4px;
    }

    .stats-value {
      font-size: 28px;
      font-weight: 800;
      color: #FFF;
      letter-spacing: -0.01em;
    }

    .stats-sub {
      font-size: 12px;
      color: #10B981;
      margin-top: 4px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .broker-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .broker-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 10px;
      border-radius: 10px;
    }

    .broker-name {
      font-size: 11px;
      font-weight: bold;
      color: #E2E8F0;
    }

    .broker-rate {
      font-size: 13px;
      font-weight: 800;
      color: #FACC15;
    }

    .floating-pill {
      position: absolute;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(180, 92, 255, 0.3);
      backdrop-filter: blur(8px);
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      color: #FFF;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .pill-1 { top: -10px; left: -20px; }
    .pill-2 { bottom: 20px; right: -20px; }

    
    .trust-strip {
      background: #FFFFFF;
      border-bottom: 1px solid var(--border-light);
      padding: 24px 0;
    }

    .trust-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .trust-icon {
      width: 44px;
      height: 44px;
      background: rgba(14, 116, 144, 0.08);
      color: var(--secondary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    .trust-text h4 {
      font-size: 15px;
      font-weight: 800;
    }

    .trust-text p {
      font-size: 12px;
      color: #64748B;
    }

    
    .features-section {
      padding: 80px 0;
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 50px;
    }

    .section-title {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .section-desc {
      color: #64748B;
      font-size: 15px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .feature-card {
      background: #FFFFFF;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 30px;
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
      border-color: rgba(14,116,144, 0.2);
    }

    .feature-icon-wrapper {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: rgba(14, 116, 144, 0.1);
      color: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .feature-card p {
      color: #64748B;
      font-size: 14px;
      line-height: 1.6;
    }

    
    .block-holder {
      background: #FFFFFF;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 40px;
    }

    
    .articles-section {
      background: var(--slate-100);
      padding: 80px 0;
    }

    .articles-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }

    .article-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
    }

    .article-card {
      background: #FFFFFF;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    }

    .article-img-box {
      width: 100%;
      aspect-ratio: 16/9;
      background: #E2E8F0;
      position: relative;
    }

    .article-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .article-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .article-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }

    .article-tag-item {
      font-size: 11px;
      font-weight: 700;
      color: var(--secondary);
      background: rgba(14, 116, 144, 0.08);
      padding: 2px 8px;
      border-radius: 4px;
    }

    .article-title {
      font-size: 16px;
      font-weight: 800;
      color: #1E293B;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .article-summary {
      font-size: 13px;
      color: #64748B;
      line-height: 1.6;
      margin-bottom: 20px;
      flex: 1;
    }

    .article-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--slate-100);
      padding-top: 14px;
      font-size: 12px;
      color: #94A3B8;
    }

    
    .site-footer{
      width:100%;
      background:#0f172a;
      color:#e5e7eb;
      overflow:hidden;
    }

    .footer-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      padding:54px 0 34px;
      display:grid;
      grid-template-columns:minmax(240px,1.4fr) repeat(3, minmax(150px, .8fr));
      gap:28px;
      align-items:start;
    }

    .footer-logo span{
      color:#ffffff;
    }

    .footer-brand p{
      margin:18px 0 0;
      color:rgba(226,232,240,.78);
      line-height:1.8;
      font-size:14px;
      max-width:420px;
    }

    .footer-column h3{
      margin:0 0 14px;
      color:#ffffff;
      font-size:15px;
      font-weight:800;
    }

    .footer-column ul{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .footer-column li,
    .footer-column a{
      color:rgba(226,232,240,.78);
      font-size:14px;
      line-height:1.55;
      text-decoration:none;
      word-break:break-word;
      overflow-wrap:anywhere;
    }

    .footer-column a:hover{
      color:#ffffff;
    }

    .footer-bottom{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      padding:18px 0 24px;
      border-top:1px solid rgba(226,232,240,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      color:rgba(226,232,240,.68);
      font-size:13px;
      line-height:1.6;
    }

    
    @media (max-width: 900px){
      .header-inner{
        width:min(100% - 24px, 1200px);
        min-height:64px;
        gap:12px;
      }

      .desktop-nav{
        display:none !important;
      }

      .mobile-menu-btn{
        display:inline-flex !important;
      }

      .logo img{
        height:34px;
        max-width:120px;
      }

      .logo span{
        font-size:16px;
        max-width:150px;
      }

      .footer-inner{
        width:min(100% - 24px, 1200px);
        grid-template-columns:1fr 1fr;
        gap:24px 18px;
        padding:42px 0 28px;
      }

      .footer-brand{
        grid-column:1 / -1;
      }

      .footer-bottom{
        width:min(100% - 24px, 1200px);
        flex-direction:column;
        align-items:flex-start;
      }

      .hero-visual-wrapper {
        height: 280px;
      }
    }

    @media (max-width: 520px){
      .mobile-drawer{
        width:88vw;
      }

      .logo span{
        max-width:120px;
      }

      .drawer-logo span{
        max-width:120px;
      }

      .footer-inner{
        grid-template-columns:1fr;
      }

      .card-body {
        grid-template-columns: 1fr;
      }

      .main-stats {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-right: 0;
        padding-bottom: 14px;
      }
    }