:root {
  --white: #fff;
  --black: #000000;
  --grey: #cccccc;
  --darkgrey: #666666;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Animated grid background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--darkgrey) 1px, transparent 1px), linear-gradient(90deg, var(--darkgrey) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header with logo */
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  animation: slideDown 1s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-container {
  max-width: 280px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo-container svg {
  width: 100%;
  height: auto;
}

.status-badge {
  background: var(--white);
  color: var(--black);
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--white);
  animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Main content */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
}

.hero-section {
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

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

.coming-soon {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(60px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 500;
}

.coming-soon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--white);
  animation: expandWidth 1.5s ease-out 1s both;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}

.subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--grey);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.6;
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 40px;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 2px solid var(--white);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-button:hover {
  color: var(--black);
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:active {
  transform: scale(0.98);
}

/* Geometric accent */
.geometric-accent {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  opacity: 0.05;
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.geometric-accent::before,
.geometric-accent::after {
  content: '';
  position: absolute;
  border: 2px solid var(--white);
}

.geometric-accent::before {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.geometric-accent::after {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  transform: rotate(45deg);
}

/* Contact section */
.contact-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--darkgrey);
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.contact-group h3 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--darkgrey);
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info a,
.contact-info p {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.contact-info a:hover {
  color: var(--grey);
  transform: translateX(5px);
}

.company-name {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.office-label {
  font-weight: 500;
  color: var(--grey);
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 13px;
}

/* Footer */
footer {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--darkgrey);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--darkgrey);
  letter-spacing: 1px;
  animation: fadeIn 1.5s ease-out 1s both;
}

.legal-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
  }

  .logo-container {
    max-width: 200px;
  }

  .geometric-accent {
    width: 200px;
    height: 200px;
    opacity: 0.03;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .legal-info {
    flex-direction: column;
    gap: 8px;
  }
}

/* Glitch effect on hover (optional subtle enhancement) */
/* .coming-soon:hover {
    animation: glitch 0.3s ease;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
} */
