    :root{
      --bg: #0b1020;
      --card: rgba(255,255,255,0.06);
      --card2: rgba(255,255,255,0.08);
      --text: rgba(255,255,255,0.92);
      --muted: rgba(255,255,255,0.68);
      --line: rgba(255,255,255,0.12);
      --accent: #8b5cf6;
      --accent2:#22c55e;
      --shadow: 0 18px 60px rgba(0,0,0,0.45);
      --radius: 18px;
      --radius2: 26px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    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 500px at 15% 10%, rgba(139,92,246,0.35), transparent 60%),
        radial-gradient(700px 450px at 85% 20%, rgba(34,197,94,0.20), transparent 55%),
        radial-gradient(900px 700px at 50% 100%, rgba(56,189,248,0.18), transparent 60%),
        linear-gradient(180deg, #070a14 0%, #0b1020 45%, #070a14 100%);
      min-height:100vh;
    }

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

    /* NAV */
    .nav{
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      background: rgba(7,10,20,0.55);
      border-bottom: 1px solid var(--line);
    }
    .navin{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 14px 0;
      gap: 16px;
    }
    .brand{
      display:flex; align-items:center; gap:10px;
      font-weight: 800;
      letter-spacing: 0.2px;
    }
    .logoDot{
      width: 14px; height: 14px; border-radius: 99px;
      background: linear-gradient(135deg, var(--accent), #60a5fa);
      box-shadow: 0 0 0 6px rgba(139,92,246,0.18);
    }
    .navlinks{
      display:flex; gap: 18px; align-items:center;
      color: var(--muted);
      font-weight: 600;
      font-size: 14px;
    }
    .navlinks a{
      padding: 10px 10px;
      border-radius: 12px;
    }
    .navlinks a:hover{
      background: rgba(255,255,255,0.06);
      color: var(--text);
    }
    .navcta{
      display:flex; gap:10px; align-items:center;
    }
    .btn{
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.06);
      color: var(--text);
      padding: 10px 14px;
      border-radius: 14px;
      font-weight: 800;
      font-size: 14px;
      cursor:pointer;
      transition: transform .08s ease, background .15s ease, border-color .15s ease;
      display:inline-flex; align-items:center; gap:10px;
      white-space: nowrap;
    }
    .btn:hover{ background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); }
    .btn:active{ transform: translateY(1px); }
    .btnPrimary{
      border: 1px solid rgba(139,92,246,0.55);
      background: linear-gradient(135deg, rgba(139,92,246,0.92), rgba(96,165,250,0.85));
      box-shadow: 0 18px 40px rgba(139,92,246,0.18);
    }
    .btnPrimary:hover{ filter: brightness(1.03); }

    /* NEW: Temp Mail CTA button style (most prominent) */
    .btnHot{
      border: 1px solid rgba(34,197,94,0.55);
      background: linear-gradient(135deg, rgba(34,197,94,0.92), rgba(56,189,248,0.70));
      box-shadow: 0 18px 40px rgba(34,197,94,0.14);
    }

    .hamburger{ display:none; }

    .mobilePanel{
      display: none;
      border-top: 1px solid var(--line);
    }

    /* Language selector */
    .langWrap{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .langSelect{
      appearance:none;
      -webkit-appearance:none;
      -moz-appearance:none;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.92);
      padding: 10px 12px;
      border-radius: 14px;
      font-weight: 800;
      font-size: 14px;
      outline: none;
      cursor:pointer;
    }
    .langSelect option{
      color: #0b1020;
    }

    /* SEO-friendly link list (visible but minimal) */
    .langLinks{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
    }
    .langLinks a{
      font-size: 12px;
      color: rgba(255,255,255,0.70);
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
      padding: 7px 10px;
      border-radius: 999px;
    }
    .langLinks a:hover{
      color: rgba(255,255,255,0.92);
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.16);
    }

    @media (max-width: 860px){
      .navlinks{ display:none; }
      .hamburger{ display:inline-flex; }
      .mobilePanel{ display:none; border-top: 1px solid var(--line); }
      .mobilePanel.show{ display:block; }
      .mobileLinks{
        display:flex;
        flex-direction:column;
        padding: 10px 0 14px;
        gap: 6px;
      }
      .mobileLinks a{
        color: var(--muted);
        padding: 12px 10px;
        border-radius: 14px;
        border: 1px solid transparent;
      }
      .mobileLinks a:hover{
        background: rgba(255,255,255,0.06);
        border-color: rgba(255,255,255,0.10);
        color: var(--text);
      }

      .langWrap{ width:100%; justify-content:flex-start; }
      .langSelect{ width: 100%; max-width: 320px; }
    }

    /* HERO */
    .hero{ padding: 56px 0 18px; }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 18px;
      align-items: stretch;
    }
    @media (max-width: 980px){ .heroGrid{ grid-template-columns: 1fr; } }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.05);
      color: var(--muted);
      font-weight: 700;
      font-size: 13px;
      width: fit-content;
    }
    .pulse{
      width: 9px; height: 9px; border-radius: 99px;
      background: var(--accent2);
      box-shadow: 0 0 0 6px rgba(34,197,94,0.18);
    }

    /* NEW: top-most hero CTA block */
    .heroTopCtas{
      border: 1px solid rgba(255,255,255,0.14);
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
      border-radius: 22px;
      padding: 14px;
      box-shadow: var(--shadow);
      margin-bottom: 16px;
    }
    .heroTopRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      flex-wrap:wrap;
    }
    .heroTopLeft{
      min-width: 240px;
    }
    .heroTopLeft b{
      display:block;
      font-size: 14px;
      letter-spacing: 0.2px;
    }
    .heroTopLeft span{
      display:block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
      max-width: 80ch;
    }
    .heroTopBtns{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
      align-items:center;
    }

    /* NEW: app store badges */
    .storeBadges{
      display:flex;
      gap: 12px;
      flex-wrap:wrap;
      align-items:center;
      margin-top: 12px;
    }
    .storeBadges a{
      display:inline-flex;
      align-items:center;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(0,0,0,0.10);
      border-radius: 14px;
      padding: 8px 10px;
      transition: background .15s ease, border-color .15s ease, transform .08s ease;
    }
    .storeBadges a:hover{
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.20);
    }
    .storeBadges a:active{ transform: translateY(1px); }
    .storeBadges img{
      height: 42px;
      width: auto;
      display:block;
    }
    @media (max-width: 520px){
      .storeBadges img{ height: 40px; }
    }

    h1{
      margin: 14px 0 10px;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.05;
      letter-spacing: -0.5px;
    }
    .lead{
      font-size: 16px;
      line-height: 1.65;
      color: var(--muted);
      margin: 0 0 18px;
      max-width: 62ch;
    }
    .heroActions{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 14px; }
    .heroMeta{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
      margin-top: 18px;
      color: var(--muted);
      font-weight: 700;
      font-size: 13px;
    }
    .pill{
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.04);
    }

    /* CARDS */
    .card{
      border: 1px solid rgba(255,255,255,0.12);
      background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
    }
    .cardPad{ padding: 18px; }
    .statGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    @media (max-width: 520px){ .statGrid{ grid-template-columns: 1fr; } }
    .stat{
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
      border-radius: 18px;
      padding: 14px;
    }
    .stat .k{
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.25px;
      text-transform: uppercase;
    }
    .stat .v{
      margin-top: 8px;
      font-size: 14px;
      line-height: 1.55;
      color: rgba(255,255,255,0.86);
      font-weight: 650;
    }

    /* SECTIONS */
    section{ padding: 42px 0; }
    .secTitle{
      font-size: 22px;
      letter-spacing: -0.2px;
      margin: 0 0 10px;
    }
    .secLead{
      margin: 0 0 18px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 78ch;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    @media (max-width: 980px){ .grid3{ grid-template-columns: 1fr; } }
    .mini{
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.04);
      border-radius: var(--radius);
      padding: 16px;
    }
    .mini h3{
      margin: 0 0 8px;
      font-size: 16px;
      letter-spacing: -0.15px;
    }
    .mini p{
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 14px;
    }

    .steps{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 14px;
    }
    @media (max-width: 980px){ .steps{ grid-template-columns: 1fr; } }
    .step{
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.04);
      border-radius: var(--radius);
      padding: 18px;
    }
    .stepNum{
      width: 34px; height: 34px; border-radius: 12px;
      display:flex; align-items:center; justify-content:center;
      font-weight: 900;
      background: rgba(139,92,246,0.18);
      border: 1px solid rgba(139,92,246,0.35);
      margin-bottom: 10px;
    }
    .step h3{ margin: 0 0 8px; font-size: 16px; }
    .step p{ margin:0; color: var(--muted); line-height: 1.7; font-size: 14px; }

    /* FAQ */
    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    @media (max-width: 980px){ .faq{ grid-template-columns: 1fr; } }
    details{
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.04);
      border-radius: var(--radius);
      padding: 14px 16px;
    }
    summary{
      cursor:pointer;
      font-weight: 850;
      color: rgba(255,255,255,0.92);
      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;
    }

    /* CTA */
    .cta{ padding: 46px 0 60px; }
    .ctaCard{
      border: 1px solid rgba(255,255,255,0.14);
      background:
        radial-gradient(800px 400px at 20% 20%, rgba(139,92,246,0.35), transparent 60%),
        radial-gradient(700px 380px at 80% 30%, rgba(34,197,94,0.20), transparent 55%),
        rgba(255,255,255,0.04);
      border-radius: 28px;
      padding: 22px;
      box-shadow: var(--shadow);
    }
    .ctaTitle{
      font-size: 26px;
      margin: 0 0 10px;
      letter-spacing: -0.25px;
    }
    .ctaDesc{
      margin: 0 0 16px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 78ch;
    }
    .foot{
      padding: 26px 0 32px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
    }
    .foot a{ color: rgba(255,255,255,0.78); }
    .foot a:hover{ color: rgba(255,255,255,0.92); }

    .divider{
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
      margin: 18px 0;
    }

    .footLang{
      margin-top: 10px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
    }
    .footLang a{
      font-size: 12px;
      color: rgba(255,255,255,0.70);
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
      padding: 7px 10px;
      border-radius: 999px;
    }
    .footLang a:hover{
      color: rgba(255,255,255,0.92);
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.16);
    }