:root {
  --teal: #2c6273;
  --teal-deep: #1d4753;
  --tan: #c08a55;
  --bg: #f7f6f3;
  --bg-soft: #efece5;
  --text-muted: #5a6b6f;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--teal-deep);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6vh 6vw;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140vmax;
  height: 140vmax;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, var(--bg-soft) 0%, var(--bg) 55%);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  width: 100%;
}

.logo {
  width: min(58vw, 320px);
  height: auto;
  margin-bottom: 2.5rem;
  animation: fadeInDown 1s ease both;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease 0.15s both;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--teal-deep);
  margin-bottom: 1.25rem;
  animation: fadeIn 1s ease 0.3s both;
}

.subtitle {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.25rem;
  animation: fadeIn 1s ease 0.45s both;
}

.divider {
  width: 56px;
  height: 2px;
  background: var(--tan);
  margin-bottom: 1.5rem;
  animation: growLine 1s ease 0.6s both;
}

.footer-text {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  animation: fadeIn 1s ease 0.75s both;
}

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

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

@keyframes growLine {
  from { width: 0; opacity: 0; }
  to { width: 56px; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .logo, .eyebrow, h1, .subtitle, .divider, .footer-text {
    animation: none !important;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .page {
    padding: 8vh 7vw;
  }
  .logo {
    width: 70vw;
    margin-bottom: 2rem;
  }
  h1 {
    margin-bottom: 1rem;
  }
  .subtitle {
    margin-bottom: 1.75rem;
  }
}
