:root {
  --peak-blue: #00a7d8;
  --navy: #071d2f;
  --charcoal: #25282a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --green-50: #f0fdf4;
  --green-900: #14532d;
  --red-50: #fef2f2;
  --red-700: #b91c1c;
  --red-900: #7f1d1d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
summary { list-style-position: outside; }

.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; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.relative { position: relative; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-4 { left: 1rem; }
.top-4 { top: 1rem; }
.inset-x-0 { left: 0; right: 0; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.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; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-8 { margin-bottom: 2rem; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-xl { max-width: 36rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-8xl { max-width: 88rem; }
.max-w-sm { max-width: 24rem; }
.max-w-xs { max-width: 20rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-44 { height: 11rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.min-h-36 { min-height: 9rem; }

.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.rounded-md { border-radius: .375rem; }
.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-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-dashed { border-style: dashed; }
.border-slate-100 { border-color: var(--slate-100); }
.border-slate-200 { border-color: var(--slate-200); }
.border-slate-300 { border-color: var(--slate-300); }
.border-peak-blue { border-color: var(--peak-blue); }
.border-white\/10 { border-color: rgba(255,255,255,.1); }
.border-white\/25 { border-color: rgba(255,255,255,.25); }
.border-white\/30 { border-color: rgba(255,255,255,.3); }

.bg-white { background-color: #fff; }
.bg-white\/10 { background-color: rgba(255,255,255,.1); }
.bg-white\/95 { background-color: rgba(255,255,255,.95); }
.bg-slate-50 { background-color: var(--slate-50); }
.bg-navy { background-color: var(--navy); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-peak-blue { background-color: var(--peak-blue); }
.bg-green-50 { background-color: var(--green-50); }
.bg-red-50 { background-color: var(--red-50); }

.p-4 { padding: 1rem; }
.p-3 { padding: .75rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-6 { padding-top: 1.5rem; }

.text-center { text-align: center; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: .025em; }
.tracking-tight { letter-spacing: 0; }

.text-white { color: #fff; }
.text-charcoal { color: var(--charcoal); }
.text-navy { color: var(--navy); }
.text-peak-blue { color: var(--peak-blue); }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: var(--slate-400); }
.text-slate-600 { color: var(--slate-600); }
.text-slate-700 { color: var(--slate-700); }
.text-green-900 { color: var(--green-900); }
.text-red-700 { color: var(--red-700); }
.text-red-900 { color: var(--red-900); }

.shadow-sm { box-shadow: 0 1px 2px rgba(15, 23, 42, .08); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(15, 23, 42, .12), 0 4px 6px -4px rgba(15, 23, 42, .12); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(15, 23, 42, .16), 0 8px 10px -6px rgba(15, 23, 42, .16); }
.backdrop-blur { backdrop-filter: blur(10px); }
.transition { transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease; }
.brightness-0 { filter: brightness(0); }
.invert { filter: brightness(0) invert(1); }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.cursor-pointer { cursor: pointer; }
.object-cover { object-fit: cover; }

.hover\:-translate-y-1:hover { transform: translateY(-.25rem); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(15, 23, 42, .12), 0 4px 6px -4px rgba(15, 23, 42, .12); }
.hover\:bg-navy:hover { background-color: var(--navy); }
.hover\:bg-white:hover { background-color: #fff; }
.hover\:border-peak-blue:hover { border-color: var(--peak-blue); }
.hover\:border-white:hover { border-color: #fff; }
.hover\:text-peak-blue:hover { color: var(--peak-blue); }
.hover\:text-navy:hover { color: var(--navy); }
.hover\:text-charcoal:hover { color: var(--charcoal); }
.hover\:text-white:hover { color: #fff; }

input, select, textarea {
  background: #fff;
  color: var(--charcoal);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--peak-blue);
  outline-offset: 2px;
  border-color: var(--peak-blue);
}

.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.focus\:fixed:focus { position: fixed; }
.focus\:left-4:focus { left: 1rem; }
.focus\:top-4:focus { top: 1rem; }
.focus\:z-50:focus { z-index: 50; }
.focus\:bg-white:focus { background-color: #fff; }
.focus\:px-4:focus { padding-left: 1rem; padding-right: 1rem; }
.focus\:py-2:focus { padding-top: .5rem; padding-bottom: .5rem; }
.focus\:shadow-lg:focus { box-shadow: 0 10px 15px -3px rgba(15, 23, 42, .12), 0 4px 6px -4px rgba(15, 23, 42, .12); }

@media (min-width: 640px) {
  .sm\:inline-flex { display: inline-flex; }
  .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\:grid-cols-\[9rem_1fr\] { grid-template-columns: 9rem 1fr; }
  .sm\:h-full { height: 100%; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.08; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .lg\:grid-cols-\[1\.08fr_\.92fr\] { grid-template-columns: 1.08fr .92fr; }
  .lg\:grid-cols-\[1fr_\.8fr\] { grid-template-columns: 1fr .8fr; }
  .lg\:grid-cols-\[\.9fr_1\.1fr\] { grid-template-columns: .9fr 1.1fr; }
  .lg\:grid-cols-\[1fr_auto\] { grid-template-columns: 1fr auto; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:h-28 { height: 7rem; }
  .lg\:h-32 { height: 8rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
