/*
Theme Name: SaaSPro
Theme URI: https://saaspro.com
Author: SaaSPro
Description: A high-performance SaaS landing page theme — Modern Minimalist with Tonal Depth. Built from the Kinetic Precision design system with Inter typography, Electric Indigo and Soft Cyan accents.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: saaspro
Tags: landing-page, one-column, custom-logo, custom-menu
*/

/* Base styles (Tailwind handles utilities; these mirror code.html's custom CSS) */
body {
    font-family: 'Inter', sans-serif;
    background-color: #faf8ff;
    color: #131b2e;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.hero-gradient {
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.08), transparent),
                radial-gradient(circle at bottom left, rgba(87, 223, 254, 0.08), transparent);
}

.nav-shadow {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

/* Mobile menu panel */
#mobile-menu {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 320px;
    opacity: 1;
}

/* Form notice banners */
.saaspro-notice {
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.saaspro-notice-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.saaspro-notice-error {
    background: #ffdad6;
    color: #93000a;
    border: 1px solid #fecaca;
}

/* Blog / inner page content defaults */
.saaspro-prose h1, .saaspro-prose h2, .saaspro-prose h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 1.5em 0 0.5em;
    color: #131b2e;
}

.saaspro-prose h1 { font-size: 36px; line-height: 44px; }
.saaspro-prose h2 { font-size: 30px; line-height: 38px; }
.saaspro-prose h3 { font-size: 24px; line-height: 32px; }

.saaspro-prose p, .saaspro-prose ul, .saaspro-prose ol {
    margin-bottom: 1.25em;
    color: #464555;
    font-size: 16px;
    line-height: 26px;
}

.saaspro-prose ul { list-style: disc; padding-left: 1.5em; }
.saaspro-prose ol { list-style: decimal; padding-left: 1.5em; }
.saaspro-prose a { color: #3525cd; text-decoration: underline; }
.saaspro-prose img { border-radius: 1rem; max-width: 100%; height: auto; }
