*{box-sizing:border-box}
:root{
  --bg:#08080b;
  --panel:rgba(255,255,255,.055);
  --panel-hover:rgba(255,255,255,.09);
  --border:rgba(255,255,255,.10);
  --text:#f6f6f8;
  --muted:#a7a7b2;
  --accent:#a86cff;
  --accent2:#ff7a3d;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  font-family:Inter,system-ui,sans-serif;
  background:
    radial-gradient(circle at 15% 15%,rgba(168,108,255,.10),transparent 34%),
    radial-gradient(circle at 85% 80%,rgba(255,122,61,.08),transparent 30%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:linear-gradient(to bottom,rgba(255,255,255,.018),transparent 30%);
}
.noise{
  position:fixed; inset:0; opacity:.025; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}
.orb{
  position:fixed; width:280px; height:280px; border-radius:50%;
  filter:blur(90px); opacity:.13; pointer-events:none;
}
.orb-a{background:var(--accent); top:-80px; left:-70px}
.orb-b{background:var(--accent2); right:-100px; bottom:-80px}
.shell{
  width:min(680px,calc(100% - 28px));
  margin:0 auto;
  padding:42px 0 26px;
}
.hero{text-align:center}
.eyebrow{
  display:inline-flex;
  padding:7px 10px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  color:#c8c8d1;
  margin-bottom:22px;
}
.avatar-wrap{
  width:118px;height:118px;margin:0 auto 18px;position:relative;
}
.avatar{
  width:100%;height:100%;object-fit:cover;border-radius:28px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 18px 50px rgba(0,0,0,.42);
}
.status-dot{
  position:absolute;right:2px;bottom:6px;width:15px;height:15px;border-radius:50%;
  background:#31d17c;border:3px solid var(--bg);
}
h1{
  margin:0;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(44px,10vw,72px);
  line-height:.9;
  letter-spacing:-.05em;
}
.tagline{
  margin:14px 0 0;color:#d7d7dd;font-weight:600;font-size:14px;
}
.tagline span{color:#666674;padding:0 5px}
.bio{
  color:var(--muted);
  max-width:520px;
  margin:13px auto 26px;
  line-height:1.7;
  font-size:14px;
}
.links{display:grid;gap:10px}
.link-card{
  display:flex;
  align-items:center;
  gap:13px;
  text-decoration:none;
  color:var(--text);
  padding:13px 14px;
  border:1px solid var(--border);
  border-radius:18px;
  background:var(--panel);
  backdrop-filter:blur(14px);
  transition:.2s ease;
  text-align:left;
}
.link-card:hover{
  transform:translateY(-2px);
  background:var(--panel-hover);
  border-color:rgba(255,255,255,.17);
}
.icon{
  width:42px;height:42px;border-radius:13px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.075);
  font-size:19px;font-weight:800;
}
.copy{display:flex;flex-direction:column;gap:3px;flex:1}
.copy strong{font-size:14px}
.copy small{font-size:12px;color:var(--muted)}
.arrow{font-size:17px;color:#898994}
.release{
  margin-top:16px;
  padding:18px;
  border-radius:22px;
  border:1px solid var(--border);
  background:
    linear-gradient(135deg,rgba(168,108,255,.10),rgba(255,122,61,.06)),
    rgba(255,255,255,.035);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  text-align:left;
}
.release-label{
  font-size:10px;font-weight:800;letter-spacing:.16em;color:#aaaabd;
}
.release h2{
  margin:6px 0 2px;font-family:"Space Grotesk";font-size:24px;
}
.release p{margin:0;color:var(--muted);font-size:13px}
.listen-btn{
  white-space:nowrap;
  color:#0b0b0f;
  background:#fff;
  padding:11px 15px;
  border-radius:13px;
  text-decoration:none;
  font-size:12px;
  font-weight:800;
}
footer{
  display:flex;justify-content:center;gap:8px;
  color:#62626f;font-size:11px;margin-top:22px;
}
@media (max-width:520px){
  .shell{padding-top:28px}
  .release{align-items:flex-start;flex-direction:column}
  .listen-btn{width:100%;text-align:center}
}
@media (prefers-reduced-motion:no-preference){
  .hero{animation:fadeUp .7s ease both}
  .link-card{animation:fadeUp .55s ease both}
  .link-card:nth-child(1){animation-delay:.06s}
  .link-card:nth-child(2){animation-delay:.11s}
  .link-card:nth-child(3){animation-delay:.16s}
  .link-card:nth-child(4){animation-delay:.21s}
  .link-card:nth-child(5){animation-delay:.26s}
  .link-card:nth-child(6){animation-delay:.31s}
  @keyframes fadeUp{
    from{opacity:0;transform:translateY(10px)}
    to{opacity:1;transform:none}
  }
}

.contact {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
}

.contact-label {
  display: block;
  margin-bottom: 7px;
  color: #aaaabd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact h2 {
  margin: 0 0 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.contact p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.email-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;

  color: var(--text);
  text-decoration: none;

  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  border-radius: 15px;

  transition: 0.2s ease;
}

.email-btn div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.email-btn small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.email-btn strong {
  font-size: 14px;
  font-weight: 600;
}

.email-btn .arrow {
  color: #898994;
  font-size: 18px;
}

.email-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.17);
}