@font-face {
  font-family: 'Neo Latina';
  src: url('../fonts/neo-latina.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #29292f;
  --red: #e12726;
  --blue: #2b2f8f;
  --green: #3fa346;
  --text: #f4f4f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Neo Latina', 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow-x: hidden;
  position: relative;
  padding: 2rem 1.5rem;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url('../img/bg-squares.png');
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: min(900px, 90vw) auto;
  opacity: 0.5;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(41,41,47,0.15) 0%, rgba(41,41,47,0.85) 62%, rgba(41,41,47,0.98) 100%);
}

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
}

.brand {
  font-family: 'Neo Latina', sans-serif;
  font-weight: normal;
  letter-spacing: 0.06em;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
  text-stroke: 1.5px var(--text);
  text-shadow:
    0 0 6px rgba(244,244,246,0.35),
    0 0 18px rgba(244,244,246,0.18);
  line-height: 1.1;
}

.badge {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--blue);
  background: rgba(43, 47, 143, 0.15);
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9caf5;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green), 0 0 16px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.tagline {
  margin-top: 2.2rem;
  font-family: 'Neo Latina', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2.6vw, 1.5rem);
  color: transparent;
  -webkit-text-stroke: 0.8px var(--text);
  text-stroke: 0.8px var(--text);
  text-shadow: 0 0 10px rgba(244,244,246,0.3);
}

.message {
  margin-top: 1.8rem;
  font-family: 'Segoe UI', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #c7c7cf;
}

.contact {
  margin-top: 2.4rem;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact:hover {
  border-color: var(--green);
  color: #6fd076;
}

.footer {
  position: relative;
  margin-top: 3rem;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  color: #7a7a82;
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .bg-layer {
    background-position: center 55%;
  }
}
