:root {
  --bg-color: #f8f9fa;
  --text-primary: #0a2342;
  --text-secondary: #546b85;
  --accent-navy: #003366;
  --accent-gold: #c5a059;
  --accent-slate: #e0e5ec;
  --font-heading: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  font-family: var(--font-body);
  color: var(--text-primary);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mesh Gradient Background */
.mesh-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.8;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 25s infinite ease-in-out;
}

.shape-1 {
  width: 65vw;
  height: 65vw;
  background: var(--accent-navy);
  top: -15%;
  left: -15%;
  animation-delay: 0s;
  opacity: 0.15;
}

.shape-2 {
  width: 55vw;
  height: 55vw;
  background: var(--accent-gold);
  bottom: -15%;
  right: -10%;
  animation-delay: -5s;
  animation-direction: reverse;
  opacity: 0.2;
}

.shape-3 {
  width: 40vw;
  height: 40vw;
  background: var(--accent-slate);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 45s;
  opacity: 0.4;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -50px) rotate(10deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.text-container {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1.5s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  display: block;
}

.greeting {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.greeting .highlight {
  font-style: italic;
  color: #4a4a4a;
  position: relative;
  display: inline-block;
}

.greeting .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background: rgba(197, 160, 89, 0.4);
  z-index: -1;
  transform: skewX(-15deg);
}

.description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-weight: 300;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 400;
  backdrop-filter: blur(5px);
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .greeting {
    font-size: 3rem;
  }

  .shape-1 {
    width: 80vw;
    height: 80vw;
  }
  .shape-2 {
    width: 70vw;
    height: 70vw;
  }
}
