    html { scroll-behavior: smooth; }
    :root {
      --bg: #050910;
      --card: rgba(16, 22, 34, 0.9);
      --accent: #5b8cff;
      --accent-2: #6ef9d6;
      --muted: #9fb2c8;
      --text: #e8edf6;
      --shadow: 0 20px 60px rgba(0,0,0,0.45);
      --radius: 16px;
      --border: 1px solid rgba(255,255,255,0.06);
      --grid-gap: 16px;
      --font: "Inter", "Segoe UI", -apple-system, system-ui, sans-serif;
    }
    * { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(circle at 20% 20%, rgba(91,140,255,0.18), transparent 30%),
              radial-gradient(circle at 80% 10%, rgba(110,249,214,0.22), transparent 34%),
              linear-gradient(135deg, #050910 0%, #0a1220 55%, #050910 100%);
  color: var(--text);
  line-height: 1.6;
  position: relative;
}
    .container {
      max-width: 1220px;
      margin: 0 auto;
      padding: 0 22px 80px;
    }
    header {
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(14px);
      background: rgba(5, 9, 16, 0.82);
      border-bottom: var(--border);
      transition: background 0.2s ease;
    }
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 22px;
      max-width: 1220px;
      margin: 0 auto;
    }
    .menu-toggle {
      display: none;
      width: 38px;
      height: 38px;
      border-radius: 12px;
      border: var(--border);
      background: rgba(255,255,255,0.06);
      color: var(--text);
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: 0.6px;
      font-size: 17px;
    }
