/* Core Layout */
body {
    background-color: #050505;
    color: white;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Branding */
.mesa-logo {
    font-weight: 900;
    letter-spacing: -0.05em;
    font-family: 'Inter', sans-serif;
}

.mesa-dot {
    color: #ff2d55;
}

/* Hero Typography Fixes */
.hero-title {
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(90deg, #ff2d55, #fb7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations & Transitions */
.setup-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.setup-card:hover {
    transform: translateY(-10px);
    border-color: #ff2d55;
}

/* Section Transitions */
.rounded-t-[60px] {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}
