/* Whaler Oracle v0.5.0 | MAD_TECHIE | last changed 2026-08-08 */
/* The public landing page. Deep water, one lamp lit. */

:root {
  --deep: #0b1c2c;
  --foam: #dfe9f2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 30%, #12304a 0%, var(--deep) 70%);
  color: var(--foam);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.landing { text-align: center; padding: 24px; }

.landing h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 800;
  letter-spacing: -.02em;
}

.tagline { margin: 0; opacity: .75; font-size: 15px; }

.sig {
  margin: 28px 0 0;
  font-size: 12px;
  opacity: .4;
  letter-spacing: .08em;
  text-transform: uppercase;
}
