:root{
      --bg:#0b1220;
      --card:#101a2e;
      --stroke:rgba(255,255,255,.10);
      --text:rgba(255,255,255,.92);
      --muted:rgba(255,255,255,.70);

      --tg:#2aabee;
      --wa:#25d366;
      --radius:18px;
      --shadow: 0 18px 50px rgba(0,0,0,.35);
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
      background: linear-gradient(160deg, #070b14, var(--bg));
      color: var(--text);
      display:flex;
      align-items:center;
      justify-content:center;
      padding: 22px;
    }

    .wrap{
      width: min(760px, 100%);
      display:grid;
      gap: 16px;
    }

    .card{
      background: rgba(16,26,46,.95);
      border: 1px solid var(--stroke);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: clamp(22px, 4.5vw, 38px);
    }

    .status{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid var(--stroke);
      font-size: 14px;
      color: rgba(255,255,255,.8);
      margin-bottom: 14px;
    }
    .dot{
      width:8px;height:8px;border-radius:50%;
      background:#ffd166;
    }

    h1{
      margin: 0 0 12px;
      font-size: clamp(28px, 4.5vw, 46px);
      letter-spacing: -0.02em;
    }

    p{
      margin: 0 0 10px;
      color: var(--muted);
      font-size: clamp(15px, 1.7vw, 18px);
      line-height: 1.6;
    }

    .buttons{
      display:grid;
      gap: 12px;
      margin-top: 18px;
    }

    .btn{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 15px 18px;
      border-radius: 16px;
      text-decoration:none;
      color:#0b1220;
      font-weight:800;
      font-size: 16px;
      box-shadow: 0 14px 30px rgba(0,0,0,.35);
      transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
    }

    .btn i{
      font-size: 22px;
      line-height: 1;
    }

    .btn:hover{
      transform: translateY(-2px);
      filter: brightness(1.05);
      box-shadow: 0 20px 40px rgba(0,0,0,.4);
    }

    .btn:active{
      transform: translateY(0);
      filter: brightness(.97);
    }

    .btn--tg{
      background: linear-gradient(135deg, var(--tg), #7bd6ff);
    }

    .btn--wa{
      background: linear-gradient(135deg, var(--wa), #7bffbf);
    }

    .small{
      text-align:center;
      font-size: 12.5px;
      color: rgba(255,255,255,.55);
    }

    @media (min-width: 740px){
      .buttons{ grid-template-columns: 1fr 1fr; }
      .small{ text-align:left; }
    }