/* Dolphins21 Design Tokens - Based on Conan1 Styles & AGENTS.md */
:root {
  /* Semantic Colors */
  --primary: #cc4e2d;              /* Burnt Orange */
  --primary-foreground: #ffffff;
  --accent: #fff7ed;               /* Warm Cream */
  --accent-foreground: #a83d22;
  --background: #ffffff;
  --foreground: #111111;
  --card: #ffffff;
  --card-foreground: #111111;
  --secondary: #f2f2f2;
  --secondary-foreground: #111111;
  --muted: #f2f2f2;
  --muted-foreground: #666666;
  --border: #e7e5e4;
  --destructive: #dc2626;
  --ring: #cc4e2d;

  /* Neutral palette */
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;

  /* Stage Colors */
  --stage-1: #94a3b8;
  --stage-2: #ea580c;
  --stage-3: #d97706;
  --stage-4: #cc4e2d;

  /* Typography */
  --font-family: Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  /* Radii & Shadows */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 12px 35px rgba(204, 78, 45, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  border-color: var(--border);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color: var(--foreground);
  background: var(--background);
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

::selection {
  color: #7c2d12;
  background: #fed7aa;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--ring) 45%, transparent);
  outline-offset: 3px;
}
