/* Clean with Edge - Developer Tool Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
    --bg: #fafafa;
    --bg-elevated: #ffffff;
    --text: #0a0a0a;
    --text-muted: #666666;
    --text-subtle: #999999;
    --border: #e5e5e5;
    --border-dark: #d4d4d4;
    --accent: #000000;
    --accent-green: #00ff00;
    --accent-green-dark: #00cc00;
}

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

/* Subtle background texture for developer edge */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><filter id="n"><feTurbulence baseFrequency="0.9" numOctaves="1" type="fractalNoise"/></filter></defs><rect width="100" height="100" filter="url(%23n)" opacity="0.015"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.vhs-noise {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

section {
    padding: 80px 0;
}

/* Hero Section - Make it PUNCH */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

/* Subtle grid overlay behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-family: 'JetBrains Mono', monospace;
}

.hero-label::before {
    content: '// ';
    color: var(--accent-green-dark);
}

.pulse-dot {
    display: none;
}

/* Hero title - BOLD and confident */
.hero-title {
    font-size: clamp(52px, 8vw, 88px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--text);
}

/* Make "60 seconds" pop */
.hero-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-green);
    margin-top: 16px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 400;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.install-requirements {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

/* Install command - THE FOCAL POINT */
.install-command-large {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: var(--accent);
    border: 2px solid var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    margin: 20px 0;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 0 0 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.install-command-large:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.2),
        0 0 0 4px rgba(0, 0, 0, 0.05);
}

.install-command-large code {
    color: var(--accent-green);
    user-select: all;
    font-weight: 500;
}

.copy-btn-large {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-elevated);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.copy-btn-large:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.cta-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

.github-link,
.view-script-link,
.cta-secondary-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}

.github-link::before {
    content: '→ ';
    color: var(--accent-green-dark);
}

.github-link:hover,
.view-script-link:hover,
.cta-secondary-link:hover {
    color: var(--text);
    transform: translateX(2px);
}

.link-separator {
    color: var(--border-dark);
}

/* What You Get Section */
.what-you-get {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.what-you-get .container {
    max-width: fit-content;
}

.what-you-get-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-family: 'JetBrains Mono', monospace;
}

.what-you-get-title::before {
    content: '// ';
    color: var(--accent-green-dark);
}

.what-you-get-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
}

.what-you-get-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 24px 24px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    transition: all 0.2s;
}

.what-you-get-list li:hover {
    padding-left: 8px;
}

.what-you-get-list li svg {
    color: var(--accent-green-dark);
    flex-shrink: 0;
}

.what-you-get-list li strong {
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
}

/* ==========================================================================
   Terminal Demo Section
   ========================================================================== */

.demo {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.section-title {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 64px;
    color: var(--text);
    text-align: center;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.case-card {
    padding: 48px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.case-card-featured {
    border: 2px solid var(--border-dark);
    background: linear-gradient(135deg, var(--bg-elevated) 0%, #f5f5f5 100%);
}

.case-card-featured:hover {
    border-color: var(--accent);
}

.case-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text);
}

.case-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.case-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 16px;
}

.case-prompt {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--text-muted);
    padding: 16px 20px;
    border-left: 3px solid var(--accent-green-dark);
    background: rgba(0, 255, 0, 0.03);
    font-weight: 500;
}

.case-prompt::before {
    content: '$ ';
    color: var(--accent-green-dark);
}

.case-code-preview {
    margin-top: 24px;
}

.code-preview-header {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.code-preview-header::before {
    content: '// ';
    color: var(--accent-green-dark);
}

.code-preview-content {
    background: var(--accent);
    border: 2px solid var(--accent);
    padding: 24px;
    overflow-x: auto;
}

.code-preview-content code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.8;
    color: var(--accent-green);
}

.code-comment {
    color: #888;
}

