:root {
    /* Colors - Bright premium theme */
    --bg-main: #F5F1EB;
    --bg-secondary: #EBE5D9;
    --card-bg: rgba(255, 255, 255, 0.5);
    --card-border: rgba(27, 27, 31, 0.08);
    
    /* Text */
    --text-main: #1B1B1F;
    --text-muted: #6B6D76;
    
    /* Accents */
    --indigo: #5B4AE2;
    --mint: #BFE3D4;
    --coral: #FF9776;
    
    --accent: var(--indigo);
    --accent-light: #7C6CE6;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Fraunces', serif;
    
    /* Spacing */
    --nav-height: 72px;
}

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

/* Lenis smooth scroll recommended setup */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--text-main);
}
h1, h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.01em;
}
h3, h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: -0.02em;
}
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}
h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
p {
    color: var(--text-muted);
}
a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--indigo);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.container-sm {
    max-width: 800px;
}
.section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}
.section-dark {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}
.text-center {
    text-align: center;
}
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 600px; }
.w-full { width: 100%; }

/* Backgrounds */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.bg-grid {
    position: absolute;
    inset: -50%;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(245, 241, 235, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    z-index: 100;
}
.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-main);
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-link {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}
.nav-link:hover {
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}
.btn-primary {
    background: linear-gradient(90deg, var(--indigo) 0%, var(--mint) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(91, 74, 226, 0.2);
}
.btn-primary:hover {
    background: linear-gradient(90deg, #6c5ce6 0%, #cff0e2 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(91, 74, 226, 0.3);
}
.btn-secondary {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-main);
    border: 1px solid var(--card-border);
}
.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(91, 74, 226, 0.1);
    color: var(--indigo);
    border: 1px solid rgba(91, 74, 226, 0.2);
    margin-bottom: 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 4rem);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content {
    max-width: 600px;
}
.subhead {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}
.hero-ctas {
    display: flex;
    gap: 1rem;
}

/* Hero Visual & Glassmorphism */
.hero-visual {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.network-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 5 / 4;
}

/* Glowing background blobs */
.hero-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
}
.blob-indigo {
    width: 250px;
    height: 250px;
    background: var(--indigo);
    top: 10%;
    left: 10%;
}
.blob-coral {
    width: 200px;
    height: 200px;
    background: var(--coral);
    bottom: 0%;
    left: 30%;
}
.blob-mint {
    width: 220px;
    height: 220px;
    background: var(--mint);
    top: 25%;
    right: 5%;
}

.network-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
}
.link-path {
    fill: none;
    stroke: rgba(0, 0, 0, 0.15);
    stroke-width: 1.5;
}

.glass-node {
    position: absolute;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 2;
    color: var(--text-main);
}
.glass-node.node-l {
    width: 56px;
    height: 56px;
}
.glass-node.node-m {
    width: 40px;
    height: 40px;
}
.glass-node.node-s {
    width: 28px;
    height: 28px;
}
.glass-node svg {
    width: 50%;
    height: 50%;
    stroke: var(--text-main);
}


/* Scroll Reveals (GSAP Initial State) */
.reveal {
    opacity: 0;
    visibility: hidden;
}

/* Tilt Card with Soft Hover (Cream Theme) */
.tilt-card {
    position: relative;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}
.tilt-card::before {
    /* Soft ambient radial gradient glow */
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
        rgba(255, 255, 255, 0.8),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}
.tilt-card:hover::before {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    height: 100%;
    transform: translateZ(10px); /* Softer pop */
    transition: transform 0.3s ease;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}
.step-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: monospace;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    align-items: stretch;
}
.pricing-card {
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    border-color: rgba(91, 74, 226, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    box-shadow: 0 8px 32px rgba(91, 74, 226, 0.08);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--indigo);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(91, 74, 226, 0.3);
    z-index: 3;
}
.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-sans);
}
.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}
.pricing-card h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}
.pricing-desc {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}
.features li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: flex-start;
}
.features li:last-child {
    border-bottom: none;
}
.features li::before {
    content: '→';
    color: var(--accent);
    margin-right: 0.75rem;
    font-family: monospace;
}
.pricing-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--coral);
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
}

.volume-packages {
    margin-top: 2rem;
}
.volume-packages .card-content {
    padding: 2rem;
}
.volume-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.volume-item {
    background: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.volume-count {
    font-weight: 600;
    color: var(--text-main);
}
.volume-discount {
    color: #059669; /* darker mint for contrast */
    font-size: 0.875rem;
    margin: 0.25rem 0;
}
.volume-price {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.volume-note {
    font-size: 0.875rem;
    text-align: center;
}

/* Forms */
.form-container {
    padding: 1px;
}
.ui-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-main);
}
.form-group label span {
    color: var(--text-muted);
    font-weight: 400;
}
.ui-form input,
.ui-form textarea,
.form-select {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}
.form-select {
    appearance: auto;
    cursor: pointer;
}
.form-select option {
    background: #fff;
    color: var(--text-main);
}
.ui-form input:focus,
.ui-form textarea:focus,
.form-select:focus {
    border-color: var(--indigo);
    box-shadow: 0 0 0 1px var(--indigo);
    background: rgba(255, 255, 255, 0.8);
}
.form-response {
    margin-top: 1rem;
    font-size: 0.875rem;
    text-align: center;
    min-height: 20px;
}
.form-response.success { color: #059669; }
.form-response.error { color: var(--coral); }

/* Negative List (What we don't do) */
.negative-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.negative-list li .card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
}
.negative-list svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.negative-list span {
    font-size: 1rem;
    color: var(--text-muted);
}
.negative-list strong {
    color: var(--text-main);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
    border-top: 1px solid var(--card-border);
}
.faq-item {
    border-bottom: 1px solid var(--card-border);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--indigo);
}
.faq-question svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-question.active svg {
    transform: rotate(180deg);
}
.faq-answer {
    height: 0;
    overflow: hidden;
}
.faq-answer-inner {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background: transparent;
    border-top: 1px solid var(--card-border);
}
.footer-legal {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .volume-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .negative-list {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 4rem 0;
    }
}
