:root {
  --abyss: #06232A;
  --deep-teal: #0C6F7A;
  --cyan: #12C6D6;
  --aqua: #4CDCE4;
  --mist: #AEE9E6;
  --paper: #F2FBFB;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--paper);
  color: var(--abyss);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
}

.wordmark {
  height: 40px;
  width: auto;
  max-width: 90vw;
}

h1 {
  margin: 0;
  max-width: 40rem;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--abyss);
}

.subhead {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
  color: var(--deep-teal);
}

.cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--abyss);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}

.cta:hover,
.cta:focus {
  background: var(--aqua);
}

/* Non-interactive placeholder until email/CTA is live */
.cta--soon {
  background: transparent;
  color: var(--deep-teal);
  border: 1px solid var(--mist);
  cursor: default;
  letter-spacing: 0.02em;
}

.cta--soon:hover,
.cta--soon:focus {
  background: transparent;
}

.legal {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--deep-teal);
}

.legal a {
  color: var(--deep-teal);
}

.legal a:hover,
.legal a:focus {
  color: var(--abyss);
}
