:root {
  --navy: #003C77;
  --navy-dark: #022B54;
  --navy-deep: #011D3A;
  --green: #2CC49F;
  --gray: #65757F;
  --white: #FFFFFF;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  background: radial-gradient(ellipse at 50% 35%, var(--navy) 0%, var(--navy-dark) 55%, var(--navy-deep) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 24px;
}

#hexCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1s ease-out both;
}

.logo {
  width: min(420px, 80vw);
  height: auto;
  margin-bottom: 48px;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.dots span {
  display: inline-block;
  color: var(--green);
  animation: bounce 1.4s infinite;
}

.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 42px;
}

.contact {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
}

.contact a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact a:hover {
  border-bottom-color: var(--green);
}

footer {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .dots span, .content {
    animation: none;
  }
}
