@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');

:root {
    --bg-page: #050505;
    --bg-card: #09090b;
    --bg-input: #121214;
    --border-subtle: #27272a;
    --text-main: #ffffff;
    --accent: #e11d48;
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg-page); 
    color: var(--text-main); 
    background-image: 
        radial-gradient(circle at 50% 0%, #220505 0%, transparent 60%),
        linear-gradient(to right, #121212 1px, transparent 1px),
        linear-gradient(to bottom, #121212 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    margin: 0;
    min-height: 100vh;
}

.saas-card { 
    border-radius: 16px;
}

.saas-input {
    background-color: #000 !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    width: 100%;
    border-radius: 12px;
}

.saas-input:focus {
    outline: none;
    border-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.saas-input::placeholder {
    color: #ffffff !important;
    opacity: 0.9;
    font-weight: 600;
}

.iphone-mockup {
    position: relative;
    border: 8px solid #1a1a1a; 
    border-radius: 48px; 
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8);
    aspect-ratio: 9/19;
    width: 100%;
    max-width: 320px; 
    margin: 0 auto;
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

/* NEW: Showcase Styles */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.snap-y { scroll-snap-type: y mandatory; }
.snap-center { scroll-snap-align: center; }

.showcase-vid {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.4) grayscale(0.5);
    transform: scale(0.95);
}

.showcase-vid.active {
    filter: brightness(1) grayscale(0);
    transform: scale(1);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.15);
}

video::-webkit-media-controls-panel {
    background-image: linear-gradient(transparent, rgba(0,0,0,0.9)) !important;
}

.action-bar {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    width: 100%;
    max-width: 320px;
}

.btn-action {
    background: #dc2626;
    color: white;
    font-weight: 800;
    border: 1px solid #ef4444;
    transition: all 0.2s;
    text-transform: uppercase;
}