/* ============================================
   LUCIX PRODUCT PAGE
   Light mode only, brand-precise, production-ready
   ============================================ */

/* BRAND COLOR SYSTEM (strict) */
:root {
    /* Page foundation */
    --page-bg: #F8FAFC;
    --card-surface: #FFFFFF;
    
    /* Text hierarchy */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    
    /* Structure */
    --border-light: #E2E8F0;
    
    /* Brand accent (use sparingly) */
    --lucix-indigo: #5558F0;
    
    /* Stance colors */
    --supporter-green: #34D399;
    --neutral-amber: #FBBF24;
    --blocker-red: #EF4444;
    --unknown-gray: #94A3B8;
    
    /* Spacing scale */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 80px;
    --spacing-5xl: 100px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    background: var(--page-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY SYSTEM */
.page-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.section-headline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.section-subheadline {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
}

.section-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lucix-indigo);
    margin-bottom: var(--spacing-md);
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

section {
    padding: var(--spacing-4xl) 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--card-surface);
    border-bottom: 1px solid var(--border-light);
    height: 64px;
    display: flex;
    align-items: center;
}

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

.logo-mark {
    font-size: 18px;
    font-weight: 600;
    color: var(--lucix-indigo);
}

.logo-wordmark {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-link {
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link-ghost {
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link-ghost:hover {
    color: var(--text-primary);
}

.btn {
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-primary-nav {
    background: var(--lucix-indigo);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
}

.btn-primary-nav:hover {
    background: #4447d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(85, 88, 240, 0.2);
}

/* ============================================
   HERO SECTION WITH VIDEO
   ============================================ */
.hero-product {
    background: var(--page-bg);
    padding: var(--spacing-5xl) 0 var(--spacing-4xl);
}

.hero-product.hero-video {
    padding: var(--spacing-4xl) 0;
}

.hero-content {
    display: grid;
    gap: var(--spacing-3xl);
}

.hero-content-video {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-text-above {
    margin-bottom: var(--spacing-2xl);
}

.hero-text {
    max-width: 640px;
}

.hero-subheadline {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

/* VIDEO HERO CONTAINER */
.video-hero-container {
    margin: var(--spacing-2xl) 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-caption {
    margin-top: var(--spacing-md);
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

.video-caption strong {
    color: var(--text-primary);
    font-weight: 600;
}

.btn-primary-large {
    background: var(--lucix-indigo);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    height: 44px;
    display: inline-flex;
    align-items: center;
}

.btn-primary-large:hover {
    background: #4447d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 88, 240, 0.25);
}

.link-secondary {
    font-size: 14px;
    font-weight: 500;
    color: var(--lucix-indigo);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.link-secondary:hover {
    border-bottom-color: var(--lucix-indigo);
}

/* SILENCE DETECTOR VISUAL */
.silence-detector-visual {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-xl);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.detector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
}

.detector-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.detector-status {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}

.detector-status.warning {
    background: rgba(239, 68, 68, 0.1);
    color: var(--blocker-red);
}

.committee-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.member-tile {
    background: var(--page-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.2s ease;
}

.member-tile.engaged {
    border-left: 3px solid var(--supporter-green);
}

.member-tile.risk {
    border-left: 3px solid var(--neutral-amber);
}

.member-tile.silent {
    border-left: 3px solid var(--blocker-red);
    opacity: 0.7;
}

.member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border-light);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info-compact {
    flex: 1;
    min-width: 0;
}

.member-name-compact {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.activity-indicator {
    font-size: 10px;
    color: var(--text-muted);
}

.activity-indicator.active {
    color: var(--supporter-green);
    font-weight: 500;
}

.activity-indicator.warning {
    color: var(--neutral-amber);
    font-weight: 500;
}

.activity-indicator.silent {
    color: var(--blocker-red);
    font-weight: 500;
}

.alignment-bar {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.alignment-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.alignment-track {
    height: 8px;
    background: #F1F5F9;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.alignment-fill {
    height: 100%;
    background: var(--neutral-amber);
    border-radius: 4px;
}

.alignment-score {
    font-size: 12px;
    font-weight: 600;
    color: var(--blocker-red);
}

/* COMMITTEE VISUALIZATION (legacy) */
.committee-hero-visual {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-xl);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.stakeholder-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stakeholder-card {
    background: var(--page-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease;
}

.stakeholder-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.champion-card {
    border: 2px solid var(--lucix-indigo);
    background: rgba(85, 88, 240, 0.02);
}

.risk-card {
    border-left: 3px solid var(--blocker-red);
}

.stakeholder-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
    border: 2px solid var(--border-light);
}

.stakeholder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stakeholder-info {
    width: 100%;
}

.stakeholder-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.stakeholder-title {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
}

.stance-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: var(--spacing-xs);
}

.stance-green {
    background: rgba(52, 211, 153, 0.1);
    color: var(--supporter-green);
}

.stance-amber {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
}

.stance-red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--blocker-red);
}

.stance-gray {
    background: rgba(148, 163, 184, 0.1);
    color: var(--unknown-gray);
}

.engagement-note {
    font-size: 11px;
    color: var(--text-muted);
}

.champion-badge {
    color: var(--lucix-indigo);
    font-weight: 600;
}

.committee-summary {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

/* SOCIAL PROOF */
.social-proof-strip {
    margin-top: var(--spacing-4xl);
    text-align: center;
}

.proof-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-3xl);
    flex-wrap: wrap;
}

.company-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 0.05em;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.section-problem {
    background: var(--card-surface);
    padding: var(--spacing-4xl) 0;
}

.problem-visual-large {
    margin-bottom: var(--spacing-2xl);
}

.problem-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.problem-insight-box {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: rgba(85, 88, 240, 0.03);
    border-left: 3px solid var(--lucix-indigo);
    border-radius: 8px;
}

.problem-insight-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.problem-insight-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.stat-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.stat-card {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-xl);
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--lucix-indigo);
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.stat-sub {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.problem-explanation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.problem-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.problem-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.timeline-stage {
    text-align: center;
}

.stage-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--spacing-xs);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.stage-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stage-icon.uncertain {
    border-color: var(--neutral-amber);
    opacity: 0.8;
}

.stage-icon.defeated {
    border-color: var(--blocker-red);
    opacity: 0.6;
    filter: grayscale(30%);
}

.stage-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.timeline-arrow {
    font-size: 20px;
    color: var(--text-muted);
}

/* ============================================
   BREAKTHROUGH SECTION
   ============================================ */
.section-breakthrough {
    background: var(--page-bg);
    padding: var(--spacing-4xl) 0;
}

.factor-probe-visual {
    margin-top: var(--spacing-xl);
}

.probe-intro {
    margin-bottom: var(--spacing-xl);
}

.probe-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.probe-example-card {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.probe-factor {
    margin-bottom: var(--spacing-lg);
}

.factor-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.range-display {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.range-bar-track {
    height: 8px;
    background: #F1F5F9;
    border-radius: 4px;
    overflow: hidden;
}

.range-bar-fill {
    height: 100%;
    background: var(--lucix-indigo);
    border-radius: 4px;
}

.probe-correction {
    background: var(--page-bg);
    border-radius: 8px;
    padding: var(--spacing-md);
}

.correction-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.correction-icon {
    font-size: 18px;
}

.correction-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.correction-quote {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.correction-intel {
    font-size: 12px;
    color: var(--text-muted);
}

.correction-intel strong {
    color: var(--text-primary);
}

.insight-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.insight-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.insight-icon {
    font-size: 18px;
    color: var(--supporter-green);
    font-weight: 700;
}

.insight-text {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-primary);
}

.philosophy-statement {
    text-align: center;
    font-size: 17px;
    font-style: italic;
    color: var(--text-secondary);
    padding: var(--spacing-xl);
    border-top: 1px solid var(--border-light);
}

.breakthrough-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-2xl);
}

.intro-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
}

.factor-card-example {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.factor-header {
    margin-bottom: var(--spacing-md);
}

.factor-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.factor-range-display {
    margin-bottom: var(--spacing-lg);
}

.range-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.range-bar {
    height: 8px;
    background: #F1F5F9;
    border-radius: 4px;
    overflow: hidden;
}

.range-fill {
    height: 100%;
    background: var(--lucix-indigo);
    border-radius: 4px;
}

.factor-reaction {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--page-bg);
    border-radius: 8px;
}

.reaction-icon {
    font-size: 20px;
}

.reaction-content {
    flex: 1;
}

.reaction-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.reaction-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 4px;
    font-style: italic;
}

.reaction-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.breakthrough-explanation p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.emphasis-text {
    font-weight: 500;
    color: var(--text-primary);
}

.value-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.value-list {
    list-style: none;
}

.value-list li {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.check-icon {
    color: var(--supporter-green);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.value-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
}

/* ============================================
   THE GAP (TWO-STANCE MODEL)
   ============================================ */
.section-two-stance {
    background: var(--card-surface);
    padding: var(--spacing-4xl) 0;
}

.gap-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-2xl);
    background: var(--page-bg);
    border-radius: 12px;
}

.gap-side {
    text-align: center;
}

.gap-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-md);
}