.brand .logo-img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  background-image: url("/logo.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      box-shadow: 0 10px 30px rgba(91,140,255,0.35);
      display: grid;
      place-items: center;
      color: #0a0f1d;
      font-weight: 900;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 16px;
      color: var(--muted);
      font-size: 14px;
      flex-wrap: wrap;
    }

    .lang-toggle {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-left: 12px;
    }
    .lang-btn {
      padding: 8px 10px;
      border-radius: 10px;
      border: var(--border);
      background: rgba(255,255,255,0.05);
      color: var(--text);
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .lang-btn.active {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #0a0f1d;
      border-color: rgba(91,140,255,0.4);
      box-shadow: 0 8px 20px rgba(91,140,255,0.35);
    }
    .nav-links a {
      color: inherit;
      text-decoration: none;
      padding: 8px 10px;
      border-radius: 10px;
      transition: all 0.2s ease;
    }
    .nav-links a:hover {
      color: var(--text);
      background: rgba(255,255,255,0.04);
    }
    .nav-links a.active {
      color: #0b1020;
      background: linear-gradient(135deg, rgba(91,140,255,0.28), rgba(110,249,214,0.24));
      border: 1px solid rgba(91,140,255,0.4);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 16px;
      border-radius: 12px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      text-decoration: none;
      font-size: 14px;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #9ec5ff);
      color: #0b1020;
      box-shadow: 0 14px 30px rgba(91,140,255,0.35);
    }
    .btn-outline {
      background: rgba(255,255,255,0.04);
      color: var(--text);
      border: var(--border);
    }
    .btn:hover { transform: translateY(-1px); }
    .hero {
      padding: 60px 0 32px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      right: 10%;
      top: -30px;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle at 50% 50%, rgba(91,140,255,0.25), transparent 60%);
      filter: blur(6px);
      z-index: -1;
    }
    .hero::after {
      content: "";
      position: absolute;
      left: -8%;
      bottom: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle at 50% 50%, rgba(110,249,214,0.22), transparent 60%);
      filter: blur(10px);
      z-index: -1;
    }
    .hero h1 {
      margin: 0 0 10px;
      font-size: clamp(30px, 4vw, 44px);
      letter-spacing: 0.4px;
      line-height: 1.25;
    }
    .hero .lead {
      color: var(--muted);
      max-width: 640px;
      margin: 14px 0 18px;
      font-size: 16px;
    }
    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 10px 0 18px;
    }
    .badge {
      padding: 8px 12px;
      border-radius: 12px;
      background: rgba(255,255,255,0.05);
      border: var(--border);
      font-size: 13px;
      color: var(--text);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .badge .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow: 0 0 0 6px rgba(91,140,255,0.15);
    }
    .panel {
      background: var(--card);
      border-radius: var(--radius);
      border: var(--border);
      padding: 18px 18px 16px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 12px;
      margin-top: 14px;
    }
    .stat {
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.03);
    }
    .stat .value {
      font-size: 20px;
      font-weight: 800;
    }
    .stat .label {
      color: var(--muted);
      font-size: 13px;
    }
    section {
      margin-top: 34px;
    }
    section h2 {
      margin: 0 0 10px;
      font-size: 22px;
      letter-spacing: 0.2px;
    }
    section h2::after {
      content: "";
      display: block;
      width: 66px;
      height: 3px;
      margin-top: 6px;
      border-radius: 99px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
    }
    section .subtitle {
      margin: 0 0 14px;
      color: var(--muted);
      max-width: 740px;
      font-size: 14px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: var(--grid-gap);
    }
    .card {
      background: var(--card);
      padding: 16px 16px 14px;
      border-radius: var(--radius);
      border: 1px solid rgba(91,140,255,0.25);
      box-shadow: 0 12px 28px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
      position: relative;
      overflow: hidden;
    }
    .card h3 {
      margin: 0 0 8px;
      font-size: 17px;
    }
    .card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }
    .tagline {
      color: #b8d5ff;
      font-size: 13px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-weight: 700;
    }
    .chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 12px;
    }
    .chip {
      padding: 7px 10px;
      border-radius: 10px;
      border: var(--border);
      background: rgba(255,255,255,0.03);
      color: var(--muted);
      font-size: 12px;
    }
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 14px;
    }
    .step {
      background: var(--card);
      padding: 14px;
      border-radius: var(--radius);
      border: 1px solid rgba(110,249,214,0.24);
      box-shadow: 0 14px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.03);
    }
    .step .num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      display: grid;
      place-items: center;
      color: #0b1020;
      font-weight: 900;
      margin-bottom: 10px;
    }
    .list {
      list-style: none;
      padding-left: 0;
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 14px;
    }
    .list li { margin-bottom: 6px; }
    .exchanges {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 10px;
    }
    .exchange {
      padding: 12px;
      border-radius: 12px;
      border: 1px solid rgba(91,140,255,0.25);
      background: linear-gradient(135deg, rgba(91,140,255,0.08), rgba(110,249,214,0.06));
      text-align: center;
      font-weight: 700;
    }
    .pill {
      display: inline-block;
      padding: 6px 10px;
      background: rgba(255,255,255,0.05);
      border-radius: 10px;
      color: var(--muted);
      font-size: 12px;
      border: var(--border);
    }
    .pricing {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
    }
    .price-card {
      background: var(--card);
      border: var(--border);
      border-radius: var(--radius);
      padding: 16px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .price-card::before {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: calc(var(--radius) - 2px);
      border: 1px solid rgba(255,255,255,0.04);
      pointer-events: none;
    }
    .price-card .title {
      font-weight: 800;
      font-size: 17px;
      margin: 0 0 4px;
    }
    .price-card .price {
      font-size: 26px;
      font-weight: 900;
      margin: 6px 0 4px;
    }
    .cta {
      text-align: center;
      margin-top: 36px;
      padding: 20px;
      background: linear-gradient(135deg, rgba(91,140,255,0.22), rgba(110,249,214,0.16));
      border-radius: var(--radius);
      border: var(--border);
      box-shadow: var(--shadow);
      position: relative;
    }
    .cta::before {
      content: "";
      position: absolute;
      inset: 6px;
      border-radius: 12px;
      border: 1px dashed rgba(255,255,255,0.08);
    }
    .flare {
      position: absolute;
      filter: blur(40px);
      opacity: 0.7;
      z-index: -1;
    }
    .flare.one { width: 220px; height: 220px; background: rgba(91,140,255,0.3); top: 80px; left: -60px; }
    .flare.two { width: 260px; height: 260px; background: rgba(110,249,214,0.28); bottom: 120px; right: -40px; }
    .links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 12px;
    }
    .link-card {
      background: var(--card);
      border: var(--border);
      border-radius: var(--radius);
      padding: 12px;
      box-shadow: var(--shadow);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }
    .link-card a {
      color: var(--text);
      text-decoration: none;
      font-weight: 700;
    }
    .link-card a:hover { color: var(--accent-2); }
    .pill-muted { background: rgba(255,255,255,0.04); color: var(--muted); }
    .faq {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 12px;
    }
    .faq-item {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 12px 14px;
      cursor: pointer;
      transition: border 0.2s ease;
    }
    .faq-item:hover { border-color: rgba(91,140,255,0.4); }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-weight: 800;
    }
    .faq-answer {
      color: var(--muted);
      font-size: 14px;
      margin: 8px 0 0;
      display: none;
    }
    .faq-item.active .faq-answer { display: block; }
    .footer {
      margin-top: 40px;
      background: rgba(7, 12, 20, 0.9);
      border-top: var(--border);
      padding: 28px 0 36px;
    }
    .footer .footer-inner {
      max-width: 1220px;
      margin: 0 auto;
      padding: 0 22px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }
    .footer .brand {
      font-size: 18px;
    }
    .footer .brand .logo-img {
      width: 32px;
      height: 32px;
    }
    .footer .footer-title {
      font-weight: 800;
      margin: 0 0 8px;
    }
    .footer .footer-links {
      display: grid;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .footer .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
    }
    .footer .footer-links a:hover { color: var(--accent-2); }
    .footer-note {
      grid-column: 1 / -1;
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
    }
    @media (max-width: 760px) {
      nav { padding: 12px 14px; }
      .menu-toggle { display: inline-flex; }
      .nav-links {
        position: absolute;
        right: 14px;
        top: 62px;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(10, 16, 28, 0.95);
        border: var(--border);
        border-radius: 12px;
        padding: 12px;
        gap: 8px;
        box-shadow: var(--shadow);
        display: none;
      }
      .nav-links.open { display: flex; }
      .lang-toggle { margin-left: auto; }
      .hero { padding-top: 40px; }
      .badges { gap: 8px; }
      .grid { grid-template-columns: 1fr; }
      .stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
      .exchanges { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
      .pricing { grid-template-columns: 1fr; }
      .links-grid { grid-template-columns: 1fr; }
      .faq { grid-template-columns: 1fr; }
    }
