:root {
  color-scheme: dark;
  --fondo: #060c18;
  --panel: rgba(9, 21, 34, 0.9);
  --linea: rgba(111, 155, 197, 0.35);
  --texto: #eef7ff;
  --muted: #a8bdd2;
  --acento: #4cc9f0;
}

* {
  box-sizing: border-box;
}

body.inicio {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--texto);
  background:
    linear-gradient(120deg, rgba(6, 12, 24, 0.92), rgba(8, 20, 40, 0.88)),
    var(--fondo);
}

.inicio-contenedor {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.inicio-hero {
  width: min(1040px, 100%);
  border: 1px solid var(--linea);
  background: linear-gradient(145deg, rgba(6, 17, 30, 0.9), rgba(8, 29, 47, 0.92));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.inicio-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(30px, 6vw, 70px);
}

.inicio-logo {
  width: min(360px, 70vw);
  height: auto;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.44));
}

.inicio-etiqueta {
  margin: 0 0 12px;
  color: var(--acento);
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font: 900 clamp(36px, 7vw, 78px)/0.92 "Orbitron", sans-serif;
}

.inicio-texto {
  max-width: 580px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.inicio-acciones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.inicio-boton {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(76, 201, 240, 0.55);
  padding: 0 18px;
  color: var(--texto);
  background: rgba(12, 39, 62, 0.9);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.inicio-boton-principal {
  background: linear-gradient(135deg, #12a4dd, #1d4ed8);
}

@media (max-width: 780px) {
  .inicio-hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }
}
