/* ================================================
   EMULIANCE — Premium Landing Page Styles
   Dark Mode • Purple/Silver • Glassmorphic
   ================================================ */

/* -------------------------
   CSS Variables
   ------------------------- */
:root {
    /* Colors */
    --bg-primary: #050507;
    --bg-secondary: #0a0a0f;
    --bg-tertiary: #111118;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-hover: rgba(255, 255, 255, 0.06);

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.15);

    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;
    --text-muted: #52525b;

    --accent-purple: #a855f7;
    --accent-magenta: #d946ef;
    --accent-violet: #8b5cf6;
    --accent-silver: #c0c0c0;
    --accent-silver-bright: #e8e8e8;

    --gradient-primary: linear-gradient(135deg, #d946ef 0%, #a855f7 50%, #8b5cf6 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(217, 70, 239, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15) 0%, transparent 70%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

    /* Spacing */
    --section-padding: clamp(80px, 12vh, 160px);
    --container-max: 1200px;
    --container-padding: clamp(20px, 5vw, 40px);

    /* Effects */
    --blur-glass: 20px;
    --blur-heavy: 40px;
    --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* -------------------------
   Reset & Base
   ------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* -------------------------
   Ambient Background
   ------------------------- */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(var(--blur-heavy));
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.15) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

/* -------------------------
   Container
   ------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* -------------------------
   Navigation
   ------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(var(--blur-glass));
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
}

.logo-emul,
.logo-nce {
    color: var(--text-primary);
}

.logo-ai {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all var(--transition-smooth);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-glass);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    transition: all var(--transition-smooth);
}

.nav-cta:hover {
    background: var(--bg-glass-hover);
    border-color: var(--accent-purple);
}

/* -------------------------
   Buttons
   ------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all var(--transition-smooth);
}

.btn-primary {
    color: white;
    background: var(--gradient-primary);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    color: var(--text-secondary);
    background: var(--bg-glass);
    border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
    color: var(--text-primary);
    background: var(--bg-glass-hover);
    border-color: var(--border-strong);
}

/* -------------------------
   Hero Section
   ------------------------- */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 60px;
    padding: calc(80px + var(--section-padding)) var(--container-padding) var(--section-padding);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-purple);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 100px;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-purple);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--accent-silver-bright);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* -------------------------
   Dashboard Preview
   ------------------------- */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur-glass));
    border: 1px solid var(--border-medium);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-glow), var(--shadow-card);
    animation: float-dashboard 6s ease-in-out infinite;
}

@keyframes float-dashboard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-subtle);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.dashboard-dots span:first-child {
    background: #ef4444;
}

.dashboard-dots span:nth-child(2) {
    background: #eab308;
}

.dashboard-dots span:last-child {
    background: #22c55e;
}

.dashboard-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-tertiary);
}

.dashboard-content {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 350px;
}

.dashboard-sidebar {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    border-radius: 8px;
    transition: all var(--transition-smooth);
}

.sidebar-item:hover {
    color: var(--text-secondary);
    background: var(--bg-glass);
}

.sidebar-item.active {
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.15);
}

.sidebar-item.active svg {
    stroke: var(--accent-purple);
}

.dashboard-main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trend-card {
    padding: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-medium);
    border-radius: 12px;
}

.trend-card.secondary {
    opacity: 0.7;
}

.trend-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.trend-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.trend-badge.trending {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.trend-multiplier {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-purple);
}

.trend-velocity {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: #22c55e;
}

.trend-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.trend-meta {
    display: flex;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.trend-actions {
    display: flex;
    gap: 10px;
}

.trend-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    transition: all var(--transition-smooth);
}

.trend-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-medium);
}

.trend-btn.primary {
    color: white;
    background: var(--gradient-primary);
    border: none;
}

/* -------------------------
   Section Headers
   ------------------------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-purple);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* -------------------------
   Problem Section
   ------------------------- */
.problem-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all var(--transition-smooth);
}

.problem-card:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-medium);
    transform: translateY(-4px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.problem-icon svg {
    stroke: var(--accent-purple);
}

.problem-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent-silver-bright);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.problem-bridge {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 40px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
}

.problem-bridge p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.problem-bridge strong {
    color: var(--text-primary);
}

/* -------------------------
   Workflow Section
   ------------------------- */
.workflow-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.workflow-pipeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pipeline-step {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all var(--transition-smooth);
}

.pipeline-step:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-medium);
}

.step-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

.pipeline-step:hover .step-number {
    opacity: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent-silver-bright);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-visual {
    display: flex;
    justify-content: center;
}

.pipeline-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, var(--accent-purple) 0%, transparent 100%);
    margin-left: 80px;
    opacity: 0.3;
}

/* Workflow Visuals */
.niche-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.niche-tag {
    padding: 6px 14px;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
}

