/* ========================= */
/* LANDING BASE */
/* ========================= */

html, body{
  height:auto;
  overflow:auto;
}

body{
  background:radial-gradient(circle at top,#0f172a,#020617);
  color:#e5e7eb;
  font-family:'Inter', Segoe UI, sans-serif;
}

a{
  text-decoration:none;
  color:inherit;
}

/* ========================= */
/* LANDING NO USA LAYOUT APP */
/* ========================= */

.layout,
.sidebar,
.container{
  all:unset;
}

/* ========================= */
/* HERO, SECTIONS */
/* ========================= */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:60px 20px;
}

.hero-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
}

@media(max-width:900px){
  .hero-grid{
    grid-template-columns:1fr;
  }
}
