:root {
    /* Color Palette */
    --bg-main: #050505;
    --bg-secondary: #0a0a0a;
    --primary-yellow: #FFD400;
    --primary-yellow-glow: rgba(255, 212, 0, 0.4);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 212, 0, 0.3);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 6rem 2rem;
    --container-width: 1200px;
    
    /* Effects */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--bg-main);
    background-image: none; /* Override root css background */
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.site-wrapper {
    position: relative;
    z-index: 1;
}

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

.highlight {
    color: var(--primary-yellow);
}

.text-center { text-align: center; }
.text-green { color: #00E676; }
.text-blue { color: #00B0FF; }
.text-yellow { color: var(--primary-yellow); }

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: #000;
    border: 1px solid var(--primary-yellow);
}

.btn-primary:hover {
    box-shadow: 0 0 20px var(--primary-yellow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

/* Glassmorphism */
.glass-card, .glass-panel, .glass-item, .glass-node, .glass-accordion {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* --- Section 1: Hero --- */
.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 212, 0, 0.1);
    color: var(--primary-yellow);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 212, 0, 0.2);
}

.main-heading {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subtext {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.orb-container {
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
}

.fc-1 { top: 20%; left: -10%; animation-delay: 0s; }
.fc-2 { top: 50%; right: 0; animation-delay: 2s; }
.fc-3 { bottom: 15%; left: 10%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.pulse-ring {
    width: 10px;
    height: 10px;
    background: var(--primary-yellow);
    border-radius: 50%;
    position: relative;
}
.pulse-ring::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-yellow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* --- Section 2: Setup --- */
.section-setup {
    padding: var(--section-padding);
}

.setup-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.setup-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-line {
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
    z-index: -1;
}

.timeline-progress {
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, var(--primary-yellow), transparent);
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    opacity: 0.5;
    transition: var(--transition);
}

.timeline-step.active, .timeline-step:hover {
    opacity: 1;
}

.step-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid var(--text-gray);
    flex-shrink: 0;
}

.timeline-step.active .step-dot, .step-dot.glow {
    border-color: var(--primary-yellow);
    background: var(--primary-yellow);
    box-shadow: 0 0 15px var(--primary-yellow-glow);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}
.step-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.setup-content-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lead-text {
    font-size: 1.2rem;
}

.setup-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.setup-list h4 {
    margin-bottom: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.setup-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setup-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.setup-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-gray);
}

/* --- Section 3: Benefits --- */
.section-benefits {
    padding: var(--section-padding);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover::before { opacity: 1; }

.card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-yellow);
    background: rgba(255, 212, 0, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

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

/* --- Section 4: Features Grid --- */
.section-features {
    padding: var(--section-padding);
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><rect width="40" height="40" fill="none"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

.feature-item:hover {
    background: rgba(255, 212, 0, 0.05);
    border-color: var(--glass-border-hover);
    transform: translateX(5px);
}

/* --- Section 5: Industries --- */
.section-industries {
    padding: var(--section-padding);
    overflow: hidden;
}

.industry-slider-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 2rem 0;
}

.industry-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.industry-card {
    padding: 2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 100px;
    transition: var(--transition);
}

.industry-card:hover {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
    color: var(--primary-yellow);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Section 6: Voice Experience --- */
.section-voice {
    padding: var(--section-padding);
}

.voice-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.voice-visual {
    height: 400px;
    background: radial-gradient(circle at center, rgba(255,212,0,0.1) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.equalizer-container {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 100px;
}

.eq-bar {
    width: 8px;
    background: var(--primary-yellow);
    border-radius: 4px;
    height: 10px;
    transition: height 0.1s ease;
    box-shadow: 0 0 10px var(--primary-yellow-glow);
}

.voice-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--primary-yellow);
}

.voice-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.voice-features-list li {
    display: flex;
    gap: 1.5rem;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.voice-features-list h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.voice-features-list p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- Section 7: AI Workflow --- */
.section-workflow {
    padding: var(--section-padding);
}

.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 4rem 0;
}

.wf-node {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    transition: var(--transition);
}

.wf-node i {
    font-size: 2rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.wf-node:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.wf-node:hover i {
    color: var(--primary-yellow);
}

.ai-node.glow-node {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 30px var(--primary-yellow-glow);
}
.ai-node i { color: var(--primary-yellow); }

.success-node i { color: #00E676; }

.wf-connector {
    height: 2px;
    background: var(--glass-border);
    flex-grow: 1;
    min-width: 30px;
    position: relative;
}

.wf-connector::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 0%;
    background: var(--primary-yellow);
    box-shadow: 0 0 10px var(--primary-yellow-glow);
    transition: width 1s ease;
}

/* Specific Layout for the branch */
.wf-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.split-connector, .merge-connector {
    width: 40px;
    height: 100px;
    background: transparent;
    border: 2px solid var(--glass-border);
    border-left: none;
    border-radius: 0 20px 20px 0;
    flex-grow: 0;
}

.merge-connector {
    border-radius: 20px 0 0 20px;
    border-left: 2px solid var(--glass-border);
    border-right: none;
}

.vertical-spacer {
    background: transparent;
    border-right: 2px solid var(--glass-border);
    width: 100%;
}

/* Base scroll-reveal styles (failsafe in case root css isn't loaded properly) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Section 8: FAQ --- */
.section-faq {
    padding: var(--section-padding);
}

.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--primary-yellow);
}

.accordion-item.active .accordion-header {
    border-bottom: 1px solid var(--glass-border);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-gray);
}

.accordion-item.active .accordion-body {
    padding: 1.5rem 2rem;
    max-height: 500px; /* Arbitrary large number */
}

/* --- Section 9: CTA --- */
.section-cta {
    padding: var(--section-padding);
    padding-bottom: 10rem;
}

.cta-banner {
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 212, 0, 0.2);
}