.niche-tag.active {
    color: var(--accent-purple);
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

.outlier-mini {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.outlier-bar {
    width: 12px;
    height: calc(var(--height) * 0.6);
    background: var(--text-muted);
    border-radius: 4px 4px 0 0;
    transition: all var(--transition-smooth);
}

.outlier-bar.highlight {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.outlier-label {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--accent-purple);
    margin-top: 8px;
}

.script-preview {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-tertiary);
    text-align: left;
}

.script-line {
    padding: 4px 0;
    border-left: 2px solid var(--border-subtle);
    padding-left: 12px;
    margin-bottom: 4px;
}

.script-line:first-child {
    border-color: var(--accent-purple);
    color: var(--text-secondary);
}

.platform-icons {
    display: flex;
    gap: 12px;
}

.platform-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-tertiary);
}

.platform-icon.tiktok {
    background: rgba(0, 0, 0, 0.4);
}

.platform-icon.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.platform-icon.instagram {
    background: linear-gradient(45deg, rgba(131, 58, 180, 0.2), rgba(253, 29, 29, 0.2));
}

.feedback-loop {
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* -------------------------
   Intelligence Section
   ------------------------- */
.intelligence-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.intelligence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intelligence-explain {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.explain-card {
    padding: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all var(--transition-smooth);
}

.explain-card:hover {
    border-color: var(--border-medium);
}

.explain-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-silver-bright);
    margin-bottom: 8px;
}

.explain-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.outlier-chart {
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-medium);
    border-radius: 16px;
    box-shadow: var(--shadow-glow);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    font-size: 0.9rem;
}

.chart-header span:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.chart-niche {
    color: var(--text-tertiary);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.chart-bar {
    flex: 1;
    height: calc(var(--height));
    background: var(--text-muted);
    border-radius: 4px 4px 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    transition: all var(--transition-smooth);
}

.chart-bar span {
    position: absolute;
    bottom: 100%;
    margin-bottom: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-tertiary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.chart-bar:hover span {
    opacity: 1;
}

.chart-bar.outlier {
    background: var(--gradient-primary);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
}

.chart-bar.outlier span {
    opacity: 1;
    color: var(--text-primary);
    font-weight: 600;
}

.outlier-flag {
    position: absolute;
    top: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.chart-baseline {
    padding-top: 16px;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-align: center;
}

/* -------------------------
   Features Section
   ------------------------- */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all var(--transition-smooth);
}

.feature-card:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-medium);
    transform: translateY(-4px);
}

.feature-card.large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    background: var(--gradient-subtle);
    border-color: rgba(168, 85, 247, 0.2);
}

.feature-card.large h3 {
    font-size: 1.5rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 14px;
    margin-bottom: 20px;
}

.feature-card.large .feature-icon {
    margin-bottom: 0;
}

.feature-icon svg {
    stroke: var(--accent-purple);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent-silver-bright);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tags span {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-purple);
    background: rgba(168, 85, 247, 0.1);
    border-radius: 100px;
}

/* -------------------------
   Differentiator Section
   ------------------------- */
.differentiator-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.comparison-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.comparison-item {
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.comparison-item.competitors {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    opacity: 0.7;
}

.comparison-item.emuliance {
    background: var(--gradient-subtle);
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: var(--shadow-glow);
}

.comparison-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.comparison-item.emuliance h4 {
    color: var(--accent-purple);
}

.comparison-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.flow-node {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--bg-glass-hover);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}

.flow-node.faded {
    opacity: 0.3;
}

.comparison-item.emuliance .flow-node {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.flow-arrow {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.flow-arrow.loop {
    color: var(--accent-purple);
    font-size: 1.5rem;
}

.comparison-item p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.comparison-item.emuliance p {
    color: var(--text-secondary);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-divider span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* -------------------------
   Social Proof Section
   ------------------------- */
.proof-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.proof-stats {
    display: flex;
    gap: 40px;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.proof-value {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.proof-quote {
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    position: relative;
}

.proof-quote::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--accent-purple);
    opacity: 0.3;
    line-height: 1;
}

.proof-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.proof-quote cite {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    font-style: normal;
}

/* -------------------------
   CTA Section
   ------------------------- */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    filter: blur(80px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content>p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 20px;
}

.cta-form input {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-glass);
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    transition: all var(--transition-smooth);
}

.cta-form input::placeholder {
    color: var(--text-tertiary);
}

.cta-form input:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.cta-form .btn {
    white-space: nowrap;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* -------------------------
   Footer
   ------------------------- */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .logo-emul,
.footer-brand .logo-ai,
.footer-brand .logo-nce {
    display: inline;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* -------------------------
   Responsive
   ------------------------- */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .pipeline-step {
        grid-template-columns: 60px 1fr;
        gap: 24px;
    }

    .step-visual {
        display: none;
    }

    .pipeline-connector {
        margin-left: 60px;
    }

    .intelligence-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.large {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-card.large .feature-icon {
        margin: 0 auto 20px;
    }

    .feature-tags {
        justify-content: center;
    }

    .comparison-visual {
        grid-template-columns: 1fr;
    }

    .comparison-divider {
        transform: rotate(90deg);
    }

    .proof-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .proof-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        overflow-x: auto;
    }

    .proof-stats {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-form {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pipeline-step {
        padding: 24px;
    }

    .step-number {
        font-size: 1.5rem;
    }
}