*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#050505;
  color:white;

  font-family:'Inter', sans-serif;

  overflow:hidden;

  position:relative;
}

/* TECH GRID */

body::before{
  content:"";

  position:absolute;
  inset:0;

  background-image:
  linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

  background-size:60px 60px;

  z-index:0;
}

/* BACKGROUND GLOW */

.background-glow{
  position:absolute;

  width:900px;
  height:900px;

  background:
  radial-gradient(circle,#ff1744 0%, transparent 70%);

  filter:blur(120px);

  opacity:.22;

  top:-250px;
  right:-250px;

  animation:floatGlow 7s ease-in-out infinite;
}

@keyframes floatGlow{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(40px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* HERO SECTION */

.hero{
  width:100%;
  height:100vh;

  display:flex;
  justify-content:center;
  align-items:center;

  padding:20px;

  position:relative;
  z-index:2;
}

/* CONTENT */

.content{
  text-align:center;

  max-width:720px;

  position:relative;
  z-index:2;

  animation:fadeIn 1.2s ease;
}

@keyframes fadeIn{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0px);
  }

}

/* TOP TAG */

.tag{
  color:#ff4d73;

  font-size:13px;
  font-weight:700;

  letter-spacing:4px;

  margin-bottom:24px;

  text-transform:uppercase;
}

/* INSIDE TITLE */

h1{
  font-size:120px;

  line-height:.9;

  letter-spacing:12px;

  margin-bottom:15px;

  font-weight:900;

  background:linear-gradient(to bottom, #ffffff, #8f8f8f);

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;
}

/* SUBTITLE */

h2{
  font-size:34px;

  color:#d1d1d1;

  margin-bottom:28px;

  font-weight:600;
}

/* DESCRIPTION */

.description{
  font-size:18px;

  line-height:1.8;

  color:#8e8e8e;

  margin-bottom:42px;
}

/* EMAIL SECTION */

.email-box{
  display:flex;
  justify-content:center;
  gap:14px;

  flex-wrap:wrap;
}

/* INPUT */

.email-box input{
  width:340px;

  padding:18px;

  border:none;
  border-radius:14px;

  background:#111111;

  color:white;

  font-size:16px;

  border:1px solid rgba(255,255,255,.05);

  transition:.2s;
}

.email-box input:focus{
  outline:none;

  border:1px solid rgba(255,255,255,.18);
}

/* BUTTON */

.email-box button{
  padding:18px 28px;

  border:none;
  border-radius:14px;

  background:#ff1744;

  color:white;

  font-size:16px;
  font-weight:700;

  cursor:pointer;

  transition:.25s;

  box-shadow:
  0 0 30px rgba(255,23,68,.25);
}

.email-box button:hover{
  transform:translateY(-3px);

  background:#ff335d;

  box-shadow:
  0 0 45px rgba(255,23,68,.45);
}

/* MOBILE */

@media(max-width:700px){

  h1{
    font-size:72px;
  }

  h2{
    font-size:24px;
  }

  .description{
    font-size:16px;
  }

}
.trust-text{

  margin-top:18px;

  color:#666666;

  font-size:14px;

}