html {
  scroll-behavior: smooth;
}

:root{
    --bg:#070708;
    --panel:#0c0c0f;
    --panel2:#0a0a0c;
    --text:#e8e8ea;
    --muted:#a9a9b2;
    --muted2:#7a7a85;
    --gold:#d6a21a;
    --gold2:#ffcc3c;
    --line:rgba(214,162,26,.28);
    --line2:rgba(255,255,255,.06);
    --shadow: 0 12px 50px rgba(0,0,0,.55);
    --radius: 18px;
    --radius2: 22px;
    --max: 1120px;
  }
  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color:var(--text);
    background:
      radial-gradient(900px 520px at 50% 12%, rgba(214,162,26,.12), transparent 55%),
      radial-gradient(900px 520px at 20% 50%, rgba(43,148,255,.08), transparent 60%),
      radial-gradient(900px 520px at 80% 55%, rgba(132,84,255,.07), transparent 60%),
      var(--bg);
    overflow-x:hidden;
  }
  a{color:inherit;text-decoration:none}
  .wrap{max-width:var(--max); margin:0 auto; padding:0 22px;}
  .nav{
    position:sticky; top:0; z-index:20;
    background: rgba(7,7,8,.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:80px;
  }
  .brand{
    display:flex; align-items:center; gap:12px;
    font-weight:700; letter-spacing:.2px;
  }
  .logo{
    width:34px;height:34px;border-radius:10px;
    background:
      radial-gradient(12px 12px at 30% 30%, rgba(255,204,60,.9), rgba(255,204,60,0) 60%),
      linear-gradient(145deg, rgba(214,162,26,.30), rgba(255,255,255,.02));
    border:1px solid var(--line);
    box-shadow: 0 10px 30px rgba(214,162,26,.10);
  }
  .brand span{color:var(--gold2)}
  .nav-links{
    display:flex; gap:18px; align-items:center; color:var(--muted);
    font-size:14px;
  }
  .nav-links a{padding:8px 10px;border-radius:12px}
  .nav-links a:hover{background:rgba(255,255,255,.05); color:var(--text)}
  .nav-cta{display:flex; gap:10px; align-items:center}
  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    gap:10px;
    padding:10px 14px;
    border-radius:14px;
    font-weight:650;
    font-size:14px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.04);
    color:var(--text);
    box-shadow: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    white-space:nowrap;
  }
  .btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.12)}
  .btn.primary{
    background: linear-gradient(180deg, rgba(255,204,60,.18), rgba(214,162,26,.12));
    border-color: rgba(214,162,26,.45);
    box-shadow: 0 14px 40px rgba(214,162,26,.12);
  }
  .btn.secondary{
    background: linear-gradient(180deg, rgba(255,204,60,.18), rgba(214,162,26,.12));
    border-color: rgba(214,162,26,.45);
    box-shadow: 0 14px 40px rgba(214,162,26,.12);
    color:var(--text);
  }
  .btn.primary:hover{border-color: rgba(255,204,60,.65)}
  .btn.ghost{
    background:transparent;
    border-color: rgba(255,255,255,.10);
  }
  .pill{
    display:inline-flex; align-items:center; gap:8px;
    padding:7px 10px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    color:var(--muted);
    font-size:12px;
  }
  .dot{
    width:7px;height:7px;border-radius:999px;
    background: #20e38a;
    box-shadow: 0 0 0 6px rgba(32,227,138,.12);
  }
  
  /* Hero */
  .hero{padding:54px 0 26px}
  .hero-grid{
    display:grid;
    grid-template-columns: 1.12fr .88fr;
    gap:26px;
    align-items:stretch;
  }
  .h1{
    font-size: clamp(34px, 4.4vw, 56px);
    line-height:1.05;
    margin:14px 0 14px;
    letter-spacing:-.6px;
  }
  .h1 .accent{color:var(--gold2)}
  .sub{
    color:var(--muted);
    font-size: clamp(15px, 1.6vw, 18px);
    line-height:1.5;
    max-width: 58ch;
    margin:0 0 18px;
  }
  .hero-actions{display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-top:18px}
  .meta{
    display:flex; gap:10px; flex-wrap:wrap; margin-top:18px;
    color:var(--muted2); font-size:12px;
  }
  .meta b{color:var(--text); font-weight:650}
  .card{
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
  }
  .hero-right{
    padding:16px;
    position:relative;
    overflow:hidden;
  }
  .hero-right:before{
    content:"";
    position:absolute; inset:-2px;
    background: radial-gradient(500px 280px at 70% 15%, rgba(255,204,60,.16), transparent 55%);
    pointer-events:none;
  }
  .panel-title{
    position:relative;
    display:flex; align-items:center; justify-content:space-between;
    gap:12px;
    padding:12px 12px 10px;
    border-bottom:1px solid rgba(255,255,255,.07);
  }
  .panel-title h3{margin:0; font-size:13px; color:var(--muted); font-weight:650; letter-spacing:.3px; text-transform:uppercase}
  .panel-title .mini{
    color:var(--muted2);
    font-size:12px;
    display:flex; align-items:center; gap:8px;
  }
  .mini .chip{
    border:1px solid rgba(214,162,26,.35);
    background: rgba(214,162,26,.09);
    color: var(--gold2);
    padding:4px 8px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
  }
  .preview{
    position:relative;
    display:grid;
    gap:12px;
    padding:12px;
    grid-template-columns: 1fr;
  }
  .row{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:12px;
  }
  .mini-card{
    border-radius: 16px;
    border:1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    padding:12px;
    min-height:92px;
  }
  .mini-card h4{
    margin:0 0 6px;
    font-size:12px;
    color:var(--muted);
    font-weight:650;
    text-transform:uppercase;
    letter-spacing:.25px;
    display:flex; align-items:center; justify-content:space-between;
    gap:10px;
  }
  .mini-card .val{
    font-size:20px;
    font-weight:800;
    white-space: nowrap;
    letter-spacing:-.3px;
    margin:0 0 6px;
  }
  .mini-card .desc{
    margin:0;
    font-size:12px;
    color:var(--muted2);
    line-height:1.35;
  }
  .spark{
    --spark-strength: 50;
    margin-top:10px;
    height:32px;
    border-radius:10px;
    border: 1px dashed rgba(255, 204, 102, 0.35);
    background:
      linear-gradient(180deg, rgba(214,162,26,.12), transparent),
      repeating-linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.05) 1px, transparent 1px, transparent 10px);
    position:relative;
    overflow:hidden;
  }
  
  .spark::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: calc(var(--spark-strength) / 100);
    background: linear-gradient(
      90deg,
      rgba(214,162,26,.08) 0%,
      rgba(255,204,60,.24) 45%,
      rgba(214,162,26,.08) 100%
    );
    transition: opacity 0.3s ease;
  }

  .spark:after{
    content:"";
    position:absolute; left:-30%; top:-40%;
    width:60%; height:180%;
    background: linear-gradient(90deg, transparent, rgba(255,204,60,.16), transparent);
    transform: rotate(8deg);
    animation: sweep 3.4s ease-in-out infinite;
  }
  @keyframes sweep{
    0%{left:-60%}
    55%{left:110%}
    100%{left:110%}
  }
  .list{
    border-radius: 16px;
    border:1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    overflow:hidden;
  }
  .list-head{
    padding:10px 12px;
    border-bottom:1px solid rgba(255,255,255,.07);
    display:flex; justify-content:space-between; align-items:center;
    color:var(--muted);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.25px;
    font-weight:650;
  }
  .list-row{
    display:grid;
    grid-template-columns: 1fr 110px 110px;
    gap:10px;
    padding:10px 12px;
    border-bottom:1px solid rgba(255,255,255,.06);
    font-size:13px;
    align-items:center;
  }
  .list-row:last-child{border-bottom:none}

  .list-row .chg{
    text-align:right;
    justify-self:end;
    width:110px;
  }
  
  .list-row .tag{
    justify-self:end;
    text-align:center;
    width:110px;
  }
  
  .sym{font-weight:800}
  .chg{color:#20e38a; font-weight:750}
  .chg.down{color:#ff4d4d}
  .tag{
    font-size:12px;
    color:var(--muted2);
    border:1px solid rgba(255,255,255,.10);
    padding:4px 8px;
    border-radius:999px;
    background: rgba(255,255,255,.03);
    white-space:nowrap;
  }
  
  /* Section */
  section{padding:28px 0}
  .section-title{
    display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
    margin-bottom:14px;
  }
  .section-title h2{
    margin:0;
    font-size: clamp(20px, 2.1vw, 28px);
    letter-spacing:-.3px;
  }
  .section-title p{
    margin:0;
    color:var(--muted);
    font-size:14px;
    max-width: 58ch;
  }
  .grid4{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:14px;
  }
  .grid3{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:14px;
  }
  .grid2{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:14px;
  }
  .module{
    padding:16px;
    border-radius: var(--radius2);
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012));
    border:1px solid rgba(214,162,26,.20);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    position:relative;
    overflow:hidden;
    min-height: 132px;
  }
  .module:before{
    content:"";
    position:absolute; inset:-1px;
    background: radial-gradient(500px 240px at 10% 0%, rgba(214,162,26,.12), transparent 55%);
    pointer-events:none;
    opacity:.9;
  }
  .module h3{
    position:relative;
    margin:0 0 6px;
    font-size:18px;
    letter-spacing:-.2px;
    color:var(--gold2);
  }
  .module p{
    position:relative;
    margin:0;
    color:var(--muted);
    font-size:13.5px;
    line-height:1.45;
    max-width: 40ch;
  }
  .module .mini-actions{
    position:relative;
    display:flex; gap:10px; flex-wrap:wrap;
    margin-top:12px;
  }
  
  .feature{
    padding:16px;
    border-radius: var(--radius2);
    border:1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.20);
    min-height: 120px;
  }
  .feature h4{margin:0 0 6px; font-size:15px; letter-spacing:-.2px}
  .feature p{margin:0;color:var(--muted);font-size:13.5px;line-height:1.45}
  .kicker{
    color:var(--gold2);
    font-size:12px;
    letter-spacing:.25px;
    text-transform:uppercase;
    font-weight:800;
    margin-bottom:10px;
    display:flex; align-items:center; gap:10px;
  }
  .kicker .bar{
    width:26px; height:1px; background: rgba(255,204,60,.55);
  }
  
  /* FAQ */
  details{
    border:1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(0,0,0,.20);
    padding:12px 14px;
  }
  details summary{
    cursor:pointer;
    font-weight:700;
    list-style:none;
    display:flex; align-items:center; justify-content:space-between; gap:10px;
  }
  details summary::-webkit-details-marker{display:none}
  details p{margin:10px 0 0; color:var(--muted); font-size:13.5px; line-height:1.5}
  .faq{display:grid; gap:10px}
  
  /* Footer */
  footer{
    padding:26px 0 34px;
    border-top:1px solid rgba(255,255,255,.06);
    color:var(--muted2);
    font-size:13px;
  }
  .foot{
    display:flex; justify-content:space-between; align-items:flex-start; gap:16px;
    flex-wrap:wrap;
  }
  .foot a{color:var(--muted); padding:6px 8px; border-radius:12px}
  .foot a:hover{background:rgba(255,255,255,.05); color:var(--text)}
  
  /* Responsive */
  @media (max-width: 980px){
    .hero-grid{grid-template-columns: 1fr; }
    .row{grid-template-columns: 1fr}
    .grid4{grid-template-columns: repeat(2, 1fr)}
    .grid3{grid-template-columns: 1fr}
    .grid2{grid-template-columns: 1fr}
    .nav-links{display:none}
  }
  @media (max-width: 520px){
    .grid4{grid-template-columns: 1fr}
  }

  .logo-img{
    height:75px;
    width:auto;
    object-fit:contain;
    margin-right:12px;
    filter: drop-shadow(0 0 8px rgba(255,200,60,.45));
  }

  .logo-img{
    transition: transform .25s ease;
  }
  
  .logo-img:hover{
    transform: scale(1.06);
  }