.cta-bg-effect {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(255,212,0,0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-heading {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-subtext {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-heading { font-size: 3.5rem; }
    .hero-split { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-visual { height: 400px; }
    
    .setup-grid, .voice-split { grid-template-columns: 1fr; gap: 3rem; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    
    .workflow-diagram { 
        flex-direction: column; 
        gap: 1.5rem; 
        padding: 2rem 0;
    }
    .wf-node { width: 100%; max-width: 300px; }
    .wf-connector { 
        width: 2px; 
        height: 30px; 
        min-height: 30px; 
        min-width: 2px;
    }
    
    /* Modify branch structure for vertical mobile stacking */
    .split-connector, .merge-connector { display: none; }
    .wf-column { 
        flex-direction: column; 
        gap: 1.5rem; 
        width: 100%; 
        align-items: center; 
    }
    .vertical-spacer { 
        border-right: none; 
        width: 2px; 
        height: 30px; 
        background: var(--glass-border); 
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.5rem;
    }
    
    .main-heading { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    
    .benefits-grid { grid-template-columns: 1fr; }
    .setup-split { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .accordion-header { padding: 1rem 1.5rem; font-size: 1rem; }
    .accordion-body { padding: 0 1.5rem; }
    .accordion-item.active .accordion-body { padding: 1rem 1.5rem; }
    
    .cta-heading { font-size: 2.5rem; }
    .cta-actions { flex-direction: column; width: 100%; align-items: stretch; }
    .cta-actions .btn { text-align: center; }
    
    .timeline-step { flex-direction: column; gap: 0.5rem; text-align: left; }
    .timeline-line { left: 11px; }

    .hero-visual { height: 300px; }
    .subtext { max-width: 100%; }
    .section-hero { padding-top: 60px; }
}

@media (max-width: 480px) {
    :root { --section-padding: 3rem 1rem; }

    .main-heading { font-size: 2rem; line-height: 1.2; }
    .section-title { font-size: 1.7rem; }
    .subtext { font-size: 1rem; }

    .section-hero { min-height: auto; padding: 5rem 1rem 3rem; }
    .hero-visual { height: 220px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; text-align: center; }

    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card { padding: 1.5rem; }
    .benefit-card h3 { font-size: 1.2rem; }

    .setup-grid { grid-template-columns: 1fr; gap: 2rem; }
    .setup-content-card { padding: 1.5rem; }
    .setup-split { grid-template-columns: 1fr; }

    .voice-split { grid-template-columns: 1fr; }
    .voice-visual { height: 250px; }

    .cta-heading { font-size: 1.7rem; }
    .cta-subtext { font-size: 1rem; padding: 0 0.5rem; }
    .cta-banner { padding: 3rem 1rem; }
    .cta-actions .btn { width: 100%; }

    .section-faq { padding: 3rem 1rem; }
    .accordion-header { font-size: 0.95rem; padding: 1rem; }

    .floating-card { display: none; }
    .card-icon { width: 48px; height: 48px; font-size: 1.5rem; }
}
