/* ============================================================
   DinoPrep — "Under Construction" holding page
   Self-contained: same color/font tokens as the main app's
   styles.css (--bg/--text/--blue etc., Baloo 2 + Inter), but this
   folder doesn't load or depend on the main app in any way.
   ============================================================ */

:root {
  --bg: #fbf5e8;
  --text: #23253a;
  --text-2: #5c5f78;
  --muted: #5c5f78;
  --green: #2fae73;
  --green-soft: #e6f9ef;
  --shadow: 0 1px 2px rgba(35, 37, 58, 0.06), 0 20px 50px rgba(35, 37, 58, 0.14);
  --font-display: "Baloo 2", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
}

.wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 20px 0 10px;
}

.hero-art {
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: 999px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 6vw, 52px);
  margin: 18px 0 4px;
  letter-spacing: -0.01em;
}

.subtitle {
  margin: 0;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
}

.foot {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding-top: 24px;
}

@media (max-width: 560px) {
  .wrap { padding: 24px 16px; }
  .hero-art { border-radius: 14px; margin-bottom: 20px; }
}
