/* Base styles */
:root {
  --primary: #3b82f6;
  --primary-foreground: #ffffff;
  --primary-hover: #2563eb;
  --secondary: #f3f4f6;
  --secondary-foreground: #1f2937;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --accent: #f3f4f6;
  --accent-foreground: #1f2937;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #3b82f6;
  --radius: 0.5rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1f2937;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.grid {
  display: grid;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.min-h-screen {
  min-height: 100vh;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-600 {
  max-width: 600px;
}

.max-w-900 {
  max-width: 900px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-0 {
  padding: 0;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

/* Typography */
.text-center {
  text-align: center;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.italic {
  font-style: italic;
}

/* Colors */
.text-white {
  color: #ffffff;
}

.text-primary {
  color: var(--primary);
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-700 {
  color: #374151;
}

.bg-white {
  background-color: #ffffff;
}
/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.header-container {
  display: flex;
  height: 3.5rem;
  align-items: center;
}

.logo {
  margin-right: 1rem;
  display: flex;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1.5rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  color: var(--text-light);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text);
}
.bg-black {
  background-color: #000000;
}

.bg-primary {
  background-color: var(--primary);
}

.bg-primary-10 {
  background-color: rgba(59, 130, 246, 0.1);
}

.bg-primary-80 {
  background-color: rgba(59, 130, 246, 0.8);
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.bg-gray-800 {
  background-color: #1f2937;
}

.bg-gray-900 {
  background-color: #111827;
}

.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-white-40 {
  background-color: rgba(255, 255, 255, 0.4);
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-black {
  --tw-gradient-stops: #000000, transparent;
}

.from-black-60 {
  --tw-gradient-stops: rgba(0, 0, 0, 0.6), transparent;
}

.to-transparent {
  --tw-gradient-stops: var(--tw-gradient-from), transparent;
}

.to-gray-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #111827;
}

.border {
  border: 1px solid var(--border);
}

.border-t {
  border-top-width: 1px;
}

.border-gray-700 {
  border-color: #374151;
}

.border-gray-800 {
  border-color: #1f2937;
}

.border-white {
  border-color: #ffffff;
}

.border-primary {
  border-color: var(--primary);
}

.border-none {
  border: none;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Components */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}

.badge-outline {
  background-color: transparent;
  border: 1px solid;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  cursor: pointer;
}

.button-lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.button-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.button-primary:hover {
  background-color: var(--primary-hover);
}

.button-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.button-secondary:hover {
  background-color: #e5e7eb;
}

.button-outline {
  background-color: transparent;
  border: 1px solid;
}

.button-link {
  background-color: transparent;
  padding: 0;
  height: auto;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.button-icon {
  padding: 0.5rem;
  height: 2rem;
  width: 2rem;
}

.card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.card-content {
  padding: 1.5rem;
}

.input {
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid var(--input);
  background-color: transparent;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 1px var(--ring);
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}

.tabs-list {
  display: grid;
  width: 100%;
  border-radius: 0.5rem;
  background-color: var(--muted);
  padding: 0.25rem;
}

.tabs-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  transition-property: background-color, color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  cursor: pointer;
}

.tabs-trigger.active {
  background-color: #ffffff;
  color: var(--primary);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.tabs-content {
  display: none;
}

.tabs-content.active {
  display: block;
}

/* Utilities */
.aspect-video {
  aspect-ratio: 16 / 9;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-center {
  object-position: center;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.inset-x-0 {
  left: 0;
  right: 0;
}

.top-2 {
  top: 0.5rem;
}

.left-2 {
  left: 0.5rem;
}

.bottom-0 {
  bottom: 0;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-48 {
  height: 12rem;
}

.h-300 {
  height: 300px;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.opacity-60 {
  opacity: 0.6;
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.clip-path-50 {
  clip-path: inset(0 50% 0 0);
}

.list-disc {
  list-style-type: disc;
}

.hover-bg-primary:hover {
  background-color: var(--primary);
}

.hover-bg-white-10:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hover-bg-white-40:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.hover-text-white:hover {
  color: #ffffff;
}

.-scale-x-100 {
  transform: scaleX(-1);
}

/* Responsive */
@media (min-width: 400px) {
  .min-400-flex-row {
    flex-direction: row;
  }
}

@media (min-width: 640px) {
  .sm-text-5xl {
    font-size: 3rem;
  }

  .sm-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm-w-full {
    width: 100%;
  }

  .sm-flex-row {
    flex-direction: row;
  }

  .sm-mb-0 {
    margin-bottom: 0;
  }

  .sm-h-400 {
    height: 400px;
  }
}

@media (min-width: 768px) {
  .md-text-xl {
    font-size: 1.25rem;
  }

  .md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md-py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .lg-text-base {
    font-size: 1rem;
  }

  .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-gap-12 {
    gap: 3rem;
  }

  .lg-py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .lg-order-last {
    order: 9999;
  }

  .lg-h-500 {
    height: 500px;
  }
}

@media (min-width: 1280px) {
  .xl-text-xl {
    font-size: 1.25rem;
  }

  .xl-text-6xl {
    font-size: 3.75rem;
  }

  .xl-py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

