/* Базовые сбросы */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    -webkit-tap-highlight-color: transparent; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    overflow: hidden; /* Скрываем основной скролл для Snap-эффекта */
}

/* Snap Scroll Container */
.snap-container {
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.snap-container::-webkit-scrollbar { display: none; }

.snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Градиенты и Стекло */
.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bg {
    background: linear-gradient(135deg, #6366f1 0%, #764ba2 100%);
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.safe-bottom {
    padding-bottom: env(safe-area-inset-bottom, 24px);
}

[x-cloak] { display: none !important; }