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(1200px 700px at 12% 8%, rgba(124,92,255,.35), transparent 55%),
        radial-gradient(900px 620px at 88% 16%, rgba(46,229,157,.22), transparent 50%),
        radial-gradient(900px 700px at 46% 110%, rgba(255,122,80,.18), transparent 60%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
      overflow-x:hidden;
    }

    a{ color: inherit; text-decoration:none; }
    .container{ width:min(1120px, 92vw); margin:0 auto; }

    .nav{
      position: sticky; top:0; z-index:10;
      backdrop-filter: blur(14px);
      background: rgba(7,8,20,.55);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner{
      display:flex; align-items:center; justify-content:space-between;
      padding: 14px 0;
      gap: 14px;
    }
    .brand{ display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px; }
    .logo{
      width:34px; height:34px; border-radius: 10px;
      box-shadow: 0 14px 40px rgba(124,92,255,.25);
    }
    .links{ display:flex; gap: 10px; align-items:center; flex-wrap: wrap; }
    .links a{
      padding: 10px 12px; border-radius: 12px;
      color: var(--muted); transition: .2s ease; white-space: nowrap;
    }
    .links a:hover{ background: rgba(255,255,255,.06); color: var(--text); }

    .cta{ display:flex; align-items:center; gap:10px; }

    .btn{
      border: 1px solid var(--line);
      background: rgba(255,255,255,.06);
      color: var(--text);
      padding: 10px 14px;
      border-radius: 14px;
      cursor:pointer;
      user-select:none;
      transition: transform .12s ease, background .2s ease, border .2s ease;
      display:inline-flex; align-items:center; gap:10px;
      box-shadow: 0 10px 28px rgba(0,0,0,.2);
      white-space: nowrap;
    }
    .btn:hover{ background: rgba(255,255,255,.10); transform: translateY(-1px); }
    .btn.primary{
      border-color: rgba(124,92,255,.45);
      background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(46,229,157,.75));
      color: #FFFFFF;
      font-weight: 800;
    }
    .btn.primary:hover{ transform: translateY(-2px); }

    .hamburger{ display:none; }
    .mobile{ display:none; border-top: 1px solid var(--line); padding: 10px 0 16px; }
    .mobile a{ display:block; padding: 12px 12px; border-radius: 14px; color: var(--muted); }
    .mobile a:hover{ background: rgba(255,255,255,.06); color: var(--text); }

    header{ padding: 56px 0 18px; }
    .hero{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 16px;
      align-items: stretch;
    }
    .card{
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
      border-radius: var(--r);
      box-shadow: var(--shadow);
      padding: 24px;
      position:relative;
      overflow:hidden;
    }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(124,92,255,.14);
      border:1px solid rgba(124,92,255,.28);
      color: rgba(255,255,255,.82);
      font-size: 13px;
    }
    .dot{
      width: 8px; height:8px; border-radius:999px;
      background: var(--accent2);
      box-shadow: 0 0 0 4px rgba(46,229,157,.14);
    }
    h1{
      margin: 14px 0 10px;
      font-size: clamp(30px, 4vw, 50px);
      line-height: 1.03;
      letter-spacing: -0.8px;
    }
    .lead{ margin:0; color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 60ch; }
    .hero-actions{ display:flex; gap:12px; flex-wrap: wrap; margin-top: 18px; align-items:center; }
    .meta{ display:flex; gap: 14px; flex-wrap: wrap; margin-top: 14px; color: rgba(255,255,255,.60); font-size: 13px; }
    .meta span{ display:inline-flex; gap:8px; align-items:center; }
    .icon{ width:18px; height:18px; opacity: .95; }

    .blob{
      position:absolute;
      width: 460px; height: 460px;
      border-radius: 999px;
      filter: blur(18px);
      opacity: .55;
      pointer-events:none;
      background:
        radial-gradient(circle at 30% 30%, rgba(124,92,255,.48), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(46,229,157,.35), transparent 60%);
    }
    .blob.one{ top:-190px; left:-170px; }
    .blob.two{ bottom:-230px; right:-240px; opacity:.45; }

    .phone{
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.10);
      border-radius: 28px;
      padding: 14px;
      position:relative;
      overflow:hidden;
    }
    .phone-top{
      display:flex; justify-content:space-between; align-items:center;
      padding: 8px 10px 12px;
      color: rgba(255,255,255,.70);
      font-size: 12px;
    }
    .phone-screen{
      border-radius: 22px;
      border:1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(600px 300px at 10% 0%, rgba(124,92,255,.22), transparent 60%),
        radial-gradient(420px 260px at 100% 40%, rgba(46,229,157,.18), transparent 65%),
        rgba(7,8,20,.55);
      padding: 14px;
      min-height: 360px;
    }
    .mini-row{
      display:flex; gap:10px; align-items:center; justify-content:space-between;
      padding: 10px 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.10);
      margin-bottom: 10px;
    }
    .mini-row b{ font-size: 13px; }
    .mini-row small{ color: var(--muted); display:block; margin-top: 2px; }
    .chip{
      font-size: 12px; padding: 7px 10px; border-radius: 999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.82);
      white-space: nowrap;
    }
    .chip.good{ border-color: rgba(46,229,157,.35); background: rgba(46,229,157,.12); }
    .chip.warn{ border-color: rgba(255,122,80,.35); background: rgba(255,122,80,.12); }

    section{ padding: 28px 0; }
    .section-title{
      display:flex; justify-content:space-between; align-items:flex-end;
      gap: 16px; margin: 6px 0 14px; flex-wrap: wrap;
    }
    .section-title h2{ margin:0; font-size: 22px; letter-spacing: -0.2px; }
    .section-title p{ margin:0; color: var(--muted); font-size: 14px; max-width: 70ch; line-height: 1.6; }

    .grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .feature{
      border: 1px solid var(--line);
      background: rgba(255,255,255,.05);
      border-radius: var(--r);
      padding: 18px;
      box-shadow: 0 12px 34px rgba(0,0,0,.22);
      transition: transform .15s ease, border .2s ease, background .2s ease;
      position:relative; overflow:hidden;
    }
    .feature:hover{ transform: translateY(-2px); border-color: rgba(124,92,255,.30); background: rgba(255,255,255,.07); }
    .badge{
      width: 40px; height:40px; border-radius: 14px;
      display:grid; place-items:center;
      border:1px solid rgba(124,92,255,.28);
      background: rgba(124,92,255,.14);
      margin-bottom: 10px;
      font-size: 18px;
    }
    .feature h3{ margin: 0 0 8px; font-size: 16px; }
    .feature p{ margin:0; color: var(--muted); line-height: 1.65; font-size: 14px; }

    /* Screenshots */
    .shots-wrap{
      border:1px solid var(--line);
      background: rgba(255,255,255,.05);
      border-radius: var(--r);
      box-shadow: var(--shadow);
      padding: 18px;
      overflow:hidden;
    }
    .shots-head{
      display:flex; align-items:center; justify-content:space-between;
      gap: 12px; flex-wrap: wrap;
      margin-bottom: 12px;
    }
    .shots-controls{ display:flex; gap:10px; align-items:center; }
    .dots{ display:flex; gap:8px; align-items:center; }
    .dotbtn{
      width: 10px; height:10px; border-radius:999px;
      border:1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.10);
      cursor:pointer; opacity:.7;
    }
    .dotbtn.active{ opacity:1; border-color: rgba(46,229,157,.45); background: rgba(46,229,157,.25); }

    .shot-rail{
      display:flex; gap: 14px; overflow:auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 8px;
    }
    .shot-rail::-webkit-scrollbar{ height: 10px; }
    .shot-rail::-webkit-scrollbar-thumb{
      background: rgba(255,255,255,.14);
      border-radius: 999px;
      border: 2px solid rgba(0,0,0,0);
      background-clip: padding-box;
    }

    .shot{
      flex: 0 0 auto;
      width: min(260px, 70vw);
      scroll-snap-align: start;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(7,8,20,.55);
      padding: 12px;
    }
    .shot-inner{
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      overflow:hidden;
      background:
        radial-gradient(520px 260px at 10% 0%, rgba(124,92,255,.22), transparent 60%),
        radial-gradient(420px 240px at 100% 60%, rgba(46,229,157,.18), transparent 65%),
        rgba(7,8,20,.55);
      min-height: 420px;
      display:flex; align-items:center; justify-content:center;
      position: relative;
    }
    .shot-label{
      position:absolute; inset: 12px 12px auto 12px;
      display:flex; justify-content:space-between; align-items:center;
      gap:10px; font-size: 12px; color: rgba(255,255,255,.75);
    }
    .shot-title{
      padding: 6px 10px; border-radius: 999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      white-space: nowrap;
    }
    .shot-svg{
      width: 88%; max-width: 220px;
      opacity: .95;
      filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
    }

    /* Reviews */
    .reviews{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
    .review{
      border:1px solid var(--line);
      background: rgba(255,255,255,.05);
      border-radius: var(--r);
      padding: 18px;
      box-shadow: 0 12px 34px rgba(0,0,0,.20);
    }
    .review-top{
      display:flex; justify-content:space-between; align-items:flex-start;
      gap: 10px; margin-bottom: 10px;
    }
    .who{ display:flex; gap:10px; align-items:center; }
    .avatar{
      width: 40px; height:40px; border-radius: 16px;
      background: rgba(124,92,255,.18);
      border:1px solid rgba(124,92,255,.28);
      display:grid; place-items:center;
      font-weight: 900;
      color: rgba(255,255,255,.86);
    }
    .who b{ display:block; font-size: 14px; }
    .who small{ display:block; color: var(--muted); font-size: 12px; margin-top: 2px; }
    .stars{ color: rgba(255,255,255,.85); letter-spacing: 1px; }
    .review p{ margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

    /* Steps */
    .steps{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
    .step{
      border:1px solid var(--line);
      background: rgba(255,255,255,.05);
      border-radius: var(--r);
      padding: 18px;
      box-shadow: 0 12px 34px rgba(0,0,0,.22);
    }
    .step h3{ margin: 0 0 8px; font-size: 16px; }
    .step p{ margin:0; color: var(--muted); line-height: 1.65; font-size: 14px; }
    .num{
      width: 34px; height:34px; border-radius: 14px;
      display:grid; place-items:center;
      background: rgba(46,229,157,.12);
      border:1px solid rgba(46,229,157,.28);
      color: rgba(255,255,255,.88);
      font-weight: 800;
      margin-bottom: 10px;
    }

    /* FAQ */
    .faq{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items:start; }
    details{
      border:1px solid var(--line);
      background: rgba(255,255,255,.05);
      border-radius: var(--r);
      padding: 14px 16px;
      box-shadow: 0 12px 34px rgba(0,0,0,.20);
    }
    summary{ cursor:pointer; font-weight: 700; color: rgba(255,255,255,.86); list-style:none; }
    summary::-webkit-details-marker{ display:none; }
    details p{ margin: 10px 0 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

    /* Contact */
    .contact{ display:grid; grid-template-columns: 1.05fr .95fr; gap: 14px; align-items:start; }
    form{
      border:1px solid var(--line);
      background: rgba(255,255,255,.05);
      border-radius: var(--r);
      padding: 18px;
      box-shadow: var(--shadow);
    }
    label{ display:block; margin: 10px 0 6px; font-size: 13px; color: rgba(255,255,255,.78); }
    input, textarea{
      width:100%;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(7,8,20,.35);
      color: var(--text);
      padding: 12px;
      outline:none;
      transition: border .2s ease;
    }
    input:focus, textarea:focus{ border-color: rgba(124,92,255,.55); }
    textarea{ min-height: 120px; resize: vertical; }

    .note{
      border:1px solid var(--line);
      background: rgba(255,255,255,.05);
      border-radius: var(--r);
      padding: 18px;
      box-shadow: var(--shadow);
      color: var(--muted);
      line-height: 1.7;
      font-size: 14px;
    }
    .note b{ color: rgba(255,255,255,.86); }

    /* Legal */
    .legal{
      border:1px solid var(--line);
      background: rgba(255,255,255,.05);
      border-radius: var(--r);
      padding: 18px;
      box-shadow: var(--shadow);
      color: var(--muted);
      line-height: 1.75;
      font-size: 14px;
    }
    .legal h3{ margin: 0 0 10px; color: rgba(255,255,255,.88); font-size: 16px; }
    .legal ul{ margin: 10px 0 0; padding-left: 18px; }
    .legal li{ margin: 6px 0; }

    footer{ padding: 30px 0 42px; color: rgba(255,255,255,.55); font-size: 13px; }
    .footer-inner{
      border-top: 1px solid var(--line);
      padding-top: 16px;
      display:flex; justify-content:space-between; gap: 12px;
      align-items:center; flex-wrap: wrap;
    }

    .toast{
      position: fixed;
      inset: auto 18px 18px auto;
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(20,26,46,.85);
      border: 1px solid rgba(255,255,255,.14);
      color: rgba(255,255,255,.88);
      box-shadow: var(--shadow);
      opacity:0;
      transform: translateY(8px);
      pointer-events:none;
      transition: .25s ease;
      max-width: min(380px, 92vw);
    }
    .toast.show{ opacity:1; transform: translateY(0); }

    @media (max-width: 980px){
      .hero{ grid-template-columns: 1fr; }
      .grid{ grid-template-columns: 1fr; }
      .steps{ grid-template-columns: 1fr; }
      .faq{ grid-template-columns: 1fr; }
      .contact{ grid-template-columns: 1fr; }
      .reviews{ grid-template-columns: 1fr; }
      .links{ display:none; }
      .hamburger{ display:inline-flex; }
      .mobile{ display:block; }
      .mobile[hidden]{ display:none; }
    }