/* Tailwind CSS - Production Build */
/* This should be generated via Tailwind CLI in production */
/* For now, using CDN version in layout template */

/* Custom styles that extend Tailwind */
.sr-only:focus {
    position: absolute;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Smooth transitions for Alpine.js */
[x-cloak] {
    display: none !important;
}

/* Custom scrollbar for better UX */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Print styles */
@media print {
    header, footer {
        display: none;
    }
    
    main {
        padding: 0;
    }
}

/* Additional responsive utilities */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ===== Brand redesign utilities (blueprint command-center theme) — P1 ===== */

/* Blueprint grid for dark navy sections (CSS only, no raster — mobile-light) */
.blueprint-bg {
    background-color: #0b2545;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* Device/browser frame for product screenshots */
.device-frame {
    border-radius: 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 20px 45px -15px rgba(11, 37, 69, 0.35);
    overflow: hidden;
    background: #ffffff;
}
.device-frame img { display: block; width: 100%; height: auto; }

/* Callout bubble for punchy one-liners pulled from the deck */
.callout-bubble {
    background: #102a43;
    color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
}

/* Brand CTA buttons */
.btn-primary {
    display: inline-block;
    background: #f26b21;
    color: #ffffff;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.15s ease;
    box-shadow: 0 8px 20px -8px rgba(242, 107, 33, 0.6);
}
.btn-primary:hover { background: #d95a12; color: #ffffff; }

.btn-secondary {
    display: inline-block;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    border: 1px solid currentColor;
    transition: opacity 0.15s ease;
}
.btn-secondary:hover { opacity: 0.85; }
