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

/* CSS Variables - Bolt.new Dark Style (Default) */
:root {
    --bg-primary: #0d0d0f;
    --bg-secondary: #1a1a22;
    --bg-gradient-start: #0d0d0f;
    --bg-gradient-end: #1a1a22;
    --bg-card: rgba(26, 26, 34, 0.6);
    --bg-card-hover: rgba(36, 36, 46, 0.8);
    --text-primary: #F5F5F7;
    --text-secondary: #A1A1A6;
    --accent-primary: #6e47ff;
    --accent-secondary: #fcb36e;
    --accent-tertiary: #2C2C36;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(110, 71, 255, 0.4);
    --border-glow: rgba(110, 71, 255, 0.2);
    --scrollbar-thumb: rgba(255, 255, 255, 0.15);
    --scrollbar-thumb-hover: rgba(110, 71, 255, 0.5);
    --shadow-sm: rgba(0, 0, 0, 0.4);
    --shadow-md: rgba(0, 0, 0, 0.5);
    --shadow-lg: rgba(0, 0, 0, 0.6);
    --glow-violet: rgba(110, 71, 255, 0.4);
    --glow-amber: rgba(252, 179, 110, 0.3);
    --error-bg: #3A2424;
    --error-border: #FF453A;
    --success-color: #32D74B;
    --cta-button-bg: linear-gradient(135deg, #6e47ff 0%, #fcb36e 100%);
    --cta-button-hover: linear-gradient(135deg, #7d56ff 0%, #fdc07e 100%);
    --primary-color: #6e47ff;
}

/* CSS Variables for Light Theme (Optional) */
.light-theme {
    --bg-primary: #FAF8F6;
    --bg-secondary: #E8E3DD;
    --bg-gradient-start: #FAF8F6;
    --bg-gradient-end: #F0E6D8;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.85);
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --accent-primary: #7B68EE;
    --accent-secondary: #FF8C42;
    --accent-tertiary: #E8E3DD;
    --border-color: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(123, 104, 238, 0.3);
    --border-glow: rgba(123, 104, 238, 0.15);
    --scrollbar-thumb: rgba(0, 0, 0, 0.2);
    --scrollbar-thumb-hover: rgba(123, 104, 238, 0.4);
    --shadow-sm: rgba(0, 0, 0, 0.04);
    --shadow-md: rgba(0, 0, 0, 0.08);
    --shadow-lg: rgba(0, 0, 0, 0.12);
    --glow-violet: rgba(123, 104, 238, 0.2);
    --glow-amber: rgba(255, 140, 66, 0.15);
    --error-bg: #FFEBE9;
    --error-border: #FF3B30;
    --success-color: #34C759;
    --cta-button-bg: linear-gradient(135deg, #7B68EE 0%, #9B7FF5 100%);
    --cta-button-hover: linear-gradient(135deg, #8A77F7 0%, #AA8EFF 100%);
    --primary-color: #7B68EE;
}

/* Preview Banner */
.preview-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(13, 13, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 20px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
}

.preview-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.preview-banner-badge {
    background: linear-gradient(135deg, rgba(110, 71, 255, 0.15) 0%, rgba(252, 179, 110, 0.15) 100%);
    border: 1px solid rgba(110, 71, 255, 0.3);
    color: var(--accent-primary);
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.preview-banner-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.preview-banner-link:hover {
    color: var(--accent-primary);
    transform: translateX(2px);
}

.preview-banner-arrow {
    font-size: 16px;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-banner-link:hover .preview-banner-arrow {
    transform: translateX(3px);
}

/* Logo Theme Switching - Default Dark */
.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

.light-theme .logo-dark {
    display: none;
}

.light-theme .logo-light {
    display: block;
}

/* Make pittogramma white in dark theme using CSS filter */
.dark-theme .sidebar-icon.logo-dark {
    filter: brightness(0) invert(1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100vw;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
}

/* Bolt.new Style Background - Image + Smoke Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background: 
        linear-gradient(180deg, rgba(13, 13, 15, 0.85) 0%, rgba(13, 13, 15, 0.75) 50%, rgba(13, 13, 15, 0.9) 100%),
        url('attached_assets/stock_images/abstract_purple_grad_5b08072a.jpg') center center / cover no-repeat;
    animation: subtleBreath 15s ease-in-out infinite alternate;
}

.light-theme body::before {
    background: 
        linear-gradient(180deg, rgba(250, 248, 246, 0.9) 0%, rgba(250, 248, 246, 0.85) 50%, rgba(250, 248, 246, 0.95) 100%),
        url('attached_assets/stock_images/abstract_purple_grad_5b08072a.jpg') center center / cover no-repeat;
}

@keyframes subtleBreath {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gradient Smoke Orbs - Bolt.new Style */
.gradient-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: floatSmooth 30s infinite ease-in-out;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(110, 71, 255, 0.7) 0%, transparent 70%);
    top: -200px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(252, 179, 110, 0.6) 0%, transparent 70%);
    bottom: -250px;
    right: -200px;
    animation-delay: 10s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(110, 71, 255, 0.5) 0%, transparent 70%);
    top: 35%;
    left: 55%;
    animation-delay: 20s;
}

.orb-4 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(252, 179, 110, 0.45) 0%, transparent 70%);
    top: 15%;
    right: 10%;
    animation-delay: 25s;
}

@keyframes floatSmooth {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(70px, -90px) scale(1.2);
    }
    50% {
        transform: translate(-50px, 70px) scale(0.85);
    }
    75% {
        transform: translate(60px, 50px) scale(1.1);
    }
}

.light-theme .gradient-orb {
    opacity: 0.25;
    filter: blur(100px);
}

.light-theme .orb-1 {
    background: radial-gradient(circle, rgba(123, 104, 238, 0.4) 0%, transparent 70%);
}

.light-theme .orb-2 {
    background: radial-gradient(circle, rgba(255, 140, 66, 0.35) 0%, transparent 70%);
}

.light-theme .orb-3 {
    background: radial-gradient(circle, rgba(123, 104, 238, 0.3) 0%, transparent 70%);
}

.light-theme .orb-4 {
    background: radial-gradient(circle, rgba(255, 140, 66, 0.25) 0%, transparent 70%);
}

