:root {
  --primary-navy: #002157;
  --primary-cyan: #00AEEF;
  --bg-color: #ffffff;
  --text-dark: #002157;
  --text-muted: #4a5568;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 174, 239, 0.03) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(0, 33, 87, 0.03) 0%, transparent 20%);
}

/* Moving Mesh Gradient Background (CSS Only) */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(100px);
  opacity: 0.4;
}

.bg-mesh::before, .bg-mesh::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  animation: move 20s infinite alternate;
}

.bg-mesh::before {
  background: var(--primary-cyan);
  top: -100px;
  left: -100px;
}

.bg-mesh::after {
  background: var(--primary-navy);
  bottom: -100px;
  right: -100px;
  animation-delay: -10s;
}

@keyframes move {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(200px, 100px) scale(1.2); }
}

.container {
  max-width: 800px;
  width: 90%;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}

.logo {
  max-width: 250px;
  width: 100%;
  margin-bottom: 3rem;
  animation: fadeInDown 1s ease-out;
}

.status-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-cyan);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.3s;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.5s;
}

h1 em {
  font-style: italic;
  color: var(--primary-cyan);
}

p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.7s;
}

.email-contact {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.9s;
}

.email-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-cyan);
}

.email-address {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary-navy);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.email-address::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--primary-cyan);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.email-address:hover {
  color: var(--primary-cyan);
}

.email-address:hover::after {
  width: 100%;
}

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

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