*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; background: transparent; border: 0; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.bg-background { background-color: rgb(var(--background)); }
.bg-surface-container-lowest { background-color: rgb(var(--surface-container-lowest)); }
.bg-surface-container-low { background-color: rgb(var(--surface-container-low)); }
.bg-surface-container { background-color: rgb(var(--surface-container)); }
.bg-surface-container-high { background-color: rgb(var(--surface-container-high)); }
.bg-surface-container-highest { background-color: rgb(var(--surface-container-highest)); }
.bg-surface-variant { background-color: rgb(var(--surface-variant)); }
.bg-primary { background-color: rgb(var(--primary)); }
.bg-primary-container { background-color: rgb(var(--primary-container)); }
.bg-accent { background-color: rgb(var(--accent)); }
[class~="bg-accent/10"] { background-color: rgb(var(--accent) / .1); }
[class~="bg-surface-container-lowest/90"] { background-color: rgb(var(--surface-container-lowest) / .9); }

.text-on-background { color: rgb(var(--on-background)); }
.text-on-primary { color: rgb(var(--on-primary)); }
.text-on-primary-fixed { color: rgb(var(--on-primary-fixed)); }
.text-on-surface { color: rgb(var(--on-surface)); }
.text-on-surface-variant { color: rgb(var(--on-surface-variant)); }
.text-primary { color: rgb(var(--primary)); }
.text-accent { color: rgb(var(--accent)); }
.text-outline { color: rgb(var(--outline)); }
.text-white { color: #fff; }
[class~="text-white/80"] { color: rgb(255 255 255 / .8); }
[class~="text-[#0090a9]"] { color: #0090a9; }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-top-style: solid; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-outline-variant { border-color: rgb(var(--outline-variant)); }
.border-surface-variant { border-color: rgb(var(--surface-variant)); }
.border-secondary { border-color: rgb(var(--secondary)); }
.border-accent { border-color: rgb(var(--accent)); }
[class~="border-accent/20"] { border-color: rgb(var(--accent) / .2); }
[class~="border-accent/30"] { border-color: rgb(var(--accent) / .3); }
[class~="border-outline-variant/30"] { border-color: rgb(var(--outline-variant) / .3); }

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

.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }

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

.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-2 { width: .5rem; }
.w-12 { width: 3rem; }
.w-64 { width: 16rem; }
.h-full { height: 100%; }
.h-2 { height: .5rem; }
.h-12 { height: 3rem; }
.h-64 { height: 16rem; }
[class~="h-[360px]"] { height: 360px; }
[class~="h-[400px]"] { height: 400px; }
.min-h-screen { min-height: 100vh; }
.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-3xl { max-width: 48rem; }
.max-w-container-max { max-width: 1280px; }
.aspect-square { aspect-ratio: 1 / 1; }

.mx-auto { margin-left: auto; margin-right: auto; }
.m-0 { margin: 0; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-stack-lg { margin-top: 48px; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-stack-sm { margin-bottom: 12px; }
.mb-stack-md { margin-bottom: 24px; }
.mb-stack-lg { margin-bottom: 48px; }
.my-stack-md { margin-top: 24px; margin-bottom: 24px; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-margin-mobile { padding-left: 20px; padding-right: 20px; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-stack-lg { padding-top: 48px; padding-bottom: 48px; }
.p-2 { padding: .5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-stack-md { padding: 24px; }
.pt-24 { padding-top: 6rem; }
.pt-stack-sm { padding-top: 12px; }
.pb-stack-lg { padding-bottom: 48px; }

.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-base { gap: 8px; }
.gap-gutter { gap: 24px; }
.gap-stack-md { gap: 24px; }
.gap-stack-lg { gap: 48px; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-base > * + * { margin-top: 8px; }
.space-y-stack-sm > * + * { margin-top: 12px; }
.space-y-stack-md > * + * { margin-top: 24px; }

.overflow-hidden { overflow: hidden; }
.resize-y { resize: vertical; }
.rounded { border-radius: .125rem; }
.rounded-lg { border-radius: .25rem; }
.rounded-xl { border-radius: .5rem; }
.rounded-full { border-radius: .75rem; }
.shadow-sm { box-shadow: 0 1px 2px rgb(0 0 0 / .08); }
.shadow-md { box-shadow: 0 4px 12px rgb(0 0 0 / .12); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.object-cover { object-fit: cover; }
.opacity-60 { opacity: .6; }
.opacity-90 { opacity: .9; }
.grayscale { filter: grayscale(1); }
.mix-blend-overlay { mix-blend-mode: overlay; }

.font-headline-xl, .font-headline-lg, .font-headline-md, .font-button { font-family: "Hanken Grotesk", system-ui, sans-serif; }
.font-body-lg, .font-body-md { font-family: Inter, system-ui, sans-serif; }
.font-label-sm { font-family: "JetBrains Mono", ui-monospace, monospace; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-headline-xl { font-size: 48px; line-height: 56px; font-weight: 700; }
.text-headline-lg { font-size: 32px; line-height: 40px; font-weight: 600; }
.text-headline-lg-mobile { font-size: 24px; line-height: 32px; font-weight: 600; }
.text-headline-md { font-size: 24px; line-height: 32px; font-weight: 600; }
.text-body-lg { font-size: 18px; line-height: 28px; }
.text-body-md { font-size: 16px; line-height: 24px; }
.text-button { font-size: 14px; line-height: 20px; font-weight: 600; }
.text-label-sm { font-size: 12px; line-height: 16px; font-weight: 500; }
.text-sm { font-size: 14px; line-height: 20px; }
.text-xs { font-size: 12px; line-height: 16px; }
.text-4xl { font-size: 36px; line-height: 40px; }
.text-xl { font-size: 20px; line-height: 28px; }
[class~="text-[20px]"] { font-size: 20px; line-height: 28px; }
[class~="text-[14px]"] { font-size: 14px; line-height: 20px; }
.leading-tight { line-height: 1.12; }
.leading-relaxed { line-height: 1.625; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: .025em; }
.tracking-wider { letter-spacing: .05em; }
.text-center { text-align: center; }

.transition-all, .transition-colors, .transition-opacity, .transition-shadow { transition-duration: .15s; transition-timing-function: ease; }
.transition-colors { transition-property: color, background-color, border-color; }
.transition-opacity { transition-property: opacity; }
.transition-shadow { transition-property: box-shadow; }
.transition-all { transition-property: all; }

.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-accent:focus { border-color: rgb(var(--accent)); }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px rgb(var(--accent)); }
.hover\:text-primary:hover { color: rgb(var(--primary)); }
.hover\:text-accent:hover { color: rgb(var(--accent)); }
.hover\:bg-surface-container-low:hover { background-color: rgb(var(--surface-container-low)); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:shadow-sm:hover { box-shadow: 0 1px 2px rgb(0 0 0 / .08); }
.hover\:shadow-md:hover { box-shadow: 0 4px 12px rgb(0 0 0 / .12); }
.hover\:opacity-90:hover { opacity: .9; }
[class~="hover:-translate-y-0.5"]:hover { transform: translateY(-.125rem); }
.active\:scale-95:active { transform: scale(.95); }

.material-symbols-outlined { line-height: 1; vertical-align: middle; }
.prose p { margin: 0 0 1rem; }
.prose h2 { margin: 2rem 0 1rem; font: 600 32px/40px "Hanken Grotesk", system-ui, sans-serif; color: rgb(var(--primary)); }
.prose h3 { margin: 1.5rem 0 .75rem; font: 600 24px/32px "Hanken Grotesk", system-ui, sans-serif; color: rgb(var(--primary)); }
.prose ul { list-style: disc; margin: 0 0 1rem 1.5rem; }
.prose ol { list-style: decimal; margin: 0 0 1rem 1.5rem; }
.prose a { color: rgb(var(--accent)); text-decoration: underline; }

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

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:inline-flex { display: inline-flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .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-1 { grid-column: span 1 / span 1; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-5 { grid-column: span 5 / span 5; }
  .md\:col-span-7 { grid-column: span 7 / span 7; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:w-3\/4 { width: 75%; }
  .md\:px-margin-desktop { padding-left: 64px; padding-right: 64px; }
  .md\:p-8 { padding: 2rem; }
  [class~="md:p-[64px]"] { padding: 64px; }
  [class~="md:py-[80px]"] { padding-top: 80px; padding-bottom: 80px; }
  [class~="md:py-[100px]"] { padding-top: 100px; padding-bottom: 100px; }
  [class~="md:py-[120px]"] { padding-top: 120px; padding-bottom: 120px; }
  .md\:text-headline-lg { font-size: 32px; line-height: 40px; font-weight: 600; }
  .md\:text-headline-xl { font-size: 48px; line-height: 56px; font-weight: 700; }
  .md\:flex-row { flex-direction: row; }
  .md\:justify-end { justify-content: flex-end; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  [class~="lg:h-[500px]"] { height: 500px; }
}
