/*
  TERA HERSHEL — COMING SOON
  Nebula Light palette, trimmed to only what this single page needs.
  Google Font: Space Grotesk 700 (heading only)
  Body: system sans stack
*/

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap");

:root {
  --bg: #f0f3f8;
  --text: #1a2540;
  --muted: #546480;
  --accent2: #b07d2a;
  --max: 34rem;
  --font-heading:
    "Space Grotesk", -apple-system, BlinkMacSystemFont, "Avenir Next",
    Avenir, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body:
    -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Segoe UI",
    "Noto Sans", "Liberation Sans", "Helvetica Neue", Helvetica, Cantarell,
    Ubuntu, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  text-align: center;
}

.page-main {
  width: 100%;
}

h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
  font-family: var(--font-heading);
}

.intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}