:root{
  --bg: #0b0f19;
  --panel: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
}

*{ 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;
  background: radial-gradient(900px 600px at 20% 10%, rgba(255,255,255,.10), rgba(255,255,255,0) 60%),
              radial-gradient(900px 600px at 80% 90%, rgba(255,255,255,.08), rgba(255,255,255,0) 60%),
              var(--bg);
  color: var(--text);
}

.wrap{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding: 24px 16px;
  gap: 16px;
}

.top{
  width:min(720px, 100%);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.mark{
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 6px rgba(255,255,255,.06);
}
.name{
  font-weight: 720;
  letter-spacing: .2px;
  opacity:.95;
}

.lang{
  display:flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}
.langBtn{
  border:0;
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 700;
  letter-spacing:.3px;
}
.langBtn.isActive{
  background: rgba(255,255,255,.12);
  color: var(--text);
}

.card{
  width:min(720px, 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  padding: 26px 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  text-align:left;
}

.title{
  margin:0 0 10px;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 820;
}

.subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.contact{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.sep{ opacity:.35; }
.email{
  color: rgba(255,255,255,.86);
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.email:hover{
  border-bottom-color: rgba(255,255,255,.55);
}

.foot{
  width:min(720px, 100%);
  display:flex;
  justify-content:flex-start;
  color: rgba(255,255,255,.52);
  font-size: 13px;
  padding: 0 2px;
}
