:root {
    --color-on-secondary: #233144;
    --color-inverse-primary: #494bd6;
    --color-on-primary-fixed-variant: #2f2ebe;
    --color-background: #0b1326;
    --color-inverse-surface: #dae2fd;
    --color-error: #ffb4ab;
    --color-on-tertiary-fixed-variant: #005047;
    --color-secondary: #b9c7e0;
    --color-primary-fixed-dim: #c0c1ff;
    --color-on-surface-variant: #c6c6cd;
    --color-error-container: #93000a;
    --color-on-secondary-fixed-variant: #3a485c;
    --color-surface-container-lowest: #060e20;
    --color-outline-variant: #45464d;
    --color-surface-tint: #c0c1ff;
    --color-on-tertiary: #003731;
    --color-primary: #c0c1ff;
    --color-primary-fixed: #e1e0ff;
    --color-surface-container-highest: #2d3449;
    --color-on-primary-fixed: #07006c;
    --color-secondary-fixed: #d5e3fd;
    --color-tertiary: #3cddc7;
    --color-surface: #0b1326;
    --color-tertiary-fixed-dim: #3cddc7;
    --color-surface-variant: #2d3449;
    --color-on-surface: #dae2fd;
    --color-on-primary: #1000a9;
    --color-surface-container: #171f33;
    --color-on-error: #690005;
    --color-on-primary-container: #6d70fb;
    --color-on-error-container: #ffdad6;
    --color-secondary-container: #3c4a5e;
    --color-secondary-fixed-dim: #b9c7e0;
    --color-on-secondary-fixed: #0d1c2f;
    --color-surface-bright: #31394d;
    --color-inverse-on-surface: #283044;
    --color-tertiary-container: #001c18;
    --color-surface-container-low: #131b2e;
    --color-surface-dim: #0b1326;
    --color-on-tertiary-container: #009182;
    --color-tertiary-fixed: #62fae3;
    --color-on-secondary-container: #abb9d2;
    --color-outline: #909097;
    --color-on-tertiary-fixed: #00201c;
    --color-surface-container-high: #222a3d;
    --color-primary-container: #050060;
    --color-on-background: #dae2fd;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--color-background);
    color: var(--color-on-surface);
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.font-tech,
.font-space {
    font-family: "Space Grotesk", sans-serif;
}

.font-inter {
    font-family: "Inter", sans-serif;
}

input::placeholder,
textarea::placeholder {
    color: var(--color-outline);
}

.selection\:bg-tertiary\/30::selection,
.selection\:bg-tertiary\/30 *::selection {
    background-color: rgba(60, 221, 199, 0.3);
}

.selection\:text-tertiary::selection,
.selection\:text-tertiary *::selection {
    color: var(--color-tertiary);
}

.text-gradient {
    background: linear-gradient(135deg, #c0c1ff 0%, #6d70fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.alert {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.alert-success {
    background-color: rgba(60, 221, 199, 0.08);
    border-color: rgba(60, 221, 199, 0.25);
    color: var(--color-tertiary);
}

.alert-danger {
    background-color: rgba(255, 180, 171, 0.08);
    border-color: rgba(255, 180, 171, 0.25);
    color: var(--color-error);
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #c0c1ff 0%, #6d70fb 100%);
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.top-0 { top: 0; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.inset-0 { inset: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.block { display: block; }
.hidden { display: none; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

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

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.w-2 { width: 0.5rem; }
.w-12 { width: 3rem; }
.w-full { width: 100%; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-20 { height: 5rem; }
.h-full { height: 100%; }
.h-px { height: 1px; }

.max-w-7xl { max-width: 80rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.max-w-240 { max-width: 240px; }

.min-h-819 { min-height: 819px; }
.min-h-120 { min-height: 120px; }

.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.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-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.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-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-4 { padding-top: 1rem; }
.pt-12 { padding-top: 3rem; }
.pt-20 { padding-top: 5rem; }
.pb-1 { padding-bottom: 0.25rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-20 { margin-top: 5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.overflow-hidden { overflow: hidden; }
.resize-none { resize: none; }
.pointer-events-none { pointer-events: none; }
.object-cover { object-fit: cover; }

.rounded { border-radius: 0.25rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid transparent; }
.border-b { border-bottom: 1px solid transparent; }
.border-t { border-top: 1px solid transparent; }

.border-outline-variant\/10 { border-color: rgba(69, 70, 77, 0.1); }
.border-outline-variant\/20 { border-color: rgba(69, 70, 77, 0.2); }
.border-outline-variant\/30 { border-color: rgba(69, 70, 77, 0.3); }
.border-tertiary\/20 { border-color: rgba(60, 221, 199, 0.2); }
.border-primary\/20 { border-color: rgba(192, 193, 255, 0.2); }
.border-slate-800\/20 { border-color: rgba(30, 41, 59, 0.2); }
.border-slate-800\/50 { border-color: rgba(30, 41, 59, 0.5); }
.border-teal-400 { border-color: #2dd4bf; }

.bg-primary { background-color: var(--color-primary); }
.bg-primary-container { background-color: var(--color-primary-container); }
.bg-surface-bright { background-color: var(--color-surface-bright); }
.bg-surface-container-high { background-color: var(--color-surface-container-high); }
.bg-surface-container-highest { background-color: var(--color-surface-container-highest); }
.bg-surface-container-low { background-color: var(--color-surface-container-low); }
.bg-surface-container-low\/50 { background-color: rgba(19, 27, 46, 0.5); }
.bg-surface-container-lowest { background-color: var(--color-surface-container-lowest); }
.bg-tertiary { background-color: var(--color-tertiary); }
.bg-outline-variant\/20 { background-color: rgba(69, 70, 77, 0.2); }
.bg-slate-950 { background-color: #020617; }
.bg-slate-950\/60 { background-color: rgba(2, 6, 23, 0.6); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.underline-offset-4 { text-underline-offset: 4px; }

.text-10 { font-size: 10px; line-height: 1rem; }
.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; }
.text-5xl { font-size: 3rem; line-height: 1; }

.leading-none { line-height: 1; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.leading-6 { line-height: 1.5rem; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-primary { color: var(--color-primary); }
.text-tertiary { color: var(--color-tertiary); }
.text-on-primary { color: var(--color-on-primary); }
.text-on-surface { color: var(--color-on-surface); }
.text-on-surface-variant { color: var(--color-on-surface-variant); }
.text-outline-variant\/40 { color: rgba(69, 70, 77, 0.4); }
.text-indigo-200 { color: #c7d2fe; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-teal-400 { color: #2dd4bf; }

.opacity-10 { opacity: 0.1; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-80 { opacity: 0.8; }

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }

.outline-none { outline: 2px solid transparent; outline-offset: 2px; }

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

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

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

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

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

.scale-95 { transform: scale(0.95); }

.grayscale { filter: grayscale(100%); }

.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:text-indigo-200:hover { color: #c7d2fe; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-surface-container-high:hover { background-color: var(--color-surface-container-high); }
.hover\:bg-tertiary\/5:hover { background-color: rgba(60, 221, 199, 0.05); }
.hover\:border-tertiary\/40:hover { border-color: rgba(60, 221, 199, 0.4); }
.hover\:border-primary\/40:hover { border-color: rgba(192, 193, 255, 0.4); }
.hover\:grayscale-0:hover { filter: grayscale(0%); }

.active\:scale-90:active { transform: scale(0.9); }

.focus\:border-tertiary:focus { border-color: var(--color-tertiary); }
.focus\:ring-1:focus {
    box-shadow: 0 0 0 1px var(--color-tertiary);
}
.focus\:ring-tertiary:focus {
    --ring-color: var(--color-tertiary);
}

.group:hover .group-hover\:text-tertiary {
    color: var(--color-tertiary);
}

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

input, textarea{
    color: var(--color-primary);
}

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

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:flex-row { flex-direction: row; }
    .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\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:col-span-4 { grid-column: span 4 / span 4; }
    .md\:col-span-8 { grid-column: span 8 / span 8; }
    .md\:p-16 { padding: 4rem; }
    .md\:text-left { text-align: left; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

@media (min-width: 1024px) {
    .lg\:block { display: block; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:col-span-8 { grid-column: span 8 / span 8; }
    .lg\:p-24 { padding: 6rem; }
}

.menu a {
    text-decoration: none;
}

.logo{
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo img {
    max-width: 100px;
}