:root{
  --bg1:#06080f;
  --bg2:#0b0f19;
  --card:#0f1629cc;
  --border:#ffffff14;
  --text:#eaf0ff;
  --muted:#b7c2e1;
  --accent:#7aa7ff;
  --shadow: 0 20px 70px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; }
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(1100px 700px at 20% 20%, #1a2a5a 0%, transparent 55%),
    radial-gradient(1000px 600px at 80% 30%, #2a1a5a 0%, transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  display:flex;
  align-items:center;
  justify-content:center;
}

.wrap{
  width:min(920px, 92vw);
  padding: 40px 0;
}

.card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 42px 34px;
  box-shadow: var(--shadow);
  text-align:center;
}

.logo{
  width:min(260px, 60vw);
  height:auto;
  margin: 0 auto 22px;
  display:block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.35));
}

h1{
  margin: 6px 0 10px;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: .3px;
}

.lead{
  margin: 0 auto;
  max-width: 48ch;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.55;
  color: var(--muted);
}

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

.meta .hint{
  margin:0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.contact a{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(122,167,255,.25);
  background: rgba(122,167,255,.10);
  color: var(--text);
  text-decoration:none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.contact a:hover{
  transform: translateY(-1px);
  background: rgba(122,167,255,.16);
  border-color: rgba(122,167,255,.38);
}

.footer{
  margin-top: 26px;
  font-size: 13px;
  color: rgba(234,240,255,.72);
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}
.footer a{
  color: rgba(234,240,255,.82);
  text-decoration:none;
  border-bottom: 1px solid rgba(234,240,255,.25);
}
.footer a:hover{
  border-bottom-color: rgba(234,240,255,.55);
}
.dot{ opacity:.5; }
