:root{
  --bg:#050607;
  --bg2:#0a0b0c;
  --card:#0b0c0d;
  --muted:rgba(255,255,255,.62);
  --text:rgba(255,255,255,.92);
  --line:rgba(255,255,255,.12);
  --line2:rgba(255,255,255,.08);
  --accent:rgba(255,255,255,.96);
  --accent2:rgba(255,255,255,.78);
  --shadow: 0 26px 90px rgba(0,0,0,.55);
  --radius: 18px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  position:relative;
  isolation:isolate;
}
a{color:inherit}

.muted{color:var(--muted)}
.accent{color:var(--accent)}

::selection{background: rgba(255,255,255,.14)}

body.gate-open{
  overflow:hidden;
}

.enterGate{
  position:fixed;
  inset:0;
  z-index:120;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.76);
  backdrop-filter: blur(8px);
}
.enterGate[hidden]{display:none}
.enterGate__card{
  width:min(92vw,420px);
  border-radius:20px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.46);
  box-shadow: var(--shadow);
  padding:24px;
  text-align:center;
}
.enterGate__title{
  font-weight:900;
  letter-spacing:.2em;
  font-size:20px;
}
.enterGate__text{
  margin:10px 0 16px;
  color:var(--muted);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(1000px 520px at 12% 0%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(900px 560px at 88% 12%, rgba(255,255,255,.07), transparent 66%),
    linear-gradient(180deg, rgba(0,0,0,.64), rgba(0,0,0,.82)),
    url("assets/bg.png");
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-attachment: fixed, fixed, fixed, fixed;
  filter: grayscale(1) contrast(1.05) brightness(.85);
  opacity:.92;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(transparent, rgba(0,0,0,.52)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.04) 0px,
      rgba(255,255,255,.04) 1px,
      transparent 1px,
      transparent 18px
    );
  opacity:.14;
  pointer-events:none;
}

.topbar{
  position:sticky; top:0; z-index:40;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 22px;
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,.42);
}
.brand{display:flex; gap:10px; align-items:center; text-decoration:none}
.brand__mark{
  width:34px; height:34px; border-radius:12px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  position:relative;
  overflow:hidden;
  display:grid;
  place-items:center;
}
.brand__mark img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.brand__mark::after{content:none}
.brand__mark--fallback::after{
  content:"";
  position:absolute; inset:8px;
  border-radius:8px;
  background: rgba(0,0,0,.86);
  border:1px solid var(--line);
}

.brandWrap{
  display:flex;
  align-items:center;
  gap:14px;
}

.music{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}
.music__btn{
  width:36px;
  height:32px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  cursor:pointer;
  display:grid;
  place-items:center;
  font-family: var(--mono);
  line-height:1;
}
.music__btn:hover{background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.26)}
.music__range{
  width:120px;
  accent-color: rgba(255,255,255,.92);
}
.music__label{
  font-family: var(--mono);
  font-size:11px;
  color: rgba(255,255,255,.72);
  min-width: 88px;
  text-align:right;
}
.brand__text{letter-spacing:.14em; font-weight:800; font-size:14px}
.nav{display:flex; gap:14px; align-items:center}
.nav a{
  text-decoration:none;
  color:rgba(255,255,255,.86);
  padding:10px 12px;
  border-radius:12px;
  transition: all .15s ease;
}
.nav a:hover{background:rgba(255,255,255,.06)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.10);
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn--ghost{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  box-shadow:none;
}

.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.34)}
.btn:active{transform: translateY(0px) scale(.99)}
.btn:focus-visible{outline:2px solid rgba(255,255,255,.28); outline-offset:3px}

.hero{
  padding:48px 22px 10px;
  position:relative;
  overflow:hidden;
}
.hero__grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.hero__copy{
  padding:18px 6px;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  letter-spacing:.06em;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
}

.heroRight{
  display:grid;
  gap:14px;
  align-content:start;
}
.pfpCard{
  display:flex;
  gap:12px;
  align-items:center;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.18));
  box-shadow: 0 22px 70px rgba(0,0,0,.30);
  padding:14px;
}
.pfpCard__img{
  width:84px;
  height:84px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(34,197,94,.26), rgba(14,165,233,.14));
  overflow:hidden;
  position:relative;
  flex:0 0 auto;
}
.pfpCard__img img{width:100%; height:100%; object-fit:cover; display:block}
.pfpCard__img--fallback::after{
  content:"";
  position:absolute; inset:14px;
  border-radius:20px;
  background: rgba(0,0,0,.70);
  border:1px solid rgba(255,255,255,.16);
}
.pfpCard__name{
  font-weight:1000;
  letter-spacing:.02em;
  font-size:18px;
}
.pfpCard__role{
  color: var(--muted);
  font-weight:800;
  font-size:13px;
  margin-top:4px;
}
h1{
  margin:14px 0 10px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-.03em;
}
.hero__cta{display:flex; gap:12px; margin:18px 0 16px; flex-wrap:wrap}

.stats{display:flex; gap:14px; flex-wrap:wrap; margin-top:14px}
.stat{
  flex: 1 1 140px;
  padding:12px 14px;
  border-radius:var(--radius);
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.12);
}
.stat__num{font-weight:900}
.stat__label{color:var(--muted); font-size:13px; margin-top:2px}

