/*
Theme Name: FlowBeast
Theme URI: https://flowbeast.app
Author: FlowBeast
Author URI: https://flowbeast.app
Description: Lightweight WordPress theme for FlowBeast — AI-powered WordPress automation services.
Version: 1.0.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://flowbeast.app/license
Text Domain: flowbeast
*/

/* ========================================
   BASE RESET & VARIABLES
   Antigravity: override these variables
   to match your design system
   ======================================== */

:root {
    /* Colors — edit these */
    --fb-primary: #059669;
    --fb-primary-light: #10B981;
    --fb-primary-dark: #047857;
    --fb-accent: #10B981;
    --fb-bg: #FFFFFF;
    --fb-bg-alt: #F8FAFC;
    --fb-text: #0F172A;
    --fb-text-muted: #475569;
    --fb-border: #E2E8F0;

    /* Spacing */
    --fb-section-padding: 5rem 0;
    --fb-container-max: 1140px;
    --fb-gap: 2rem;

    /* Typography */
    --fb-font: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    --fb-font-mono: 'JetBrains Mono', monospace;
}

/* ========================================
   RESET
   ======================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--fb-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--fb-text);
    background: var(--fb-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--fb-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--fb-primary-dark);
}

/* ========================================
   LAYOUT
   ======================================== */

.fb-container {
    max-width: var(--fb-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.fb-section {
    padding: var(--fb-section-padding);
}

.fb-section--alt {
    background: var(--fb-bg-alt);
}

/* ========================================
   HEADER / NAV
   Antigravity: style navigation here
   ======================================== */

.fb-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--fb-border);
    padding: 1rem 0;
}

.fb-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fb-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fb-text);
}

.fb-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.fb-nav a {
    color: var(--fb-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.fb-nav a:hover {
    color: var(--fb-primary);
}

/* ========================================
   HERO SECTION
   Antigravity: main visual impact area
   ======================================== */

.fb-hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.fb-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--fb-text);
}

.fb-hero__subtitle {
    font-size: 1.15rem;
    color: var(--fb-text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ========================================
   BUTTONS
   ======================================== */

.fb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.fb-btn--primary {
    background: var(--fb-primary);
    color: #fff;
}

.fb-btn--primary:hover {
    background: var(--fb-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.fb-btn--outline {
    background: transparent;
    color: var(--fb-primary);
    border: 1.5px solid var(--fb-primary);
}

.fb-btn--outline:hover {
    background: var(--fb-primary);
    color: #fff;
}

/* ========================================
   SERVICE CARDS
   Antigravity: 3-column grid
   ======================================== */

.fb-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--fb-gap);
}

.fb-card {
    background: var(--fb-bg);
    border: 1px solid var(--fb-border);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
}

.fb-card:hover {
    border-color: var(--fb-primary-light);
    transform: translateY(-2px);
}

.fb-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.fb-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fb-card__desc {
    font-size: 0.9rem;
    color: var(--fb-text-muted);
    line-height: 1.6;
}

/* ========================================
   HOW IT WORKS — STEPS
   ======================================== */

.fb-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.fb-step {
    text-align: center;
    counter-increment: step;
}

.fb-step::before {
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--fb-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.fb-step__title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fb-step__desc {
    font-size: 0.9rem;
    color: var(--fb-text-muted);
}

/* ========================================
   CTA SECTION
   ======================================== */

.fb-cta {
    text-align: center;
    padding: 4rem 0;
}

.fb-cta__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.fb-cta__desc {
    color: var(--fb-text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FOOTER
   ======================================== */

.fb-footer {
    border-top: 1px solid var(--fb-border);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--fb-text-muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .fb-nav {
        display: none; /* Antigravity: add mobile menu */
    }

    .fb-hero {
        padding: 3rem 0 2rem;
    }

    .fb-section {
        padding: 3rem 0;
    }
}
