/* Tailwind CSS - Local build. Variables match app/globals.css exactly. */
:root {
  --background: oklch(0.995 0.001 0);
  --foreground: oklch(0.18 0.008 240);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.008 240);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.18 0.008 240);
  --primary: oklch(0.32 0.14 245);
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.88 0.06 200);
  --secondary-foreground: oklch(0.32 0.14 245);
  --muted: oklch(0.94 0.01 240);
  --muted-foreground: oklch(0.55 0.04 240);
  --accent: oklch(0.58 0.18 175);
  --accent-foreground: oklch(1 0 0);
  --border: oklch(0.94 0.008 240);
  --input: oklch(0.97 0.005 240);
  --ring: oklch(0.32 0.14 245);
  --radius: 0.625rem;
}

*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: var(--border); }
html { scroll-behavior: smooth; }
body { margin: 0; line-height: inherit; background-color: var(--background); color: var(--foreground); -webkit-font-smoothing: antialiased; }

/* Layout */
.sticky { position: sticky; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-8 { top: 2rem; }
.top-20 { top: 5rem; }
.-bottom-40 { bottom: -10rem; }
.left-10 { left: 2.5rem; }
.-bottom-6 { bottom: -1.5rem; }
.-right-6 { right: -1.5rem; }
.-mr-16 { margin-right: -4rem; }
.-mt-16 { margin-top: -4rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
@media (min-width: 640px) { .sm\:block { display: block; } .sm\:flex-row { flex-direction: row; } .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; } .sm\:text-sm { font-size: 0.875rem; } .sm\:text-lg { font-size: 1.125rem; } .sm\:gap-3 { gap: 0.75rem; } .sm\:col-span-2 { grid-column: span 2 / span 2; } .sm\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } .sm\:gap-2 { gap: 0.5rem; } .sm\:text-sm { font-size: 0.875rem; } .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 768px) { .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .lg\:flex { display: flex; } .lg\:hidden { display: none; } .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\:gap-8 { gap: 2rem; } .lg\:gap-16 { gap: 4rem; } .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; } .lg\:text-6xl { font-size: 3.75rem; } .lg\:col-span-1 { grid-column: span 1 / span 1; } .lg\:gap-12 { gap: 3rem; } }

/* Flexbox */
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-3 { gap: 0.75rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Sizing */
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-32 { width: 8rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.max-w-xs { max-width: 20rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }

/* Spacing */
.mx-auto { margin-left: auto; margin-right: auto; }
.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-12 { margin-bottom: 3rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.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; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } .sm\:py-32 { padding-top: 8rem; padding-bottom: 8rem; } .sm\:p-12 { padding: 3rem; } }
@media (min-width: 1024px) { .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; } }

/* Typography */
.text-left { text-align: left; }
.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; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.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; }