.hero__card{display:flex}
.glass{
  width:100%;
  background: linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.20));
  border:1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glass__top{
  display:flex; align-items:center; gap:12px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
.dots{display:flex; gap:7px}
.dots span{
  width:10px; height:10px; border-radius:50%;
  background: rgba(255,255,255,.22);
}
.dots span:nth-child(1){background: rgba(239,68,68,.8)}
.dots span:nth-child(2){background: rgba(234,179,8,.85)}
.dots span:nth-child(3){background: rgba(34,197,94,.85)}
.glass__title{font-family:var(--mono); font-size:12px; color:rgba(230,237,247,.78)}
.code{
  margin:0;
  padding:18px 16px;
  font-family:var(--mono);
  font-size:13px;
  line-height:1.55;
  color: rgba(226,232,240,.92);
}
.glass__bottom{
  padding:12px 14px 14px;
  display:flex; gap:10px; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.10);
}
.chip{
  font-family:var(--mono);
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: rgba(226,232,240,.86);
}
.hero__fade{
  height:80px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  margin-top:30px;
}

.section{
  padding:44px 22px;
}
.section--tight{
  padding-top:18px;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,0));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{
  max-width:1100px;
  margin:0 auto 18px;
}
h2{margin:0; font-size:28px; letter-spacing:-.02em}
.section__head p{margin:8px 0 0}

.cards{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.places{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.place{
  border-radius:var(--radius);
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  padding:16px;
  display:flex;
  gap:12px;
  align-items:center;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.place__logo{
  width:54px;
  height:54px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.16);
  overflow:hidden;
  position:relative;
  flex:0 0 auto;
}
.place__logo img{width:100%; height:100%; object-fit:cover; display:block}
.place__logo--fallback::after{
  content:"";
  position:absolute; inset:12px;
  border-radius:14px;
  background: rgba(0,0,0,.70);
  border:1px solid rgba(255,255,255,.16);
}
.place__name{font-weight:950}
.place__role{color:var(--muted); font-size:12px; margin-top:4px}
.card{
  border-radius:var(--radius);
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  padding:16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.card h3{margin:0 0 6px}
.tags{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.tags span{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.20);
  background: rgba(34,197,94,.07);
  color: rgba(167,243,208,.92);
}

.grid2{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.listbox{
  border-radius:var(--radius);
  padding:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}
.listbox h3{margin:0 0 10px}
.listbox ul{margin:0; padding-left:18px; color: rgba(226,232,240,.9)}
.listbox li{margin:8px 0}

.terminal{
  max-width:1100px;
  margin:0 auto;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
  box-shadow: var(--shadow);
}
.terminal__bar{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
}
.terminal__title{
  font-family:var(--mono);
  color: rgba(226,232,240,.82);
  font-size:12px;
}
.terminal__btn{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.16);
  color: rgba(230,237,247,.86);
  padding:8px 10px;
  border-radius:12px;
  cursor:pointer;
}
.terminal__out{
  margin:0;
  padding:16px;
  min-height:240px;
  font-family:var(--mono);
  font-size:13px;
  line-height:1.55;
  color: rgba(226,232,240,.9);
  white-space:pre-wrap;
}

.reviews{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.review{
  border-radius:var(--radius);
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  padding:16px;
}
.review__top{display:flex; gap:10px; align-items:center; margin-bottom:10px}
.review__name{font-weight:900}
.review__meta{font-size:12px; color: var(--muted); margin-top:2px}
.avatar{
  width:38px; height:38px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(34,197,94,.28), rgba(14,165,233,.18));
  position:relative;
  flex:0 0 auto;
}
.avatar::after{
  content:"";
  position:absolute; inset:8px;
  border-radius:10px;
  background: rgba(0,0,0,.70);
  border:1px solid rgba(255,255,255,.16);
}
.avatar--b{background: linear-gradient(135deg, rgba(234,179,8,.28), rgba(14,165,233,.16))}
.avatar--c{background: linear-gradient(135deg, rgba(168,85,247,.24), rgba(34,197,94,.14))}

.form{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:12px;
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.form label{display:grid; gap:8px}
.form span{font-weight:800; font-size:13px; color: rgba(226,232,240,.86)}
.form input,.form select,.form textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  color: rgba(226,232,240,.95);
  padding:12px 12px;
  outline:none;
}
.form textarea{resize:vertical}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.form__actions{
  display:flex; gap:12px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
}
.form__status{color: rgba(167,243,208,.92); font-weight:800}
.form__status.is-err{color: rgba(253,164,175,.92)}

.footer{
  padding:22px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer__inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.mobileNav{
  display:none;
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  h1{font-size:40px}
  .cards{grid-template-columns:1fr}
  .places{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .reviews{grid-template-columns:1fr}
  .nav{display:none}
  .topbar{justify-content:space-between}
  .form__row{grid-template-columns:1fr}
  .mobileNav{
    position:fixed;
    left:10px;
    right:10px;
    bottom:10px;
    z-index:90;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:8px;
    padding:8px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.70);
    backdrop-filter: blur(10px);
    border-radius:14px;
  }
  .mobileNav a{
    text-decoration:none;
    font-size:11px;
    text-align:center;
    color: rgba(255,255,255,.86);
    border:1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    border-radius:10px;
    padding:8px 4px;
  }
  .footer{
    padding-bottom:84px;
  }
}
