*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(0, 0%, 90%);
}

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 4%);
  --midnight: hsl(222, 47%, 11%);
  --midnight-hover: hsl(222, 47%, 16%);
  --slate-dark: hsl(0, 0%, 20%);
  --slate-medium: hsl(0, 0%, 45%);
  --slate-light: hsl(0, 0%, 96%);
  --executive-border: hsl(0, 0%, 88%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-overline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
}

.text-display {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.text-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.text-body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-body {
  font-size: 1rem;
  line-height: 1.6;
}

.text-caption {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-xs {
  font-size: 0.75rem;
}

.section-padding {
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .section-padding { padding: 0 3rem; }
}

@media (min-width: 1024px) {
  .section-padding { padding: 0 6rem; }
}