/* Colors - background */
.bg-white { background-color: #fff; }
.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.bg-secondary { background-color: var(--secondary); }
.bg-foreground { background-color: var(--foreground); }
.bg-primary\/10 { background-color: oklch(0.32 0.14 245 / 0.1); }
.bg-primary\/2 { background-color: oklch(0.32 0.14 245 / 0.02); }
.bg-primary\/5 { background-color: oklch(0.32 0.14 245 / 0.05); }
.bg-primary\/20 { background-color: oklch(0.32 0.14 245 / 0.2); }
.bg-accent\/10 { background-color: oklch(0.58 0.18 175 / 0.1); }
.bg-accent\/2 { background-color: oklch(0.58 0.18 175 / 0.02); }
.bg-accent\/5 { background-color: oklch(0.58 0.18 175 / 0.05); }
.bg-accent\/20 { background-color: oklch(0.58 0.18 175 / 0.2); }
.bg-white\/95 { background-color: rgb(255 255 255 / 0.95); }
.bg-white\/70 { background-color: rgb(255 255 255 / 0.7); }
.bg-white\/10 { background-color: rgb(255 255 255 / 0.1); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-slate-50 { --tw-gradient-from: #f8fafc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-white { --tw-gradient-to: rgb(255 255 255 / 0); --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to); }
.to-blue-50 { --tw-gradient-to: #eff6ff; }
.to-white { --tw-gradient-to: #fff; }
.to-primary\/2 { --tw-gradient-to: oklch(0.32 0.14 245 / 0.02); }
.to-accent\/2 { --tw-gradient-to: oklch(0.58 0.18 175 / 0.02); }
.from-primary\/20 { --tw-gradient-from: oklch(0.32 0.14 245 / 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-accent\/20 { --tw-gradient-to: oklch(0.58 0.18 175 / 0.2); }
.from-primary { --tw-gradient-from: var(--primary); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-primary\/90 { --tw-gradient-to: oklch(0.32 0.14 245 / 0.9); --tw-gradient-stops: var(--tw-gradient-from), oklch(0.32 0.14 245 / 0.9), var(--tw-gradient-to); }
.to-primary\/80 { --tw-gradient-to: oklch(0.32 0.14 245 / 0.8); }
.from-primary\/10 { --tw-gradient-from: oklch(0.32 0.14 245 / 0.1); }
.to-accent\/10 { --tw-gradient-to: oklch(0.58 0.18 175 / 0.1); }

/* Colors - text */
.text-white { color: #fff; }
.text-foreground { color: var(--foreground); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-white\/90 { color: rgb(255 255 255 / 0.9); }
.text-white\/70 { color: rgb(255 255 255 / 0.7); }

/* Border */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-border { border-color: var(--border); }
.border-border\/50 { border-color: oklch(0.94 0.008 240 / 0.5); }
.border-white\/10 { border-color: rgb(255 255 255 / 0.1); }
.border-2 { border-width: 2px; }
.border-primary { border-color: var(--primary); }
.border-primary\/20 { border-color: oklch(0.32 0.14 245 / 0.2); }
.hover\:border-primary\/40:hover { border-color: oklch(0.32 0.14 245 / 0.4); }
.hover\:border-accent\/40:hover { border-color: oklch(0.58 0.18 175 / 0.4); }
.hover\:border-primary\/20:hover { border-color: oklch(0.32 0.14 245 / 0.2); }

/* Border radius */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Effects */
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }
.opacity-10 { opacity: 0.1; }
.opacity-30 { opacity: 0.3; }
.overflow-hidden { overflow: hidden; }

/* Transitions */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.hover\:bg-primary\/90:hover { background-color: oklch(0.32 0.14 245 / 0.9); }
.hover\:bg-primary\/5:hover { background-color: oklch(0.32 0.14 245 / 0.05); }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:bg-secondary:hover { background-color: var(--secondary); }
.hover\:text-accent:hover { color: var(--accent); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.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); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:scale-150 { transform: scale(1.5); }

/* Space */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Form */
input, select, textarea { font: inherit; color: inherit; }
.w-full { width: 100%; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--ring); }
.focus\:ring-primary\/50:focus { --tw-ring-color: oklch(0.32 0.14 245 / 0.5); box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus-visible\:outline-none:focus-visible { outline: 2px solid transparent; outline-offset: 2px; }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px var(--ring); }
.focus-visible\:ring-primary\/50:focus-visible { --tw-ring-color: oklch(0.32 0.14 245 / 0.5); box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus-visible\:ring-offset-2:focus-visible { outline-offset: 2px; }
.focus-visible\:ring-primary:focus-visible { --tw-ring-color: var(--primary); box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus-visible\:ring-accent:focus-visible { --tw-ring-color: var(--accent); box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus-visible\:ring-offset-foreground:focus-visible { --tw-ring-offset-color: var(--foreground); }

/* Buttons & interactive */
button:not(:disabled) { cursor: pointer; }
button:disabled, .cursor-not-allowed { cursor: not-allowed; }
button[disabled] { opacity: 0.7; }
.disabled\:opacity-70:disabled { opacity: 0.7; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }
.a11y\:focus-visible:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

/* Navbar scroll shadow */
.navbar-scrolled { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.08); }

/* Success checkmark */
.success-check { display: inline-flex; align-items: center; justify-content: center; width: 4rem; height: 4rem; border-radius: 9999px; background: oklch(0.58 0.18 175 / 0.2); color: var(--accent); }

/* Form error message */
.form-error { margin-top: 0.5rem; font-size: 0.875rem; color: oklch(0.577 0.245 27.325); }
.form-error.hidden { display: none; }

/* List */
ul { list-style: none; padding: 0; margin: 0; }
li { margin: 0; }

/* SVG icons - inline size */
svg { flex-shrink: 0; vertical-align: middle; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-\[14px\] { width: 14px; }
.h-\[14px\] { height: 14px; }
.w-\[16px\] { width: 16px; }
.h-\[16px\] { height: 16px; }
.w-\[18px\] { width: 18px; }
.h-\[18px\] { height: 18px; }
.w-\[20px\] { width: 20px; }
.h-\[20px\] { height: 20px; }
.w-\[24px\] { width: 24px; }
.h-\[24px\] { height: 24px; }
.w-\[28px\] { width: 28px; }
.h-\[28px\] { height: 28px; }
.w-\[40px\] { width: 40px; }
.h-\[40px\] { height: 40px; }