/* Floating Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(110, 71, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(110, 71, 255, 0.4), 0 0 20px rgba(110, 71, 255, 0.2);
    animation: floatParticle 20s ease-in-out infinite;
}

.particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle-2 {
    top: 20%;
    right: 15%;
    background: rgba(252, 179, 110, 0.6);
    box-shadow: 0 0 10px rgba(252, 179, 110, 0.4), 0 0 20px rgba(252, 179, 110, 0.2);
    animation-delay: 2s;
    animation-duration: 22s;
}

.particle-3 {
    top: 40%;
    left: 5%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.particle-4 {
    top: 60%;
    right: 8%;
    background: rgba(252, 179, 110, 0.6);
    box-shadow: 0 0 10px rgba(252, 179, 110, 0.4), 0 0 20px rgba(252, 179, 110, 0.2);
    animation-delay: 6s;
    animation-duration: 24s;
}

.particle-5 {
    top: 75%;
    left: 20%;
    animation-delay: 8s;
    animation-duration: 26s;
}

.particle-6 {
    top: 30%;
    left: 45%;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    animation-delay: 3s;
    animation-duration: 30s;
}

.particle-7 {
    top: 55%;
    right: 30%;
    width: 3px;
    height: 3px;
    animation-delay: 5s;
    animation-duration: 27s;
}

.particle-8 {
    top: 85%;
    right: 45%;
    background: rgba(252, 179, 110, 0.5);
    box-shadow: 0 0 10px rgba(252, 179, 110, 0.3);
    animation-delay: 7s;
    animation-duration: 23s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 20px) scale(1.1);
        opacity: 0.8;
    }
}

/* Liquid Gradient Orb - Animated */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 150%;
    z-index: -1;
    background: 
        radial-gradient(circle at 30% 40%, rgba(110, 71, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(252, 179, 110, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(110, 71, 255, 0.06) 0%, transparent 30%);
    filter: blur(80px);
    animation: liquidFlow 30s ease-in-out infinite;
    opacity: 0.7;
    pointer-events: none;
}

@keyframes liquidFlow {
    0%, 100% {
        transform: translate(0%, 0%) rotate(0deg);
    }
    25% {
        transform: translate(3%, -5%) rotate(90deg);
    }
    50% {
        transform: translate(-2%, 4%) rotate(180deg);
    }
    75% {
        transform: translate(-5%, -2%) rotate(270deg);
    }
}

/* Light theme overrides */
.light-theme body::before {
    background: 
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(123, 104, 238, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 100% 70% at 80% 100%, rgba(255, 140, 66, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #FAF8F6 0%, #F0E6D8 100%);
}

.light-theme body::after {
    background: 
        radial-gradient(circle at 30% 40%, rgba(123, 104, 238, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 140, 66, 0.04) 0%, transparent 35%);
    opacity: 0.5;
}

/* Sidebar is hidden */
.sidebar {
    display: none;
}

.dark-theme .sidebar {
    background: rgba(28, 28, 30, 0.7);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sidebar:hover {
    width: 240px;
}

.sidebar-content {
    padding: 24px 16px 0 16px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sidebar-content::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.logo-container {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 80px;
}

.sidebar-icon {
    width: 32px;
    height: 32px;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    position: absolute;
}

.sidebar:hover .sidebar-icon {
    opacity: 0;
}

.sidebar-logo-full {
    width: auto;
    height: 40px;
    max-width: 180px;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    object-fit: contain;
}

.sidebar:hover .sidebar-logo-full {
    opacity: 1;
}

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

.section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    padding: 16px 12px 8px 12px;
    opacity: 0;
    transition: opacity 0.3s ease-out, color 0.3s ease;
    white-space: nowrap;
}

.sidebar:hover .section-title {
    opacity: 1;
}

.section-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 16px 0;
    opacity: 0;
    transition: opacity 0.3s ease-out, border-color 0.3s ease;
}

.sidebar:hover .section-divider {
    opacity: 1;
}

.permanent-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 16px 0;
    opacity: 1;
    transition: border-color 0.3s ease;
}

.agent-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
    color: var(--text-secondary);
    white-space: nowrap;
    position: relative;
}

.agent-item:hover {
    background-color: var(--bg-card-hover);
}

.agent-item.active {
    color: var(--text-primary);
    background-color: var(--accent-secondary);
}

.agent-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    min-width: 20px;
}

.agent-item.active .agent-icon {
    stroke: var(--text-primary);
}

.agent-item.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.agent-item.disabled:hover {
    background-color: transparent;
}

.agent-info {
    flex: 1;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    overflow: hidden;
}

.sidebar:hover .agent-info {
    opacity: 1;
}

.agent-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.agent-role {
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.3;
}

/* Register Button */
.register-button {
    position: absolute;
    bottom: 4px;
    left: 16px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease-out, color 0.2s ease-out, width 0.3s ease-out, height 0.3s ease-out, padding 0.3s ease-out, border-radius 0.3s ease-out;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    background: transparent !important;
    border: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.sidebar:hover .register-button {
    width: 208px;
    height: auto;
    justify-content: flex-start;
    padding: 12px;
    border-radius: 8px;
}

.register-button:hover {
    background-color: var(--bg-card-hover);
    color: var(--text-primary);
}

.register-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    min-width: 24px;
    margin: 0;
    padding: 0;
    background: transparent;
    transition: margin-right 0.3s ease-out;
}

.sidebar:hover .register-icon {
    margin-right: 12px;
}

.sidebar:not(:hover) .register-text {
    display: none;
}

.register-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    overflow: hidden;
}

.sidebar:hover .register-text {
    opacity: 1;
}

.main-content {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s ease-out;
}

/* Initial State: Full width, centered */
body.initial-state .main-content {
    margin-left: 0;
    width: 100vw;
    justify-content: flex-start;
}

/* Chat Active State: Full width (no sidebar) */
body.chat-active .main-content {
    margin-left: 0;
    width: 100vw;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
}

/* Initial View - Hero State */
.initial-view {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 100vh;
    gap: 0;
    opacity: 1;
    transition: opacity 0.4s ease-out;
    padding-top: 18vh;
}

body.chat-active .initial-view {
    display: none;
    opacity: 0;
    pointer-events: none;
}

/* Top Navigation Links - Minimalist Style */
.top-nav {
    position: fixed;
    top: 24px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    width: 100%;
    z-index: 10001;
    animation: fadeIn 0.8s ease-out;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 24px;
}

.nav-link {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease-out;
    cursor: pointer;
    position: relative;
}

.nav-link:not(:first-child)::before {
    content: "|";
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    transition: color 0.3s ease;
}

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

/* Theme Toggle Button */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.theme-toggle:hover {
    background-color: var(--bg-card);
    border-color: var(--border-hover);
}

.theme-icon {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
    transition: all 0.3s ease;
}

/* Sun icon visible by default (light theme) */
.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

/* Moon icon visible in dark theme */
.dark-theme .sun-icon {
    display: none;
}

.dark-theme .moon-icon {
    display: block;
    stroke: #FFFFFF;
}

/* Make toggle button more visible in dark theme */
.dark-theme .theme-toggle {
    border-color: #FFFFFF;
}

.dark-theme .theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

.hero-logo {
    animation: fadeInScale 0.8s ease-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-align: center;
    text-shadow: 0 4px 24px rgba(110, 71, 255, 0.3), 0 0 40px rgba(110, 71, 255, 0.2);
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8E8FF 50%, #FFFFFF 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 8s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(110, 71, 255, 0.15) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
    animation: auraPulse 4s ease-in-out infinite;
}

@keyframes auraPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px 0;
}

.hero-logo-image {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 12px var(--shadow-lg));
}

.hero-logo-inline {
    height: 60px;
    width: auto;
    vertical-align: middle;
    filter: drop-shadow(0 4px 12px var(--shadow-lg));
}

