:root {
  --kb-white: #ffffff;
  --kb-ice: #f4f8ff;
  --kb-ice-2: #edf4ff;
  --kb-blue-50: #eaf2ff;
  --kb-blue-100: #d7e7ff;
  --kb-blue-300: #76a8ff;
  --kb-blue-500: #2d6dff;
  --kb-blue-600: #1857ed;
  --kb-blue-700: #1040be;
  --kb-blue-800: #0c2c8c;
  --kb-blue-900: #061b5a;
  --kb-blue-950: #03103d;
  --kb-cyan: #2fe7ff;
  --kb-violet: #7c5cff;
  --kb-orange: #ff7b2f;
  --kb-yellow: #ffc332;
  --kb-green: #19c98a;
  --kb-text: #051743;
  --kb-muted: #51658c;
  --kb-border: #d9e6ff;
  --kb-shadow: 0 20px 70px rgba(24, 87, 237, 0.18);
  --kb-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--kb-white);
  color: var(--kb-text);
}

a {
  color: inherit;
}

.kb-site {
  min-height: 100vh;
  overflow-x: hidden;
}

.kb-container {
  width: min(var(--kb-container), calc(100% - 48px));
  margin: 0 auto;
}

.kb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--kb-blue-600);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kb-eyebrow::after {
  content: "";
  width: 80px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.75;
}

.kb-eyebrow--cyan {
  color: #77f1ff;
}

.kb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.kb-button:hover {
  transform: translateY(-2px);
}

.kb-button--primary {
  color: var(--kb-white);
  background: linear-gradient(135deg, var(--kb-blue-500), var(--kb-blue-700));
  box-shadow: 0 16px 34px rgba(24, 87, 237, 0.36);
}

.kb-button--outline-light {
  color: var(--kb-white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.04);
}

.kb-button--outline-dark {
  color: var(--kb-blue-900);
  border: 1px solid #bdcdf4;
  background: var(--kb-white);
}

.kb-play {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 9px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 10px;
}

.kb-dot-ring {
  display: inline-block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 3px dotted var(--kb-cyan);
}
