:root {
  --bg-page: #F7F6F3;
  --sage-primary: #5A7A2D;
  --text-primary: #2D2D2D;
  --text-secondary: #6B6B6B;
  --text-tertiary: #8E8E93;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 120px;
  gap: 28px;
  background-color: var(--bg-page);
  min-height: 100dvh;
}

.hero-logo {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -1px;
  text-align: center;
}

.hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  text-align: center;
  max-width: 500px;
  line-height: 1.5;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background-color: var(--sage-primary);
  border-radius: 1px;
}

.progress-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--sage-primary);
  animation: dot-pulse 1.4s ease-in-out infinite both;
}

.progress-dot:nth-child(1) { animation-delay: 0s; }
.progress-dot:nth-child(2) { animation-delay: 0.2s; }
.progress-dot:nth-child(3) { animation-delay: 0.4s; }
.progress-dot:nth-child(4) { animation-delay: 0.6s; }

@keyframes dot-pulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

.progress-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
}

.footer {
  background-color: #2D2D2D;
  padding: 48px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-divider {
  width: 20px;
  height: 1px;
  background-color: var(--sage-primary);
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  color: var(--text-tertiary);
  transition: color 0.2s;
  display: flex;
}

.social-icons a:hover {
  color: #FFFFFF;
}

.social-icons i {
  width: 18px;
  height: 18px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 24px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .footer {
    padding: 40px 24px;
  }
}
