/* Base — Claw Core (remind-me-pwa style) */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background: #f8f9fa;
}

:root {
  --claw-accent: #e07c5e;
  --accent: var(--claw-accent);
  --text-primary: #1a1a2e;
  --text-secondary: rgba(26, 26, 46, 0.7);
  --bg-subtle: #f2f3f5;
  --card-bg: #ffffff;
  --border-color: rgba(26, 26, 46, 0.08);
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --touch-target-min: 48px;
  --landing-x-pad: 2rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: #f8f9fa;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

code {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 0.9em;
  padding: 2px 6px;
  background: rgba(31, 31, 58, 0.08);
  border-radius: 6px;
}