.hero-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.hero-beta-note {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 16px 0 0 0;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.beta-link {
    color: rgba(110, 71, 255, 0.9);
    text-decoration: underline;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.beta-link:hover {
    color: rgba(110, 71, 255, 1);
    text-decoration: none;
    text-shadow: 0 0 12px rgba(110, 71, 255, 0.4);
}

.hero-logo-img {
    width: auto;
    height: 70px;
    filter: drop-shadow(0 4px 12px var(--shadow-lg));
}

.hero-tagline {
    margin-top: 0;
    font-size: 19px;
    font-style: italic;
    font-weight: 300;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.hero-input-container {
    width: 100%;
    max-width: 800px;
    padding: 0 24px;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Suggestions Dropdown */
.suggestions-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
    z-index: 100;
    animation: dropdownFadeIn 0.2s ease-out;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dark-theme .suggestions-dropdown {
    background: rgba(44, 44, 46, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.suggestions-dropdown.show {
    display: flex;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease-out;
    gap: 12px;
}

.suggestion-item:hover {
    background-color: var(--bg-card-hover);
}

.suggestion-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--accent-primary);
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.suggestion-item span {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Input Hint Below Search Bar */
.input-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 32px;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    position: relative;
    z-index: 10;
}

@keyframes fadeInHint {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.input-focused .input-hint {
    opacity: 0;
    pointer-events: none;
}

.hint-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(123, 104, 238, 0.4));
}

.hint-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.4;
}

.light-theme .hint-text {
    color: var(--text-primary);
    opacity: 0.6;
}

/* Chat View - Active State */
.chat-view {
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    height: 100%;
    flex: 1;
    overflow: hidden;
    padding: 24px 48px 0 48px;
    opacity: 0;
    align-self: center;
}

body.chat-active .chat-view {
    display: flex;
    animation: fadeIn 0.6s ease-out 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 20px 0;
    margin-bottom: 24px;
}

.message {
    display: flex;
    gap: 12px;
    max-width: 75%;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.assistant-message {
    align-self: flex-start;
}

.message-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background-color: var(--accent-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: background-color 0.3s ease;
}

.message-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--text-primary);
    transition: stroke 0.3s ease;
}

.message-bubble {
    background-color: var(--bg-primary);
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.user-message .message-bubble {
    background-color: var(--accent-secondary);
    border-color: var(--border-hover);
}

.message-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.message-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

/* Markdown Styling within messages */
.message-text strong,
.message-text b {
    font-weight: 600;
    color: var(--text-primary);
}

.message-text em,
.message-text i {
    font-style: italic;
}

.message-text ul,
.message-text ol {
    margin: 8px 0;
    padding-left: 24px;
}

.message-text li {
    margin: 4px 0;
}

.message-text code {
    background-color: var(--bg-card-hover);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

.message-text pre {
    background-color: var(--bg-card);
    padding: 12px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 8px 0;
    transition: background-color 0.3s ease;
}

.message-text pre code {
    background-color: transparent;
    padding: 0;
}

.message-text blockquote {
    border-left: 3px solid var(--accent-primary);
    padding-left: 12px;
    margin: 8px 0;
    color: var(--text-secondary);
    font-style: italic;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.message-text p {
    margin: 8px 0;
}

.message-text p:first-child {
    margin-top: 0;
}

.message-text p:last-child {
    margin-bottom: 0;
}

.message-text a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s ease-out;
}

.message-text a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Generative Loader Animation */
.generative-loader {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px 0;
}

.generative-loader .shape {
    background-color: var(--accent-primary);
    animation: generative-pulse 2s infinite ease-in-out;
    transition: background-color 0.3s ease;
}

/* Shape 1: Small circle */
.generative-loader .shape-1 {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation-delay: 0s;
}

/* Shape 2: Medium square with rounded corners */
.generative-loader .shape-2 {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation-delay: 0.3s;
}

/* Shape 3: Large circle */
.generative-loader .shape-3 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation-delay: 0.6s;
}

/* Shape 4: Small square */
.generative-loader .shape-4 {
    width: 7px;
    height: 7px;
    border-radius: 1px;
    animation-delay: 0.9s;
}

@keyframes generative-pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Remove bubble background for typing indicator */
.typing .message-bubble {
    background-color: transparent;
    border: none;
    padding: 12px 0;
}

.error .message-bubble {
    background-color: var(--error-bg);
    border-color: var(--error-border);
}

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

.center-logo-img {
    width: auto;
    height: 115px;
    filter: drop-shadow(0 4px 12px var(--shadow-lg));
}

.chat-input-container {
    width: 100%;
    padding: 0 0 24px 0;
}

.search-bar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 800px;
    min-height: 72px;
    background: rgba(26, 26, 34, 0.8);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 2px solid rgba(110, 71, 255, 0.2);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(110, 71, 255, 0.1) inset,
        0 4px 12px rgba(110, 71, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .search-bar {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(123, 104, 238, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-bar:hover {
    box-shadow: 
        0 12px 32px rgba(110, 71, 255, 0.25),
        0 0 0 1px rgba(110, 71, 255, 0.2) inset,
        0 6px 20px rgba(110, 71, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(110, 71, 255, 0.3);
}

.search-bar:focus-within {
    max-width: 900px;
    min-height: 80px;
    border-color: rgba(110, 71, 255, 0.5);
    transform: translateY(-3px);
    background: rgba(36, 36, 46, 0.9);
    box-shadow: 
        0 16px 48px rgba(110, 71, 255, 0.4),
        0 0 0 1px rgba(110, 71, 255, 0.3) inset,
        0 0 60px rgba(110, 71, 255, 0.25);
    animation: glowPulseDark 2s ease-in-out infinite;
}

.light-theme .search-bar:focus-within {
    border-color: rgba(123, 104, 238, 0.4);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(123, 104, 238, 0.15), 0 8px 32px rgba(123, 104, 238, 0.2);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(123, 104, 238, 0.2), 0 12px 40px rgba(123, 104, 238, 0.3);
    }
}

@keyframes glowPulseDark {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(139, 123, 247, 0.15), 0 8px 32px rgba(139, 123, 247, 0.2);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(139, 123, 247, 0.2), 0 12px 40px rgba(139, 123, 247, 0.3);
    }
}

.icon {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: color 0.2s ease-out;
}

.icon:hover {
    color: var(--text-primary);
}

.search-input, .search-input-chat {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    min-width: 0;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.light-theme .search-input,
.light-theme .search-input-chat {
    color: var(--text-primary);
}

.search-input::placeholder, .search-input-chat::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    transition: color 0.3s ease;
}

.light-theme .search-input::placeholder,
.light-theme .search-input-chat::placeholder {
    color: var(--text-secondary);
}

.action-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.submit-btn {
    width: 48px;
    height: 44px;
    border-radius: 14px;
    background-color: var(--accent-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, background-color 0.2s ease-out;
    padding: 0;
    opacity: 0.5;
}

.submit-btn.active {
    opacity: 1;
}

.submit-btn:not(:disabled):hover {
    background-color: var(--accent-secondary);
    transform: scale(1.05);
}

.submit-btn:not(:disabled):active {
    transform: scale(0.95);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Enhanced submit button when input is focused */
body.input-focused .submit-btn.active {
    transform: scale(1.05);
    background: linear-gradient(135deg, #8A77F7 0%, #9B7FF5 100%);
    animation: subtlePulse 2s ease-in-out infinite;
}

body.input-focused .submit-btn.active:hover {
    transform: scale(1.1);
}

/* Pulse animation for submit button */
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(123, 104, 238, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(123, 104, 238, 0);
    }
}

.submit-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--bg-primary);
    stroke-width: 2.5;
    transition: stroke 0.3s ease;
}

/* Agent item clickable styling */
.agent-item:not(.disabled) {
    cursor: pointer;
}

/* Alan Info Block Styling */
.alan-info-block {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    max-width: 900px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.alan-block-header {
    text-align: center;
    margin-bottom: 32px;
}

.alan-block-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.alan-subtitle {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.foolcore-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 4px;
}

/* Capabilities Grid (3 columns) */
.alan-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.alan-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease-out, border-color 0.2s ease-out, background-color 0.3s ease;
}

.alan-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.alan-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alan-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--text-primary);
    transition: stroke 0.3s ease;
}

.alan-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.alan-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Feed Section (Terminal) */
.alan-feed-section {
    margin-bottom: 32px;
}

.alan-feed-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    text-align: left;
    transition: color 0.3s ease;
}

.alan-terminal {
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 20px;
    font-family: 'Courier New', 'Menlo', 'Monaco', monospace;
    font-size: 13px;
    line-height: 1.8;
    overflow-x: auto;
    transition: background-color 0.3s ease;
}

.terminal-line {
    color: var(--text-primary);
    margin: 4px 0;
    transition: color 0.3s ease;
}

.terminal-success {
    color: var(--success-color);
    font-weight: 600;
}

/* Principles Grid (2 columns) */
.alan-principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.alan-principle {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.alan-principle-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alan-principle-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--text-primary);
    transition: stroke 0.3s ease;
}

.alan-principle h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
    transition: color 0.3s ease;
}

