/* Claude CLI - Main Stylesheet */

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

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --claude-orange: #D97757;
    --claude-orange-light: #E89B7E;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --border-gray: #27272a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--bg-dark);
}

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.grid-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(217, 119, 87, 0.05) 0%, 
        transparent 50%);
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gray);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.3rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(217, 119, 87, 0.5));
}

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

.logo span:last-child {
    background: linear-gradient(135deg, var(--claude-orange), var(--claude-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

/* Hero */
.hero {
    text-align: center;
    padding: 6rem 2rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.new-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.badge {
    background: var(--primary);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.badge-text {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--claude-orange);
    animation: glow 3s ease-in-out infinite;
    background: linear-gradient(45deg, var(--claude-orange), var(--claude-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(217, 119, 87, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(217, 119, 87, 0.6);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-gray);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.free-tier {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Built For Section */
.built-for-section {
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
}

.built-for-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 87, 0.05), transparent);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.innovation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: 25px;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    animation: fadeInDown 1s ease-out 0.3s both;
}

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

.innovation-icon {
    color: var(--claude-orange);
    animation: spin 3s linear infinite;
}

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

.built-for-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInScale 1s ease-out 0.5s both;
}

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

.highlight-coral {
    color: var(--claude-orange);
    position: relative;
}

.highlight-coral::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--claude-orange), transparent);
    animation: underlineExpand 2s ease-in-out infinite;
}

@keyframes underlineExpand {
    0%, 100% {
        transform: scaleX(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.built-for-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Install Container */
.install-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    animation: slideInFromBottom 1s ease-out 0.8s both;
}

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

/* FIXED: Platform Selector - Dropdown stays open */
.platform-selector {
    position: relative;
}

.platform-btn {
    background: white;
    color: #1f2937;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    min-width: 200px;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
}

.platform-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.dropdown-icon {
    font-size: 0.8rem;
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.platform-selector.open .dropdown-icon {
    transform: rotate(0deg);
}

/* FIXED: Dropdown stays visible when hovering over dropdown itself */
.platform-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    min-width: 220px;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.platform-selector.open .platform-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.platform-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: var(--text-white);
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid var(--border-gray);
    cursor: pointer;
}

.platform-option:last-child {
    border-bottom: none;
}

.platform-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.external-icon {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Install Command Box */
.install-command-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
}

.command-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-gray);
}

.command-tab {
    padding: 0.35rem 0.85rem;
    background: transparent;
    color: var(--text-gray);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.command-tab.active {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
}

.command-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
}

.install-code {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-white);
    flex: 1;
    text-align: left;
}

.command-keyword {
    color: var(--claude-orange);
    font-weight: 600;
}

.copy-command-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    color: var(--text-gray);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.2rem;
}

.copy-command-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.copy-command-btn.copied {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #10b981;
}

.documentation-link {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 4rem;
}

.documentation-link a {
    color: var(--text-white);
    text-decoration: underline;
    transition: color 0.2s;
}

.documentation-link a:hover {
    color: var(--primary);
}

/* FIXED: Added proper gap between install and demo */
.demo-video-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 8rem; /* INCREASED GAP - More space to prevent overlapping! */
    align-items: start;
}

