:root{
      --bg0:#050814;
      --bg1:#061B2E;
      --bg2:#061035;

      --glass: rgba(255,255,255,.07);
      --glass2: rgba(255,255,255,.10);
      --stroke: rgba(255,255,255,.14);

      --text: rgba(255,255,255,.92);
      --muted: rgba(255,255,255,.68);

      --accent: #18A6FF;
      --accent2:#6D7BFF;

      --shadow: 0 30px 80px rgba(0,0,0,.55);
      --radius: 22px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      color: var(--text);
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      background:
        radial-gradient(1200px 700px at 20% 15%, rgba(24,166,255,.25), transparent 55%),
        radial-gradient(900px 600px at 85% 20%, rgba(109,123,255,.18), transparent 55%),
        radial-gradient(900px 700px at 70% 90%, rgba(24,166,255,.14), transparent 60%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 55%, var(--bg2));
      overflow:hidden;
    }

    /* background noise + grid */
    .bg-grid{
      position:absolute; inset:-2px;
      background-image:
        linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 64px 64px;
      opacity:.22;
      mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,.95), transparent 70%);
      pointer-events:none;
    }

    .bg-noise{
      position:absolute; inset:0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
      opacity:.08;
      pointer-events:none;
      mix-blend-mode: overlay;
    }

    .wrap{
      height:100%;

      padding: 28px 16px;
    }

    .shell{
      width:min(980px, 100%);
      border-radius: calc(var(--radius) + 6px);
      background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
      overflow:hidden;
    }

    .top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
      padding: 20px 22px;
      background: linear-gradient(90deg, rgba(255,255,255,.06), transparent);
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .brand{
      display:flex;
      gap: 14px;
      align-items:center;
      min-width:0;
    }

    .logo{
      width: 150px; 
    }

    .logo img{
      width:100%;
      height:100%;
      object-fit:contain;
      padding: 9px;
      filter: drop-shadow(0 10px 16px rgba(0,0,0,.25));
    }

    .brand-text{
      min-width:0;
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .brand-text .name{
      font-weight: 800;
      letter-spacing: .4px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      font-size: 14px;
    }
    .brand-text .tag{
      color: var(--muted);
      font-size: 12px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .status{
      display:flex;
      align-items:center;
      gap:10px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.86);
      font-size: 12px;
      white-space:nowrap;
    }
    .pulse{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle, var(--accent), rgba(24,166,255,.25));
      box-shadow: 0 0 20px rgba(24,166,255,.40);
      animation: pulse 1.7s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{ transform:scale(1); opacity:1;}
      50%{ transform:scale(1.35); opacity:.72;}
    }

    .content{
      padding: 26px 22px 22px;
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
    }

    .hero{
      padding: 18px;
    }

    .hero h1{
      margin: 0 0 12px;
      font-size: clamp(26px, 3.6vw, 40px);
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    .hero h1 .grad{
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip:text;
      background-clip:text;
      color: transparent;
    }
    .hero p{
      margin: 0 0 18px;
      color: var(--muted);
      line-height: 1.6;
      font-size: 14px;
      max-width: 62ch;
    }

    .chips{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top: 10px;
    }
    .chip{
      display:flex;
      align-items:center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.82);
      font-size: 12px;
    }
    .chip .dot{
      width: 8px; height: 8px; border-radius: 999px;
      background: rgba(255,255,255,.22);
      border: 1px solid rgba(255,255,255,.22);
    }
    .chip.on .dot{
      background: radial-gradient(circle, var(--accent), rgba(24,166,255,.22));
      border-color: rgba(24,166,255,.40);
      box-shadow: 0 0 14px rgba(24,166,255,.35);
    }

    .panel{
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: 0 0 0 1px rgba(0,0,0,.16) inset;
      display:flex;
      flex-direction:column;
      gap: 12px;
      justify-content:space-between;
      min-height: 100%;
    }

    .panel h2{
      margin:0;
      font-size: 18px;
      letter-spacing: -0.01em;
    }
    .panel p{
      margin:0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .cta{
      margin-top: 10px;
      display:flex;
      flex-direction:column;
      gap: 10px;
    }

    .btn{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 12px 14px;
      border-radius: 999px;
      text-decoration:none;
      font-weight: 700;
      letter-spacing: .2px;
      border: 1px solid rgba(255,255,255,.14);
      transition: transform .12s ease, filter .12s ease, background .12s ease;
      user-select:none;
    }
    .btn:active{ transform: translateY(1px); }

    .btn-primary{
      color: rgba(255,255,255,.92);
      background: linear-gradient(90deg, rgba(24,166,255,.95), rgba(109,123,255,.80));
      box-shadow: 0 18px 40px rgba(24,166,255,.18);
      border-color: rgba(255,255,255,.10);
    }
    .btn-primary:hover{ filter: brightness(1.06); }

    .btn-ghost{
      color: rgba(255,255,255,.86);
      background: rgba(255,255,255,.06);
    }
    .btn-ghost:hover{ background: rgba(255,255,255,.08); }

    .btn svg{ width:18px; height:18px; opacity:.95; }

    .bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap: 12px;
      flex-wrap:wrap;
      padding: 16px 22px;
      border-top: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      color: rgba(255,255,255,.58);
      font-size: 16px;
    }
    .bottom a{
      color: rgba(255,255,255,.78);
      text-decoration:none;
      border-bottom: 1px dashed rgba(255,255,255,.25);
    }
    .bottom a:hover{ border-bottom-color: rgba(255,255,255,.55); }

    .powered{
      position:absolute;
      left:0; right:0;
      bottom: 18px;
      display:flex;
      justify-content:center;
      pointer-events:none;
      color: rgba(255,255,255,.45);
      font-size: 12px;
      letter-spacing: .2px;
    }

    @media (max-width: 900px){
      body{ overflow:auto; }
      .wrap{ align-items:flex-start; padding-top: 22px; padding-bottom: 0px; }
      .content{ grid-template-columns: 1fr; }
      .powered{ position:relative; bottom:auto; margin-top: 14px; }
    }

    @media (min-width: 992px) {
      .logo {
        width: 100%;
      }
      .wrap {
         display:flex;
      align-items:center;
      justify-content:center;
      }
    }