:root {
  --background: #f7f9fb;
  --on-surface: #191c1e;
  --secondary: #565e74;
  --secondary-container: #dae2fd;
  --on-secondary-container: #5c647a;
  --primary: #0050cb;
  --primary-container: #0066ff;
  --primary-fixed: #dae1ff;
  --on-primary: #ffffff;
  --surface-container-low: #f2f4f6;
  --surface-container-lowest: #ffffff;
  --outline-variant: #c2c6d8;
  --error: #ba1a1a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid #e5e7eb;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--on-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1em;
  line-height: 1;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.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;
}

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-12 { top: 3rem; }
.top-1\/4 { top: 25%; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.bottom-6 { bottom: 1.5rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.scale-95 { transform: scale(.95); }

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-xs { gap: 4px; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 40px; }
.gap-3 { gap: .75rem; }
.gap-8 { gap: 2rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-xs { margin-top: 4px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 40px; }
.mb-xs { margin-bottom: 4px; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.mb-xl { margin-bottom: 40px; }
.space-y-xs > * + * { margin-top: 4px; }
.space-y-sm > * + * { margin-top: 8px; }
.space-y-md > * + * { margin-top: 16px; }
.space-y-lg > * + * { margin-top: 24px; }

.p-sm { padding: 8px; }
.p-md { padding: 16px; }
.p-lg { padding: 24px; }
.p-xl { padding: 40px; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-lg { padding-left: 24px; padding-right: 24px; }
.px-xl { padding-left: 40px; padding-right: 40px; }
.px-xxl { padding-left: 80px; padding-right: 80px; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-xs { padding-top: 4px; padding-bottom: 4px; }
.py-md { padding-top: 16px; padding-bottom: 16px; }
.py-xl { padding-top: 40px; padding-bottom: 40px; }
.py-xxl { padding-top: 80px; padding-bottom: 80px; }
.pt-3 { padding-top: .75rem; }
.pt-lg { padding-top: 24px; }
.pt-xxl { padding-top: 80px; }
.pb-1 { padding-bottom: .25rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-lg { padding-bottom: 24px; }
.pb-xl { padding-bottom: 40px; }

.h-1 { height: .25rem; }
.h-\[2px\] { height: 2px; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-1\/2 { height: 50%; }
.h-1\/4 { height: 25%; }
.h-3\/4 { height: 75%; }
.min-h-full { min-height: 100%; }
.min-h-\[720px\] { min-height: 720px; }
.w-1 { width: .25rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.max-w-\[1280px\] { max-width: 1280px; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }

.overflow-hidden { overflow: hidden; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.pointer-events-none { pointer-events: none; }
.cursor-default { cursor: default; }
.scroll-mt-24 { scroll-margin-top: 6rem; }
.whitespace-nowrap { white-space: nowrap; }

.rounded-lg { border-radius: .25rem; }
.rounded-xl { border-radius: .5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: .75rem; }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b-2 { border-bottom-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-l-4 { border-left-width: 4px; }
.border-dashed { border-style: dashed; }
.border-white\/10 { border-color: rgba(255, 255, 255, .1); }
.border-blue-600 { border-color: #2563eb; }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-outline-variant { border-color: var(--outline-variant); }
.border-primary { border-color: var(--primary); }
.border-primary-container { border-color: var(--primary-container); }
.border-primary-container\/20 { border-color: rgba(0, 102, 255, .2); }
.border-error\/20 { border-color: rgba(186, 26, 26, .2); }

.bg-background { background-color: var(--background); }
.bg-white { background-color: #fff; }
.bg-white\/80 { background-color: rgba(255, 255, 255, .8); }
.bg-white\/95 { background-color: rgba(255, 255, 255, .95); }
.bg-transparent { background-color: transparent; }
.bg-primary { background-color: var(--primary); }
.bg-primary\/10 { background-color: rgba(0, 80, 203, .1); }
.bg-primary-container\/5 { background-color: rgba(0, 102, 255, .05); }
.bg-primary-fixed { background-color: var(--primary-fixed); }
.bg-secondary-container { background-color: var(--secondary-container); }
.bg-surface-container-low { background-color: var(--surface-container-low); }
.bg-surface-container-lowest { background-color: var(--surface-container-lowest); }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-200 { background-color: #e2e8f0; }
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-950\/50 { background-color: rgba(2, 6, 23, .5); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-blue-700 { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via, rgba(29, 78, 216, 0)), var(--tw-gradient-to, rgba(29, 78, 216, 0)); }
.via-primary { --tw-gradient-via: var(--primary); }
.to-cyan-400 { --tw-gradient-to: #22d3ee; }
.from-primary\/5 { --tw-gradient-from: rgba(0, 80, 203, .05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 80, 203, 0)); }
.to-transparent { --tw-gradient-to: transparent; }

.font-inter,
.font-code,
.font-h1,
.font-body-md,
.font-body-lg,
.font-label-sm,
.font-h2,
.font-display {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.font-h1 { font-weight: 600; letter-spacing: -.01em; line-height: 1.2; }
.font-h2 { font-weight: 600; letter-spacing: -.01em; line-height: 1.3; }
.font-body-md { font-weight: 400; line-height: 1.5; }
.font-body-lg { font-weight: 400; line-height: 1.6; }
.font-label-sm { font-weight: 500; letter-spacing: .01em; line-height: 1.4; }
.font-display { font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.tracking-tight { letter-spacing: -.025em; }
.leading-relaxed { line-height: 1.625; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.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-h1 { font-size: 32px; line-height: 1.2; letter-spacing: -.01em; font-weight: 600; }
.text-h2 { font-size: 24px; line-height: 1.3; letter-spacing: -.01em; font-weight: 600; }
.text-body-md { font-size: 16px; line-height: 1.5; }
.text-body-lg { font-size: 18px; line-height: 1.6; }
.text-display { font-size: 48px; line-height: 1.1; letter-spacing: -.02em; font-weight: 700; }
.text-white { color: #fff; }
.text-on-surface { color: var(--on-surface); }
.text-on-primary { color: var(--on-primary); }
.text-on-secondary-container { color: var(--on-secondary-container); }
.text-secondary { color: var(--secondary); }
.text-primary { color: var(--primary); }
.text-error { color: var(--error); }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-900 { color: #0f172a; }

.shadow-sm { box-shadow: 0 1px 2px rgba(15, 23, 42, .05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(15, 23, 42, .1), 0 2px 4px -2px rgba(15, 23, 42, .1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(15, 23, 42, .1), 0 4px 6px -4px rgba(15, 23, 42, .1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(15, 23, 42, .1), 0 8px 10px -6px rgba(15, 23, 42, .1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(15, 23, 42, .25); }
.shadow-blue-500\/20 { box-shadow: 0 1px 2px rgba(59, 130, 246, .2); }
.shadow-blue-500\/30 { box-shadow: 0 20px 25px -5px rgba(59, 130, 246, .3), 0 8px 10px -6px rgba(59, 130, 246, .3); }
.shadow-\[0_0_40px_rgba\(0\,102\,255\,0\.4\)\] { box-shadow: 0 0 40px rgba(0,102,255,.4); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(.4, 0, .2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(.4, 0, .2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(.4, 0, .2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(.4, 0, .2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.animate-pulse { animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite; }

@keyframes pulse {
  50% { opacity: .5; }
}

.hover\:scale-100:hover { transform: scale(1); }
.hover\:-translate-y-1:hover { transform: translateY(-.25rem); }
.hover\:translate-y-\[-2px\]:hover { transform: translateY(-2px); }
.hover\:text-blue-500:hover { color: #3b82f6; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }
.hover\:bg-primary\/5:hover { background-color: rgba(0, 80, 203, .05); }
.hover\:border-primary:hover { border-color: var(--primary); }
.hover\:border-primary\/40:hover { border-color: rgba(0, 80, 203, .4); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(15, 23, 42, .1), 0 4px 6px -4px rgba(15, 23, 42, .1); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(15, 23, 42, .1), 0 2px 4px -2px rgba(15, 23, 42, .1); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:w-full { width: 100%; }

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

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:h-11 { height: 2.75rem; }
  .md\:min-h-\[921px\] { min-height: 921px; }
  .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-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:grid-cols-\[0\.8fr_1\.4fr\] { grid-template-columns: .8fr 1.4fr; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:gap-xl { gap: 40px; }
  .md\:text-display { font-size: 48px; line-height: 1.1; letter-spacing: -.02em; font-weight: 700; }
  .md\:text-right { text-align: right; }
  .md\:whitespace-nowrap { white-space: nowrap; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