/* Demo Terminal */
.demo-terminal {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.demo-terminal:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.terminal-header {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: transform 0.2s;
    cursor: pointer;
}

.terminal-btn:hover {
    transform: scale(1.2);
}

.terminal-btn.red { background: #ff5f56; }
.terminal-btn.yellow { background: #ffbd2e; }
.terminal-btn.green { background: #27c93f; }

.terminal-title {
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Monaco', monospace;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.prompt {
    color: #10b981;
    font-weight: bold;
}

.command {
    color: #60a5fa;
    font-weight: 600;
}

.arg {
    color: #fbbf24;
}

.terminal-output {
    margin-top: 1rem;
}

.output-line {
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.output-line.thinking {
    color: #9ca3af;
    animation: thinkingPulse 2s infinite;
}

@keyframes thinkingPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.output-line.success {
    color: #10b981;
}

.output-line.info {
    margin-top: 1rem;
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
}

.info-title {
    color: #60a5fa;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.info-content {
    color: #d1d5db;
    line-height: 1.8;
}

/* Video Player */
.video-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--border-gray);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.video-player:hover {
    border-color: var(--claude-orange);
    box-shadow: 0 30px 60px rgba(217, 119, 87, 0.3);
    transform: scale(1.02);
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-caption {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* ASCII Art Section */
.ascii-section {
    padding: 5rem 2rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.ascii-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217, 119, 87, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.ascii-terminal {
    max-width: 1100px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(217, 119, 87, 0.2);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.ascii-terminal:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.8);
}

.ascii-header {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ascii-buttons {
    display: flex;
    gap: 0.5rem;
}

.ascii-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.ascii-btn:hover {
    transform: scale(1.2);
    filter: brightness(1.3);
}

.ascii-btn.red {
    background: #ff5f56;
    box-shadow: 0 0 10px rgba(255, 95, 86, 0.5);
}

.ascii-btn.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
}

.ascii-btn.green {
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}

.ascii-title {
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Monaco', monospace;
}

.ascii-body {
    padding: 2.5rem;
    font-family: 'Monaco', 'Courier New', monospace;
}

.ascii-welcome {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.highlight-text {
    color: var(--claude-orange);
    font-weight: 700;
}

.ascii-art {
    font-size: 0.7rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0;
    margin: 2rem 0;
    background: linear-gradient(135deg, var(--claude-orange) 0%, var(--claude-orange-light) 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: asciiGlow 3s ease-in-out infinite;
    white-space: pre;
    overflow-x: auto;
}

@keyframes asciiGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(217, 119, 87, 0.4));
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 40px rgba(217, 119, 87, 0.8));
    }
}

.ascii-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(217, 119, 87, 0.1);
    border: 1px solid rgba(217, 119, 87, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(217, 119, 87, 0.2);
    border-color: var(--claude-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217, 119, 87, 0.3);
}

.stat-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.stat-item:nth-child(2) .stat-icon { animation-delay: 0.2s; }
.stat-item:nth-child(3) .stat-icon { animation-delay: 0.4s; }

.stat-text {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.ascii-command {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border-left: 3px solid var(--claude-orange);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.command-prompt {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.command-text {
    color: var(--text-gray);
    font-size: 1rem;
}

.cursor-blink {
    color: var(--claude-orange);
    animation: blink 1s step-end infinite;
    font-size: 1rem;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Sections */
section {
    padding: 5rem 2rem;
    border-bottom: 1px solid var(--border-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--claude-orange);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(217, 119, 87, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 0.6s ease-out both;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--claude-orange) 0%, var(--claude-orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(217, 119, 87, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(217, 119, 87, 0.5);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Steps */
.steps-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
    animation: slideInFromLeft 0.6s ease-out both;
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--claude-orange) 0%, var(--claude-orange-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(217, 119, 87, 0.4);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(217, 119, 87, 0.6);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Key Features */
.key-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.key-feature-card {
    padding: 2rem;
    border-left: 3px solid var(--claude-orange);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    animation: slideInFromRight 0.6s ease-out both;
    transition: all 0.3s ease;
}

.key-feature-card:nth-child(1) { animation-delay: 0.1s; }
.key-feature-card:nth-child(2) { animation-delay: 0.2s; }
.key-feature-card:nth-child(3) { animation-delay: 0.3s; }
.key-feature-card:nth-child(4) { animation-delay: 0.4s; }
.key-feature-card:nth-child(5) { animation-delay: 0.5s; }
.key-feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.key-feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-width: 5px;
    transform: translateX(5px);
    box-shadow: -5px 0 20px rgba(217, 119, 87, 0.3);
}

.key-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.key-feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-gray);
    animation: fadeInUp 0.6s ease-out both;
    transition: all 0.3s ease;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--claude-orange);
    transform: translateX(5px);
}

.faq-question {
    display: flex;
    gap: 1rem;
}

.faq-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--claude-orange), var(--claude-orange-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-number {
    transform: rotate(360deg);
}

.faq-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.faq-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(14, 165, 233, 0.05);
    border: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-gray);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--text-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .demo-video-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .built-for-title {
        font-size: 2.5rem;
    }

    .built-for-subtitle {
        font-size: 1rem;
    }

    .install-container {
        flex-direction: column;
        gap: 1rem;
    }

    .platform-btn {
        width: 100%;
    }

    .demo-video-section {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }

    .ascii-art {
        font-size: 0.4rem;
        overflow-x: scroll;
    }

    .ascii-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .ascii-body {
        padding: 1.5rem;
    }

    .ascii-command {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .nav-links {
        display: none;
    }

    .step {
        flex-direction: column;
    }

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