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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #111827;
    color: #ffffff;
    scroll-behavior: smooth;
    position: relative;
}

#mesh-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.25;
}

.glass-nav {
    background: rgba(17, 24, 39);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-bg {
    background-color: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.15s ease;
}

.card-bg:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-white {
    background-color: #ffffff;
    color: #111827;
    transition: opacity 0.2s;
}

.btn-white:hover {
    opacity: 0.9;
}

.btn-platform {
    background: #1f2937; /* Gray-800 */
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.btn-platform:hover {
    background-color: #ffffff;
    color: #111827;
    border-color: #ffffff;
    transform: translateY(-1px);
}

.btn-platform:hover i {
    color: #111827 !important;
}

.app-screenshot {
    border-radius: 1rem;
    border: 2px solid #374151;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111827;
    border: 2px solid #ffffff;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
