/* Raiden Landing Page Styles */
/* Modern, dark theme with vibrant gradient accents */

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    --border: #1a1a1a;
    --border-light: #252525;
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Blue gradient (logo color - unchanged) */
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --accent-secondary: #60a5fa;

    /* Vibrant accent colors */
    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --pink: #ec4899;
    --pink-light: #f472b6;
    --cyan: #06b6d4;
    --cyan-light: #22d3ee;
    --green: #10b981;
    --green-light: #34d399;
    --orange: #f59e0b;
    --orange-light: #fbbf24;
    --red: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Gradient Text Variations */
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-vivid {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    color: white;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent), var(--purple), var(--pink));
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    filter: blur(12px);
}

.btn-glow:hover::before {
    opacity: 0.6;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--purple);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-icon svg {
    width: 18px;
    height: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    padding: 10px 20px !important;
    background: rgba(139, 92, 246, 0.1) !important;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--purple-light) !important;
}

.nav-cta:hover {
    background: rgba(139, 92, 246, 0.2) !important;
    border-color: var(--purple) !important;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    top: -100px;
    right: -100px;
    animation-delay: -5s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--accent) 100%);
    bottom: -50px;
    left: -50px;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(0, -50px) rotate(0deg);
    }

    75% {
        transform: translate(-30px, -30px) rotate(-5deg);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 13px;
    color: var(--purple-light);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--border-light), transparent);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-badge-purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    color: var(--purple-light);
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* ==================== APP PREVIEW MOCKUP ==================== */
.app-preview {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.app-mockup {
    position: relative;
    z-index: 1;
}

.mockup-window {
    background: #0a0a0a;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    max-width: 1100px;
    margin: 0 auto;
}

.mockup-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #0d0d0d;
    border-bottom: 1px solid var(--border);
}

.titlebar-dots {
    display: flex;
    gap: 6px;
}

.titlebar-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #f59e0b;
}

.dot-green {
    background: #10b981;
}

.titlebar-center {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-primary);
}

.raiden-logo-small {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.titlebar-center>span:first-of-type {
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.tab-active {
    padding: 6px 12px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 6px;
    color: var(--accent-light);
    font-size: 12px;
}

.tab-inactive {
    padding: 6px 12px;
    color: var(--text-muted);
    font-size: 12px;
}

.titlebar-right {
    display: flex;
    align-items: center;
}

.status-connected {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 100px;
    font-size: 11px;
    color: var(--green);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.mockup-content {
    display: flex;
    height: 500px;
}

/* Sidebar */
.mockup-sidebar {
    width: 280px;
    background: #0d0d0d;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.chat-count {
    padding: 2px 8px;
    background: var(--bg-card);
    border-radius: 10px;
    font-size: 11px;
    color: var(--text-muted);
}

.chat-list {
    flex: 1;
    overflow: hidden;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--border);
}

.chat-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.chat-item-active {
    background: rgba(96, 165, 250, 0.08) !important;
    border-left: 2px solid var(--accent);
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.chat-avatar-blue {
    background: linear-gradient(135deg, var(--accent), var(--cyan));
}

.chat-avatar-pink {
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

.chat-avatar-green {
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.chat-info {
    flex: 1;
    min-width: 0;
}

.chat-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.chat-preview {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-status {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-ai-active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--green);
}

.chat-auto-reply {
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple-light);
}

/* Chat Area */
.mockup-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
}

.chat-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-user-info .chat-avatar {
    width: 40px;
    height: 40px;
}

.chat-username {
    font-size: 12px;
    color: var(--text-muted);
}

.chat-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.toggle-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.toggle-switch {
    width: 36px;
    height: 20px;
    background: var(--border-light);
    border-radius: 10px;
    position: relative;
    transition: background 0.2s;
}

.toggle-on {
    background: linear-gradient(135deg, var(--accent), var(--purple));
}

.toggle-knob {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left 0.2s;
}

.toggle-on .toggle-knob {
    left: 18px;
}

.btn-profile {
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
}

.messages-area {
    flex: 1;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.message-them {
    align-self: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.message-me {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 6px;
}

.message-me .message-time {
    color: rgba(255, 255, 255, 0.7);
}

/* AI Suggestion Card */
.ai-suggestion {
    align-self: flex-end;
    max-width: 75%;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 14px 16px;
}

.suggestion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.suggestion-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--purple-light);
}

.suggestion-regenerate {
    font-size: 11px;
    color: var(--text-muted);
    cursor: pointer;
}

.ai-suggestion>p {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.suggestion-actions {
    display: flex;
    gap: 8px;
}

.btn-send {
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    cursor: pointer;
}

.btn-edit {
    padding: 6px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
}

.input-area {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background: #0d0d0d;
}

.input-area input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
}

.input-area input::placeholder {
    color: var(--text-muted);
}

.send-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}

/* Responsive for mockup */
@media (max-width: 900px) {
    .mockup-content {
        flex-direction: column;
        height: auto;
    }

    .mockup-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .chat-list {
        display: flex;
        overflow-x: auto;
        padding: 8px;
        gap: 8px;
    }

    .chat-item {
        flex-shrink: 0;
        padding: 8px 12px;
        border-radius: 12px;
        border-bottom: none;
    }

    .messages-area {
        height: 300px;
    }
}

/* ==================== END APP PREVIEW ==================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Feature card colors */
.feature-card-purple::before {
    background: linear-gradient(90deg, var(--purple), var(--pink));
}

.feature-card-blue::before {
    background: linear-gradient(90deg, var(--accent), var(--cyan));
}

.feature-card-cyan::before {
    background: linear-gradient(90deg, var(--cyan), var(--green));
}

.feature-card-green::before {
    background: linear-gradient(90deg, var(--green), var(--cyan));
}

.feature-card-orange::before {
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.feature-card-pink::before {
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-icon-purple {
    background: rgba(139, 92, 246, 0.15);
    color: var(--purple-light);
}

.feature-icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-light);
}

.feature-icon-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan-light);
}