.gap-content {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: var(--spacing-md);
}

.hypothesis-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.member-mini {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.member-mini-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-light);
}

.member-mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-mini-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.gap-note {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

.gap-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.arrow-symbol {
    font-size: 32px;
    color: var(--lucix-indigo);
}

.arrow-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--lucix-indigo);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.delta-examples-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.delta-mini {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: var(--spacing-md);
    text-align: center;
}

.delta-header-mini {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.delta-shift-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 18px;
    color: var(--text-muted);
}

.pill-tiny {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
}

.pill-tiny.green {
    background: rgba(52, 211, 153, 0.1);
    color: var(--supporter-green);
}

.pill-tiny.amber {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
}

.pill-tiny.red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--blocker-red);
}

.pill-tiny.gray {
    background: rgba(148, 163, 184, 0.1);
    color: var(--unknown-gray);
}

.stance-comparison-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-2xl);
    margin: var(--spacing-2xl) 0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.stance-column-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stance-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.stance-timing {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.stance-example {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.stance-basis {
    font-size: 14px;
    color: var(--text-secondary);
}

.stance-basis strong {
    color: var(--text-primary);
}

.stance-divider {
    width: 1px;
    background: var(--border-light);
}

.delta-marker {
    text-align: center;
    margin: var(--spacing-xl) 0;
}

.delta-arrow {
    font-size: 32px;
    color: var(--lucix-indigo);
    margin-bottom: var(--spacing-xs);
}

.delta-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--lucix-indigo);
    letter-spacing: 0.05em;
}