.alan-principle p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Fade-in animation */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in animation for sections with staggered delays */
@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .search-bar {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .icon {
        width: 18px;
        height: 18px;
    }
    
    .search-input {
        font-size: 14px;
    }
    
    /* Alan responsive adjustments */
    .alan-capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .alan-principles-grid {
        grid-template-columns: 1fr;
    }
    
    .alan-info-block {
        padding: 20px;
    }
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
}

/* Accordion Styles for Numbered Lists */
.accordion-item {
    margin: 12px 0;
    border-radius: 12px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.accordion-item:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.accordion-item summary {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
    list-style: none;
    display: flex;
    align-items: center;
    position: relative;
    transition: background-color 0.2s ease, color 0.3s ease;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::before {
    content: '▶';
    margin-right: 12px;
    font-size: 12px;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.accordion-item[open] summary::before {
    transform: rotate(90deg);
}

.accordion-item summary:hover {
    background-color: var(--bg-card-hover);
}

.accordion-content {
    padding: 0 20px 16px 48px;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
    animation: accordionSlideDown 0.3s ease-out;
    transition: color 0.3s ease;
}

.accordion-content p:first-child {
    margin-top: 4px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content ul,
.accordion-content ol {
    margin: 8px 0;
    padding-left: 20px;
}

.accordion-content li {
    margin: 4px 0;
    color: var(--text-primary);
}

@keyframes accordionSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Use Cases Section - Only visible in initial state */
.use-cases-section {
    width: 100%;
    max-width: 1200px;
    padding: 80px 40px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInSection 0.8s ease-out 0.2s forwards;
    transition: opacity 0.4s ease-out;
}

body.chat-active .use-cases-section {
    display: none;
    opacity: 0;
}

.use-cases-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeIn 0.8s ease-out;
}

.use-cases-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.use-cases-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.use-case-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    animation: fadeIn 1s ease-out;
}

.use-case-block:last-child {
    margin-bottom: 0;
}

.use-case-block.reverse {
    flex-direction: row-reverse;
}

.use-case-video {
    flex: 1;
    min-width: 0;
}

.video-content {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px var(--shadow-md);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
}

.dark-theme .video-content {
    background: rgba(58, 58, 60, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.video-content:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px var(--shadow-lg);
    border-color: var(--border-hover);
}

.use-case-content {
    flex: 1;
    min-width: 0;
}

.use-case-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.use-case-description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: color 0.3s ease;
}

@media (max-width: 968px) {
    .use-cases-section {
        padding: 60px 32px;
    }

    .use-cases-header {
        margin-bottom: 60px;
    }

    .use-cases-title {
        font-size: 36px;
    }

    .use-cases-subtitle {
        font-size: 18px;
    }

    .use-case-block {
        flex-direction: column !important;
        gap: 40px;
        margin-bottom: 80px;
    }

    .use-case-title {
        font-size: 24px;
    }

    .use-case-description {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .use-cases-section {
        padding: 40px 24px;
    }

    .use-cases-header {
        margin-bottom: 40px;
    }

    .use-cases-title {
        font-size: 28px;
    }

    .use-cases-subtitle {
        font-size: 16px;
    }

    .use-case-block {
        margin-bottom: 60px;
        gap: 32px;
    }

    .use-case-title {
        font-size: 22px;
    }

    .use-case-description {
        font-size: 15px;
    }
}

/* CTA Section - Final call to action */
/* Pricing Section */
.pricing-section {
    padding: 120px 48px;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInSection 0.8s ease-out 0.4s forwards;
    transition: opacity 0.3s ease;
}

body.chat-active .pricing-section {
    display: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-announcement {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    opacity: 0.95;
}

.pricing-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-vision {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.85;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card.full-width-card {
    grid-column: 1 / -1;
}

.pricing-card.full-width-card .pricing-card-header {
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.pricing-card.full-width-card .pricing-features {
    flex-direction: row;
    gap: 48px;
}

.pricing-card.full-width-card .features-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 32px;
}

.pricing-card.full-width-card .feature-item {
    flex: 0 0 calc(20% - 26px);
    min-width: 200px;
}

.pricing-card.full-width-card {
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 48px 40px;
}

.pricing-card.full-width-card > * {
    flex: 1;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 16px 48px var(--shadow-lg), 0 0 0 1px var(--border-glow);
    background: var(--bg-card-hover);
}

.pricing-card.popular-card {
    border: 2px solid var(--accent-primary);
    background: var(--bg-card-hover);
    box-shadow: 0 0 40px rgba(110, 71, 255, 0.3), 0 16px 48px var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-card.popular-card:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 0 60px rgba(110, 71, 255, 0.5), 0 20px 60px var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(110, 71, 255, 0.4);
}

.pricing-card-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(110, 71, 255, 0.3);
}

.pricing-icon svg {
    width: 28px;
    height: 28px;
    color: #FFFFFF;
}

.pricing-card-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.pricing-card-desc {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.4;
}

.feature-item .check-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.pricing-value {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(110, 71, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(110, 71, 255, 0.2);
}

.value-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.value-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.pricing-button {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.pricing-button .button-icon {
    width: 18px;
    height: 18px;
}

.primary-button {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(110, 71, 255, 0.4);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(110, 71, 255, 0.6);
}

.secondary-button {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.secondary-button:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px var(--shadow-md);
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.popular-card {
        transform: scale(1);
    }

    .pricing-card.popular-card:hover {
        transform: translateY(-4px);
    }

    .pricing-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 24px;
    }

    .pricing-title {
        font-size: 36px;
    }

    .pricing-announcement {
        font-size: 18px;
    }

    .pricing-subtitle {
        font-size: 14px;
    }

    .pricing-vision {
        font-size: 16px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card-title {
        font-size: 24px;
    }
}

.cta-section {
    padding: 100px 48px 120px;
    text-align: center;
    opacity: 0;
    animation: fadeInSection 0.8s ease-out 0.3s forwards;
    transition: opacity 0.3s ease;
}

body.chat-active .cta-section {
    display: none;
}

.cta-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.cta-button {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 48px;
    background: var(--cta-button-bg);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px var(--shadow-md);
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--shadow-lg);
    background: var(--cta-button-hover);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 968px) {
    .cta-section {
        padding: 80px 32px 100px;
    }

    .cta-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .cta-button {
        font-size: 17px;
        padding: 16px 40px;
    }
}

@media (max-width: 640px) {
    .cta-section {
        padding: 60px 24px 80px;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 32px;
        width: 100%;
        max-width: 320px;
    }
}

/* Powered by FoolFarm Footer */
.powered-by-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.powered-by-footer:hover {
    opacity: 1;
}

.powered-by-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.powered-by-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.powered-by-link:hover {
    transform: translateY(-1px);
}

.powered-by-logo {
    height: 20px;
    width: auto;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.light-theme .powered-by-logo {
    filter: brightness(0.4);
}

.powered-by-link:hover .powered-by-logo {
    filter: brightness(1);
}

.light-theme .powered-by-link:hover .powered-by-logo {
    filter: brightness(0.2);
}

@media (max-width: 640px) {
    .powered-by-footer {
        margin-top: 36px;
    }
    
    .powered-by-text {
        font-size: 12px;
    }
    
    .powered-by-logo {
        height: 18px;
    }
}

/* Copyright Footer */
.copyright-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    opacity: 0.5;
    letter-spacing: 0.3px;
    margin: 0;
}

@media (max-width: 640px) {
    .copyright-footer {
        margin-top: 20px;
        padding-top: 16px;
    }
    
    .copyright-text {
        font-size: 11px;
        text-align: center;
    }
}

/* Empowering Section - Bolt.new Style */
.empowering-section {
    max-width: 1200px;
    margin: 80px auto 60px auto;
    padding: 0 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

body.chat-active .empowering-section {
    display: none;
}

.empowering-header {
    text-align: center;
    margin-bottom: 56px;
}

.empowering-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #F5F5F7;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(135deg, #6e47ff 0%, #fcb36e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.empowering-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

.empowering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.empowering-card {
    background: rgba(26, 26, 34, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(110, 71, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(110, 71, 255, 0.08) inset;
}

.empowering-card:hover {
    transform: translateY(-4px);
    border-color: rgba(110, 71, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(110, 71, 255, 0.2),
        0 0 80px rgba(110, 71, 255, 0.1),
        0 0 0 1px rgba(110, 71, 255, 0.2) inset;
}

.tall-card {
    grid-row: span 2;
}

.card-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #F5F5F7;
    margin-bottom: 16px;
    line-height: 1.3;
}

.card-description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

/* Agents List Showcase */
.agents-list-showcase {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.agent-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(36, 36, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.agent-pill.active-pill {
    background: rgba(110, 71, 255, 0.15);
    border-color: rgba(110, 71, 255, 0.3);
    box-shadow: 0 0 20px rgba(110, 71, 255, 0.2);
}

.agent-pill.coming-soon {
    opacity: 0.5;
    cursor: default;
}

.agent-pill:not(.coming-soon):hover {
    background: rgba(110, 71, 255, 0.1);
    border-color: rgba(110, 71, 255, 0.25);
    transform: translateX(4px);
}

.pill-icon {
    width: 20px;
    height: 20px;
    color: #6e47ff;
    flex-shrink: 0;
}

.agent-pill span {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #F5F5F7;
}

.pill-badge {
    margin-left: auto;
    padding: 4px 10px;
    background: rgba(252, 179, 110, 0.15);
    border: 1px solid rgba(252, 179, 110, 0.3);
    border-radius: 6px;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #fcb36e !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stat Card */
.stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(110, 71, 255, 0.1) 0%, rgba(26, 26, 34, 0.6) 100%);
}

.stat-number {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 96px;
    font-weight: 900;
    background: linear-gradient(135deg, #6e47ff 0%, #fcb36e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 30px rgba(110, 71, 255, 0.5));
}

.stat-label {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.stat-description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}

/* Feature Card */
.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-visual {
    margin-top: 24px;
}

.visual-bar {
    display: flex;
    gap: 4px;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bar-segment {
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.empowering-card:hover .bar-segment {
    filter: brightness(1.2);
}

.visual-label {
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    letter-spacing: 0.5px;
}

/* Light Theme */
.light-theme .empowering-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.light-theme .empowering-title {
    color: #1D1D1F;
}

.light-theme .empowering-subtitle {
    color: #86868B;
}

.light-theme .card-title {
    color: #1D1D1F;
}

.light-theme .card-description {
    color: #6E6E73;
}

.light-theme .agent-pill {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.light-theme .agent-pill.active-pill {
    background: rgba(123, 104, 238, 0.1);
    border-color: rgba(123, 104, 238, 0.3);
}

.light-theme .stat-label {
    color: #1D1D1F;
}

.light-theme .stat-description {
    color: #6E6E73;
}

/* Responsive */
@media (max-width: 968px) {
    .empowering-section {
        margin: 60px auto 40px auto;
        padding: 0 24px;
    }

    .empowering-title {
        font-size: 36px;
    }

    .empowering-subtitle {
        font-size: 16px;
    }

    .empowering-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .tall-card {
        grid-row: span 1;
    }

    .stat-number {
        font-size: 72px;
    }
}

@media (max-width: 640px) {
    .empowering-title {
        font-size: 32px;
    }

    .empowering-subtitle {
        font-size: 15px;
    }

    .empowering-card {
        padding: 24px;
    }

    .stat-number {
        font-size: 64px;
    }

    .card-title {
        font-size: 20px;
    }
}

/* Scroll Indicator - Only visible in initial state */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatUpDown 2s ease-in-out infinite;
    opacity: 1;
    transition: opacity 0.6s ease;
    pointer-events: all;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator:hover .scroll-pill {
    background: var(--bg-card-hover);
}

body.chat-active .scroll-indicator {
    display: none;
}

/* Dim scroll indicator when input is focused */
body.input-focused .scroll-indicator {
    opacity: 0.3;
}

.scroll-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mouse-icon {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
    transition: stroke 0.3s ease;
}

.scroll-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (max-width: 640px) {
    .scroll-indicator {
        bottom: 30px;
    }
    
    .scroll-pill {
        padding: 10px 20px;
        gap: 10px;
    }
    
    .mouse-icon {
        width: 20px;
        height: 20px;
    }
    
    .scroll-text {
        font-size: 12px;
    }
}

/* Showcases Section */
.showcases-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    opacity: 0;
    animation: fadeInSection 0.8s ease-out 0.1s forwards;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

body.chat-active .showcases-section {
    display: none;
    opacity: 0;
}

.showcases-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcases-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.showcases-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.showcases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.showcase-card {
    background: rgba(16, 16, 24, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(110, 71, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(110, 71, 255, 0.05) 0%, rgba(252, 179, 110, 0.03) 100%);
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(110, 71, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(110, 71, 255, 0.4);
    background: rgba(20, 20, 30, 0.9);
}

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

.showcase-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-secondary);
    position: relative;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.showcase-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    background: var(--primary-color);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.showcase-name {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.showcase-description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
}

.showcase-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.users-icon {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
    flex-shrink: 0;
}

.users-count {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

@media (max-width: 1200px) {
    .showcases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .showcases-section {
        padding: 80px 40px;
    }
    
    .showcases-title {
        font-size: 42px;
    }
}

@media (max-width: 968px) {
    .showcases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .showcases-section {
        padding: 60px 32px;
    }
    
    .showcases-title {
        font-size: 36px;
    }
    
    .showcases-subtitle {
        font-size: 16px;
    }
    
    .showcase-image {
        height: 180px;
    }
}

@media (max-width: 640px) {
    .showcases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .showcases-section {
        padding: 40px 24px;
    }
    
    .showcases-header {
        margin-bottom: 40px;
    }
    
    .showcases-title {
        font-size: 32px;
    }
    
    .showcases-subtitle {
        font-size: 15px;
    }
    
    .showcase-image {
        height: 220px;
    }
    
    .showcase-content {
        padding: 16px;
    }
    
    .showcase-name {
        font-size: 18px;
    }
}

/* Hero Title Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-logo-image {
        height: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hint-text {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .hero-logo-image {
        height: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding: 0 16px;
    }
    
    .hint-text {
        font-size: 12px;
        max-width: 280px;
    }
}

/* Quick Actions Section */
.quick-actions-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    gap: 16px;
    padding: 32px 24px;
    margin: 0 auto 40px auto;
    transition: opacity 0.4s ease-out;
    position: relative;
    z-index: 5;
}

body.chat-active .quick-actions-container {
    display: none;
    opacity: 0;
}

.quick-action-card {
    background: rgba(26, 26, 34, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(110, 71, 255, 0.15);
    cursor: pointer;
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 220px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(110, 71, 255, 0.1) inset;
    opacity: 0.85;
    position: relative;
    overflow: hidden;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(110, 71, 255, 0.1) 0%, rgba(252, 179, 110, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.quick-action-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(110, 71, 255, 0.3) 60deg, transparent 120deg);
    animation: rotateGlow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.quick-action-card:hover::before {
    opacity: 1;
}

.quick-action-card:hover::after {
    opacity: 0.5;
}

.light-theme .quick-action-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.quick-action-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 16px 40px rgba(110, 71, 255, 0.35),
        0 0 0 1px rgba(110, 71, 255, 0.3) inset,
        0 0 60px rgba(110, 71, 255, 0.2);
    border-color: rgba(110, 71, 255, 0.5);
    background: rgba(36, 36, 46, 0.8);
    opacity: 1;
}

.quick-action-card:active {
    transform: scale(0.98);
}

/* Dim cards when input is focused */
body.input-focused .quick-action-card {
    opacity: 0.4;
    transform: scale(0.98);
}

body.input-focused .quick-action-card:hover {
    opacity: 0.6;
    transform: translateY(-2px) scale(1.0);
}

.quick-action-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6e47ff 0%, #fcb36e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 
        0 4px 20px rgba(110, 71, 255, 0.4),
        0 0 30px rgba(252, 179, 110, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.quick-action-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(12px);
    opacity: 0.5;
    z-index: -1;
    transition: all 0.4s ease;
}

.quick-action-card:hover .quick-action-icon::after {
    filter: blur(20px);
    opacity: 0.8;
    transform: scale(1.3);
}

.light-theme .quick-action-icon {
    background: linear-gradient(135deg, #7B68EE 0%, #FF8C42 100%);
    box-shadow: 0 4px 12px rgba(123, 104, 238, 0.3);
}

.quick-action-card:hover .quick-action-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 6px 30px rgba(110, 71, 255, 0.6),
        0 0 50px rgba(252, 179, 110, 0.3);
}

.quick-action-icon svg {
    width: 24px;
    height: 24px;
    stroke: #FFFFFF;
    stroke-width: 2;
}

.quick-action-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.quick-action-card:hover .quick-action-title {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(110, 71, 255, 0.5);
}

.quick-action-description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.quick-action-card:hover .quick-action-description {
    color: rgba(255, 255, 255, 0.85);
}

.light-theme .quick-action-title {
    color: var(--text-primary);
}

.light-theme .quick-action-description {
    color: var(--text-secondary);
}

/* Promo Video Section */
.promo-video-section {
    max-width: 1000px;
    margin: 80px auto 60px auto;
    padding: 0 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

body.chat-active .promo-video-section {
    display: none;
}

.promo-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(110, 71, 255, 0.15),
        0 0 100px rgba(252, 179, 110, 0.1);
    border: 1px solid rgba(110, 71, 255, 0.2);
}

.promo-video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(110, 71, 255, 0.3) 0%, rgba(252, 179, 110, 0.3) 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
}

.promo-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .promo-video-section {
        margin: 60px auto 40px auto;
        padding: 0 20px;
    }
    
    .promo-video-container {
        border-radius: 16px;
    }
    
    .promo-video {
        border-radius: 16px;
    }
}

/* Everything You Need Section - Bolt.new Style */
.everything-section {
    max-width: 1200px;
    margin: 100px auto 80px auto;
    padding: 0 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

body.chat-active .everything-section {
    display: none;
}

.everything-header {
    text-align: center;
    margin-bottom: 64px;
}

.everything-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.2px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
}

.everything-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.everything-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 48px;
}

.everything-card {
    background: rgba(20, 20, 28, 0.8);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.everything-card:hover {
    transform: translateY(-6px);
    border-color: rgba(110, 71, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(110, 71, 255, 0.15);
}

.everything-card.tall-feature {
    grid-row: span 2;
}

.card-visual {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.tall-feature .card-visual {
    height: 280px;
}

/* Infinity Loop Visual */
.infinity-loop {
    width: 140px;
    height: 80px;
    position: relative;
}

.infinity-loop svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(110, 71, 255, 0.6));
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(110, 71, 255, 0.6)); }
    50% { filter: drop-shadow(0 0 50px rgba(110, 71, 255, 0.9)); }
}

/* Growth Chart Visual */
.growth-chart {
    width: 160px;
    height: 120px;
    position: relative;
}

.chart-line {
    position: absolute;
    bottom: 20px;
    left: 10px;
    width: 140px;
    height: 80px;
    background: linear-gradient(135deg, transparent 0%, transparent 48%, #6e47ff 48%, #fcb36e 100%);
    clip-path: polygon(0% 100%, 30% 60%, 60% 30%, 100% 0%, 100% 100%);
    filter: blur(2px);
    opacity: 0.8;
}

.chart-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #6e47ff 0%, #fcb36e 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(110, 71, 255, 0.8),
        0 0 40px rgba(252, 179, 110, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 {
    bottom: 80px;
    left: 30px;
    animation-delay: 0s;
}

.dot-2 {
    bottom: 50px;
    left: 80px;
    animation-delay: 0.3s;
}

.dot-3 {
    bottom: 20px;
    right: 20px;
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Security Lock Visual */
.security-lock {
    width: 100px;
    height: 140px;
    position: relative;
    filter: drop-shadow(0 10px 40px rgba(110, 71, 255, 0.4));
}

.lock-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 90px;
    background: linear-gradient(135deg, rgba(110, 71, 255, 0.3) 0%, rgba(26, 26, 34, 0.9) 100%);
    border: 3px solid rgba(110, 71, 255, 0.5);
    border-radius: 12px;
    box-shadow: 
        0 0 40px rgba(110, 71, 255, 0.3),
        inset 0 0 30px rgba(110, 71, 255, 0.2);
}

.lock-shackle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 60px;
    border: 8px solid rgba(110, 71, 255, 0.6);
    border-bottom: none;
    border-radius: 50px 50px 0 0;
    box-shadow: 
        0 0 30px rgba(110, 71, 255, 0.4),
        inset 0 0 20px rgba(110, 71, 255, 0.3);
}

.lock-keyhole {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #6e47ff 0%, #fcb36e 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(110, 71, 255, 0.8),
        0 2px 0 rgba(110, 71, 255, 0.6);
}

.lock-keyhole::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, #6e47ff 0%, #fcb36e 100%);
    box-shadow: 0 0 15px rgba(110, 71, 255, 0.6);
}

/* SEO Badge Visual */
.seo-badge {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(110, 71, 255, 0.2) 0%, rgba(26, 26, 34, 0.9) 100%);
    border: 4px solid rgba(110, 71, 255, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 60px rgba(110, 71, 255, 0.5),
        inset 0 0 40px rgba(110, 71, 255, 0.2);
    position: relative;
}

.seo-badge::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6e47ff, #fcb36e);
    opacity: 0.2;
    filter: blur(20px);
    z-index: -1;
}

.badge-number {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #6e47ff 0%, #fcb36e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-label {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Publish Button Visual */
.publish-button {
    padding: 18px 36px;
    background: linear-gradient(135deg, #6e47ff 0%, #8b5fff 100%);
    border: 2px solid rgba(110, 71, 255, 0.5);
    border-radius: 12px;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 8px 32px rgba(110, 71, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.publish-button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #7d56ff 0%, #9a6aff 100%);
    box-shadow: 
        0 12px 48px rgba(110, 71, 255, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.publish-icon {
    width: 20px;
    height: 20px;
}

.card-feature-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #F5F5F7;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-feature-desc {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.everything-footer {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 500;
}

/* Light Theme */
.light-theme .everything-title {
    color: #1D1D1F;
}

.light-theme .everything-subtitle {
    color: #6E6E73;
}

.light-theme .everything-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.light-theme .card-feature-title {
    color: #1D1D1F;
}

.light-theme .card-feature-desc {
    color: #6E6E73;
}

.light-theme .everything-footer {
    color: #1D1D1F;
}

/* Responsive */
@media (max-width: 968px) {
    .everything-section {
        margin: 80px auto 60px auto;
        padding: 0 24px;
    }

    .everything-title {
        font-size: 40px;
    }

    .everything-subtitle {
        font-size: 16px;
    }

    .everything-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .everything-card.tall-feature {
        grid-row: span 1;
    }

    .card-visual {
        height: 140px;
    }

    .tall-feature .card-visual {
        height: 140px;
    }
}

@media (max-width: 640px) {
    .everything-title {
        font-size: 32px;
    }

    .everything-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .everything-card {
        padding: 24px 20px;
    }

    .card-visual {
        height: 120px;
    }

    .infinity-loop {
        width: 100px;
        height: 60px;
    }

    .security-lock {
        width: 70px;
        height: 100px;
    }

    .seo-badge {
        width: 90px;
        height: 90px;
    }

    .badge-number {
        font-size: 36px;
    }
}

/* Whatever Your Role Section - Bolt.new Style */
.role-section {
    max-width: 1200px;
    margin: 100px auto 80px auto;
    padding: 0 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

body.chat-active .role-section {
    display: none;
}

.role-header {
    text-align: center;
    margin-bottom: 64px;
}

.role-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.2px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
}

.role-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

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

.role-card {
    background: rgba(20, 20, 28, 0.8);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.role-card:hover {
    transform: translateY(-6px);
    border-color: rgba(110, 71, 255, 0.25);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(110, 71, 255, 0.1);
}

.role-card-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #F5F5F7;
    margin-bottom: 12px;
    line-height: 1.3;
}

.role-card-desc {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.role-visual {
    margin-top: auto;
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Launch Mockup Visual */
.launch-mockup {
    width: 100%;
    background: rgba(26, 26, 34, 0.9);
    border: 1px solid rgba(110, 71, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    padding: 12px 16px;
    background: rgba(36, 36, 46, 0.8);
    border-bottom: 1px solid rgba(110, 71, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.mockup-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6e47ff 0%, #fcb36e 100%);
    opacity: 0.6;
}

.mockup-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.mockup-content {
    padding: 24px 16px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(110, 71, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6e47ff 0%, #fcb36e 100%);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(110, 71, 255, 0.6);
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.status-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Ideas List Visual */
.ideas-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.idea-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(26, 26, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.idea-item.done {
    border-color: rgba(110, 71, 255, 0.3);
}

.idea-item.active {
    background: rgba(110, 71, 255, 0.1);
    border-color: rgba(110, 71, 255, 0.4);
    box-shadow: 0 0 20px rgba(110, 71, 255, 0.2);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: #6e47ff;
    flex-shrink: 0;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(110, 71, 255, 0.2);
    border-top-color: #6e47ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.idea-item span {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Analytics Chart Visual */
.analytics-chart {
    width: 100%;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    margin-bottom: 12px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(110, 71, 255, 0.6) 0%, rgba(110, 71, 255, 0.3) 100%);
    border-radius: 6px 6px 0 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6e47ff 0%, #fcb36e 100%);
    border-radius: 6px 6px 0 0;
}

.bar.active-bar {
    background: linear-gradient(180deg, rgba(110, 71, 255, 0.8) 0%, rgba(252, 179, 110, 0.5) 100%);
    box-shadow: 0 0 30px rgba(110, 71, 255, 0.5);
}

.role-card:hover .bar {
    transform: scaleY(1.05);
}

.chart-label {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-align: center;
}

/* Versions List Visual */
.versions-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.version-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(26, 26, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.version-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.version-indicator.live {
    background: linear-gradient(135deg, #6e47ff 0%, #fcb36e 100%);
    box-shadow: 0 0 20px rgba(110, 71, 255, 0.8);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.version-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.version-name {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.version-status {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 12px;
    color: #6e47ff;
    font-weight: 600;
}

.version-time {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* Projects Grid Visual */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.project-card {
    aspect-ratio: 1;
    background: rgba(26, 26, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.project-card.active {
    background: rgba(110, 71, 255, 0.2);
    border-color: rgba(110, 71, 255, 0.4);
    box-shadow: 0 0 20px rgba(110, 71, 255, 0.3);
}

.projects-count {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-align: center;
}

/* Code Editor Visual */
.code-editor {
    width: 100%;
    background: rgba(16, 16, 24, 0.9);
    border: 1px solid rgba(110, 71, 255, 0.2);
    border-radius: 8px;
    padding: 16px;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
}

.code-line {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.code-keyword {
    color: #fcb36e;
    font-weight: 600;
}

.code-function {
    color: #6e47ff;
    font-weight: 600;
}

.code-string {
    color: #66d9ef;
}

/* Light Theme */
.light-theme .role-title {
    color: #1D1D1F;
}

.light-theme .role-subtitle {
    color: #6E6E73;
}

.light-theme .role-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.light-theme .role-card-title {
    color: #1D1D1F;
}

.light-theme .role-card-desc {
    color: #6E6E73;
}

/* Responsive */
@media (max-width: 968px) {
    .role-section {
        margin: 80px auto 60px auto;
        padding: 0 24px;
    }

    .role-title {
        font-size: 40px;
    }

    .role-subtitle {
        font-size: 16px;
    }

    .role-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .role-title {
        font-size: 32px;
    }

    .role-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .role-card {
        padding: 24px 20px;
    }

    .role-visual {
        min-height: 140px;
    }
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    opacity: 0;
    animation: fadeInSection 0.8s ease-out 0.4s forwards;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

body.chat-active .testimonials-section {
    display: none;
    opacity: 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.testimonials-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px var(--shadow-md);
}

.light-theme .testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px var(--shadow-lg), 0 0 0 1px var(--border-glow);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.testimonial-quote {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 16px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 48px;
    color: var(--accent-primary);
    position: absolute;
    top: -20px;
    left: -8px;
    line-height: 1;
    font-style: normal;
    opacity: 0.5;
}

.testimonial-quote::after {
    content: '"';
    font-size: 48px;
    color: var(--accent-primary);
    position: absolute;
    bottom: -32px;
    right: -8px;
    line-height: 1;
    font-style: normal;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #7B68EE 0%, #FF8C42 100%) border-box;
    flex-shrink: 0;
}

.dark-theme .testimonial-avatar {
    background: linear-gradient(#1C1C1E, #1C1C1E) padding-box,
                linear-gradient(135deg, #8B7BF7 0%, #FF9F5A 100%) border-box;
}

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

.testimonial-name {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.testimonial-role {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.3;
}

.testimonial-startup {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-primary);
    line-height: 1.3;
}

/* Responsive Design for Quick Actions */
@media (max-width: 968px) {
    .quick-actions-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        padding: 24px 20px;
        margin: 32px auto;
    }
    
    .quick-action-card {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .quick-actions-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 20px 16px;
        margin: 24px auto;
        gap: 12px;
    }
}

/* Responsive Design for Testimonials */
@media (min-width: 1201px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .testimonials-section {
        padding: 60px 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
    
    .testimonials-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 40px 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonials-subtitle {
        font-size: 15px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
}

/* Homepage CTA Popup Modal */
.homepage-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.homepage-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.homepage-popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.homepage-popup-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 90%;
    padding: 20px;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-close-btn {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 11;
}

.popup-close-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.popup-close-btn:hover svg {
    transform: rotate(90deg);
}

.popup-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.popup-cta-card {
    position: relative;
    padding: 40px 32px;
    border-radius: 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.popup-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.wishlist-card {
    background: rgba(250, 248, 246, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(250, 248, 246, 0.12);
}

.wishlist-card::before {
    background: linear-gradient(135deg, rgba(250, 248, 246, 0.15) 0%, rgba(232, 227, 221, 0.12) 100%);
}

.wishlist-card:hover {
    transform: translateY(-8px);
    border-color: rgba(250, 248, 246, 0.25);
    box-shadow: 0 20px 60px rgba(250, 248, 246, 0.15);
}

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

.investors-card {
    background: rgba(110, 71, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(110, 71, 255, 0.2);
}

.investors-card::before {
    background: linear-gradient(135deg, rgba(110, 71, 255, 0.25) 0%, rgba(125, 86, 255, 0.2) 100%);
}

.investors-card:hover {
    transform: translateY(-8px);
    border-color: rgba(110, 71, 255, 0.4);
    box-shadow: 0 20px 60px rgba(110, 71, 255, 0.3);
}

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

.popup-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.wishlist-card .popup-card-icon {
    background: linear-gradient(135deg, rgba(250, 248, 246, 0.15) 0%, rgba(232, 227, 221, 0.1) 100%);
}

.investors-card .popup-card-icon {
    background: linear-gradient(135deg, rgba(110, 71, 255, 0.3) 0%, rgba(125, 86, 255, 0.2) 100%);
}

.popup-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
    transition: transform 0.4s ease;
}

.popup-cta-card:hover .popup-card-icon {
    transform: scale(1.1);
}

.popup-cta-card:hover .popup-card-icon svg {
    transform: scale(1.15);
}

.popup-card-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.popup-card-description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.popup-card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    transition: all 0.4s ease;
    align-self: flex-start;
}

.wishlist-card .popup-card-arrow {
    background: rgba(250, 248, 246, 0.12);
}

.investors-card .popup-card-arrow {
    background: rgba(110, 71, 255, 0.2);
}

.popup-card-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    transition: transform 0.4s ease;
}

.popup-cta-card:hover .popup-card-arrow {
    transform: translateX(8px);
}

.wishlist-card:hover .popup-card-arrow {
    background: rgba(250, 248, 246, 0.2);
}

.investors-card:hover .popup-card-arrow {
    background: rgba(110, 71, 255, 0.35);
}

.popup-cta-card:hover .popup-card-arrow svg {
    transform: translateX(4px);
}

/* Light Theme Adjustments */
.light-theme .homepage-popup-backdrop {
    background: rgba(250, 248, 246, 0.9);
}

.light-theme .popup-close-btn {
    background: rgba(0, 0, 0, 0.08);
}

.light-theme .popup-close-btn:hover {
    background: rgba(0, 0, 0, 0.15);
}

.light-theme .wishlist-card {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.08);
}

.light-theme .wishlist-card::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 230, 216, 0.6) 100%);
}

.light-theme .wishlist-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.light-theme .investors-card {
    background: rgba(123, 104, 238, 0.15);
    border-color: rgba(123, 104, 238, 0.25);
}

.light-theme .investors-card::before {
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.3) 0%, rgba(138, 119, 247, 0.25) 100%);
}

.light-theme .investors-card:hover {
    border-color: rgba(123, 104, 238, 0.45);
    box-shadow: 0 20px 60px rgba(123, 104, 238, 0.25);
}

.light-theme .wishlist-card .popup-card-icon {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.03) 100%);
}

.light-theme .investors-card .popup-card-icon {
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.25) 0%, rgba(138, 119, 247, 0.2) 100%);
}

.light-theme .wishlist-card .popup-card-arrow {
    background: rgba(0, 0, 0, 0.08);
}

.light-theme .investors-card .popup-card-arrow {
    background: rgba(123, 104, 238, 0.2);
}

.light-theme .wishlist-card:hover .popup-card-arrow {
    background: rgba(0, 0, 0, 0.12);
}

.light-theme .investors-card:hover .popup-card-arrow {
    background: rgba(123, 104, 238, 0.3);
}

/* Responsive Design for Popup */
@media (max-width: 768px) {
    .homepage-popup-content {
        max-width: 95%;
        padding: 16px;
    }
    
    .popup-cards-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .popup-cta-card {
        padding: 32px 24px;
    }
    
    .popup-card-title {
        font-size: 24px;
    }
    
    .popup-card-description {
        font-size: 15px;
    }
    
    .popup-close-btn {
        top: -5px;
        right: 5px;
        width: 36px;
        height: 36px;
    }
    
    .popup-close-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .popup-cta-card {
        padding: 28px 20px;
    }
    
    .popup-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .popup-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .popup-card-title {
        font-size: 22px;
    }
    
    .popup-card-description {
        font-size: 14px;
    }
}
