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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--vt-background);
  color: var(--vt-text);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24;
}

.vt-app {
  min-height: 100vh;
}

.vt-page--workspace,
.vt-page--landing,
.vt-page--intake,
.vt-page--auth {
  --vt-sidebar-width: 17rem;
}

.vt-page--intake {
  --vt-sidebar-width: 15.5rem;
}

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

.vt-main--with-topbar {
  padding-top: calc(var(--vt-topbar-height) + var(--vt-space-8));
}

.vt-page--landing .vt-main--with-topbar {
  padding-top: calc(var(--vt-topbar-height) + var(--vt-space-10));
}

.vt-main--with-sidebar {
  margin-left: var(--vt-sidebar-width);
}

.vt-container {
  width: min(100%, var(--vt-container-base));
  margin: 0 auto;
  padding: 0 var(--vt-space-8) var(--vt-space-20);
}

.vt-container--wide {
  width: min(100%, var(--vt-container-wide));
}

.vt-section {
  margin-top: var(--vt-space-20);
}

.vt-stack {
  display: grid;
  gap: var(--vt-space-6);
}

.vt-stack--hero {
  align-content: start;
}

.vt-stack--hero > .vt-display,
.vt-stack--hero > .vt-copy-lg {
  max-width: 12ch;
}

.vt-stack--hero > .vt-copy-lg {
  max-width: 44rem;
}

.vt-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vt-space-4);
  align-items: center;
}

.vt-inline--spread {
  justify-content: space-between;
}

.vt-inline--end {
  justify-content: flex-end;
}

.vt-list-stack {
  display: grid;
  gap: var(--vt-space-4);
}

.vt-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vt-space-2);
}

.vt-card-grid {
  display: grid;
  gap: var(--vt-space-4);
}

.vt-card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vt-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vt-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--vt-space-5);
}

.vt-field--full {
  grid-column: 1 / -1;
}

.vt-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--vt-space-4);
}

.vt-option-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vt-option-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vt-option-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vt-fragment {
  min-height: 1px;
}

.vt-kicker,
.vt-label {
  display: inline-flex;
  align-items: center;
  gap: var(--vt-space-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vt-primary);
}

.vt-display,
.vt-title-xl,
.vt-title-lg,
.vt-title-md,
.vt-title-sm {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.vt-display {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 0.98;
  font-weight: 800;
}

.vt-title-xl {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.05;
  font-weight: 800;
}

.vt-title-lg {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  font-weight: 800;
}

.vt-title-md {
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 800;
}

.vt-title-sm {
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 700;
}

.vt-copy,
.vt-copy-lg {
  margin: 0;
  color: var(--vt-text-muted);
}

.vt-copy {
  font-size: 0.94rem;
}

.vt-copy-lg {
  font-size: 1.06rem;
  line-height: 1.7;
}

.vt-kicker--inverse,
.vt-copy-lg--inverse,
.vt-title-xl--inverse,
.vt-title-md--inverse {
  color: #fff;
}

.vt-number {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--vt-text);
}

.vt-section-header {
  display: grid;
  gap: var(--vt-space-4);
  margin-bottom: var(--vt-space-10);
  max-width: 44rem;
}

.vt-section-header.is-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.vt-section-head {
  display: grid;
  gap: var(--vt-space-2);
  margin-bottom: var(--vt-space-6);
}

@media (max-width: 1100px) {
  .vt-main--with-sidebar {
    margin-left: 0;
  }

  .vt-container,
  .vt-container--wide {
    padding-left: var(--vt-space-5);
    padding-right: var(--vt-space-5);
  }
}

@media (max-width: 800px) {
  .vt-main--with-topbar {
    padding-top: calc(var(--vt-topbar-height) + var(--vt-space-6));
  }

  .vt-container,
  .vt-container--wide {
    padding-bottom: calc(var(--vt-space-20) + 4.5rem);
  }

  .vt-card-grid--two,
  .vt-card-grid--three,
  .vt-field-grid,
  .vt-option-grid,
  .vt-option-grid--compact {
    grid-template-columns: 1fr;
  }
}
