:root{
  --bg:#000000;
  --fg:#FFFFFF;
  --hairline:rgba(255,255,255,.22);
  --hairline-strong:rgba(255,255,255,.42);
  --shadow:rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:Inter,Helvetica,Arial,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

::selection{background:var(--fg);color:var(--bg)}

.hero{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:clamp(28px,5vw,64px) 18px;
  overflow:hidden;
}

.stack{
  width:min(980px,100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:clamp(18px,2.6vw,28px);
  opacity:0;
  transform:translateY(10px);
  animation:fadeIn .9s ease-out forwards;
}

.heading{display:flex;flex-direction:column;gap:10px}

.title{
  margin:0;
  letter-spacing:.42em;
  text-indent:.42em;
  font-weight:600;
  line-height:1;
  font-size:clamp(46px,8vw,96px);
}

.copy{
  margin:0;
  width:min(840px,100%);
  font-weight:300;
  line-height:1.7;
  font-size:clamp(14px,1.9vw,17px);
  color:rgba(255,255,255,.92);
}

.art{
  margin:0;
  width:min(920px,100%);
  border:1px solid var(--hairline);
  border-radius:18px;
  overflow:hidden;
  background:#000;
  box-shadow:0 18px 60px var(--shadow);
  transform:translateY(6px);
  opacity:0;
  animation:fadeInUp 1s ease-out .08s forwards;
}

.art img{
  display:block;
  width:100%;
  height:auto;
}

.cta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:6px;
  opacity:0;
  animation:fadeIn .9s ease-out .18s forwards;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--hairline-strong);
  color:var(--fg);
  text-decoration:none;
  font-weight:500;
  letter-spacing:.02em;
  background:transparent;
  transition:transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow:0 0 0 0 rgba(255,255,255,0);
}
.btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.58);
  box-shadow:0 10px 30px rgba(255,255,255,.06);
}
.btn:active{transform:translateY(0px)}
.btn:focus-visible{
  outline:2px solid var(--fg);
  outline-offset:3px;
}

.profile{
  width:42px;
  height:42px;
  border-radius:50%;
  display:inline-grid;
  place-items:center;
  border:1px solid var(--hairline-strong);
  overflow:hidden;
  text-decoration:none;
  transition:transform .18s ease, border-color .18s ease, background-color .18s ease;
  background:rgba(255,255,255,.02);
}
.profile:hover{
  transform:translateY(-1px) scale(1.02);
  border-color:rgba(255,255,255,.62);
  background:rgba(255,255,255,.06);
}
.profile:active{transform:translateY(0px) scale(1)}
.profile:focus-visible{
  outline:2px solid var(--fg);
  outline-offset:3px;
}

.profile img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
  filter:grayscale(1) contrast(1.15) brightness(1.02);
}

@media (max-width:480px){
  .title{letter-spacing:.34em;text-indent:.34em}
  .cta{gap:12px}
  .btn{padding:12px 16px}
  .profile{width:40px;height:40px}
}

@keyframes fadeIn{
  to{opacity:1;transform:none}
}

@keyframes fadeInUp{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:translateY(0px)}
}
