 :root {
      --bg: #0a0d14;
      --bg-elev: #121826;
      --bg-card: #161d2c;
      --navy: #083f88;
      --gold: #f6e700;
      --gold-soft: rgba(246, 231, 0, 0.12);
      --purple: #7b4dff;
      --text: #f4f6fb;
      --muted: #9aa3b8;
      --line: rgba(255,255,255,.08);
      --ok: #3dd68c;
      --bad: #ff6b7a;
      --radius: 16px;
      --shadow: 0 18px 50px rgba(0,0,0,.45);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Inter, system-ui, sans-serif;
      background:
        radial-gradient(1200px 600px at 80% -10%, rgba(8,63,136,.35), transparent 50%),
        radial-gradient(900px 500px at -10% 20%, rgba(123,77,255,.18), transparent 45%),
        var(--bg);
      color: var(--text);
      min-height: 100vh;
      line-height: 1.55;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }
    button { font-family: inherit; cursor: pointer; border: 0; }
    .wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
    header {
      position: sticky; top: 0; z-index: 50;
      background: rgba(10,13,20,.82);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
    }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
    .logo { display: flex; align-items: center; gap: 10px; font-weight: 800; }
    .mark {
      width: 36px; height: 36px; border-radius: 8px;
      background: linear-gradient(160deg, #0b2a5a, #083f88);
      color: var(--gold); display: grid; place-items: center; font-size: 22px;
      box-shadow: inset 0 0 0 1px rgba(246,231,0,.35);
    }
    .logo span b { color: var(--gold); }
    .menu { display: flex; gap: 20px; font-weight: 600; font-size: 14px; color: var(--muted); }
    .menu a:hover { color: var(--text); }
    .actions { display: flex; gap: 10px; align-items: center; }
    .btn, .cta-btn {
      height: 44px; padding: 0 18px; border-radius: 10px; font-weight: 700; font-size: 14px;
      display: inline-flex; align-items: center; justify-content: center; transition: .2s ease;
    }
    .btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
    .cta-btn, .btn-gold {
      background: linear-gradient(180deg, #ffe94a, var(--gold));
      color: #1a1600; box-shadow: 0 8px 20px rgba(246,231,0,.22);
    }
    .cta-btn:hover, .btn-gold:hover { filter: brightness(1.05); transform: translateY(-1px); }
    .cta-btn-wrap { margin: 18px 0 8px; }
    .burger { display: none; width: 42px; height: 42px; border-radius: 10px; background: var(--bg-card); color: var(--text); }
    .mobile-panel {
      display: none; position: fixed; inset: 72px 12px auto; z-index: 60;
      background: var(--bg-elev); border: 1px solid var(--line); border-radius: 16px;
      padding: 16px; box-shadow: var(--shadow);
    }
    .mobile-panel a { display: block; padding: 12px 8px; font-weight: 650; border-bottom: 1px solid var(--line); }
    .article { padding: 28px 0 48px; }
    .hero {
      background: linear-gradient(180deg, rgba(246,231,0,.08), transparent 42%), var(--bg-card);
      border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
      box-shadow: var(--shadow); margin-bottom: 28px;
    }
    .hero-container { padding: 22px 24px 0; }
    .hero-container h1 { font-size: clamp(28px, 5vw, 44px); line-height: 1.1; }
    .hero-container h1::after {
      content: ""; display: block; width: 72px; height: 3px; margin-top: 12px;
      background: var(--gold); border-radius: 99px;
    }
    .hero-body { padding: 20px 24px 28px; }
    .hero-body__inner { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: center; }
    .hero-body__left {
      background: #0c111b; border: 1px solid var(--line); border-radius: 18px;
      padding: 18px; text-align: center;
    }
    .brand-mark {
      width: 160px; height: 160px; margin: 0 auto 8px; border-radius: 28px;
      background: linear-gradient(160deg, #0b2a5a, #083f88); color: var(--gold);
      display: grid; place-items: center; font-size: 84px; font-weight: 800;
      box-shadow: inset 0 0 0 1px rgba(246,231,0,.35), 0 16px 40px rgba(0,0,0,.35);
    }
    .hero-body__right p { color: var(--muted); margin-bottom: 14px; font-size: 16px; }
    .info-section h2 { font-size: clamp(22px, 3vw, 28px); margin: 32px 0 14px; }
    .info-section h3 { font-size: 18px; margin: 24px 0 12px; color: var(--gold); }
    .info-section p { color: var(--muted); margin-bottom: 14px; max-width: 82ch; }
    .table-wrapper {
      overflow-x: auto; border: 1px solid var(--line); border-radius: 14px;
      margin: 16px 0 22px; background: var(--bg-elev);
    }
    table { width: 100%; border-collapse: collapse; min-width: 640px; }
    th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }
    th { color: var(--gold); background: rgba(246,231,0,.06); font-weight: 700; }
    td:first-child { color: var(--text); font-weight: 600; width: 34%; }
    tr:last-child td { border-bottom: 0; }
    .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 18px 0 8px; }
    .pc-box { border-radius: 16px; padding: 18px 18px 10px; border: 1px solid var(--line); background: var(--bg-elev); }
    .pc-box h3 { margin: 0 0 10px; color: var(--text); }
    .pros { box-shadow: inset 3px 0 0 var(--ok); }
    .cons { box-shadow: inset 3px 0 0 var(--bad); }
    .content-list { padding: 0 0 8px 18px; color: var(--muted); }
    .content-list li { margin: 8px 0; }
    .lc-app-block { margin: 16px 0 8px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
    .lc-app-block__inner { display: grid; grid-template-columns: 140px 1fr; gap: 18px; align-items: center; }
    .app-badge {
      width: 120px; height: 120px; border-radius: 24px;
      background: linear-gradient(160deg, #0b2a5a, #083f88); color: var(--gold);
      display: grid; place-items: center; font-size: 56px; font-weight: 800;
    }
    .lc-app-block__name { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
    .lc-app-block__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; list-style: none; margin-bottom: 14px; }
    .lc-app-block__stats li { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 12px; padding: 10px 8px; text-align: center; }
    .lc-app-block__stats span { display: block; font-weight: 800; color: var(--gold); }
    .lc-app-block__stats small { color: var(--muted); font-size: 11px; }
    .lc-app-block__buttons { display: flex; gap: 10px; flex-wrap: wrap; }
    .store-btn {
      height: 42px; min-width: 135px; padding: 0 14px; border-radius: 10px;
      display: inline-flex; align-items: center; justify-content: center;
      background: #000; border: 1px solid var(--line); font-size: 12px; font-weight: 700;
    }
    .faq-item { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; margin: 10px 0; }
    .faq-q { font-weight: 700; margin-bottom: 6px; }
    .faq-a { color: var(--muted); font-size: 15px; }
    footer { border-top: 1px solid var(--line); padding: 28px 0 36px; color: var(--muted); font-size: 13px; }
    .footer-inner { display: grid; gap: 16px; }
    .footer-logo { font-weight: 800; color: var(--text); font-size: 18px; margin-bottom: 8px; }
    .footer-legal { max-width: 90ch; }
    .footer-bottom { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
    @media (max-width: 900px) {
      .hero-body__inner, .pros-cons, .lc-app-block__inner { grid-template-columns: 1fr; }
      .menu { display: none; }
      .burger { display: inline-flex; align-items: center; justify-content: center; }
      .lc-app-block__stats { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .nav { height: 64px; }
      .actions .btn-ghost { display: none; }
      .hero-body, .hero-container { padding-left: 16px; padding-right: 16px; }
    }