:root{
  --black:#000;
  --white:#fff;
  --red:#e11919;
  --muted:#a7a7a7;
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;background:#000}
body{font-family:Inter,Arial,sans-serif;color:#fff}
.coming-soon{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:55px 24px 28px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.035), transparent 31%),
    #000;
}
.content{
  width:min(720px,100%);
  text-align:center;
  position:relative;
  z-index:2;
  margin:auto 0;
}
.logo-wrap{
  width:min(410px,70vw);
  margin:0 auto 26px;
  position:relative;
}
.logo-wrap:after{
  content:"";
  position:absolute;
  left:16%;
  right:16%;
  bottom:-22px;
  height:42px;
  background:rgba(225,25,25,.22);
  filter:blur(35px);
  border-radius:50%;
}
.logo-wrap img{
  width:100%;
  display:block;
  position:relative;
  z-index:1;
  mix-blend-mode:screen;
}
.eyebrow{
  margin:0 0 10px;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.23em;
  color:#cfcfcf;
}
h1{
  margin:0;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:clamp(4rem,10vw,7rem);
  line-height:.9;
  letter-spacing:-.035em;
  text-transform:uppercase;
}
h1 span{color:var(--red)}
.intro{
  max-width:620px;
  margin:25px auto 34px;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.7;
}
.notify-form{
  width:min(590px,100%);
  margin:0 auto;
}
.notify-form label{
  display:block;
  margin-bottom:11px;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:1.15rem;
  font-weight:700;
  letter-spacing:.04em;
}
.form-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:9px;
  padding:6px;
  border:1px solid #292929;
  background:#0d0d0d;
  border-radius:14px;
}
.form-row input{
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  padding:13px 14px;
  font-size:.96rem;
}
.form-row input::placeholder{color:#686868}
.form-row button{
  border:0;
  border-radius:9px;
  background:var(--red);
  color:#fff;
  padding:13px 22px;
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:1rem;
  font-weight:800;
  letter-spacing:.08em;
  cursor:pointer;
  transition:.2s ease;
}
.form-row button:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 28px rgba(225,25,25,.28);
}
.notify-form small{
  display:block;
  margin-top:10px;
  color:#666;
  font-size:.74rem;
}
.divider{
  width:46px;
  height:2px;
  margin:34px auto 25px;
  background:var(--red);
}
.publishing-link{
  display:inline-flex;
  flex-direction:column;
  gap:3px;
  color:#fff;
  text-decoration:none;
}
.publishing-link span{
  color:#686868;
  font-size:.66rem;
  font-weight:600;
  letter-spacing:.16em;
}
.publishing-link strong{
  font-family:"Barlow Condensed",Arial,sans-serif;
  font-size:1.1rem;
  letter-spacing:.08em;
}
.publishing-link b{color:var(--red)}
.publishing-link:hover strong{color:var(--red)}
footer{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:#444;
  font-size:.66rem;
  letter-spacing:.11em;
  margin-top:38px;
}
.red-dot{
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--red);
}
.glow{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  filter:blur(100px);
}
.glow-one{
  width:260px;
  height:260px;
  top:8%;
  left:-140px;
  background:rgba(225,25,25,.09);
}
.glow-two{
  width:220px;
  height:220px;
  bottom:4%;
  right:-130px;
  background:rgba(225,25,25,.07);
}
@media(max-width:600px){
  .coming-soon{padding-top:38px}
  .logo-wrap{width:min(330px,76vw);margin-bottom:24px}
  .intro{font-size:.94rem;margin-top:20px}
  .form-row{grid-template-columns:1fr}
  .form-row button{padding:14px}
  footer{flex-wrap:wrap}
}
