:root {
  --color-primary: #0D0D0D;
  --color-body: #111111;
  --color-accent: #E85D04;
  --color-muted: #737373;
  --color-bg: #FFFFFF;
  --color-bg-card: #EFEFEF;
  --color-border: #DCDCDC;
  --color-bg-black: #000000;
  --color-link: #0000EE;

  --font-display: "Inter Tight", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  --space-xs: 8px;
  --space-sm: 10px;
  --space-md: 16px;
  --space-base: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 100px;

  --radius-card: 8px;
  --radius-feature: 40px;
  --radius-search: 10px;

  --duration-fast: 0.2s;
  --duration-base: 0.3s;
  --duration-slow: 0.5s;
  --ease-default: ease;
  --ease-out: ease-out;
  --ease-in: ease-in;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg);
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0;
}

.kravit-main {
  min-height: 100vh;
}