/* Terminal Demo Section */
.demo {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.terminal-window {
    background: var(--accent);
    border: 2px solid var(--accent);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.control.red {
    background: #ff5f56;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #27c93f;
}

.terminal-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
}

.terminal-body {
    padding: 32px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    min-height: 400px;
    max-height: 480px;
    overflow-y: auto;
    line-height: 1.8;
    color: var(--accent-green);
}

.terminal-input-line {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--accent-green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    outline: none;
    padding: 0;
}

.chat-message {
    margin-bottom: 24px;
    display: block;
}

.user-message {
    color: var(--accent-green);
}

.user-message .message-symbol {
    margin-right: 8px;
}

.prompt {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.prompt-symbol {
    color: var(--accent-green);
    font-weight: 600;
}

.cursor-blink {
    display: inline-block;
    width: 10px;
    height: 16px;
    background: var(--accent-green);
    animation: blink 1s infinite;
    margin-left: 2px;
    vertical-align: text-bottom;
}

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

.terminal-output {
    color: #888;
    line-height: 1.8;
}

.terminal-output div {
    padding: 0;
    margin: 0;
    white-space: pre;
}

.terminal-line-init {
    color: var(--accent-green);
    font-weight: 600;
}

.terminal-line-action {
    color: var(--accent-green);
}

.terminal-line-success {
    color: var(--accent-green);
}

.terminal-url {
    color: var(--accent-green);
    font-weight: 700;
}

.bullet {
    display: inline-block;
    width: 12px;
    color: var(--accent-green);
}

.terminal-stats {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-green);
    opacity: 0;
    white-space: pre;
}

/* Demo Annotations - more emphasis */
.demo-annotation {
    display: grid;
    gap: 0;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
}

.annotation-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 32px;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}

.annotation-item:last-child {
    border-bottom: none;
}

.annotation-item:hover {
    background: rgba(0, 255, 0, 0.02);
}

.annotation-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.annotation-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.annotation-text strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.annotation-text span {
    font-size: 15px;
    color: var(--text-muted);
}

/* ==========================================================================
   Use Cases Section
   ========================================================================== */

.use-cases {
    padding: 120px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.code-folder {
    color: #e6e6e6;
    font-weight: 600;
}

.code-file {
    color: #abb2bf;
}

.code-tree {
    color: #5c6370;
}

/* ==========================================================================
   Benefits - Integrated with Terminal
   ========================================================================== */

.benefits-compact {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-column strong {
    display: block;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.benefit-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-column li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    padding-left: 20px;
    position: relative;
}

.benefit-column li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-green-dark);
    font-weight: 400;
    opacity: 0.8;
}

.benefit-column li.coming-soon,
.benefit-column li:last-child {
    color: var(--text-muted);
    opacity: 0.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .benefits-compact {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }
}

/* ==========================================================================
   How It Works / Features - DRAMATIC stats
   ========================================================================== */

.how-it-works {
    padding: 120px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0;
    margin-top: 64px;
    border: 1px solid var(--border);
}

.feature-item {
    padding: 64px 48px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
    background: var(--bg);
}

.feature-item:hover {
    background: var(--bg-elevated);
    transform: scale(1.02);
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.feature-item:last-child {
    border-right: 1px solid var(--border);
}

.feature-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
}

/* Make these numbers HUGE and bold */
.stat-number {
    font-size: 120px;
    font-weight: 900;
    line-height: 0.9;
    color: var(--text);
    letter-spacing: -0.05em;
}

.stat-unit {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    padding: 160px 0;
    border-top: 1px solid var(--border);
    position: relative;
}

/* Subtle radial gradient behind CTA */
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: clamp(44px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 48px;
    color: var(--text);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'JetBrains Mono', monospace;
}

.cta-primary {
    background: var(--accent);
    color: var(--bg-elevated);
    border: 2px solid var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border-dark);
}

.cta-secondary:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 64px 0;
    background: var(--bg-elevated);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-center {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.github-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg);
    border: 2px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    font-family: 'JetBrains Mono', monospace;
}

.github-badge:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.github-badge svg {
    flex-shrink: 0;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-brand strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}

.footer-brand span {
    color: var(--text-muted);
    font-size: 14px;
}

.built-by-link {
    color: var(--color-text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.built-by-link:hover {
    color: var(--color-text);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    font-family: 'JetBrains Mono', monospace;
}

.footer-links a:hover {
    color: var(--text);
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .demo {
        padding: 32px 0;
    }

    .terminal-body {
        font-size: 12px;
        padding: 24px;
    }

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

    .case-card {
        padding: 32px;
    }

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

    .feature-item {
        border-right: 1px solid var(--border);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

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

    .final-cta {
        padding: 80px 0;
    }

    .annotation-number {
        font-size: 32px;
    }
}

@media (min-width: 768px) {
    .demo-content {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }
}
