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

:root {
    /* Modern Dark Theme */
    --bg-primary: #0b0b1b;
    --bg-secondary: #000000;
    --bg-card: #1f1f23;
    --surface: #000000;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Primary Brand Colors - Matches hero gradient */
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-light: rgba(59, 130, 246, 0.1);
    --accent-dark: #1d4ed8;

    /* Secondary Brand Colors */
    --purple: #8b5cf6;
    --purple-hover: #7c3aed;
    --purple-light: rgba(139, 92, 246, 0.1);

    /* Semantic Colors */
    --success: #10b981;
    --success-light: rgba(16, 185, 129, 0.1);
    --warning: #f59e0b;
    --warning-light: rgba(245, 158, 11, 0.1);
    --error: #ef4444;
    --error-light: rgba(239, 68, 68, 0.1);

    /* UI Colors */
    --border: #3f3f46;
    --border-light: #52525b;
    --terminal-bg: #1c1c1e;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    --gradient-surface: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

[data-theme="light"] {
    /* Modern Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-card: #ffffff;
    --surface: #f4f4f5;
    --text-primary: #18181b;
    --text-secondary: #52525b;
    --text-muted: #71717a;

    /* Primary Brand Colors */
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-light: rgba(37, 99, 235, 0.1);
    --accent-dark: #1e40af;

    /* Secondary Brand Colors */
    --purple: #7c3aed;
    --purple-hover: #6d28d9;
    --purple-light: rgba(124, 58, 237, 0.1);

    /* Semantic Colors */
    --success: #059669;
    --success-light: rgba(5, 150, 105, 0.1);
    --warning: #d97706;
    --warning-light: rgba(217, 119, 6, 0.1);
    --error: #dc2626;
    --error-light: rgba(220, 38, 38, 0.1);

    /* UI Colors */
    --border: #e4e4e7;
    --border-light: #d4d4d8;
    --terminal-bg: #f8f8f8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    --gradient-surface: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

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

[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.8);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: var(--accent-light);
}

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

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Background Animation */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg,
        rgba(59, 130, 246, 0.1),
        rgba(139, 92, 246, 0.1),
        rgba(59, 130, 246, 0.05),
        rgba(139, 92, 246, 0.05)
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

/* Particles Animation */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s linear infinite;
}

.particle:nth-child(odd) {
    background: rgba(139, 92, 246, 0.8);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Text Animations */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.title-highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    animation: underlineExpand 1s ease-out 1.5s forwards;
}

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

@keyframes underlineExpand {
    to {
        width: 100%;
    }
}

.hero-animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-animate:nth-child(3) { animation-delay: 0.4s; }
.hero-animate:nth-child(4) { animation-delay: 0.6s; }
.hero-animate:nth-child(5) { animation-delay: 0.8s; }

.hero .tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Terminal Demo */
.terminal {
    background: var(--terminal-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    max-width: 700px;
    margin: 3rem auto;
    text-align: left;
    font-family: 'SF Mono', 'Monaco', 'Cascadia Code', 'Courier New', monospace;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(139, 92, 246, 0.1) 100%
    );
    border-radius: 12px;
    pointer-events: none;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s;
}

.terminal-dot:nth-child(1) {
    background: #ff5f56;
    box-shadow: 0 0 10px rgba(255, 95, 86, 0.5);
}

.terminal-dot:nth-child(2) {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
}

.terminal-dot:nth-child(3) {
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}

.terminal-title {
    margin-left: auto;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.terminal-body {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Terminal Line Animations */
.terminal-line {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.typing-line {
    opacity: 0;
}

.terminal-output {
    opacity: 0;
    color: #10b981;
    padding-left: 1rem;
}

.terminal-prompt {
    color: #10b981;
    margin-right: 0.5rem;
    font-weight: bold;
}

.terminal-command {
    color: var(--accent);
    font-weight: 500;
}

/* Typing Cursor */
.cursor {
    color: var(--accent);
    animation: blink 1s infinite;
    margin-left: 2px;
}

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

/* Terminal Animations */
@keyframes terminalFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terminal-show-line {
    animation: terminalFadeIn 0.3s ease-out forwards;
}

#line-2 {
    display: none;
}

.terminal-command {
    color: var(--accent);
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--purple-hover) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4), 0 5px 15px rgba(139, 92, 246, 0.2);
}

.btn-primary:hover::before {
    opacity: 1;
}

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

.btn-secondary:hover {
    background: var(--accent-light);
    border-color: var(--accent);
}

.github-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    margin-top: 1rem;
}

