:root {
  --primary: #172554;       /* blue-950 */
  --accent: #172554;        /* blue-400 */
  --surface: #ffffff;       /* page background */
  --card: #f9fafb;          /* card background */
  --text: #111827;          /* gray-900 */
  --muted: #6b7280;         /* gray-500 */
  --subtext: #000000;       /* black */
  --line: #e5e7eb;          /* gray-200 */
  --border: #d1d5db;        /* gray-300 */
  --ring: #2563eb;          /* focus ring */
  --spacing: 0.25rem;
}

/* Inter Font */
@font-face{font-display:swap;font-family:InterVariable;font-style:normal;font-weight:100 900;src:url(https://freeze.com/a/564ZADgP.woff2) format("woff2")}
@font-face{font-display:swap;font-family:InterVariable;font-style:italic;font-weight:100 900;src:url(https://freeze.com/a/xbiU7wt4.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100;src:url(https://freeze.com/a/SF1tYw6l.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:100;src:url(https://freeze.com/a/Mk77NbEF.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:200;src:url(https://freeze.com/a/3Nl0b70C.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:200;src:url(https://freeze.com/a/CuUoggQe.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:300;src:url(https://freeze.com/a/yUFBhwWM.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:300;src:url(https://freeze.com/a/ZdyPFxMG.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:400;src:url(https://freeze.com/a/Ps8eyLOs.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:400;src:url(https://freeze.com/a/gTbjpFuM.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:500;src:url(https://freeze.com/a/SuyIMIRQ.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:500;src:url(https://freeze.com/a/83VM8GDV.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:600;src:url(https://freeze.com/a/GpKFMzeM.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:600;src:url(https://freeze.com/a/a7MArscM.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:700;src:url(https://freeze.com/a/XNXwijhX.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:700;src:url(https://freeze.com/a/UnJrWC2C.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:800;src:url(https://freeze.com/a/SfBetIfQ.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:800;src:url(https://freeze.com/a/Sc7Fe1aH.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:900;src:url(https://freeze.com/a/PPtebXS1.woff2) format("woff2")}
@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:900;src:url(https://freeze.com/a/CPxgtt5X.woff2) format("woff2")}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}
body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--surface);
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
img, video {
  max-width: 100%;
  height: auto;
}

/* Layout Utilities */
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.grid { display: grid; }
.block { display: block; }
.inline { display: inline; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

/* Spacing - Margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }
.-m-2\.5 { margin: -0.625rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mr-1 { margin-right: 0.25rem; }

/* Spacing - Padding */
.p-4 { padding: calc(var(--spacing) * 4); }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.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-24 { padding-left: 6rem; padding-right: 6rem; }
.px-3\.5 { padding-inline: calc(var(--spacing) * 3.5); }
.py-2\.5 { padding-block: calc(var(--spacing) * 2.5); }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-48 { padding-top: 12rem; padding-bottom: 12rem; }
.py-64 { padding-top: 16rem; padding-bottom: 16rem; }
.pt-8 { padding-top: 2rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-24 { padding-bottom: 6rem; }

/* Spacing - Gap */
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-x-10 { column-gap: 2.5rem; }
.gap-x-12 { column-gap: 3rem; }
.gap-y-10 { row-gap: 2.5rem; }
.gap-y-16 { row-gap: 4rem; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* Flexbox Alignment */
.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; }

/* Sizing */
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-20 { width: 5rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: calc(var(--spacing) * 12); }
.h-20 { height: 5rem; }
.h-auto { height: auto; }
.size-6 { width: calc(var(--spacing) * 6); height: calc(var(--spacing) * 6); }
.size-10 { width: calc(var(--spacing) * 10); height: calc(var(--spacing) * 10); }
.max-w-2xl { max-width: 42rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-h-12 { max-height: calc(var(--spacing) * 12); }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.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; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-base\/7 { font-size: 1rem; line-height: 1.75rem; }
.text-lg\/8 { font-size: 1.125rem; line-height: 2rem; }
.text-xl\/8 { font-size: 1.25rem; line-height: 2rem; }
.text-sm\/6 { font-size: 0.875rem; line-height: 1.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.text-center { text-align: center; }
.text-pretty { text-wrap: pretty; }
.text-balance { text-wrap: balance; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }

/* Colors */
.text-white { color: rgb(255 255 255); }
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-600 { color: rgb(75 85 99); }
.text-gray-700 { color: rgb(55 65 81); }
.bg-white { background-color: rgb(255 255 255); }
.bg-transparent { background-color: transparent; }
.bg-black\/50 { background-color: rgb(0 0 0 / 0.5); }
.bg-white\/5 { background-color: rgb(255 255 255 / 0.05); }
.border { border-width: 1px; border-color: var(--border); }
.border-t { border-top-width: 1px; }
.border-r-0 { border-right-width: 0px; }
.border-gray-200 { border-color: rgb(229 231 235); }
/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-l-2xl { border-top-left-radius: 1rem; border-bottom-left-radius: 1rem; }
.rounded-r-2xl { border-top-right-radius: 1rem; border-bottom-right-radius: 1rem; }


/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }

/* Background */
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* Aspect Ratio */
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }

/* Object Fit */
.object-contain { object-fit: contain; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Transitions */
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-500 { transition-duration: 500ms; }

/* Focus */
.focus-visible\:outline:focus-visible { outline-style: solid; }
.focus-visible\:outline-2:focus-visible { outline-width: 2px; }
.focus-visible\:outline-offset-2:focus-visible { outline-offset: 2px; }

/* Hover */
.hover\:bg-white:hover { background-color: rgb(255 255 255); }
.hover\:bg-primary:hover { background-color: var(--primary); }
.hover\:border-white:hover { border-color: rgb(255 255 255); }
.hover\:border-primary:hover { border-color: var(--primary); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.hover\:text-white:hover { color: rgb(255 255 255); }
.hover\:bg-none:hover { background-color: transparent; }
.hover\:border-bottom:hover { border-bottom: 1px solid; }
/* EPTG Custom Color Classes */
.bg-primary { background-color: var(--primary); }
.bg-surface { background-color: var(--surface); }
.bg-card { background-color: var(--card); }
.text-primary { color: var(--primary); }
.text-white-main { color: var(--surface); }
.text-subtext { color: var(--subtext); }
.text-subtext-light { color: var(--surface); }
.text-accent { color: var(--accent); }
.bg-muted { background-color: var(--muted); }

/* Custom hover state for primary button */
.hover\:bg-primary-dark:hover { background-color: #1e3a8a; }

/* Custom focus ring using primary color */
.focus-visible\:outline-primary:focus-visible { outline-color: var(--primary); }

/* Responsive - Small (640px+) */
@media (min-width: 640px) {
  .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .sm\:py-40 { padding-top: 10rem; padding-bottom: 10rem; }
  .sm\:mt-20 { margin-top: 5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .sm\:text-xl\/8 { font-size: 1.25rem; line-height: 2rem; }
  .sm\:text-center { text-align: center; }
  .sm\:text-balance { text-wrap: balance; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .sm\:gap-x-10 { column-gap: 2.5rem; }
  .sm\:max-w-sm { max-width: 24rem; }
  .sm\:max-w-xl { max-width: 36rem; }
  .sm\:ring-1 { box-shadow: 0 0 0 1px rgb(0 0 0 / 0.05); }
  .sm\:ring-gray-900\/10 { box-shadow: 0 0 0 1px rgb(17 24 39 / 0.1); }
}

/* Responsive - Medium (768px+) */
@media (min-width: 768px) {
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-24 { margin-top: 6rem; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:gap-8 { gap: 2rem; }
}

/* Responsive - Large (1024px+) */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:flex-1 { flex: 1 1 0%; }
  .lg\:flex-auto { flex: 1 1 auto; }
  .lg\:mx-0 { margin-left: 0; margin-right: 0; }
  .lg\:mt-0 { margin-top: 0; }
  .lg\:mt-24 { margin-top: 6rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-24 { padding-left: 6rem; padding-right: 6rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:py-48 { padding-top: 12rem; padding-bottom: 12rem; }
  .lg\:gap-x-8 { column-gap: 2rem; }
  .lg\:gap-x-10 { column-gap: 2.5rem; }
  .lg\:gap-x-12 { column-gap: 3rem; }
  .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-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:max-w-none { max-width: none; }
  .lg\:max-w-lg { max-width: 32rem; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-center { justify-content: center; }
  .lg\:justify-end { justify-content: flex-end; }
  .lg\:justify-between { justify-content: space-between; }
}

/* Responsive - Extra Large (1280px+) */
@media (min-width: 1280px) {
  .xl\:col-span-2 { grid-column: span 2 / span 2; }
  .xl\:mt-0 { margin-top: 0; }
  .xl\:grid { display: grid; }
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:gap-8 { gap: 2rem; }
}

/* Screen Reader Only */
.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;
}

/* Space utilities */
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

/* Divide utilities */
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-500\/10 > :not([hidden]) ~ :not([hidden]) {
  border-color: rgb(107 114 128 / 0.1);
}

/* Inset utilities */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.right-0 { right: 0; }
.left-1 { left: 0.25rem; }
.top-1 { top: 0.25rem; }

/* Z-index */
.z-50 { z-index: 50; }

/* Order */
.order-first { order: -9999; }

/* Flow root */
.flow-root { display: flow-root; }
