:root{
  --bg:#07080b;
  --bg2:#0b0d12;
  --txt:#e9edf5;
  --muted:rgba(233,237,245,.65);
  --line:rgba(255,255,255,.10);
  --glass:rgba(255,255,255,.06);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--txt);
  background: radial-gradient(1200px 700px at 30% -10%, #101526 0%, var(--bg) 55%);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
.wrap{width:min(var(--max), calc(100% - 40px)); margin:0 auto}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;}
.muted{color:var(--muted)}
.tiny{font-size:12px; line-height:1.35}

#snow{
  position:fixed; inset:0;
  width:100%; height:100%;
  z-index:0;
  pointer-events:none;
  opacity:.55;
}

.grain{
  position:fixed; inset:0;
  z-index:1;
  pointer-events:none;
  background-image: url("./assets/grain.png");
  background-size: 260px 260px;
  opacity:.10;
  mix-blend-mode: overlay;
}
@media (max-width: 700px){
  .grain{opacity:.06}
}

/* NAV */
.nav{
  position:fixed; top:0; left:0; right:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(10,12,18,.65), rgba(10,12,18,.20));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
  padding:14px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__dot{
  width:10px;height:10px;border-radius:999px;
  background: #cfd6ff;
  box-shadow: 0 0 24px rgba(207,214,255,.55);
}
.brand__name{font-weight:800; letter-spacing:.2px}

.nav__links{
  display:flex; gap:18px;
  color:rgba(233,237,245,.75);
  font-weight:600;
  font-size:14px;
}
.nav__links a{opacity:.9}
.nav__links a:hover{opacity:1}
.nav__btn{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--txt);
  padding:10px 12px;
  border-radius: 999px;
  font-weight:700;
  cursor:pointer;
}
.nav__btn:hover{background: rgba(255,255,255,.10)}
@media (max-width: 720px){
  .nav__links{display:none}
}

/* HERO */
.hero{
  position:relative;
  min-height: 100vh;
  display:grid;
  place-items:center;
  padding-top: 84px;
  z-index:2;
}
.hero__bg{
  position:absolute; inset:0;
  z-index:0;
}
.hero__banner{
  max-height: 100vh;

  width:100%; height:100%;
  object-fit:contain;
  background: rgba(7,8,11,.25);

  filter: contrast(1.05) saturate(.95);
  transform: scale(1.02);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(7,8,11,.25), rgba(7,8,11,.88)),
    radial-gradient(900px 520px at 35% 20%, rgba(120,150,255,.18), rgba(0,0,0,0));
}
.hero__content{
  position:relative;
  width:min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  z-index:2;
  padding: 40px 0 60px;
}
.hero__tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  font-weight:700;
  font-size: 13px;
  color: rgba(233,237,245,.80);
}
.hero__title{
  margin: 18px 0 0;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -1.6px;
  text-shadow: 0 18px 80px rgba(0,0,0,.65);
}
.hero__bio{
  margin: 10px 0 0;
  font-size: 18px;
  color: rgba(233,237,245,.78);
  max-width: 52ch;
}

.hero__actions{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight:800;
  letter-spacing:.2px;
  border: 1px solid rgba(255,255,255,.16);
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  background: rgba(207,214,255,.14);
}
.btn--primary:hover{
  background: rgba(207,214,255,.22);
  border-color: rgba(207,214,255,.35);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.10);
}

.hero__card{
  margin-top: 26px;
  display:flex;
  gap:14px;
  align-items:center;
  width:min(560px, 100%);
  padding: 14px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,12,18,.50);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero__wolf{
  width: 86px; height: 86px;
  object-fit:contain;
  background: rgba(7,8,11,.25);

  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  filter: contrast(1.05);
}
.hero__cardText .mono{font-weight:800}
.hero__cardText .mono.muted{font-weight:700}

.hero__scroll{
  margin-top: 28px;
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(233,237,245,.65);
}
.hero__scroll span{
  width: 44px;
  height: 1px;
  background: rgba(233,237,245,.35);
  position: relative;
  overflow:hidden;
}
.hero__scroll span::after{
  content:"";
  position:absolute; top:0; left:-44px;
  width:44px; height:1px;
  background: rgba(233,237,245,.9);
  animation: scan 1.5s ease-in-out infinite;
}
@keyframes scan{
  0%{transform: translateX(0)}
  100%{transform: translateX(88px)}
}

