body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #0c0a15 0%, #0f0d1a 50%, #0c0a15 100%);
    background-attachment: fixed;
}

@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto !important;
    }
    .cursor-spotlight {
        display: none !important;
    }
}

.cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23, 169, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #17a9ed 0%, #1c294a 100%);
    background-size: 200% 200%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(23, 169, 237, 0.5), 0 0 0 1px rgba(23, 169, 237, 0.3);
    font-weight: 600;
    letter-spacing: 0.025em;
}
.cta-button:hover {
    background-position: 100% 100%;
    box-shadow: 0 8px 32px rgba(23, 169, 237, 0.6), 0 0 0 1px rgba(23, 169, 237, 0.5);
    transform: translateY(-2px);
}

nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(28, 41, 74, 0.9);
    box-shadow: 0 1px 0 0 rgba(23, 169, 237, 0.1);
}

.magnetic-area {
    position: relative;
    display: inline-block;
}

.text-gradient {
    background: linear-gradient(90deg, #17a9ed, #1c294a, #17a9ed);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #17a9ed;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 100;
    font-weight: 600;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

*:focus-visible {
    outline: 2px solid #17a9ed;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #17a9ed;
    outline-offset: 2px;
}
