/* Design tokens — aligned with .taskmaster/docs/landing.html */
:root {
  --blue-dark: #0a2a4a;
  --blue-mid: #1a5f8a;
  --blue-light: #5db8e8;
  --blue-pale: #e8f4fb;
  --orange: #c8521a;
  --orange-mid: #e8722a;
  --orange-light: #f09040;
  --cream: #faf7f3;
  --white: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --border: rgba(10, 42, 74, 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(10, 42, 74, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 42, 74, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 42, 74, 0.16);
  --font-display: Syne, sans-serif;
  --font-display-weight: 700;
}

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

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Syne for display headings; marketing pages override in landing.css */
h2,
h3 {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--blue-dark);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}

.muted {
  color: var(--muted);
}

.foundation-check h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}

/* Cookie consent (analytics) */
.cookie-consent {
  position: fixed;
  z-index: 10000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: rgba(10, 42, 74, 0.92);
  color: var(--cream);
  box-shadow: 0 -8px 32px rgba(10, 42, 74, 0.25);
}

.cookie-consent-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.cookie-consent-title {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: 1.1rem;
  margin: 0;
  width: 100%;
  color: var(--white);
}

.cookie-consent-text {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(250, 247, 243, 0.92);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent .btn-primary {
  background: var(--orange-mid);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
}

.cookie-consent .btn-primary:hover {
  background: var(--orange);
}

.cookie-consent .btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 247, 243, 0.45);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
}

.cookie-consent .btn-ghost:hover {
  border-color: var(--cream);
  color: var(--white);
}
