:root{
  --bg:#050505;
  --panel:#0c0c0d;
  --panel2:#121214;
  --text:#f3f3f3;
  --muted:#9c9ca1;
  --line:#232327;
  --silver:#d7d7da;
  --max:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  background:var(--bg);
}

body{
  margin:0;
  background:
    radial-gradient(
      circle at 50% -15%,
      rgba(255,255,255,.08),
      transparent 33rem
    ),
    var(--bg);
  color:var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height:1.55;
}

a{
  color:inherit;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px max(20px,calc((100vw - var(--max))/2));
  background:rgba(5,5,5,.82);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.brand img{
  display:block;
  width:220px;
  max-width:42vw;
  height:auto;
}

nav{
  display:flex;
  gap:24px;
}

nav a{
  text-decoration:none;
  color:#b6b6bb;
  font-size:.78rem;
  font-weight:750;
  letter-spacing:.11em;
}

nav a:hover{
  color:#fff;
}

/* HERO */

.hero{
  min-height:calc(100svh - 72px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:74px 20px 90px;
  position:relative;
  overflow:hidden;
}

.hero-glow{
  position:absolute;
  width:680px;
  height:680px;
  max-width:90vw;
  max-height:90vw;
  border-radius:50%;
  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.085),
      rgba(255,255,255,0) 66%
    );
  filter:blur(10px);
  pointer-events:none;
}

.hero-symbol{
  position:relative;
  width:min(330px,68vw);
  height:auto;
  mix-blend-mode:screen;
}

.hero-wordmark{
  position:relative;
  display:block;
  width:min(620px,68vw);
  max-width:100%;
  height:auto;
  margin:10px auto 18px;
}

.eyebrow{
  margin:22px 0 4px;
  color:#9e9ea4;
  font-weight:800;
  font-size:.72rem;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.release h2,
.links-section h2{
  margin:0;
  letter-spacing:.075em;
  line-height:1;
}

.hero-copy{
  margin:14px 0 30px;
  color:#c4c4c8;
  font-size:clamp(1.02rem,2vw,1.35rem);
  letter-spacing:.03em;
}

/* BUTTONS */

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-size:.78rem;
  font-weight:850;
  letter-spacing:.08em;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.button:hover{
  transform:translateY(-2px);
}

.button.primary{
  background:#f2f2f2;
  color:#080808;
}

.button.ghost{
  border:1px solid #3b3b40;
  background:transparent;
  color:#eee;
}

/* SECTIONS */

.section{
  width:min(var(--max),calc(100% - 40px));
  margin:0 auto;
  padding:110px 0;
  border-top:1px solid var(--line);
}

/* RELEASE */

.release{
  display:grid;
  grid-template-columns:
    minmax(280px,.9fr)
    minmax(300px,1.1fr);
  gap:72px;
  align-items:center;
}

.release-cover-wrap{
  position:relative;
}

.release-cover-wrap:before{
  content:"";
  position:absolute;
  inset:10%;
  background:rgba(255,255,255,.12);
  filter:blur(60px);
  z-index:-1;
}

.release-cover{
  display:block;
  width:100%;
  height:auto;
  border:1px solid #202024;
  box-shadow:0 30px 80px rgba(0,0,0,.65);
}

.release h2{
  font-size:clamp(3.2rem,9vw,7rem);
  font-weight:900;
}

.release-date{
  font-size:.84rem;
  letter-spacing:.16em;
  color:#aaaab0;
  font-weight:800;
}

.release-text{
  font-size:1.12rem;
  color:#b9b9be;
}

.statement{
  margin:34px 0 36px;
  font-weight:900;
  font-size:clamp(1.5rem,3.2vw,2.7rem);
  line-height:1.12;
  letter-spacing:.035em;
}

.button-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.about h2{
  font-size:.78rem;
  letter-spacing:.2em;
  color:#9f9fa4;
  margin:0 0 14px;
}

.about p{
  font-size:clamp(1.2rem,2.6vw,1.75rem);
  line-height:1.48;
  margin:0;
  color:#ececef;
  max-width:30ch;
}

/* LINKS */

.links-section h2{
  font-size:clamp(3rem,8vw,6.2rem);
  margin-bottom:44px;
}

.link-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.link-grid a{
  min-height:112px;
  padding:22px;
  border:1px solid var(--line);
  background:var(--panel);
  text-decoration:none;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.link-grid a:hover{
  background:var(--panel2);
  border-color:#3a3a3f;
  transform:translateY(-2px);
}

.link-grid span{
  font-size:1.08rem;
  font-weight:800;
}

.link-grid small{
  color:#88888f;
  margin-top:3px;
}

/* FOOTER */

footer{
  width:min(var(--max),calc(100% - 40px));
  margin:0 auto;
  padding:18px 0 24px;
  border-top:1px solid #1b1b1f;

  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:8px;

  color:#5b5b61;
  font-size:.6rem;
}

.footer-links{
  display:flex;
  align-items:center;
  gap:8px;
}

.footer-links::before{
  content:"·";
  color:#44444a;
}

.footer-links a{
  text-decoration:none;
  color:#47474d;
  transition:color .18s ease;
}

.footer-links a + a::before{
  content:"·";
  margin-right:8px;
  color:#44444a;
}

.footer-links a:hover{
  color:#77777d;
}

/* MOBILE */

@media (max-width:760px){

  .site-header{
    min-height:62px;
  }

  .brand img{
    width:150px;
  }

  nav{
    gap:14px;
  }

  nav a{
    font-size:.64rem;
  }

  nav a:nth-child(2){
    display:none;
  }

  .hero{
    min-height:calc(90svh - 62px);
    padding-top:50px;
  }

  .hero-symbol{
    width:min(285px,70vw);
  }

  .hero-wordmark{
    width:min(520px,80vw);
    margin:8px auto 16px;
  }

  .eyebrow{
    margin-top:18px;
    font-size:.66rem;
  }

  .hero-copy{
    margin-top:12px;
  }

  .section{
    padding:78px 0;
  }

  .release{
    grid-template-columns:1fr;
    gap:38px;
  }

  .release-content{
    text-align:left;
  }

  .about-grid{
    grid-template-columns:1fr;
    gap:42px;
  }

  .about p{
    max-width:none;
  }

  .link-grid{
    grid-template-columns:1fr 1fr;
  }

  footer{
    padding:16px 0 20px;
    gap:7px;
    font-size:.58rem;
  }

  .footer-links{
    gap:7px;
  }

  .footer-links a + a::before{
    margin-right:7px;
  }
}

@media (max-width:430px){

  nav a:nth-child(1){
    display:none;
  }

  .link-grid{
    grid-template-columns:1fr;
  }

  .hero-symbol{
    width:min(250px,68vw);
  }

  .hero-wordmark{
    width:82vw;
  }

  footer{
    flex-wrap:wrap;
  }
}
