/* Minimalist landing page styles */
:root{
  --bg1: #0f1724; /* deep navy */
  --bg2: #0b1220;
  --card: rgba(255,255,255,0.04);
  --text: #e6eef8;
  --muted: #9fb0c8;
  --accent: #7dd3fc; /* light cyan */
  --glass: rgba(255,255,255,0.03);
  --radius: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(125,211,252,0.04), transparent), linear-gradient(180deg,var(--bg1),var(--bg2));
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.stage{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px 20px;
}

.card{
  max-width:760px;
  width:100%;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:var(--radius);
  padding:48px;
  text-align:center;
  box-shadow:0 8px 30px rgba(2,6,23,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.03);
}

.name{
  margin:0;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing:-0.02em;
  font-weight:700;
}

.tag{
  margin:8px 0 18px 0;
  color:var(--accent);
  font-weight:600;
}

.bio{
  margin:0 auto 22px auto;
  max-width:56ch;
  color:var(--muted);
  line-height:1.5;
}

.actions{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.btn{
  display:inline-block;
  padding:12px 18px;
  background:linear-gradient(90deg, rgba(125,211,252,0.12), rgba(125,211,252,0.06));
  color:var(--text);
  border-radius:10px;
  text-decoration:none;
  border:1px solid rgba(125,211,252,0.08);
  font-weight:600;
}

.socials{display:flex;gap:12px}
.icon{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:10px;color:var(--muted);background:var(--glass);text-decoration:none;border:1px solid rgba(255,255,255,0.02)}
.icon:hover{color:var(--accent);transform:translateY(-3px)}

.small{margin-top:12px;color:var(--muted);font-size:13px}

code{background:rgba(255,255,255,0.02);padding:2px 6px;border-radius:6px;color:var(--muted);font-size:13px}

/* responsive tweaks */
@media (max-width:520px){
  .card{padding:28px}
  .bio{font-size:15px}
}