/* Section */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.lifecycle-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.lifecycle-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lifecycle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Comparison Section */
.comparison {
    background: var(--surface);
    position: relative;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-surface);
    opacity: 0.5;
    pointer-events: none;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.comparison-card.negative {
    border-color: #ef4444;
}

.comparison-card.positive {
    border-color: var(--success);
}

.comparison-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.comparison-list {
    list-style: none;
    margin-top: 1rem;
}

.comparison-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.comparison-list li:before {
    content: "×";
    color: #ef4444;
    font-weight: bold;
    font-size: 1.25rem;
}

.positive .comparison-list li:before {
    content: "✓";
    color: var(--success);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-surface);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15), 0 5px 15px rgba(139, 92, 246, 0.1);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Use Cases Grid */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.usecase-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.usecase-card:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.usecase-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.usecase-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Getting Started Section */
.getting-started {
    background: var(--surface);
    position: relative;
}

.getting-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-surface);
    opacity: 0.3;
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.step-card-half {
    grid-column: span 1;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

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

.step-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.step-card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.code-block {
    background: var(--terminal-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
    text-align: left;
    position: relative;
}

.copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
}

.copy-btn:hover {
    background: var(--accent-hover);
}

/* Footer */
footer {
    background: var(--bg-secondary);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}

/* Legacy color mappings for backward compatibility */
:root {
    --card-bg: var(--bg-card);
    --primary: var(--accent);
    --primary-dark: var(--accent-hover);
}

.section-padding {
    padding: 4rem 0;
}

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

.text-center-mb-1 {
    text-align: center;
    margin-bottom: 1rem;
}

.text-center-mb-3 {
    text-align: center;
    margin-bottom: 3rem;
}

.subtitle-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.grid-auto-fit-300 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.grid-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 8px;
}

.problem-card.negative {
    border-left: 3px solid #ef4444;
}

.problem-card.positive {
    border-left: 3px solid #10b981;
}

.problem-title.negative {
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.problem-title.positive {
    color: #10b981;
    margin-bottom: 0.5rem;
}

.problem-list {
    list-style: none;
    padding: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.gradient-box {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gradient-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-surface);
    opacity: 0.3;
    pointer-events: none;
}

.gradient-text {
    font-size: 1.2rem;
    margin: 0;
    color: white;
}

.gradient-text-large {
    font-size: 1.3rem;
    margin: 0;
    color: white;
    line-height: 1.6;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-subtitle-800 {
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.section-subtitle-600 {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section-subtitle-mb-3 {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-subtitle-mb-3-600 {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.secondary-text {
    color: var(--text-secondary);
}

.secondary-text-small {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.secondary-text-italic {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-0 {
    margin: 0;
}

.mb-1-small {
    margin-bottom: 1rem;
}

.comparison-info-box {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 8px;
}

.comparison-info-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.before-after-card {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
}

.before-after-card.negative {
    border: 2px solid #ef4444;
}

.before-after-card.positive {
    border: 2px solid #10b981;
}

.before-after-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-weight: bold;
    color: white;
}

.before-after-badge.negative {
    background: #ef4444;
}

.before-after-badge.positive {
    background: #10b981;
}

.before-after-list {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.before-after-quote {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: 6px;
}

.before-after-quote.negative {
    border-left: 3px solid #ef4444;
}

.before-after-quote.positive {
    border-left: 3px solid #10b981;
}

.quote-text {
    font-style: italic;
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.time-badge {
    display: inline-block;
    background: var(--bg-secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: left;
}

.getting-started-summary {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--surface);
    border-radius: 12px;
}

.getting-started-time {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.getting-started-note {
    color: var(--text-secondary);
    margin: 0;
}

.community-stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.community-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.community-label {
    color: var(--text-secondary);
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(100% * 15); /* 15 testimonials */
}

.testimonial-slide {
    width: calc(100% / 15);
    flex-shrink: 0;
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonial-card {
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--purple-hover) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.carousel-btn:hover::before {
    opacity: 1;
}

.carousel-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-btn:disabled::before {
    display: none;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.testimonial-name {
    font-weight: bold;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.discord-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-question {
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.inline-code {
    background: var(--surface);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

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

    .hero .tagline {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .terminal {
        padding: 1rem;
    }

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

    .step-card-full,
    .step-card-half {
        grid-column: 1;
    }

    /* Carousel responsive */
    .carousel-controls {
        gap: 1rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }

    .testimonial-slide {
        padding: 0 0.5rem;
    }
}