/* SECTION */
.section{
  position:relative;
  z-index:2;
  padding: 74px 0;
}
.section--dark{
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(255,255,255,.03), rgba(0,0,0,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
}

.panel{
  padding: 22px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.panel h2{margin:0 0 10px; font-size: 26px}
.panel p{margin:0; line-height:1.6; color: rgba(233,237,245,.78)}
.panel--media{padding: 0; overflow:hidden}

.quote{
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,12,18,.45);
}
.quote__line{font-weight:800}
.quote__line.muted{font-weight:700}

.media{
  position:relative;
  height: 100%;
  min-height: 260px;
}
.media img{
  width:100%; height:100%;
  object-fit:contain;
  background: rgba(7,8,11,.25);

  filter: contrast(1.05) saturate(.95);
  transform: scale(1.02);
}
.media__label{
  position:absolute;
  left: 14px; bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,12,18,.55);
  backdrop-filter: blur(10px);
  font-weight:800;
}

/* TOKEN */
.token{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 900px){
  .token{grid-template-columns:1fr}
}
.token h2{margin:0 0 10px; font-size: 34px}
.stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
@media (max-width: 720px){
  .stats{grid-template-columns:1fr}
}
.stat{
  padding: 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.stat__k{font-size:12px; color: rgba(233,237,245,.65); font-weight:700}
.stat__v{margin-top: 6px; font-weight:900; letter-spacing:.2px}

.ca{
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,12,18,.55);
  backdrop-filter: blur(10px);
}
.ca__label{font-weight:900; margin-bottom: 10px}
.ca code{
  display:block;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-size: 14px;
}
.ca__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 12px;
}

/* Poster */
.poster{
  height:100%;
  min-height: 360px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 460px at 40% 15%, rgba(140,165,255,.16), rgba(0,0,0,0)),
    rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
}
.poster::after{
  content:"";
  position:absolute; inset:-60px;
  background: conic-gradient(from 220deg, rgba(255,255,255,.08), rgba(0,0,0,0), rgba(255,255,255,.06));
  filter: blur(18px);
  opacity:.55;
  animation: swirl 8s linear infinite;
}
@keyframes swirl{
  0%{transform: rotate(0deg)}
  100%{transform: rotate(360deg)}
}
.poster > *{position:relative; z-index:2}

.poster__top{font-weight:900; letter-spacing: 2px; opacity:.85}
.poster__mid{
  display:grid;
  place-items:center;
  gap:14px;
  padding: 30px 0;
}
.mono.big{font-size: 46px; font-weight: 900; letter-spacing: 2px}
.pulse{
  width: 14px; height: 14px; border-radius: 999px;
  background: #cfd6ff;
  box-shadow: 0 0 0 rgba(207,214,255,.0);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse{
  0%{box-shadow: 0 0 0 0 rgba(207,214,255,.55)}
  100%{box-shadow: 0 0 0 18px rgba(207,214,255,0)}
}

/* LINKS */
.linksHead{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 16px;
}
.linksHead h2{margin:0; font-size: 30px}
.links{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media (max-width: 720px){
  .links{grid-template-columns:1fr}
}
.linkCard{
  padding: 18px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
  transition: transform .12s ease, background .12s ease;
}
.linkCard:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
}
.linkCard__k{font-weight:900; margin-bottom: 6px}
.linkCard__v{color: rgba(233,237,245,.72); font-weight:800}

.footer{
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

/* TOAST */
.toast{
  position:fixed;
  left:50%;
  bottom:22px;
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(10,12,18,.70);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  color: rgba(233,237,245,.90);
  font-weight:800;
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index:80;
}
.toast.show{
  opacity:1;
  transform: translateX(-50%) translateY(-2px);
}


@media (max-width: 720px){
  .hero{padding-top: 76px}
  .hero__content{padding: 28px 0 46px}
  .hero__tag{font-size:12px}
  .hero__bio{font-size:16px}
  .hero__card{width:100%}
  .hero__wolf{width:70px; height:70px}
}


/* RUNNING STRIP */
.runningStrip{
  margin-top: 18px;
  width: min(720px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  overflow:hidden;
  background: rgba(10,12,18,.55);
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
}
.runningStrip img{
  width:100%;
  height: 180px;
  object-fit: cover;
  filter: contrast(1.06) saturate(.95);
  transform: scale(1.02);
}
@media (max-width: 720px){
  .runningStrip img{height: 150px}
}

/* HOWL SECTION */
.section--howl{
  padding: 64px 0;
}
.howl{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
}
@media (max-width: 900px){
  .howl{grid-template-columns:1fr}
}
.howl__media{
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
}
.howl__media img{
  width:100%;
  height: 320px;
  object-fit: cover;
  filter: contrast(1.05);
}
@media (max-width: 720px){
  .howl__media img{height: 260px}
}
.howl__text h2{margin: 6px 0 8px; font-size: 34px}
.pillRow{display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px}
.pill{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 800;
  color: rgba(233,237,245,.86);
}
