/* styles.css — minimal page for dogfood-shelflife-23-49 dogfood proof */

:root {
  --color-accent: #5b5bd6;
  --color-bg: #ffffff;
  --color-surface: #f7f8fa;
  --color-border: #e4e6eb;
  --color-text: #1a1c20;
  --color-muted: #5c6470;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --font-size-base: 1rem;
  --line-height: 1.6;

  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.5rem;
  --space-7: 6rem;

  --container: 760px;
  --radius: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.section {
  padding-block: var(--space-7);
}

.page-header {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.content p {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 60ch;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
