/**
 * Readable.fyi Coming Soon Styles
 *
 * @title Readable.fyi Coming Soon Styles
 * @file css/coming-soon.css
 * @purpose Styles the restrained production placeholder in light and dark color schemes.
 * @created 2026-07-17
 * @updated 2026-07-18
 */

:root {
  color-scheme: light dark;
  --page-background: oklch(99.11% 0 none);
  --page-foreground: oklch(36% 0 none);
  --page-secondary: oklch(45.32% 0 none);
  --page-rule: oklch(88.22% 0 none);
  font-family: var(--font-body);
}

@media (prefers-color-scheme: dark) {
  :root {
    --page-background: oklch(26.03% 0 none);
    --page-foreground: oklch(92.49% 0 none);
    --page-secondary: oklch(88.84% 0 none);
    --page-rule: oklch(48.19% 0 none);
  }
}

* { box-sizing: border-box; }

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 32px 24px;
  background: var(--page-background);
  color: var(--page-foreground);
}

main {
  width: min(100%, 680px);
  padding-block: clamp(40px, 9vw, 80px);
  border-block: 1px solid var(--page-rule);
}

.wordmark { display: block; margin-bottom: 40px; }
.wordmark img { display: block; width: auto; height: 28px; }

h1 {
  max-width: 20ch;
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

p {
  max-width: 48ch;
  margin: 0;
  color: var(--page-secondary);
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  line-height: 1.6;
}

.privacy-link { margin-top: 24px; font: 600 14px/1.4 var(--font-ui); }
.privacy-link a { color: inherit; text-underline-offset: .18em; }

@media (max-width: 520px) {
  .wordmark { margin-bottom: 32px; }
  .wordmark img { height: 24px; }
}
