/* Static utilities replacing Tailwind CDN — only classes used on this site */
*, *::before, *::after { box-sizing: border-box; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; }
body { margin: 0; min-height: 100vh; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* Layout */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.left-1\/2 { left: 50%; }
.left-4 { left: 1rem; }
.bottom-4 { bottom: 1rem; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.block { display: block !important; }
.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.grid { display: grid !important; }
.hidden { display: none !important; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-x-12 { column-gap: 3rem; }
.gap-y-8 { row-gap: 2rem; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.overflow-hidden { overflow: hidden; }
.w-4 { width: 1rem; }
.w-6 { width: 1.5rem; }
.w-11 { width: 2.75rem; }
.w-full { width: 100%; }
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-11 { height: 2.75rem; }
.h-full { height: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-container-max { max-width: 1280px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-28 { padding-top: 7rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-10 > :not([hidden]) ~ :not([hidden]) { margin-top: 2.5rem; }

/* Typography */
.font-body-md { font-family: "Source Sans 3", "Source Sans Pro", sans-serif; }
.font-headline-md { font-family: Oswald, sans-serif; }
.font-label-caps { font-family: "IBM Plex Mono", ui-monospace, monospace; }
.font-bold { font-weight: 700; }
.text-body-md { font-size: 16px; line-height: 26px; font-weight: 400; }
.text-label-caps { font-size: 12px; line-height: 16px; letter-spacing: 0.1em; font-weight: 600; }
.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-6xl { font-size: 3.75rem; line-height: 1; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-relaxed { line-height: 1.625; }
.text-white { color: #fff; }
.text-on-surface { color: #e8ecee; }
.text-on-surface-variant { color: #a8adb3; }
.text-secondary { color: #f0c14b; }
.text-tertiary { color: #3dd68c; }

/* Color / surface */
.bg-background { background-color: #0c1012; }
.bg-surface { background-color: #0c1012; }
.bg-primary-container { background-color: #121820; }
.bg-secondary { background-color: #f0c14b; }
.text-on-secondary-fixed { color: #1a1400; }
.hover\:opacity-95:hover { opacity: 0.95; }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops, transparent)); }
.from-background\/80 { --tw-gradient-from: rgba(12, 16, 18, 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-transparent { --tw-gradient-to: transparent; }
.border { border-width: 1px; border-style: solid; border-color: rgba(255, 255, 255, 0.12); }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-secondary { border-color: #f0c14b; }
.border-tertiary { border-color: #3dd68c; }
.rounded-full { border-radius: 9999px; }
.grayscale { filter: grayscale(100%); }
.opacity-0 { opacity: 0; }
.opacity-20 { opacity: 0.2; }
.aspect-video { aspect-ratio: 16 / 9; }

/* Interaction */
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-opacity { transition: opacity 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }
.duration-700 { transition-duration: 700ms; }
.hover\:text-secondary:hover { color: #f0c14b; }
.hover\:underline:hover { text-decoration: underline; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:text-secondary { color: #f0c14b; }
.selection\:bg-secondary::selection { background-color: #f0c14b; }
.selection\:text-on-secondary::selection { color: #3f2e00; }

/* Focus skip-link helpers */
.focus\:top-4:focus { top: 1rem; }
.focus\:left-4:focus { left: 1rem; }
.focus\:z-\[60\]:focus { z-index: 60; }
.focus\:bg-secondary:focus { background-color: #f0c14b; }
.focus\:text-on-secondary-fixed:focus { color: #1a1400; }
.focus\:px-4:focus { padding-left: 1rem; padding-right: 1rem; }
.focus\:py-2:focus { padding-top: 0.5rem; padding-bottom: 0.5rem; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:px-margin-mobile { padding-left: 16px; padding-right: 16px; }
  .sm\:text-body-lg { font-size: 18px; line-height: 30px; }
}
@media (min-width: 768px) {
  .md\:block { display: block !important; }
  .md\:flex { display: flex !important; }
  .md\:inline-flex { display: inline-flex !important; }
  .md\:hidden { display: none !important; }
  .md\:flex-row { flex-direction: row; }
  .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\:gap-4 { gap: 1rem; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:gap-gutter { gap: 24px; }
  .md\:bottom-8 { bottom: 2rem; }
  .md\:left-8 { left: 2rem; }
  .md\:mb-4 { margin-bottom: 1rem; }
  .md\:mb-6 { margin-bottom: 1.5rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:mb-14 { margin-bottom: 3.5rem; }
  .md\:mb-16 { margin-bottom: 4rem; }
  .md\:mb-20 { margin-bottom: 5rem; }
  .md\:mb-gutter { margin-bottom: 24px; }
  .md\:mt-4 { margin-top: 1rem; }
  .md\:mt-6 { margin-top: 1.5rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:pt-32 { padding-top: 8rem; }
  .md\:px-margin-desktop { padding-left: 64px; padding-right: 64px; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { margin-top: 6rem; }
  .md\:w-auto { width: auto; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-headline-md { font-size: 34px; line-height: 40px; letter-spacing: 0.02em; font-weight: 600; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:gap-16 { gap: 4rem; }
}
