/* General Setup and Variables */
:root {
    --background-color: #FDFDFD;
    --text-color: #1a1a1a;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Lora', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}

/* Background Animated Orbs */
.orb-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.8;
    will-change: transform;
    transition: transform 0.2s ease-out;
}

#orb1 { width: 450px; height: 450px; top: -150px; right: -150px; background: radial-gradient(circle, #ff8a00, #e52e71); }
#orb2 { width: 400px; height: 400px; top: 50px; left: -200px; background: radial-gradient(circle, #00c6ff, #0072ff); }
#orb3 { width: 350px; height: 350px; bottom: -100px; left: 20%; background: radial-gradient(circle, #1fddff, #ff4e50); }
#orb4 { width: 300px; height: 300px; bottom: 50px; right: -100px; background: radial-gradient(circle, #8A2387, #E94057, #F27121); }

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(253, 253, 253, 0.8);
    backdrop-filter: blur(12px);
}

.logo svg { width: 28px; height: 28px; }

.header-nav { display: flex; gap: 1rem; }

.header-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header-nav a:hover { background-color: #f0f0f0; border-color: #d0d0d0; }
.header-nav a svg { width: 16px; height: 16px; }

/* Main Content */
main {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
}

.hero .subheading { font-size: 1rem; font-weight: 500; margin-bottom: 1.5rem; }

.hero h1 {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #111;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.cta-button svg { width: 18px; height: 18px; }

/* Browser Mockup Section */
.browser-mockup-section { display: flex; justify-content: center; align-items: center; padding: 5rem 0; }

.browser-window {
    width: 100%;
    max-width: 960px;
    height: 600px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.browser-header { display: flex; align-items: center; padding: 0.75rem; background: #f7f7f7; border-bottom: 1px solid #e8e8e8; }
.browser-header .dots { display: flex; gap: 0.5rem; }
.browser-header .dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f