/* NOTE: This is a minimal Tailwind CSS output. For full Tailwind features, install Node.js and run: npm install && npm run build */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Base reset - stop default link styling so Tailwind can control it */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Tailwind Base Styles */
*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #111827;
    background-color: #f9fafb;
}

/* Utility Classes - Add more as needed after running npm run build */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 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;
    }
}

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

/* Header & nav layout - prevent "messy" unstyled nav */
header nav .flex {
    display: flex;
    flex-wrap: wrap;
}

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

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

header .container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

header.bg-white\/95 {
    background-color: rgba(255, 255, 255, 0.95);
}

header.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

header.border-b {
    border-bottom-width: 1px;
}

header .border-gray-100 {
    border-color: #f3f4f6;
}

header.sticky {
    position: sticky;
}

header.top-0 {
    top: 0;
}

header.z-50 {
    z-index: 50;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

.space-x-3>*+* {
    margin-left: 0.75rem;
}

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

.space-x-8>*+* {
    margin-left: 2rem;
}

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

header a.nav-link {
    color: #374151;
    font-weight: 500;
}

header a.nav-link:hover {
    color: #53C5E0;
}

header .btn-gradient-primary {
    background: linear-gradient(to right, #53C5E0, #32a1c4);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

header .btn-gradient-primary:hover {
    opacity: 0.95;
}

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

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

header a[href].text-gray-700 {
    color: #374151;
}

header a[href].text-gray-700:hover {
    color: #53C5E0;
}

.z-50 {
    z-index: 50;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.border-b {
    border-bottom-width: 1px;
}

.border-gray-100 {
    border-color: #f3f4f6;
}

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

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

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

/* Custom Component Classes */
.btn-primary {
    background-color: #53C5E0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #4338CA;
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #d1d5db;
}

.btn-danger {
    background-color: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-danger:hover {
    background-color: #dc2626;
}

.input-field {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: #53C5E0;
    box-shadow: 0 0 0 2px rgba(83, 197, 224, 0.3);
}

.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

/* Basic Tailwind-like utilities - for full set, run npm run build */
.bg-white {
    background-color: #fff;
}

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

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

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

.bg-indigo-600 {
    background-color: #53C5E0;
}

.bg-red-50 {
    background-color: #fef2f2;
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-yellow-100 {
    background-color: #fef3c7;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.text-white {
    color: #fff;
}

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

.text-gray-600 {
    color: #4b5563;
}

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

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

.text-gray-900 {
    color: #111827;
}

.text-red-600 {
    color: #dc2626;
}

.text-red-700 {
    color: #b91c1c;
}

.text-red-800 {
    color: #991b1b;
}

.text-green-700 {
    color: #15803d;
}

.text-green-800 {
    color: #166534;
}

.text-yellow-800 {
    color: #854d0e;
}

.text-blue-800 {
    color: #1e40af;
}

.text-indigo-600 {
    color: #53C5E0;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline {
    display: inline;
}

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

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

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

.w-full {
    width: 100%;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

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

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

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

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

.m-0 {
    margin: 0;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

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

.mb-6 {
    margin-bottom: 1.5rem;
}

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

.max-w-2xl {
    max-width: 42rem;
}

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

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

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

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

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

.font-medium {
    font-weight: 500;
}

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

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

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

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

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.border {
    border-width: 1px;
}

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

.border-red-200 {
    border-color: #fecaca;
}

.border-green-200 {
    border-color: #bbf7d0;
}

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

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

.transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.hover\:bg-indigo-700:hover {
    background-color: #4338CA;
}

.hover\:text-indigo-600:hover {
    color: #53C5E0;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.z-40 {
    z-index: 40;
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .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\:block {
        display: block;
    }
}

/* ===== Landing page - professional design (Tailwind-like utilities) ===== */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

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

.overflow-hidden {
    overflow: hidden;
}

.bg-slate-900 {
    background-color: #0f172a;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.bg-slate-100 {
    background-color: #f1f5f9;
}

.bg-slate-800 {
    background-color: #1e293b;
}

.bg-indigo-50 {
    background-color: #eef2ff;
}

.bg-indigo-100 {
    background-color: #e0e7ff;
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

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

.bg-white\/15 {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Hero overlay gradient - single class for compatibility */
.hero-dark-gradient {
    background: linear-gradient(to bottom right, rgba(83, 197, 224, 0.9), #1e293b, #0f172a);
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-lg {
    max-width: 32rem;
}

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

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

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

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

.py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

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

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

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

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

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

.py-28 {
    padding-bottom: 7rem;
    padding-top: 7rem;
}

.pt-10 {
    padding-top: 2.5rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pb-24 {
    padding-bottom: 6rem;
}

.p-8 {
    padding: 2rem;
}

.p-12 {
    padding: 3rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

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

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

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

.mt-14 {
    margin-top: 3.5rem;
}

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

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

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

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

.-right-4 {
    right: -1rem;
}

.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-7 {
    width: 1.75rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-14 {
    width: 3.5rem;
}

.w-24 {
    width: 6rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-7 {
    height: 1.75rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.h-24 {
    height: 6rem;
}

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

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

.text-4xl {
    font-size: 2.25rem;
}

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

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

.uppercase {
    text-transform: uppercase;
}

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

.tracking-tight {
    letter-spacing: -0.025em;
}

.leading-relaxed {
    line-height: 1.625;
}

.text-indigo-200 {
    color: #c7d2fe;
}

.text-indigo-300 {
    color: #a5b4fc;
}

.text-indigo-600 {
    color: #53C5E0;
}

.text-indigo-700 {
    color: #4338ca;
}

.text-slate-300 {
    color: #cbd5e1;
}

.text-slate-400 {
    color: #94a3b8;
}

.text-slate-500 {
    color: #64748b;
}

.text-slate-600 {
    color: #475569;
}

.text-slate-800 {
    color: #1e293b;
}

.text-slate-900 {
    color: #0f172a;
}

.text-white\/20 {
    color: rgba(255, 255, 255, 0.2);
}

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

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-slate-100 {
    border-color: #f1f5f9;
}

.border-slate-200 {
    border-color: #e2e8f0;
}

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

.rounded-2xl {
    border-radius: 1rem;
}

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

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.aspect-square {
    aspect-ratio: 1/1;
}

.aspect-\[4\/3\] {
    aspect-ratio: 4/3;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

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

.inline-flex {
    display: inline-flex;
}

.justify-end {
    justify-content: flex-end;
}

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

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

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

.opacity-\[0\.03\] {
    opacity: 0.03;
}

.mt-0\.5 {
    margin-top: 0.125rem;
}

.leading-\[1\.1\] {
    line-height: 1.1;
}

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

.focus\:outline-none:focus {
    outline: none;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px #fff;
}

.focus\:ring-offset-2:focus {
    --tw-ring-offset-shadow: 0 0 0 2px #fff;
}

.hover\:bg-slate-50:hover {
    background-color: #f8fafc;
}

.hover\:bg-white\/15:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.hover\:border-indigo-200:hover {
    border-color: #c7d2fe;
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hover\:bg-indigo-100:hover {
    background-color: #e0e7ff;
}

.hover\:text-indigo-700:hover {
    color: #4338ca;
}

.group:hover .group-hover\:bg-indigo-100 {
    background-color: #e0e7ff;
}

.border-slate-200\/80 {
    border-color: rgba(226, 232, 240, 0.8);
}

.border-slate-200\/60 {
    border-color: rgba(226, 232, 240, 0.6);
}

.bg-emerald-50 {
    background-color: #ecfdf5;
}

.bg-amber-50 {
    background-color: #fffbeb;
}

.text-emerald-600 {
    color: #059669;
}

.text-amber-600 {
    color: #d97706;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

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

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

@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:text-4xl {
        font-size: 2.25rem;
    }

    .sm\:text-5xl {
        font-size: 3rem;
    }

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

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

    .md\:pt-28 {
        padding-top: 7rem;
    }

    .md\:pb-32 {
        padding-bottom: 8rem;
    }

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

    .md\:py-28 {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

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

    .lg\:gap-16 {
        gap: 4rem;
    }

    .lg\:gap-24 {
        gap: 6rem;
    }

    .lg\:order-1 {
        order: 1;
    }

    .lg\:order-2 {
        order: 2;
    }

    .lg\:justify-end {
        justify-content: flex-end;
    }

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

/* ========== Footer (ft-) - single column layout, fixed icon sizes ========== */
.ft-wrap {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1.25rem;
}

.ft-footer {
    background: #1e293b;
    color: #e2e8f0;
    margin-top: 2rem;
}

.ft-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ft-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ft-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem 0;
}

.ft-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #a5b4fc;
    margin: 0 0 0.5rem 0;
}

.ft-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.ft-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-list li {
    margin-bottom: 0.5rem;
}

.ft-list a {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: none;
}

.ft-list a:hover {
    color: #a5b4fc;
}

.ft-list-item {
    font-size: 0.875rem;
    color: #94a3b8;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.ft-list-item .ft-ico {
    flex-shrink: 0;
    width: 1em;
    font-size: 0.875rem;
    color: #a5b4fc;
}

.ft-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.ft-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border-radius: 50%;
    text-decoration: none;
}

.ft-social a:hover {
    background: #53C5E0;
    color: #fff;
}

.ft-social svg {
    width: 18px;
    height: 18px;
    display: block;
}

.ft-hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 2rem 0 1rem 0;
}

.ft-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.8125rem;
    color: #94a3b8;
}

@media (min-width: 768px) {
    .ft-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* For full Tailwind utilities, run: npm install && npm run build */

/* ===== Custom Color Palette (from tailwind.config.js) ===== */

/* Primary colors */
.text-primary-50 {
    color: #EDEEFE;
}

.text-primary-100 {
    color: #DDD9FD;
}

.text-primary-200 {
    color: #BBB3FB;
}

.text-primary-300 {
    color: #9A8EF9;
}

.text-primary-400 {
    color: #7868F7;
}

.text-primary-500 {
    color: #53C5E0;
}

.text-primary-600 {
    color: #32a1c4;
}

.text-primary-700 {
    color: #266986;
}

.text-primary-800 {
    color: #201C5B;
}

.text-primary-900 {
    color: #00232b;
}

.bg-primary-50 {
    background-color: #EDEEFE;
}

.bg-primary-100 {
    background-color: #DDD9FD;
}

.bg-primary-200 {
    background-color: #BBB3FB;
}

.bg-primary-300 {
    background-color: #9A8EF9;
}

.bg-primary-400 {
    background-color: #7868F7;
}

.bg-primary-500 {
    background-color: #53C5E0;
}

.bg-primary-600 {
    background-color: #32a1c4;
}

.bg-primary-700 {
    background-color: #266986;
}

.bg-primary-800 {
    background-color: #201C5B;
}

.bg-primary-900 {
    background-color: #00232b;
}

.border-primary-100 {
    border-color: #DDD9FD;
}

.border-primary-200 {
    border-color: #BBB3FB;
}

.border-primary-300 {
    border-color: #9A8EF9;
}

.border-primary-400 {
    border-color: #7868F7;
}

.border-primary-500 {
    border-color: #53C5E0;
}

.ring-primary-400 {
    --tw-ring-color: #7868F7;
}

/* Hover primary */
.hover\:text-primary-600:hover {
    color: #32a1c4;
}

.hover\:text-primary-700:hover {
    color: #266986;
}

.hover\:bg-primary-600:hover {
    background-color: #32a1c4;
}

.hover\:bg-primary-700:hover {
    background-color: #266986;
}

.hover\:from-primary-200:hover {
    --tw-gradient-from: #BBB3FB;
}

.hover\:to-primary-300:hover {
    --tw-gradient-to: #9A8EF9;
}

/* Focus primary */
.focus\:ring-primary-400:focus {
    box-shadow: 0 0 0 2px #7868F7;
}

.focus\:border-primary-500:focus {
    border-color: #53C5E0;
}

/* Secondary colors */
.text-secondary-500 {
    color: #10B981;
}

.bg-secondary-500 {
    background-color: #10B981;
}

/* Accent colors */
.text-accent-purple {
    color: #32a1c4;
}

.bg-accent-purple {
    background-color: #32a1c4;
}

.text-accent-pink {
    color: #EC4899;
}

.bg-accent-pink {
    background-color: #EC4899;
}

.text-accent-cyan {
    color: #06B6D4;
}

.bg-accent-cyan {
    background-color: #06B6D4;
}

.text-accent-orange {
    color: #F97316;
}

.bg-accent-orange {
    background-color: #F97316;
}

/* ===== Gradient utilities ===== */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent));
}

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

.from-primary-100 {
    --tw-gradient-from: #DDD9FD;
    --tw-gradient-to: transparent;
}

.from-primary-200 {
    --tw-gradient-from: #BBB3FB;
    --tw-gradient-to: transparent;
}

.from-primary-500 {
    --tw-gradient-from: #53C5E0;
    --tw-gradient-to: transparent;
}

.from-primary-600 {
    --tw-gradient-from: #32a1c4;
    --tw-gradient-to: transparent;
}

.to-primary-50 {
    --tw-gradient-to: #EDEEFE;
}

.to-primary-700 {
    --tw-gradient-to: #266986;
}

.to-accent-purple {
    --tw-gradient-to: #32a1c4;
}

.to-accent-cyan {
    --tw-gradient-to: #06B6D4;
}

.via-primary-500 {
    --tw-gradient-via: #53C5E0;
}

.from-secondary-500 {
    --tw-gradient-from: #10B981;
    --tw-gradient-to: transparent;
}

/* ===== Text/BG clip utilities ===== */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

/* ===== Transform utilities ===== */
.transform {
    transform: var(--tw-transform, none);
}

.hover\:-translate-y-0\.5:hover {
    transform: translateY(-0.125rem);
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.transition-transform {
    transition-property: transform;
    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;
}

.duration-200 {
    transition-duration: 200ms;
}

/* ===== Box shadow utilities ===== */
.shadow-glow {
    box-shadow: 0 0 20px rgba(83, 197, 224, 0.3);
}

.shadow-glow-sm {
    box-shadow: 0 0 10px rgba(83, 197, 224, 0.2);
}

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

.shadow-card-hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-glow:hover {
    box-shadow: 0 0 20px rgba(83, 197, 224, 0.3);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-card-hover:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===== Misc missing utilities ===== */
.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.bg-white\/80 {
    background-color: rgba(255, 255, 255, 0.8);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

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

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

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

.pl-12 {
    padding-left: 3rem;
}

.pr-4 {
    padding-right: 1rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.border-2 {
    border-width: 2px;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Nav link active underline */
.group .absolute.bottom-0 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.group:hover .group-hover\:w-full {
    width: 100%;
}

.h-0\.5 {
    height: 0.125rem;
}

.w-0 {
    width: 0;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulseSubtle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes bounceSubtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}