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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

html.scroll-smooth {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f9fb;
  color: #191c1e;
  font-family: "Geist", Arial, sans-serif;
}

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

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

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

ul {
  margin: 0;
  padding-left: 1.5rem;
}

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.inset-4 { inset: 1rem; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.-top-6 { top: -1.5rem; }
.-right-6 { right: -1.5rem; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

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

.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-stack-sm { gap: 12px; }
.gap-stack-md { gap: 24px; }
.gap-stack-lg { gap: 48px; }
.gap-gutter { gap: 24px; }
.gap-x-12 { column-gap: 3rem; }
.gap-y-6 { row-gap: 1.5rem; }

.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-stack-md > * + * { margin-top: 24px; }
.space-y-stack-lg > * + * { margin-top: 48px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-20 { margin-top: 5rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-stack-sm { margin-bottom: 12px; }
.mb-stack-md { margin-bottom: 24px; }
.mb-stack-lg { margin-bottom: 48px; }
.ml-4 { margin-left: 1rem; }

.p-2 { padding: .5rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.p-stack-md { padding: 24px; }
.p-stack-lg { padding: 48px; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-margin-mobile { padding-left: 20px; padding-right: 20px; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-stack-md { padding-top: 24px; padding-bottom: 24px; }
.py-stack-lg { padding-top: 48px; padding-bottom: 48px; }
.pt-4 { padding-top: 1rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-2 { padding-bottom: .5rem; }
.pb-20 { padding-bottom: 5rem; }

.h-2 { height: .5rem; }
.h-4 { height: 1rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-full { height: 100%; }
.w-2 { width: .5rem; }
.w-12 { width: 3rem; }
.w-32 { width: 8rem; }
.w-1\/2 { width: 50%; }
.w-3\/4 { width: 75%; }
.w-full { width: 100%; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-\[800px\] { max-width: 800px; }
.max-w-\[1200px\] { max-width: 1200px; }
.min-h-\[80vh\] { min-height: 80vh; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.object-cover { object-fit: cover; }

.rounded { border-radius: .25rem; }
.rounded-lg { border-radius: .25rem; }
.rounded-xl { border-radius: .5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid #c5c6cd; }
.border-t { border-top: 1px solid #c5c6cd; }
.border-y { border-top: 1px solid #c5c6cd; border-bottom: 1px solid #c5c6cd; }
.border-b-2 { border-bottom: 2px solid currentColor; }
.border-outline { border-color: #75777d; }
.border-outline-variant { border-color: #c5c6cd; }
.border-outline-variant\/20 { border-color: rgba(197, 198, 205, .2); }
.border-outline-variant\/30 { border-color: rgba(197, 198, 205, .3); }
.border-primary-fixed { border-color: #d8e3fb; }
.border-primary\/10 { border-color: rgba(9, 20, 38, .1); }
.border-white\/10 { border-color: rgba(255, 255, 255, .1); }
.border-white\/20 { border-color: rgba(255, 255, 255, .2); }

.bg-background { background-color: #f7f9fb; }
.bg-surface { background-color: #f7f9fb; }
.bg-surface\/90 { background-color: rgba(247, 249, 251, .9); }
.bg-surface-container { background-color: #eceef0; }
.bg-surface-container-high { background-color: #e6e8ea; }
.bg-surface-container-highest { background-color: #e0e3e5; }
.bg-surface-container-low { background-color: #f2f4f6; }
.bg-surface-container-lowest { background-color: #fff; }
.bg-white { background-color: #fff; }
.bg-white\/5 { background-color: rgba(255, 255, 255, .05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, .1); }
.bg-white\/60 { background-color: rgba(255, 255, 255, .6); }
.bg-primary { background-color: #091426; }
.bg-primary\/5 { background-color: rgba(9, 20, 38, .05); }
.bg-primary-container { background-color: #1e293b; }
.bg-primary-fixed { background-color: #d8e3fb; }
.bg-primary-fixed-dim { background-color: #bcc7de; }
.bg-secondary-fixed { background-color: #d3e4fe; }
.bg-tertiary-fixed { background-color: #dde3eb; }
.bg-\[radial-gradient\(circle_at_50\%_50\%\,rgba\(255\,255\,255\,0\.05\)\,transparent_70\%\)\] {
  background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,.05), transparent 70%);
}

.text-on-background { color: #191c1e; }
.text-primary { color: #091426; }
.text-secondary { color: #505f76; }
.text-white { color: #fff; }
.text-on-primary { color: #fff; }
.text-on-primary-container { color: #8590a6; }
.text-on-primary-fixed { color: #111c2d; }
.text-on-surface-variant { color: #45474c; }
.text-primary-fixed { color: #d8e3fb; }

.font-label-md,
.font-headline-xl,
.font-body-lg,
.font-body-md,
.font-headline-lg {
  font-family: "Geist", Arial, sans-serif;
}

.text-label-md { font-size: 14px; line-height: 1; letter-spacing: .05em; font-weight: 500; }
.text-headline-xl { font-size: 48px; line-height: 1.1; letter-spacing: -.02em; font-weight: 600; }
.text-headline-lg { font-size: 32px; line-height: 1.2; letter-spacing: -.01em; font-weight: 500; }
.text-headline-lg-mobile { font-size: 24px; line-height: 1.3; letter-spacing: -.01em; font-weight: 500; }
.text-headline-xl-mobile { font-size: 32px; line-height: 1.2; letter-spacing: -.02em; font-weight: 600; }
.text-body-lg { font-size: 18px; line-height: 1.6; font-weight: 400; }
.text-body-md { font-size: 16px; line-height: 1.5; font-weight: 400; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-\[18px\] { font-size: 18px; }
.text-\[32px\] { font-size: 32px; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -.025em; }
.tracking-widest { letter-spacing: .1em; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.shadow-\[0_15px_20px_-15px_rgba\(9\,20\,38\,0\.05\)\] { box-shadow: 0 15px 20px -15px rgba(9,20,38,.05); }
.soft-shadow { box-shadow: 0 15px 30px -10px rgba(9, 20, 38, .05); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.blur-2xl { filter: blur(40px); }
.filter { filter: var(--tw-filter, none); }
.grayscale { filter: grayscale(100%); }
.mix-blend-multiply { mix-blend-mode: multiply; }
.opacity-60 { opacity: .6; }
.opacity-70 { opacity: .7; }
.opacity-75 { opacity: .75; }
.opacity-90 { opacity: .9; }

.transition-all { transition: all .15s ease; }
.transition-colors { transition: color .15s ease, background-color .15s ease, border-color .15s ease; }
.transition-opacity { transition: opacity .15s ease; }
.transition-transform { transition: transform .15s ease; }
.duration-500 { transition-duration: .5s; }

.hero-gradient {
  background:
    radial-gradient(circle at top right, rgba(211, 228, 254, .3), transparent 40%),
    radial-gradient(circle at bottom left, rgba(236, 238, 240, .5), transparent 40%);
}

.site-header {
  top: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header-inner {
  gap: 32px;
}

.site-brand {
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-desktop-nav {
  flex: 0 0 auto;
}

.site-header-cta {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-width: 196px;
  min-height: 44px;
  white-space: nowrap;
}

.primary-menu {
  flex: 0 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.animate-ping {
  animation: stitch-ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

@keyframes stitch-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hover\:opacity-80:hover { opacity: .8; }
.hover\:bg-primary\/90:hover { background-color: rgba(9, 20, 38, .9); }
.hover\:bg-surface-container:hover { background-color: #eceef0; }
.hover\:bg-white:hover { background-color: #fff; }
.hover\:border-primary:hover { border-color: #091426; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.hover\:translate-y-\[-4px\]:hover { transform: translateY(-4px); }
.hover\:grayscale-0:hover { filter: grayscale(0); }
.group:hover .group-hover\:text-primary { color: #091426; }
.active\:scale-95:active { transform: scale(.95); }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:w-auto { width: auto; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:h-auto { height: auto; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:px-margin-desktop { padding-left: 64px; padding-right: 64px; }
  .md\:text-left { text-align: left; }
  .md\:text-headline-lg { font-size: 32px; line-height: 1.2; letter-spacing: -.01em; font-weight: 500; }
  .md\:text-headline-xl { font-size: 48px; line-height: 1.1; letter-spacing: -.02em; font-weight: 600; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .site-header-inner {
    gap: 20px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .site-brand {
    font-size: 26px;
  }

  .primary-menu {
    gap: 16px;
  }

  .site-header-cta {
    margin-left: 0;
    min-width: 176px;
    padding-left: 18px;
    padding-right: 18px;
  }
}