.delta-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.delta-card {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
}

.delta-header {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.delta-shift {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.shift-arrow {
    font-size: 18px;
    color: var(--text-muted);
}

.delta-explanation {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}

/* ============================================
   FOMU ENGINE
   ============================================ */
.section-fomu {
    background: #F0F1FE;
    padding: var(--spacing-5xl) 0;
}

.fomu-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-2xl);
}

.live-intelligence-panel {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.panel-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.viewer-row {
    display: grid;
    grid-template-columns: auto 1fr 2fr auto auto;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-light);
}

.viewer-row:last-of-type {
    border-bottom: none;
}

.viewer-row.inactive {
    opacity: 0.5;
}

.viewer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.viewer-dot.active {
    background: var(--supporter-green);
}

.viewer-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.viewer-bar {
    height: 6px;
    background: #F1F5F9;
    border-radius: 3px;
    overflow: hidden;
}

.viewer-fill {
    height: 100%;
    background: var(--lucix-indigo);
    border-radius: 3px;
}

.viewer-time {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.viewer-actions {
    font-size: 11px;
    color: var(--text-muted);
}

.risk-indicator {
    color: var(--blocker-red);
}

.notification-card {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(85, 88, 240, 0.05);
    border: 1px solid rgba(85, 88, 240, 0.1);
    border-radius: 8px;
}

.notification-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.add-voice-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--lucix-indigo);
    text-decoration: none;
}

