:root{
  --bg0: #070A12;
  --bg1: #0A0F1E;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --glass: rgba(255,255,255,.08);
  --glass2: rgba(255,255,255,.12);
  --stroke: rgba(255,255,255,.14);
  --shadow: 0 20px 70px rgba(0,0,0,.55);
  --r: 22px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 900px at 20% 10%, #0e1a3a 0%, transparent 60%),
              radial-gradient(1000px 700px at 80% 30%, #2b0e3a 0%, transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
}

/* Background decor */
.bg{
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.orb{
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .55;
  mix-blend-mode: screen;
}

.o1{ left: -180px; top: -220px; background: radial-gradient(circle at 30% 30%, #62a7ff, transparent 60%); }
.o2{ right: -220px; top: 60px; background: radial-gradient(circle at 40% 40%, #ff4fd8, transparent 62%); }
.o3{ left: 30%; bottom: -260px; background: radial-gradient(circle at 40% 40%, #4bffcc, transparent 62%); }

.grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: .07;
  mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 68%);
}

/* Layout */
.wrap{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 40px 18px;
}

.card{
  width: min(760px, 100%);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 26px 26px 22px;
  position: relative;
  overflow: hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 220px at 20% 0%, rgba(98,167,255,.18), transparent 60%),
              radial-gradient(500px 220px at 80% 10%, rgba(255,79,216,.14), transparent 60%);
  pointer-events:none;
}

.top{
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  position: relative;
}

.logo .dot{
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 99px;
  right: 8px;
  top: 8px;
  background: linear-gradient(135deg, #62a7ff, #ff4fd8);
  box-shadow: 0 0 0 3px rgba(255,255,255,.10);
}

.logo .mark{
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 18px;
}

.brand{ flex: 1; min-width: 0; }
.name{
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 16px;
}
.tag{
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pill{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
}

.headline{
  margin: 20px 0 10px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.muted{ color: rgba(255,255,255,.72); font-weight: 600; }

.lead{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select: none;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.09);
}

.btn:active{ transform: translateY(0px); }

.primary{
  background: linear-gradient(135deg, rgba(98,167,255,.22), rgba(255,79,216,.18));
  border-color: rgba(255,255,255,.26);
}

.ghost{
  background: rgba(255,255,255,.04);
}

.tiny{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  position: relative;
  z-index: 1;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.sep{ opacity: .35; }

#status.flash{
  color: rgba(255,255,255,.92);
  text-shadow: 0 0 14px rgba(98,167,255,.22);
}

.footer{
  margin-top: 16px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  text-align: center;
}

.hint strong{ color: rgba(255,255,255,.86); }
