/* ==========================================================================
   Design Tokens & Variables
   ========================================================================== */
   :root {
    /* Colors */
    --bg-main: #FFFDF9; /* Warm off-white from design */
    --text-main: #111827;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --primary: #111827;
    --primary-hover: #374151;
    --accent-yellow: #FBBF24;
    --accent-yellow-light: #FEF3C7;
    --glow-yellow: rgba(251, 191, 36, 0.15);
    --glow-orange: rgba(249, 115, 22, 0.1);
    
    /* UI Colors */
    --card-bg: #FFFFFF;
    --border-color: #E5E7EB;
    --bg-gray: #F3F4F6;
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px var(--glow-yellow);
    
    /* Layout */
    --container-max: 1200px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 9999px;
}

/* ==========================================================================
   Base & Resets
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography Base */
h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn i {
    font-size: 1.2rem;
    padding: 0.2rem;
    background: white;
    color: black;
    border-radius: 50%;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

.btn-outline:hover {
    border-color: var(--primary);
    background-color: var(--bg-gray);
}

.btn-full {
    width: 100%;
}

.btn-outline.btn-full i { display: none; }
.btn-primary.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--primary);
}
.btn-primary.btn-yellow:hover {
    background-color: #f59e0b;
}

.bg-white {
    background-color: white !important;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    background-color: var(--bg-gray);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.badge-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
}

/* Check Lists */
.check-list {
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-main);
}

.check-list i {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.check-list-red i {
    color: #EF4444; /* Red for problem section */
}

/* Dashboard Preview Section */
.dashboard-preview-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

.dashboard-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.benefits-content {
    flex: 1;
    max-width: 500px;
}

.simple-benefits-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.simple-benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--text-main);
    font-weight: 500;
}

.simple-benefits-list i {
    font-size: 1.25rem;
}