.fomu-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.fomu-subheading {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.fomu-right p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.fomu-loop {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--card-surface);
    border-radius: 8px;
}

.loop-step {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
}

.loop-step.final {
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   HIDDEN STRUCTURE SECTION
   ============================================ */
/* ============================================
   HIDDEN STRUCTURE / DEPENDENCY MAP
   ============================================ */
.section-hidden-structure {
    background: var(--page-bg);
    padding: var(--spacing-4xl) 0;
}

.structure-visual-large {
    margin-bottom: var(--spacing-2xl);
}

.structure-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.dependency-map-visual {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-xl);
}

.map-intro {
    margin-bottom: var(--spacing-xl);
}

.map-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.connection-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.connection-item {
    background: var(--page-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: var(--spacing-md);
}

.connection-item.high {
    border-left: 3px solid var(--supporter-green);
}

.connection-item.medium {
    border-left: 3px solid var(--neutral-amber);
}

.connection-item.low {
    border-left: 3px solid var(--blocker-red);
}

.connection-nodes {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.node-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.connection-line {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--border-light);
}

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

.strength-bar {
    height: 6px;
    background: #F1F5F9;
    border-radius: 3px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    border-radius: 3px;
}

.strength-fill.green {
    background: var(--supporter-green);
}

.strength-fill.amber {
    background: var(--neutral-amber);
}

.strength-fill.red {
    background: var(--blocker-red);
}

.strength-label {
    font-size: 12px;
    color: var(--text-muted);
}

.structure-insight {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    padding: var(--spacing-md);
    background: rgba(85, 88, 240, 0.03);
    border-radius: 8px;
}

.structure-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-2xl);
}

.structure-concept-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.structure-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.structure-example-card {
    background: var(--page-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
}

.example-header {
    margin-bottom: var(--spacing-lg);
}

.example-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--lucix-indigo);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.example-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.structural-ranking {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.rank-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.rank-item.load-bearing {
    border-left: 3px solid var(--lucix-indigo);
    background: rgba(85, 88, 240, 0.02);
}

.rank-position {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    width: 24px;
    text-align: center;
}

.rank-details {
    display: flex;
    flex-direction: column;
}

.rank-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.rank-connections {
    font-size: 12px;
    color: var(--text-muted);
}

.rank-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(85, 88, 240, 0.1);
    color: var(--lucix-indigo);
}

.example-insight {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    padding: var(--spacing-md);
    background: rgba(251, 191, 36, 0.05);
    border-left: 3px solid var(--neutral-amber);
    border-radius: 4px;
}

.example-insight strong {
    color: var(--text-primary);
}

