:root {
    --bg-dark: #fafafa;
    --bg-darker: #f3f4f6;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --text-dark: #f9fafb;
    --accent: #2563eb;
    --accent-glow: rgba(37, 99, 235, 0.15);
    --accent-secondary: #4f46e5;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-hover: rgba(255, 255, 255, 0.95);
    --gradient-main: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
    scroll-padding-top: 60px;
    /* Offsets anchor links so they don't hide under the sticky header */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs for Ambient Glow */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.blob-2 {
    top: 40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--text-main);
    text-decoration: none;
}

.logo-asterisk {
    width: 22px;
    height: 22px;
    color: var(--accent);
    margin-bottom: 8px;
    margin-right: 12px;
}

.nav-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Typography & Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    border: none;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid #000;
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--text-muted);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

/* Layout */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 3rem 0;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 3rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw + 1rem, 5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.heading-icon {
    width: clamp(2.5rem, 4vw + 0.8rem, 4rem);
    height: clamp(2.5rem, 4vw + 0.8rem, 4rem);
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0.5rem;
}

.text-accent {
    color: var(--accent);
}

.word-lighter {
    color: #eab308;
    /* Dark yellow / light orange */
    display: inline-block;
    transform: translateY(8px);
}

.icon-lighter {
    color: #eab308;
    transform: translateY(6px);
}

.word-higher {
    color: #60a5fa;
    /* Cloudy blue, not too light */
    display: inline-block;
    transform: translateY(-8px);
}

.icon-higher {
    color: #60a5fa;
    transform: translateY(-10px);
}

.subtitle {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

/* Shared Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 3rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.role {
    font-size: 1.25rem;
    color: var(--accent);
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 2rem;
}

.about p {
    margin-bottom: 1.5rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.pulse-ring {
    content: '';
    width: 290px;
    height: 290px;
    border-radius: 50%;
    position: absolute;
    background: var(--gradient-main);
    z-index: 1;
    opacity: 0.15;
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.15;
        filter: blur(20px);
    }

    100% {
        transform: scale(1.1);
        opacity: 0.25;
        filter: blur(30px);
    }
}

/* Approach Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.card-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--accent);
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.glass-card p {
    font-size: 1rem;
}

/* Manifesto */
.manifesto-quote {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.manifesto-quote blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-main);
    position: relative;
    z-index: 2;
}

/* Pricing */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 450px;
    margin: 0 auto 4rem;
}

.pricing-cards .glass-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 3rem 2.5rem;
}

.pricing-featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-main);
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.pricing-features li i {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

.pricing-btn {
    width: 100%;
}

/* Contact */
.contact {
    text-align: center;
    padding-bottom: 10rem;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.contact p {
    margin-bottom: 3rem;
    font-size: 1.25rem;
}

.contact-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-muted);
}

.contact-info a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent);
}

footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.875rem;
    background: var(--bg-darker);
}

/* Animations */
.fade-up {
    opacity: 0.3;
    transform: translateY(20px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .glass-panel {
        padding: 2.5rem 1.5rem;
    }

    .hero {
        padding-top: 8rem;
        min-height: 85vh;
    }
}