/* Static Dashboard Preview */
@keyframes float-dash {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.dashboard-preview {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: float-dash 6s ease-in-out infinite;
}

.dashboard-header {
    background-color: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-title {
    font-weight: 700;
    color: var(--text-main);
}

.dash-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #EF4444;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #EF4444;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}



.dashboard-body {
    display: flex;
    padding: 1.5rem;
    gap: 2rem;
}

.dash-main-stage {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.player-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-profile img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #E5E7EB;
}

.player-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
    font-weight: 800;
}

.player-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

@keyframes highlight-flash {
    0%, 100% { background-color: #F9FAFB; }
    50% { background-color: #FEF3C7; }
}

.current-bid-display {
    background-color: #F9FAFB;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #E5E7EB;
    text-align: center;
    animation: highlight-flash 3s ease-in-out infinite;
}

.bid-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bid-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 1rem 0;
    line-height: 1;
}

.bidder-tag {
    display: inline-block;
    background-color: #FEF3C7;
    color: #D97706;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 700;
}

.dash-sidebar {
    flex: 1;
    border-left: 1px solid #E5E7EB;
    padding-left: 2rem;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.team-name {
    font-weight: 600;
    color: var(--text-main);
}

.team-budget {
    font-weight: 500;
    color: var(--text-muted);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 253, 249, 0.8);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--text-muted);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login-link {
    font-weight: 600;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

/* Background Grid Lines */
.bg-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 900px;
    z-index: 0;
    pointer-events: none;
}

.bg-grid-lines .line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(17, 24, 39, 0.1); /* Darker color for visibility */
}

.bg-grid-lines .line:nth-child(1) { left: calc(50% - 650px); } /* Outer Left */
.bg-grid-lines .line:nth-child(2) { left: calc(50% - 400px); } /* Inner Left */
.bg-grid-lines .line:nth-child(3) { left: calc(50% + 400px); } /* Inner Right */
.bg-grid-lines .line:nth-child(4) { left: calc(50% + 650px); } /* Outer Right */

.hero-glow {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1500px;
    height: 1500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, rgba(249, 115, 22, 0.15) 40%, rgba(255, 253, 249, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-cta {
    margin-top: 1rem;
    margin-bottom: 4rem;
}

/* Mock UI Cards Graphic - Matched to Image 2 Layout */
.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 450px;
    margin: 0 auto;
}

.ui-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
    position: absolute;
    text-align: left;
    transition: transform 0.3s ease;
}

.ui-card:hover {
    transform: translateY(-5px);
}

/* Center Column (Chart) */
.card-chart {
    top: 40px;
    left: 50%;
    margin-left: -180px;
    width: 360px;
    z-index: 1;
    padding: 1rem;
    height: 340px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.chart-title h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.chart-badge {
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
}

.chart-filter {
    background-color: var(--bg-gray);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 160px;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
}

.bar {
    width: 48px;
    background-color: #E5E7EB;
    border-radius: 24px;
    position: relative;
}

.bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #9CA3AF;
    font-weight: 600;
    white-space: nowrap;
}

.bar-sm { height: 40%; }
.bar-md { height: 60%; }
.bar-lg { height: 80%; }
.bar-xl { height: 70%; }

.bar.active {
    background-color: var(--primary);
    height: 90%;
}

.bar-tooltip {
    position: absolute;
    top: -15px;
    right: -25px;
    background-color: #A855F7;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

/* Left Column */
.card-design {
    top: 100px;
    right: calc(50% + 200px);
    width: 300px;
    z-index: 2;
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: #E0E7FF;
    color: #4F46E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card-info h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.card-info p {
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.card-progress {
    margin-top: 1rem;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 8px;
    background-color: #E0E7FF;
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #6366F1;
    border-radius: var(--radius-pill);
}

.card-user {
    top: 320px;
    right: calc(50% + 230px);
    width: 240px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    z-index: 2;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.user-info { flex: 1; }

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
    font-weight: 800;
}

.user-info p {
    font-size: 0.8rem;
    color: #9CA3AF;
    margin: 0;
}

.user-status {
    text-align: right;
}

.user-status span {
    font-size: 0.75rem;
    color: #9CA3AF;
    display: block;
    margin-bottom: 0.25rem;
}

.notification-dot {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
}

/* Right Column */
.card-time {
    top: 40px;
    left: calc(50% + 200px);
    width: 280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    padding: 0.75rem 1rem;
}

.meeting-time h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.meeting-time p {
    font-size: 0.85rem;
    color: #9CA3AF;
    margin: 0;
}

.meeting-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-meeting-details {
    top: 130px;
    left: calc(50% + 200px);
    width: 280px;
    z-index: 2;
}

.meeting-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: #374151;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.more-btn {
    background: none;
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    color: #9CA3AF;
}

.meeting-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.meeting-details p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #9CA3AF;
}

.meeting-meta {
    display: flex;
    gap: 0.5rem;
}

.meta-tag {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    background-color: var(--bg-gray);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-pill);
}

/* Floating Bell */
.floating-bell {
    position: absolute;
    top: 15px;
    right: calc(50% + 180px);
    width: 56px;
    height: 56px;
    background-color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
    z-index: 3;
    color: var(--accent-yellow);
}

/* ==========================================================================
   Features Grid (Solution & How It Works)
   ========================================================================== */
.features-grid-section {
    position: relative;
    background-color: #FAFAFA;
    overflow: hidden;
}

.features-grid-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1500px;
    height: 1500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, rgba(249, 115, 22, 0.15) 40%, rgba(255, 253, 249, 0) 70%);
    z-index: 0;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.features-grid-section .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-color 0.3s ease;
    
    position: relative;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card.primary-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(16, 185, 129, 0.04) 100%);
    border-color: rgba(16, 185, 129, 0.1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.08);
}

.feature-card.primary-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-color: rgba(16, 185, 129, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    background-color: #F9FAFB;
}

/* ==========================================================================
   Hover Previews (Inside Feature Cards)
   ========================================================================== */