.feature-icon-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green-light);
}

.feature-icon-orange {
    background: rgba(245, 158, 11, 0.15);
    color: var(--orange-light);
}

.feature-icon-pink {
    background: rgba(236, 72, 153, 0.15);
    color: var(--pink-light);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* AI Assistant Section */
.assistant {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.assistant::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.assistant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.assistant-content {
    position: relative;
    z-index: 1;
}

.assistant-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.assistant-examples {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.example {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.example:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateX(8px);
}

.example-icon {
    font-size: 18px;
}

.assistant-visual {
    position: relative;
    z-index: 1;
}

/* New Assistant App-style Window */
.assistant-app-window {
    display: flex;
    background: #0a0a0a;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    height: 400px;
}

.assistant-sidebar {
    width: 200px;
    background: #080808;
    border-right: 1px solid var(--border);
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.new-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 12px;
}

.assistant-chat-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.assistant-conv {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: all 0.2s;
}

.assistant-conv:hover {
    background: rgba(255, 255, 255, 0.05);
}

.assistant-conv.active {
    background: rgba(96, 165, 250, 0.15);
    color: var(--text-primary);
    border-left: 2px solid var(--accent);
}

.assistant-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.assistant-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
}

.assistant-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.assistant-messages {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.asst-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.5;
}

.asst-msg-user {
    align-self: flex-end;
    background: var(--accent);
    color: white;
    border-bottom-right-radius: 4px;
}

.asst-msg-ai {
    align-self: flex-start;
    background: #262626;
    color: var(--text-secondary);
    border-bottom-left-radius: 4px;
}

.asst-msg-ai strong {
    color: var(--text-primary);
}

.assistant-input {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
}

.assistant-input input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-primary);
    outline: none;
}

.assistant-input input::placeholder {
    color: var(--text-muted);
}

.asst-send-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}

/* Responsive for assistant mockup */
@media (max-width: 600px) {
    .assistant-app-window {
        flex-direction: column;
        height: auto;
    }

    .assistant-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
    }

    .new-chat-btn {
        flex-shrink: 0;
        width: auto;
        margin-bottom: 0;
    }

    .assistant-chat-list {
        flex-direction: row;
    }

    .assistant-conv {
        flex-shrink: 0;
    }

    .assistant-messages {
        min-height: 200px;
    }
}

.assistant-window {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
}

.window-dots span:nth-child(1) {
    background: #ef4444;
}

.window-dots span:nth-child(2) {
    background: #f59e0b;
}

.window-dots span:nth-child(3) {
    background: #10b981;
}

.window-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.assistant-chat {
    padding: 24px;
}

.chat-message {
    margin-bottom: 16px;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.chat-user {
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    color: white;
    margin-left: 40px;
    border-bottom-right-radius: 4px;
}

.chat-assistant {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    margin-right: 40px;
    border-bottom-left-radius: 4px;
}

/* Raiden-branded assistant window */
.raiden-window {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

.raiden-bar {
    background: rgba(139, 92, 246, 0.08) !important;
    justify-content: space-between;
}

.window-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-logo {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.window-logo span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.raiden-chat {
    background: #0a0a0a;
}

.assistant-badge {
    font-size: 11px;
    color: var(--purple-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.chat-assistant strong {
    color: var(--text-primary);
}

/* How it Works - Detailed */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.workflow {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.workflow::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: 90px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--purple), var(--pink), var(--cyan), var(--green), var(--orange));
}

.workflow-step {
    display: grid;
    grid-template-columns: 50px 1fr 120px;
    gap: 24px;
    align-items: start;
    padding: 20px 0;
    position: relative;
}

.workflow-number {
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.workflow-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.workflow-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.workflow-content strong {
    color: var(--text-primary);
}

.workflow-visual {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-visual svg {
    width: 32px;
    height: 32px;
}

.workflow-visual-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-light);
}

.workflow-visual-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple-light);
}

.workflow-visual-pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink-light);
}

.workflow-visual-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan-light);
}

.workflow-visual-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-light);
}

.workflow-visual-orange {
    background: rgba(245, 158, 11, 0.1);
    color: var(--orange-light);
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--border-light);
}

.pricing-card-featured {
    border-color: var(--purple);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, var(--bg-card) 100%);
}

.pricing-card-featured:hover {
    border-color: var(--purple-light);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 4px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-price .price {
    font-size: 52px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.pricing-price .price-old {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 8px;
}

.pricing-price .period {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

.pricing-features strong {
    color: var(--text-primary);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--purple-light);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .assistant-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workflow {
        padding-left: 20px;
    }

    .workflow::before {
        left: 4px;
    }

    .workflow-step {
        grid-template-columns: 40px 1fr;
    }

    .workflow-visual {
        display: none;
    }

    .workflow-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }
}