.connection-strength-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.connection-card {
    background: var(--page-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: var(--spacing-md);
}

.connection-card.high-consensus {
    border-left: 3px solid var(--supporter-green);
}

.connection-card.low-consensus {
    border-left: 3px solid var(--neutral-amber);
}

.connection-card.no-consensus {
    border-left: 3px solid var(--blocker-red);
}

.connection-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.connection-from,
.connection-to {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.connection-arrow {
    font-size: 14px;
    color: var(--text-muted);
}

.connection-bar {
    height: 6px;
    background: #F1F5F9;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: var(--spacing-xs);
}

.connection-fill {
    height: 100%;
    background: var(--lucix-indigo);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.connection-card.high-consensus .connection-fill {
    background: var(--supporter-green);
}

.connection-card.low-consensus .connection-fill {
    background: var(--neutral-amber);
}

.connection-card.no-consensus .connection-fill {
    background: var(--blocker-red);
}

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

.consensus-percent {
    font-size: 13px;
    font-weight: 600;
    color: var(--supporter-green);
}

.consensus-percent.warning {
    color: #d97706;
}

.consensus-percent.danger {
    color: var(--blocker-red);
}

.consensus-note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.structure-insight-box {
    padding: var(--spacing-md);
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.structure-insight-box p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.structure-insight-box strong {
    color: var(--text-primary);
}

.structure-value-prop {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: rgba(85, 88, 240, 0.03);
    border: 1px solid rgba(85, 88, 240, 0.1);
    border-radius: 12px;
    text-align: center;
}

.value-prop-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.value-prop-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   USE CASES
   ============================================ */
.section-roles {
    background: var(--card-surface);
    padding: var(--spacing-4xl) 0;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.use-case-card {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.use-case-visual {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.use-case-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.use-case-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--spacing-md) var(--spacing-md) var(--spacing-xs);
}

.use-case-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0 var(--spacing-md) var(--spacing-sm);
}

.use-case-example {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin: 0 var(--spacing-md) var(--spacing-md);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.role-card {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.role-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.creator-role .role-accent {
    background: var(--lucix-indigo);
}

.champion-role .role-accent {
    background: var(--supporter-green);
}

.reviewer-role .role-accent {
    background: var(--neutral-amber);
}

.role-portrait {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    border: 2px solid var(--border-light);
}

.role-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.role-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.role-for {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.role-headline {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.role-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.role-value-list {
    list-style: none;
}

.role-value-list li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

/* ============================================
   HOW IT WORKS (CONDENSED)
   ============================================ */
.section-workflow {
    background: var(--page-bg);
    padding: var(--spacing-4xl) 0;
}

.workflow-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.workflow-col {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
}

.workflow-number {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-md);
    background: rgba(85, 88, 240, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--lucix-indigo);
}

.workflow-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.workflow-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.workflow-philosophy {
    text-align: center;
    font-size: 16px;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--border-light);
}

.workflow-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
    align-items: start;
}

.workflow-step {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-md);
    background: rgba(85, 88, 240, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-mark {
    font-size: 24px;
    font-weight: 700;
    color: var(--lucix-indigo);
}

.step-number {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-xs);
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.step-body {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.step-visual {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--page-bg);
    border-radius: 8px;
}

.mini-factor-card {
    text-align: center;
}

.mini-factor-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mini-factor-range {
    font-size: 14px;
    font-weight: 700;
    color: var(--lucix-indigo);
}

.mini-committee-stack {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.mini-portrait {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--lucix-indigo);
    border: 2px solid var(--card-surface);
}

.mini-sankey {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.sankey-flow {
    height: 8px;
    border-radius: 4px;
}

.sankey-flow.green {
    width: 80%;
    background: var(--supporter-green);
}

.sankey-flow.amber {
    width: 60%;
    background: var(--neutral-amber);
}

.sankey-flow.red {
    width: 40%;
    background: var(--blocker-red);
}

.workflow-arrow {
    font-size: 24px;
    color: var(--text-muted);
    align-self: center;
}

.workflow-philosophy {
    text-align: center;
    font-size: 16px;
    font-style: italic;
    color: var(--text-secondary);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--border-light);
}

/* ============================================
   DIFFERENTIATION (CONDENSED)
   ============================================ */
.section-differentiation {
    background: var(--card-surface);
    padding: var(--spacing-4xl) 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.diff-item {
    background: var(--page-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: var(--spacing-md);
}

.diff-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.diff-them {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-sm);
    opacity: 0.7;
}

.diff-lucix {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    padding-left: var(--spacing-sm);
    border-left: 3px solid var(--lucix-indigo);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.comparison-card {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
}

.comparison-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.comparison-examples {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.comparison-row {
    padding: var(--spacing-sm) 0;
    margin-bottom: var(--spacing-xs);
}

.comparison-row.them {
    opacity: 0.6;
}

.comparison-row.lucix {
    border-left: 3px solid var(--lucix-indigo);
    padding-left: var(--spacing-sm);
}

.comparison-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.comparison-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.comparison-row.lucix .comparison-text {
    color: var(--text-primary);
}

/* ============================================
   TESTIMONIALS (CONDENSED)
   ============================================ */
.section-testimonials {
    background: var(--page-bg);
    padding: var(--spacing-4xl) 0;
}

.testimonial-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.testimonial-compact {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
}

.testimonial-quote-compact {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.testimonial-attribution-compact {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-attribution-compact img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
}

.attribution-text {
    flex: 1;
}

.attribution-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.attribution-company {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.testimonial-card {
    background: var(--card-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
}

.testimonial-portrait {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border-light);
}

.testimonial-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.attribution-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.attribution-title {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   THE NUMBERS (DARK SECTION - CONDENSED)
   ============================================ */
.section-numbers {
    background: var(--text-primary);
    color: #FFFFFF;
    padding: var(--spacing-4xl) 0;
}

.numbers-headline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.numbers-stats-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.numbers-stat-compact {
    text-align: center;
}

.numbers-value {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: var(--spacing-xs);
}

.numbers-label {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

.numbers-reality {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.numbers-headline {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.numbers-subheadline {
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.numbers-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

.numbers-stat {
    text-align: center;
}

.numbers-value {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: var(--spacing-xs);
}

.numbers-label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.numbers-divider {
    font-size: 32px;
    color: var(--text-muted);
}

.numbers-reality {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.btn-ghost-on-dark {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--lucix-indigo);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-ghost-on-dark:hover {
    background: rgba(85, 88, 240, 0.1);
    border-color: #6366f1;
}

/* ============================================
   FINAL CTA
   ============================================ */
.section-final-cta {
    background: var(--page-bg);
    padding: 120px 0;
    text-align: center;
}

.cta-mark {
    font-size: 24px;
    font-weight: 700;
    color: var(--lucix-indigo);
    margin-bottom: var(--spacing-lg);
}

.cta-headline {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.cta-subheadline {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-primary);
    color: var(--text-muted);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--spacing-xs);
}

.footer-logo .logo-mark {
    color: var(--lucix-indigo);
}

.footer-logo .logo-wordmark {
    color: #FFFFFF;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-nav {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-nav a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

.footer-cta {
    text-align: right;
}

.footer-cta-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--lucix-indigo);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: none;
}

.footer-copyright {
    font-size: 11px;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .page-headline {
        font-size: 40px;
    }

    .section-headline {
        font-size: 28px;
    }

    .gap-visual,
    .dependency-map-visual {
        grid-template-columns: 1fr;
    }

    .gap-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-3xl) 0;
    }

    .page-headline {
        font-size: 32px;
    }

    .section-headline {
        font-size: 24px;
    }

    .hero-product {
        padding: var(--spacing-3xl) 0;
    }

    .hero-product.hero-video {
        padding: var(--spacing-2xl) 0;
    }

    .hero-text-above {
        margin-bottom: var(--spacing-lg);
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-large {
        width: 100%;
        justify-content: center;
    }

    .video-wrapper {
        border-radius: 8px;
    }

    .committee-grid-compact {
        grid-template-columns: 1fr;
    }

    .member-tile {
        flex-direction: column;
        text-align: center;
    }

    .stat-cards-grid {
        grid-template-columns: 1fr;
    }

    .use-case-grid,
    .workflow-visual,
    .diff-grid,
    .testimonial-grid-compact {
        grid-template-columns: 1fr;
    }

    .numbers-stats-compact {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .nav-actions {
        gap: var(--spacing-sm);
    }

    .nav-link-ghost {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .page-headline {
        font-size: 26px;
        line-height: 1.2;
    }

    .section-headline {
        font-size: 22px;
    }

    .cta-headline {
        font-size: 32px;
    }

    .numbers-value {
        font-size: 42px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .section-label {
        font-size: 11px;
    }

    .btn-primary-nav {
        font-size: 13px;
        padding: 6px 12px;
    }

    .nav-actions {
        gap: 8px;
    }

    .video-wrapper {
        border-radius: 8px;
    }

    .stance-pill {
        font-size: 11px;
        padding: 4px 10px;
    }
}
