        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #667eea;
            --primary-dark: #5a6fd8;
            --secondary: #764ba2;
            --accent: #f093fb;
            --text-dark: #1a202c;
            --text-gray: #4a5568;
            --text-ltgray: #d3d3d3;
            --text-light: #718096;
            --bg-gray: #f7fafc;
            --bg-white: #ffffff;
            --border: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--bg-white);
        }
        .header-container{
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Header */
        header {
            background: #212529;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo img {
            height: 32px;
            margin-right: 8px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        
        nav a {
            text-decoration: none;
            color: var(--text-ltgray);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        nav a:hover {
            color: var(--primary);
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            border: 2px solid transparent;
            cursor: pointer;
            font-size: 0.95rem;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            box-shadow: var(--shadow);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text-gray);
            border-color: var(--border);
        }
        
        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .btn-tertiary{
            background: transparent;
            color: var(--text-ltgray);
            border-color: var(--border);
        }
        .btn-tertiary:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 150px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            font-weight: 300;
        }
        
        .problem-statement {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem auto;
            max-width: 800px;
            backdrop-filter: blur(10px);
        }
        
        .problem-statement h3 {
            color: #ffd700;
            margin-bottom: 1rem;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--bg-gray);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: var(--bg-white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .feature-card p {
            color: var(--text-gray);
            line-height: 1.6;
        }
        /* Auric End User Agreement Section */
        .auric-eula {
            padding: 100px 0;
            background: var(--bg-white);
            text-align: left;
        }
        
        /* Auric Example Section */
        .auric-example {
            padding: 100px 0;
            background: var(--bg-white);
            text-align: center;
        }
        
        .auric-example-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .auric-example-box, .solution-box {
            padding: 2rem;
            border-radius: 12px;
        }
        .card img {
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .card img:hover {
            transform: scale(1.02);
        }
        
        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background: var(--bg-gray);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .pricing-card {
            background: var(--bg-white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            text-align: center;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
        }
        
        .pricing-card.featured {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .price-period {
            color: var(--text-gray);
            margin-bottom: 2rem;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }
        
        .pricing-features li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .pricing-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #38a169;
            font-weight: bold;
        }

        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            margin-bottom: 1rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
       .footer-bottom {
         width: 100%;
         margin: 0 auto;
         text-align: center;
         padding-top: 2rem;
         border-top: 1px solid #4a5568;
         color: #a0aec0;
       }
       
       /* Fade-in behavior */
       .auric-copyright {
         margin: 0;
         opacity: 1;
         transform: translateY(0);
         transition: opacity 280ms ease, transform 280ms ease;
       }
       
       .auric-copyright.is-hidden {
         opacity: 0;
         transform: translateY(4px);
       }
       
       /* Accessible "screen reader only" helper */
       .sr-only {
         position: absolute !important;
         width: 1px; height: 1px;
         padding: 0; margin: -1px;
         overflow: hidden;
         clip: rect(0, 0, 0, 0);
         white-space: nowrap;
         border: 0;
       }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .subtitle {
                font-size: 1.1rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .problem-solution-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            nav ul {
                display: none;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .container {
                padding: 0 15px;
            }
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* Auric 2.0 landing page additions */
.auric2-eyebrow {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.92;
    margin-bottom: 1rem;
}

.auric2-what-is-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.auric2-product-card h3 {
    margin-bottom: 1rem;
}

.auric2-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.auric2-list li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.4rem;
    color: var(--text-gray);
}

.auric2-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: 700;
}

.auric2-coming-soon {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.auric2-pricing-grid {
    max-width: 1200px;
}

.auric2-note {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
}

.auric2-faq {
    max-width: 900px;
    margin: 0 auto;
}

.auric2-faq .accordion-item {
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
    border-radius: 10px;
    overflow: hidden;
}

.auric2-faq .accordion-button {
    font-weight: 600;
    color: var(--text-dark);
}

.auric2-faq .accordion-button:not(.collapsed) {
    background: rgba(102, 126, 234, 0.08);
    color: var(--primary-dark);
    box-shadow: none;
}

.auric2-faq .accordion-body {
    color: var(--text-gray);
}

.auric2-footnote {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .auric2-what-is-card,
    .auric2-product-card,
    .auric2-faq {
        text-align: left;
    }

    .auric2-pricing-grid .pricing-card.featured {
        transform: none;
    }
}
