/*
 * The Look — product website (look.guru)
 * Static marketing styles. No framework, no build step beyond a file copy.
 *
 * Copyright (c) 2026 Dan Schneider (fistuks@gmail.com)
 * SPDX-License-Identifier: MIT
 */

:root {
  --bg: #f8fafc;
  --bg-muted: #eef2f7;
  --ink: #0f172a;
  --ink-soft: #475569;
  --accent: #0f172a;
  --accent-ink: #ffffff;
  --line: #e2e8f0;
  --radius: 16px;
  --maxw: 1080px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ───────────────────────────────────
   Splash — centered placeholder page
   ─────────────────────────────────── */

.splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 24px;
  text-align: center;
}

.splash__logo {
  border-radius: 20px;
  margin-bottom: 24px;
}

.splash__title {
  font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.3em;
}

.splash__tbd {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-soft);
}
