/* =========================================================
   LANGUAGE GATEWAY — ULTRA CLEAN CORPORATE
========================================================= */

.gateway{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 50% -20%, #1b1b1b 0%, transparent 60%),
    #030303;
}

.gateway__center{
  width:min(420px,90%);
  display:flex;
  flex-direction:column;
  gap:22px;
}

.gateway__btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:22px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  text-decoration:none;
  transition:all .25s ease;
}

.gateway__btn img{
  width:48px;
  height:34px;
  border-radius:8px;
  object-fit:cover;
  box-shadow:0 8px 20px rgba(0,0,0,.5);
}

.gateway__btn span{
  font-size:15px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#fff;
}

.gateway__btn:hover{
  transform:translateY(-4px);
  border-color:rgba(229,192,123,.35);
  background:rgba(255,255,255,.05);
  box-shadow:0 18px 40px rgba(0,0,0,.5);
}
