@import"tailwindcss";@theme inline{ --color-midnight-navy: #0F172A; --color-royal-blue: #2563EB; --color-electric-cyan: #06B6D4; --color-emerald-green: #10B981; --color-background: hsl(0 0% 100%); --color-foreground: hsl(222 84% 5%); --color-card: hsl(0 0% 100%); --color-card-foreground: hsl(222 84% 5%); --color-popover: hsl(0 0% 100%); --color-popover-foreground: hsl(222 84% 5%); --color-primary: hsl(221 83% 53%); --color-primary-foreground: hsl(210 40% 98%); --color-secondary: hsl(210 40% 96%); --color-secondary-foreground: hsl(222 47% 11%); --color-muted: hsl(210 40% 96%); --color-muted-foreground: hsl(215 16% 47%); --color-accent: hsl(186 95% 42%); --color-accent-foreground: hsl(222 47% 11%); --color-destructive: hsl(0 84% 60%); --color-destructive-foreground: hsl(210 40% 98%); --color-border: hsl(214 32% 91%); --color-input: hsl(214 32% 91%); --color-ring: hsl(221 83% 53%); --color-sidebar-background: hsl(0 0% 98%); --color-sidebar-foreground: hsl(240 5% 26%); --color-sidebar-primary: hsl(240 6% 10%); --color-sidebar-primary-foreground: hsl(0 0% 98%); --color-sidebar-accent: hsl(240 5% 96%); --color-sidebar-accent-foreground: hsl(240 6% 10%); --color-sidebar-border: hsl(220 13% 91%); --color-sidebar-ring: hsl(217 91% 60%); --radius-sm: calc(var(--radius) - 4px); --radius-md: calc(var(--radius) - 2px); --radius-lg: var(--radius); --radius-xl: calc(var(--radius) + 4px); --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; --font-heading: "Poppins", ui-sans-serif, system-ui, sans-serif; --font-display: "Manrope", ui-sans-serif, system-ui, sans-serif; }:root{--radius: .75rem;--animation-slide-up: slide-up .6s cubic-bezier(.16, 1, .3, 1);--animation-fade-in: fade-in .8s ease-out;--animation-scale-in: scale-in .5s cubic-bezier(.16, 1, .3, 1);--glass-bg: rgba(255, 255, 255, .7);--glass-border: rgba(255, 255, 255, .2);--glass-shadow: 0 8px 32px rgba(0, 0, 0, .1)}@media (prefers-color-scheme: dark){:root{--color-background: hsl(222 84% 5%);--color-foreground: hsl(210 40% 98%);--color-card: hsl(222 84% 5%);--color-card-foreground: hsl(210 40% 98%);--color-popover: hsl(222 84% 5%);--color-popover-foreground: hsl(210 40% 98%);--color-primary: hsl(210 40% 98%);--color-primary-foreground: hsl(222 47% 11%);--color-secondary: hsl(217 33% 17%);--color-secondary-foreground: hsl(210 40% 98%);--color-muted: hsl(217 33% 17%);--color-muted-foreground: hsl(215 20% 65%);--color-accent: hsl(186 95% 42%);--color-accent-foreground: hsl(222 47% 11%);--color-destructive: hsl(0 63% 31%);--color-destructive-foreground: hsl(210 40% 98%);--color-border: hsl(217 33% 17%);--color-input: hsl(217 33% 17%);--color-ring: hsl(213 27% 84%);--color-sidebar-background: hsl(240 6% 10%);--color-sidebar-foreground: hsl(240 5% 96%);--color-sidebar-primary: hsl(224 76% 48%);--color-sidebar-primary-foreground: hsl(0 0% 100%);--color-sidebar-accent: hsl(240 4% 16%);--color-sidebar-accent-foreground: hsl(240 5% 96%);--color-sidebar-border: hsl(240 4% 16%);--color-sidebar-ring: hsl(217 91% 60%);--glass-bg: rgba(15, 23, 42, .8);--glass-border: rgba(255, 255, 255, .1);--glass-shadow: 0 8px 32px rgba(0, 0, 0, .3)}}@layer base{*{@apply border-border;}body{@apply bg-background text-foreground font-sans;font-feature-settings:"rlig" 1,"calt" 1}h1,h2,h3,h4,h5,h6{@apply font-heading;}.font-display{font-family:var(--font-display)}}@layer utilities{.glass{background:var(--glass-bg);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid var(--glass-border);box-shadow:var(--glass-shadow)}.glass-subtle{background:#ffffff80;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.15)}@media (prefers-color-scheme: dark){.glass-subtle{background:#0f172a99;border:1px solid rgba(255,255,255,.08)}}.animate-slide-up{animation:var(--animation-slide-up)}.animate-fade-in{animation:var(--animation-fade-in)}.animate-scale-in{animation:var(--animation-scale-in)}.gradient-text{@apply bg-clip-text text-transparent bg-gradient-to-r from-royal-blue to-electric-cyan;}.hero-gradient{@apply bg-gradient-to-br from-midnight-navy via-royal-blue to-electric-cyan;}.scroll-reveal{opacity:0;transform:translateY(30px);transition:opacity .6s ease-out,transform .6s ease-out}.scroll-reveal.revealed{opacity:1;transform:translateY(0)}html{scroll-behavior:smooth}::-webkit-scrollbar{width:10px;height:10px}::-webkit-scrollbar-track{@apply bg-background;}::-webkit-scrollbar-thumb{@apply bg-royal-blue rounded-full;}::-webkit-scrollbar-thumb:hover{@apply bg-electric-cyan;}}@keyframes slide-up{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes scale-in{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-20px)}}@keyframes pulse-glow{0%,to{box-shadow:0 0 20px #2563eb4d}50%{box-shadow:0 0 40px #2563eb99}}.animate-float{animation:float 6s ease-in-out infinite}.animate-pulse-glow{animation:pulse-glow 3s ease-in-out infinite}
