:root {
    --primary: #33A3DC;
    /* Lighter, more vibrant blue matching logo */
    --primary-dark: #1A8DC9;
    --primary-light: #66BBEB;
    --secondary: #FF7052;
    /* Lighter coral-orange matching logo */
    --secondary-dark: #FF5733;
    --secondary-light: #FF9980;
    --dark: #2b3552;
    /* Lightened by 20% total (was #0f172a) */
    --dark-light: #3f4c71;
    /* Lightened by 20% total (was #1e293b) */
    --light: #ffffff;
    --gray: #a3b1c6;
    /* Adjusted for contrast on lighter background */
    /* Slightly darker for better contrast */
    --gray-light: #cbd5e1;
    --accent-color: var(--secondary);
    --text-primary: var(--light);
    --text-secondary: var(--gray);
    --glass: rgba(255, 255, 255, 0.05);
    /* Slightly more opaque for better definition */
    --glass-border: rgba(255, 255, 255, 0.15);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(51, 163, 220, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 112, 82, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* New Animation Utilities */
.char,
.word {
    display: inline-block;
    vertical-align: top;
    /* Fix layout alignment */
}

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

.magnetic-area {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 10;
    border-radius: 50%;
    /* debug: background: rgba(255,0,0,0.1); */
}

/* Base UI Components */
.section {
    padding: 8rem 0;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.01);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 20px -10px var(--primary);
    transform: translateY(-2px);
}

.breadcrumb {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--light);
    font-weight: 600;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: var(--transition);
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(5px);
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 4px;
}

.content-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.content-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

/* Global Mobile Adjustments */
@media (max-width: 768px) {
    html {
        font-size: 15px;
        /* Slightly smaller base font */
    }

    .container {
        padding: 0 1.25rem;
    }

    h1 {
        font-size: 2.5rem !important;
        /* Force smaller H1 */
    }

    h2 {
        font-size: 2rem !important;
    }

    .section {
        padding: 4rem 0;
        /* reduce vertical padding */
    }
}