:root {
    /* Colors - Light Theme */
    --bg-color: #FAF9F5;
    --text-main: #18181b;
    /* Zinc 900 */
    --text-muted: #52525b;
    /* Zinc 600 */
    --accent-glow: rgba(0, 0, 0, 0.05);

    /* Vibrant gradient for branding (Green to Orange) */
    --primary-gradient: linear-gradient(135deg, #16a34a 0%, #ea580c 100%);
    /* Green-600 to Orange-600 */
    --brand-color: #16a34a;
    /* Green-600 as primary */

    --surface-dark: #ffffff;
    --surface-light: #f4f4f5;
    /* Zinc 100 */

    --border-color: rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Smooth scrolling for anchor links */
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow: hidden;
    /* Prevent scrolling on main body for the "Hero Only" feel */
    height: 100vh;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Background Aesthetics */
.ambient-light {
    position: fixed;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(230, 230, 230, 0.4) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}