:root {
      --bg: #07111f;
      --bg-soft: #0b1728;
      --panel: rgba(255,255,255,.065);
      --panel-strong: #101f33;
      --text: #f7f9fc;
      --muted: #aab8ca;
      --primary: #7c5cff;
      --primary-2: #21d4b4;
      --line: rgba(255,255,255,.12);
      --shadow: 0 30px 90px rgba(0,0,0,.36);
      --radius: 24px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 4%, rgba(124,92,255,.22), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(33,212,180,.12), transparent 28%),
        var(--bg);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    img { max-width: 100%; display: block; }
    .container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(7,17,31,.78);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .nav-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -.03em;
    }

    .brand-logo {
      display: block;
      width: 230px;
      height: auto;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: var(--muted);
      font-size: .95rem;
    }

    .nav-links a:hover { color: var(--text); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 750;
      transition: .22s ease;
      cursor: pointer;
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--primary), #9b4dff);
      box-shadow: 0 14px 34px rgba(124,92,255,.28);
    }

    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(124,92,255,.38); }
    .btn-secondary { border-color: var(--line); background: rgba(255,255,255,.04); }
    .btn-secondary:hover { background: rgba(255,255,255,.08); }

    .hero {
      position: relative;
      padding: 108px 0 84px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.04fr .96fr;
      align-items: center;
      gap: 68px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 13px;
      border: 1px solid rgba(124,92,255,.32);
      border-radius: 999px;
      background: rgba(124,92,255,.10);
      color: #d9d2ff;
      font-size: .88rem;
      font-weight: 700;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary-2);
      box-shadow: 0 0 0 6px rgba(33,212,180,.12);
    }

    h1 {
      margin: 24px 0 22px;
      max-width: 760px;
      font-size: clamp(3rem, 6vw, 5.7rem);
      line-height: .98;
      letter-spacing: -.065em;
    }

    .gradient-text {
      background: linear-gradient(90deg, #a994ff, #5ee7d0);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-copy {
      max-width: 670px;
      margin: 0 0 32px;
      color: var(--muted);
      font-size: 1.16rem;
    }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

    .microcopy {
      margin-top: 18px;
      color: #8293a8;
      font-size: .9rem;
    }

    .product-shell {
      position: relative;
      padding: 14px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 30px;
      background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
      box-shadow: var(--shadow);
      transform: perspective(1300px) rotateY(-5deg) rotateX(2deg);
    }

    .product-shell::before {
      content: "";
      position: absolute;
      inset: -50px;
      z-index: -1;
      background: radial-gradient(circle, rgba(124,92,255,.20), transparent 65%);
      filter: blur(18px);
    }

    .dashboard {
      overflow: hidden;
      border-radius: 20px;
      background: #0c1828;
      border: 1px solid rgba(255,255,255,.08);
    }

    .dashboard-top {
      height: 48px;
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 0 18px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .window-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.25); }

    .dashboard-body {
      display: grid;
      grid-template-columns: 115px 1fr;
      min-height: 445px;
    }

    .sidebar {
      padding: 20px 12px;
      border-right: 1px solid rgba(255,255,255,.07);
      background: #091423;
    }

    .side-item {
      height: 10px;
      margin: 0 0 18px;
      border-radius: 99px;
      background: rgba(255,255,255,.08);
    }

    .side-item.active { background: linear-gradient(90deg, var(--primary), transparent); }

    .workspace { padding: 22px; }

    .workspace-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }

    .fake-title { width: 42%; height: 18px; border-radius: 99px; background: rgba(255,255,255,.14); }
    .fake-button { width: 92px; height: 32px; border-radius: 10px; background: var(--primary); }

    .stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
    .stat { padding: 15px; border-radius: 14px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.06); }
    .stat strong { display: block; font-size: 1.45rem; }
    .stat span { color: #8495aa; font-size: .72rem; }

    .article-card {
      display: grid;
      grid-template-columns: 76px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px;
      margin-top: 10px;
      border-radius: 14px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.055);
    }

    .thumb { height: 55px; border-radius: 10px; background: linear-gradient(135deg, rgba(124,92,255,.75), rgba(33,212,180,.42)); }
    .lines div { height: 8px; border-radius: 99px; background: rgba(255,255,255,.11); margin: 7px 0; }
    .lines div:last-child { width: 62%; }
    .status { padding: 5px 9px; border-radius: 99px; color: #7cebd7; background: rgba(33,212,180,.10); font-size: .68rem; }

    .trust-strip {
      padding: 20px 0;
      border-top: 1px solid rgba(255,255,255,.07);
      border-bottom: 1px solid rgba(255,255,255,.07);
      background: rgba(255,255,255,.025);
    }

    .trust-inner {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 18px 42px;
      color: #93a3b6;
      font-size: .92rem;
    }

    section { padding: 100px 0; }
    .section-head { max-width: 740px; margin-bottom: 48px; }
    .section-kicker { color: #8d76ff; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: .77rem; }

    h2 {
      margin: 12px 0 18px;
      font-size: clamp(2.2rem, 4vw, 3.7rem);
      line-height: 1.06;
      letter-spacing: -.05em;
    }

    .section-head p { color: var(--muted); font-size: 1.08rem; }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .card {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    }

    .card-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      border-radius: 14px;
      background: rgba(124,92,255,.14);
      font-size: 1.25rem;
    }

    .card h3 { margin: 0 0 10px; font-size: 1.18rem; }
    .card p { margin: 0; color: var(--muted); font-size: .96rem; }

    .workflow {
      background: linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      counter-reset: step;
    }

    .step {
      position: relative;
      padding: 28px;
      border-top: 1px solid rgba(255,255,255,.15);
    }

    .step::before {
      counter-increment: step;
      content: "0" counter(step);
      display: block;
      margin-bottom: 24px;
      color: #8d76ff;
      font-size: .85rem;
      font-weight: 900;
      letter-spacing: .12em;
    }

    .step h3 { margin: 0 0 9px; }
    .step p { margin: 0; color: var(--muted); }

    .split {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 60px;
      align-items: center;
    }

    .benefit-panel {
      padding: 34px;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: var(--panel);
    }

    .benefit-row {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .benefit-row:last-child { border-bottom: 0; }
    .check { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: rgba(33,212,180,.12); color: #71ead3; font-weight: 900; }
    .benefit-row h3 { margin: 0 0 5px; font-size: 1.03rem; }
    .benefit-row p { margin: 0; color: var(--muted); font-size: .94rem; }

    .quote {
      padding: 34px;
      border-left: 3px solid var(--primary);
      border-radius: 0 22px 22px 0;
      background: rgba(124,92,255,.07);
      color: #dce4ef;
      font-size: 1.18rem;
    }

    .faq { max-width: 900px; }
    details { border-bottom: 1px solid var(--line); }
    summary {
      list-style: none;
      padding: 22px 0;
      cursor: pointer;
      font-weight: 750;
      font-size: 1.06rem;
    }
    summary::-webkit-details-marker { display: none; }
    details p { margin: 0 0 22px; color: var(--muted); max-width: 760px; }

    .cta {
      padding-top: 40px;
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      padding: 70px;
      border-radius: 34px;
      text-align: center;
      background:
        radial-gradient(circle at 10% 20%, rgba(33,212,180,.18), transparent 32%),
        radial-gradient(circle at 90% 20%, rgba(124,92,255,.34), transparent 40%),
        #111f34;
      border: 1px solid rgba(255,255,255,.12);
    }

    .cta-box h2 { max-width: 780px; margin-inline: auto; }
    .cta-box p { max-width: 660px; margin: 0 auto 28px; color: var(--muted); font-size: 1.08rem; }

    footer { padding: 38px 0 50px; color: #7f90a4; font-size: .9rem; }
    .footer-inner { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
    .footer-links { display: flex; gap: 22px; flex-wrap: wrap; }

    @media (max-width: 980px) {
      .nav-links { display: none; }
      .hero { padding-top: 76px; }
      .hero-grid, .split { grid-template-columns: 1fr; }
      .product-shell { transform: none; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 640px) {
      .container { width: min(calc(100% - 28px), var(--max)); }
      .brand-logo { width: 186px; }
      .nav .btn { display: none; }
      .hero { padding: 64px 0 60px; }
      h1 { font-size: 3rem; }
      section { padding: 72px 0; }
      .features-grid, .steps { grid-template-columns: 1fr; }
      .dashboard-body { grid-template-columns: 78px 1fr; }
      .stat-grid { grid-template-columns: 1fr; }
      .article-card { grid-template-columns: 56px 1fr; }
      .status { display: none; }
      .cta-box { padding: 48px 22px; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; }
    }
  

    .nav-actions { display:flex; align-items:center; gap:12px; }
    .language-switcher { position:relative; }
    .language-switcher select {
      min-height: 44px; padding: 0 36px 0 14px; border-radius: 12px;
      color: var(--text); background: rgba(255,255,255,.055); border:1px solid var(--line);
      cursor:pointer; appearance:none;
    }
    .language-switcher::after { content:"⌄"; position:absolute; right:13px; top:9px; color:var(--muted); pointer-events:none; }
    .language-switcher select:focus-visible, a:focus-visible, summary:focus-visible { outline:3px solid rgba(33,212,180,.42); outline-offset:3px; }

    footer { padding: 72px 0 28px; border-top:1px solid rgba(255,255,255,.08); background:rgba(3,10,19,.54); }
    .footer-grid { display:grid; grid-template-columns:1.45fr repeat(3, minmax(130px, .72fr)); gap:42px; padding-bottom:44px; }
    .footer-brand p { max-width:430px; margin:18px 0 22px; color:var(--muted); }
    .footer-contact { display:inline-flex; align-items:center; gap:9px; color:#dbe4ef; font-weight:700; }
    .footer-column h2 { margin:0 0 17px; font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; color:#dce5f0; }
    .footer-column a { display:block; width:max-content; max-width:100%; margin:11px 0; color:#91a2b7; }
    .footer-column a:hover { color:var(--text); }
    .footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap; padding-top:25px; border-top:1px solid rgba(255,255,255,.08); }
    .footer-legal { display:flex; gap:20px; flex-wrap:wrap; }
    .footer-note { color:#70839a; }
    @media (max-width: 980px) { .footer-grid { grid-template-columns:1.4fr 1fr 1fr; } .footer-brand { grid-column:1/-1; } }
    @media (max-width: 640px) {
      .nav-actions .btn { display:none; }
      .language-switcher select { min-height:40px; }
      .footer-grid { grid-template-columns:1fr 1fr; gap:30px 24px; }
      .footer-brand { grid-column:1/-1; }
      .footer-bottom { align-items:flex-start; flex-direction:column; }
    }
