/* Self-hosted Tailwind subset (only classes used in index.html) */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
a{color:inherit}
h1,h2,h3,h4,h5,h6,p{margin:0}

.bg-white{background:#fff}
.bg-brand-blue{background:#0b2bf2}

.text-white{color:#fff}
.text-blue-100{color:#dbe5ff}
.text-blue-700{color:#1d4ed8}
.text-zinc-950{color:#09090b}
.text-zinc-800{color:#27272a}
.text-zinc-700{color:#3f3f46}
.text-zinc-600{color:#52525b}

.border{border:1px solid #e4e4e7}
.border-b{border-bottom:1px solid #e4e4e7}
.border-t{border-top:1px solid #e4e4e7}
.border-r{border-right:1px solid #e4e4e7}
.border-zinc-900{border-color:#18181b}
.border-blue-300{border-color:#93c5fd}

.flex{display:flex}
.grid{display:grid}
.hidden{display:none}
.block{display:block}
.inline-block{display:inline-block}
.flex-col{flex-direction:column}
.flex-wrap{flex-wrap:wrap}

.items-center{align-items:center}
.items-start{align-items:flex-start}
.justify-between{justify-content:space-between}

.gap-3{gap:.75rem}
.gap-5{gap:1.25rem}
.gap-6{gap:1.5rem}
.gap-8{gap:2rem}
.gap-x-6{column-gap:1.5rem}
.gap-y-2{row-gap:.5rem}

.mx-auto{margin-left:auto;margin-right:auto}
.mt-1{margin-top:.25rem}
.mt-0{margin-top:0}
.mt-2{margin-top:.5rem}
.mt-4{margin-top:1rem}
.mt-5{margin-top:1.25rem}
.mt-6{margin-top:1.5rem}
.mt-8{margin-top:2rem}
.mt-10{margin-top:2.5rem}

.p-4{padding:1rem}
.pt-1{padding-top:.25rem}
.pt-2{padding-top:.5rem}
.pt-4{padding-top:1rem}
.pt-10{padding-top:2.5rem}
.pt-16{padding-top:4rem}
.pb-16{padding-bottom:4rem}
.py-5{padding-top:1.25rem;padding-bottom:1.25rem}
.py-8{padding-top:2rem;padding-bottom:2rem}
.py-10{padding-top:2.5rem;padding-bottom:2.5rem}
.py-14{padding-top:3.5rem;padding-bottom:3.5rem}

.max-w-xl{max-width:36rem}
.max-w-2xl{max-width:42rem}
.max-w-4xl{max-width:56rem}
.layout-wrap{width:min(896px,calc(100% - 2.5rem))}
.w-\[145px\]{width:145px}

.text-11{font-size:11px;line-height:1.35}
.text-sm{font-size:.875rem;line-height:1.35}
.text-base{font-size:1rem;line-height:1.45}
.text-16{font-size:16px;line-height:1.5}
.text-17{font-size:17px;line-height:1.6}
.text-xl{font-size:1.25rem;line-height:1.2}
.text-2xl{font-size:1.5rem;line-height:1.2}
.text-4xl{font-size:2.25rem;line-height:1.05}

.font-sans{font-family:"Barlow","Segoe UI",Arial,sans-serif}
.font-semibold{font-weight:600}
.font-bold{font-weight:700}
.font-extrabold{font-weight:800}

.uppercase{text-transform:uppercase}
.tracking-tight{letter-spacing:-.02em}
.tracking-wide8{letter-spacing:.08em}
.tracking-wide12{letter-spacing:.12em}
.leading-relaxed{line-height:1.6}
.leading-tighter{line-height:.98}

.underline{text-decoration-line:underline}
.underline-offset-2{text-underline-offset:2px}
.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

.space-y-3 > :not([hidden]) ~ :not([hidden]){margin-top:.75rem}
.space-y-4 > :not([hidden]) ~ :not([hidden]){margin-top:1rem}

.hover\:opacity-80:hover{opacity:.8}
.hover\:text-blue-700:hover{color:#1d4ed8}
.hover\:text-white:hover{color:#fff}

@media (min-width:768px){
  .layout-wrap{width:min(896px,calc(100% - 1.5rem))}
  .md\:block{display:block}
  .md\:flex-row{flex-direction:row}
  .md\:items-start{align-items:flex-start}
  .md\:items-center{align-items:center}
  .md\:justify-between{justify-content:space-between}
  .md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
  .md\:grid-cols-footer{grid-template-columns:1.3fr .7fr}
  .md\:min-h-28{min-height:7rem}
  .md\:pt-28{padding-top:7rem}
  .md\:pb-24{padding-bottom:6rem}
  .md\:py-14{padding-top:3.5rem;padding-bottom:3.5rem}
  .md\:py-20{padding-top:5rem;padding-bottom:5rem}
  .md\:text-2xl{font-size:1.5rem;line-height:1.2}
  .md\:text-5xl{font-size:3rem;line-height:1}
  .md\:text-6xl{font-size:3.75rem;line-height:1}
}
