/* === Reset & Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: #222;
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* === Splash Layout === */
.splash {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 20px;
  position: relative;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* === Typography === */
h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 70px;
  color: #c0c6cc;
  margin-bottom: 0;
}

/* === Social Icons === */
.social {
  margin-top: 20px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.social svg {
  fill: #ffffff;
  vertical-align: middle;
}

/* === Responsive === */
@media (max-width: 932px) {
  h1 {
    font-size: 42px;
    line-height: 48px;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 29px;
    line-height: 34px;
  }
}
