@charset "utf-8";

/* Font imports - Using system fonts and Google Fonts Inter */
/* Inter font is loaded via Google Fonts in the HTML */

/* CSS Variables / Theme */
:root {
  --background: oklch(1 0 0);
  --foreground: oklch(0.235 0.006 264.052);
  --card: oklch(0.976 0.006 264.052);
  --card-foreground: oklch(0.314 0.017 264.052);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.235 0.006 264.052);
  --primary: oklch(0.6 0.12 240);
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.72 0.08 240);
  --secondary-foreground: oklch(0.2 0.006 264.052);
  --muted: oklch(0.976 0.006 264.052);
  --muted-foreground: oklch(0.235 0.006 264.052);
  --accent: oklch(0.72 0.08 240);
  --accent-foreground: oklch(0.2 0.006 264.052);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(1 0 0);
  --border: oklch(0.922 0.006 264.052);
  --input: oklch(0.976 0.006 264.052);
  --ring: oklch(0.6 0.12 240);
  --chart-1: oklch(0.577 0.245 27.325);
  --chart-2: oklch(0.646 0.222 41.116);
  --chart-3: oklch(0.6 0.12 240);
  --chart-4: oklch(0.72 0.08 240);
  --chart-5: oklch(0.398 0.07 227.392);
  --radius: 0.5rem;
  --sidebar: oklch(1 0 0);
  --sidebar-foreground: oklch(0.235 0.006 264.052);
  --sidebar-primary: oklch(0.6 0.12 240);
  --sidebar-primary-foreground: oklch(1 0 0);
  --sidebar-accent: oklch(0.72 0.08 240);
  --sidebar-accent-foreground: oklch(0.2 0.006 264.052);
  --sidebar-border: oklch(0.922 0.006 264.052);
  --sidebar-ring: oklch(0.72 0.08 240);
  --spacing: 0.25rem;
  --font-geist-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-geist-mono: ui-monospace, SFMono-Regular, 'SF Mono', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.72 0.08 240);
  --primary-foreground: oklch(0.145 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(0.269 0 0);
  --sidebar-ring: oklch(0.439 0 0);
}

/* Base styles */
*, ::after, ::before, ::backdrop, ::file-selector-button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

html, :host {
  line-height: 1.5;
  text-size-adjust: 100%;
  tab-size: 4;
  font-family: var(--font-geist-sans, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--background);
  color: var(--foreground);
}

/* Utility classes */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

/* Common utility classes */
.mx-auto { margin-inline: auto; }
.px-4 { padding-inline: calc(var(--spacing) * 4); }
.py-4 { padding-block: calc(var(--spacing) * 4); }
.py-16 { padding-block: calc(var(--spacing) * 16); }
.py-12 { padding-block: calc(var(--spacing) * 12); }
.px-2 { padding-inline: calc(var(--spacing) * 2); }
.px-6 { padding-inline: calc(var(--spacing) * 6); }
.px-8 { padding-inline: calc(var(--spacing) * 8); }
.py-6 { padding-block: calc(var(--spacing) * 6); }
.pt-6 { padding-top: calc(var(--spacing) * 6); }
.pt-0 { padding-top: calc(var(--spacing) * 0); }
.pt-8 { padding-top: calc(var(--spacing) * 8); }
.mb-4 { margin-bottom: calc(var(--spacing) * 4); }
.mb-6 { margin-bottom: calc(var(--spacing) * 6); }
.mb-8 { margin-bottom: calc(var(--spacing) * 8); }
.mb-12 { margin-bottom: calc(var(--spacing) * 12); }
.mb-3 { margin-bottom: calc(var(--spacing) * 3); }
.mr-3 { margin-right: calc(var(--spacing) * 3); }
.mt-4 { margin-top: calc(var(--spacing) * 4); }
.mt-8 { margin-top: calc(var(--spacing) * 8); }
.ml-2 { margin-left: calc(var(--spacing) * 2); }

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

.min-h-screen { min-height: 100vh; }
.w-8 { width: calc(var(--spacing) * 8); }
.h-8 { height: calc(var(--spacing) * 8); }
.w-12 { width: calc(var(--spacing) * 12); }
.h-12 { height: calc(var(--spacing) * 12); }
.w-16 { width: calc(var(--spacing) * 16); }
.h-16 { height: calc(var(--spacing) * 16); }
.w-10 { width: calc(var(--spacing) * 10); }
.h-10 { height: calc(var(--spacing) * 10); }
.w-5 { width: calc(var(--spacing) * 5); }
.h-5 { height: calc(var(--spacing) * 5); }
.w-6 { width: calc(var(--spacing) * 6); }
.h-6 { height: calc(var(--spacing) * 6); }
.w-4 { width: calc(var(--spacing) * 4); }
.h-4 { height: calc(var(--spacing) * 4); }

.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.gap-2 { gap: calc(var(--spacing) * 2); }
.gap-6 { gap: calc(var(--spacing) * 6); }
.gap-8 { gap: calc(var(--spacing) * 8); }
.space-x-2 > * + * { margin-left: calc(var(--spacing) * 2); }
.space-x-6 > * + * { margin-left: calc(var(--spacing) * 6); }
.space-y-2 > * + * { margin-top: calc(var(--spacing) * 2); }

.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; }
.border-0 { border-width: 0px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-border { border-color: var(--border); }
.border-transparent { border-color: transparent; }

.bg-background { background-color: var(--background); }
.bg-background\/95 { background-color: rgb(from var(--background) r g b / 0.95); }
.bg-background\/60 { background-color: rgb(from var(--background) r g b / 0.6); }
.bg-primary { background-color: var(--primary); }
.bg-primary\/5 { background-color: rgb(from var(--primary) r g b / 0.05); }
.bg-primary\/10 { background-color: rgb(from var(--primary) r g b / 0.1); }
.bg-primary\/90 { background-color: rgb(from var(--primary) r g b / 0.9); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent\/5 { background-color: rgb(from var(--accent) r g b / 0.05); }
.bg-card { background-color: var(--card); }
.bg-card\/50 { background-color: rgb(from var(--card) r g b / 0.5); }
.bg-muted\/20 { background-color: rgb(from var(--muted) r g b / 0.2); }
.bg-muted\/30 { background-color: rgb(from var(--muted) r g b / 0.3); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-primary\/5 { --tw-gradient-from: rgb(from var(--primary) r g b / 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-accent\/5 { --tw-gradient-to: rgb(from var(--accent) r g b / 0.05); }

.fill-primary { fill: var(--primary); }

.text-center { text-align: center; }
.font-sans { font-family: var(--font-geist-sans); }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.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; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.whitespace-nowrap { white-space: nowrap; }

.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-secondary-foreground { color: var(--secondary-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.text-card-foreground { color: var(--card-foreground); }

.shadow-xs { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-sm { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.hover\:bg-primary\/90:hover { background-color: rgb(from var(--primary) r g b / 0.9); }
.hover\:text-foreground:hover { color: var(--foreground); }

.backdrop-blur { backdrop-filter: blur(8px); }

.sticky { position: sticky; }
.relative { position: relative; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }

.supports-\[backdrop-filter\]\:bg-background\/60 { 
  @supports (backdrop-filter: blur(0)) {
    background-color: rgb(from var(--background) r g b / 0.6);
  }
}

.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:py-20 { padding-block: calc(var(--spacing) * 20); }
  .md\:py-24 { padding-block: calc(var(--spacing) * 24); }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .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-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
}

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

/* Custom animations */
@keyframes pulse {
  50% { opacity: 0.5; }
}
