:root {
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --bg: #f6f4f0;
  --surface: #ffffff;
  --surface-2: #fbfaf8;
  --text: #111111;
  --ink: #111111;
  --muted: #71717a;
  --soft: #e8e3dc;
  --line: #e5dfd7;
  --dark: #111111;
  --dark-2: #1f1f1f;
  --warning: #f59e0b;
  --warning-bg: #fff7ed;
  --orange: #ea580c;
  --success: #16a34a;
  --success-bg: #ecfdf3;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 20px 60px rgba(17, 17, 17, .08);
  --shadow-soft: 0 10px 30px rgba(17, 17, 17, .06);
  --speed: 220ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

code {
  font-size: .85em;
  background: #f4f4f5;
  padding: 2px 6px;
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mobile-only {
  display: none !important;
}

.tiny-muted {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}