.hover-preview {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.feature-card:hover .hover-preview {
    opacity: 1;
    transform: translateY(0);
}

/* Mini UI styling for all previews */
.preview-mini-ui {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
}

/* Card 1: Upload CSV */
.mini-ui-header { font-weight: 600; color: #111827; margin-bottom: 0.75rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.mini-ui-body.flex-center { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: #6B7280; }
.mini-ui-body i { font-size: 1.5rem; color: #10B981; }
.mini-progress-bar { width: 100%; height: 4px; background: #F3F4F6; border-radius: 2px; overflow: hidden; margin-top: 0.5rem; }
.mini-progress-fill { height: 100%; width: 60%; background: #10B981; border-radius: 2px; animation: progress 2s infinite ease-in-out; }
@keyframes progress { 0% { width: 0%; } 50% { width: 100%; } 100% { width: 0%; } }

/* Card 2: Set limits */
.mini-ui-row { display: flex; justify-content: space-between; align-items: center; padding: 0.375rem 0; border-bottom: 1px solid #F3F4F6; }
.mini-ui-row:last-child { border-bottom: none; }
.mini-ui-row span { color: #6B7280; font-size: 0.75rem; }
.mini-ui-row strong { color: #111827; font-size: 0.75rem; }

/* Card 3: Live bidding */
.live-bid-ui { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; background: #FAFAFA; border-color: #FCA5A5; }
.mini-live-tag { display: flex; align-items: center; gap: 0.25rem; color: #EF4444; font-weight: 700; font-size: 0.65rem; text-transform: uppercase; }
.mini-bid-amount { font-size: 1.5rem; font-weight: 800; color: #111827; line-height: 1; margin: 0.25rem 0; }
.mini-bid-team { color: #F59E0B; background: #FEF3C7; padding: 0.125rem 0.5rem; border-radius: 999px; font-size: 0.65rem; font-weight: 600; }

/* Card 4: Track everything */
.mini-wallet-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.375rem 0; }
.team-badge { width: 28px; height: 28px; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.65rem; font-weight: 700; }
.team-badge.csk { background: #F59E0B; }
.team-badge.rcb { background: #EF4444; }
.team-purse { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.purse-bar { width: 100%; height: 4px; background: #E5E7EB; border-radius: 2px; }
.purse-fill { height: 100%; border-radius: 2px; background: #111827; }
.team-purse span { font-size: 0.65rem; color: #6B7280; text-align: right; }

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 1rem;
    margin: 0;
}

/* ==========================================================================
   Feature Highlights (Problem & Benefits)
   ========================================================================== */
.feature-highlight {
    padding: 6rem 0;
}

.highlight-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.highlight-content, .highlight-graphic {
    flex: 1;
}

.right-text .highlight-container {
    flex-direction: row-reverse;
}

.highlight-content h2 {
    font-size: 3rem;
}

/* Cards Graphic */
.cards-graphic {
    position: relative;
    height: 400px;
}

.cards-graphic .ui-card.mini {
    position: absolute;
    transform: none;
}

.cards-graphic .card-design {
    top: 20%;
    left: 0;
    width: 300px;
    z-index: 2;
}

.cards-graphic .card-chart {
    bottom: 10%;
    right: 0;
    left: auto;
    width: 350px;
    transform: none;
    z-index: 1;
}

.cards-graphic .card-chart:hover { transform: translateY(-5px); }
.cards-graphic .card-design:hover { transform: translateY(-5px); }

/* Problem Graphic Special */
.problem-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}
.problem-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid #FEE2E2;
    transform: rotate(-2deg);
    position: relative;
}
.problem-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-xl);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.1);
    z-index: -1;
}
.chaos-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-family: monospace;
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.5;
}
.chaos-line i { color: #EF4444; text-decoration: none;}

/* ==========================================================================
   Social Proof (Testimonials)
   ========================================================================== */
.testimonials {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}
.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--bg-gray);
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: serif;
    z-index: 0;
}
.testimonial-quote p {
    position: relative;
    z-index: 1;
    color: var(--text-main);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.testimonial-author-info h4 {
    font-size: 1rem;
    margin-bottom: 0;
}
.testimonial-author-info p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Objections (FAQ)
   ========================================================================== */
.faq-section {
    padding: 6rem 0;
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.faq-card {
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.faq-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-card h3 i {
    color: var(--accent-yellow);
    margin-top: 0.2rem;
}

.faq-card p {
    margin: 0;
    padding-left: 2.25rem;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
    padding: 5rem 0 8rem;
    background-color: white;
}

.cta-card {
    position: relative;
    background-color: #EED7B8; /* Fallback warm color */
    border-radius: 40px;
    padding: 6rem 2rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #FDE68A 0%, #EED7B8 100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.avatars img:first-child { margin-left: 0; }

.cta-subtitle {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-footer-text {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.cta-deco-left, .cta-deco-right {
    position: absolute;
    z-index: 1;
    opacity: 0.8;
}

.cta-deco-left {
    top: 10%;
    left: -5%;
    width: 300px;
}

.cta-deco-left .floating-bell {
    position: relative;
    top: 0; left: 0;
    margin-bottom: 1rem;
    box-shadow: none;
}

.cta-deco-right {
    top: 20%;
    right: 5%;
}

.cta-deco-right .meeting-time {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: var(--shadow-lg);
}

.cta-deco-right .meeting-time i {
    font-size: 2rem;
    margin-top: 1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
    background-color: var(--bg-main);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-links {
    display: flex;
    gap: 6rem;
}

.link-group h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.link-group a:hover {
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    font-size: 1.25rem;
}

.social-links a:hover {
    color: var(--text-main);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

/* ==========================================================================
   Dynamic Problem Section (Redesign)
   ========================================================================== */
.system-cause {
    max-width: 480px;
}

.badge-system {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4B5563;
    margin-bottom: 1rem;
}
.badge-system::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: #F59E0B;
    border-radius: 50%;
    animation: blink-slow 2s infinite;
}
@keyframes blink-slow { 50% { opacity: 0.4; } }

.system-cause h2 {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.system-cause p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.system-log-flow {
    display: flex;
    flex-direction: column;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    overflow: hidden;
    background: #FAFAFA;
    margin-bottom: 2rem;
}

.sys-log-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #E5E7EB;
    font-size: 0.875rem;
    background: white;
}
.sys-log-row:last-child {
    border-bottom: none;
}
.sys-log-row.active-failure {
    background: #FEF2F2;
    border-left: 3px solid #EF4444;
}

.sys-col-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #111827;
}
.sys-col-left i {
    font-size: 1.25rem;
    color: #6B7280;
}
.active-failure .sys-col-left i {
    color: #EF4444;
}

.sys-col-right {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    font-size: 0.8rem;
}
.sys-col-right.warn { color: #D97706; }
.sys-col-right.fail { color: #DC2626; }

.system-cta-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.system-cta-block p {
    margin: 0;
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
}

.system-effect {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hard-connector {
    position: absolute;
    left: -120px;
    top: 50%;
    width: 120px;
    height: 1px;
    background: #E5E7EB;
    z-index: 0;
}
.hard-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #E5E7EB;
    border-right: 1px solid #E5E7EB;
    transform: rotate(45deg);
}

.terminal-card {
    position: relative;
    z-index: 1;
    background: #0A0A0A;
    width: 100%;
    max-width: 400px;
    border: 1px solid #262626;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
    overflow: hidden;
}

.glitch-card {
    animation: slight-glitch 5s infinite;
}

@keyframes slight-glitch {
    0%, 96% { transform: translate(0, 0); }
    97% { transform: translate(-2px, 1px); }
    98% { transform: translate(2px, -1px); }
    99% { transform: translate(-1px, 0px); }
    100% { transform: translate(0, 0); }
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #171717;
    border-bottom: 1px solid #262626;
}

.term-dots {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}
.term-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.close { background: #EF4444; }
.dot.min { background: #F59E0B; }
.dot.max { background: #10B981; }

.term-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    color: #737373;
    letter-spacing: 0.05em;
}

.terminal-body {
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    line-height: 1.5;
}

.term-line {
    color: #A3A3A3;
}
.term-line.warn {
    color: #FCD34D;
}
.term-line.fail {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #FCA5A5;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-left: 2px solid #EF4444;
}

.fail-badge {
    background: #EF4444;
    color: white;
    font-size: 0.7rem;
    padding: 1px 4px;
    border-radius: 2px;
    font-weight: bold;
}

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #A3A3A3;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink { 50% { opacity: 0; } }

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .hero-graphic { height: 400px; }
    .ui-card { transform: scale(0.8); }
    .card-chart { width: 350px; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    
    .highlight-container { flex-direction: column !important; text-align: center; }
    
    .footer-top { flex-direction: column; gap: 3rem; }
    .footer-links { flex-wrap: wrap; gap: 3rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-links, .nav-actions .login-link { display: none; }
    
    .hero-graphic { display: none; }
    
    .features-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    
    .cta-content h2 { font-size: 2.5rem; }
    .cta-actions { flex-direction: column; }
    .cta-deco-left, .cta-deco-right { display: none; }
    
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}
