/* ============================================
   STACKHOLD - ABOUT PAGE
   Elite Server Experts Since 2026
============================================ */

:root {
    /* About Page Variables - 2026 Elite Focus */
    --about-bg: rgba(15, 15, 25, 0.85);
    --about-border: rgba(255, 255, 255, 0.1);
    --about-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --expert-purple: #8b5cf6;
    --expert-purple-dark: #7c3aed;
    --expert-purple-glow: rgba(139, 92, 246, 0.15);
    --terminal-green: #10b981;
    --terminal-green-glow: rgba(16, 185, 129, 0.15);
    --elite-gold: #f59e0b;
    --elite-gold-glow: rgba(245, 158, 11, 0.15);
}

/* ========== ABOUT HERO SECTION ========== */
.about-hero {
    padding: 10rem 5% 6rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-container {
    text-align: left;
}

.hero-badge {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge-about {
    background: linear-gradient(135deg, var(--expert-purple), var(--accent-purple));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-expert {
    background: rgba(16, 185, 129, 0.1);
    color: var(--terminal-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, 
        var(--terminal-green) 0%, 
        var(--expert-purple) 50%, 
        var(--accent-purple) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.stat-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--expert-purple);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--terminal-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Illustration - Clean Terminal */
.hero-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-animation {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.terminal-window {
    background: rgba(10, 10, 20, 0.9);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

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

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

.terminal-dot.red {
    background: #ef4444;
}

.terminal-dot.yellow {
    background: #f59e0b;
}

.terminal-dot.green {
    background: #10b981;
}

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    margin-left: 1rem;
}

.terminal-content {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prompt {
    color: var(--terminal-green);
    font-weight: bold;
}

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

.output {
    color: var(--text-secondary);
    margin-left: 1.5rem;
}

.output::before {
    content: '→ ';
    color: var(--terminal-green);
}

.typing {
    margin-top: 1.5rem;
}

.cursor {
    background: var(--terminal-green);
    width: 8px;
    height: 1.2rem;
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
}

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

.server-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}

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

/* ========== WHO WE ARE SECTION ========== */
.who-we-are {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-container {
    background: var(--about-bg);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--about-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--terminal-green), var(--expert-purple));
    border-radius: 2px;
}

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

.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.founder-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--about-shadow);
    border-color: var(--expert-purple);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--terminal-green), var(--expert-purple));
}

.founder-icon {
    font-size: 3rem;
    color: var(--terminal-green);
    margin-bottom: 1.5rem;
    height: 80px;
    width: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.founder-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    background: linear-gradient(135deg, var(--expert-purple), var(--accent-purple));
    color: white;
}

.founder-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.founder-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.founder-list {
    list-style: none;
    margin-top: 2rem;
}

.founder-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.founder-list li i {
    color: var(--terminal-green);
    font-size: 0.9rem;
}

.mission-statement {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.mission-quote {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-quote i.fa-quote-left {
    font-size: 3rem;
    color: var(--terminal-green);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.mission-quote h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-quote p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.quote-author {
    color: var(--terminal-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

/* ========== DIFFERENTIATORS SECTION ========== */
.differentiators {
    padding: 6rem 5%;
    background: rgba(10, 10, 20, 0.5);
    border-radius: var(--radius-lg);
    margin: 6rem 5%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.differentiators::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(139, 92, 246, 0.1) 0%, 
        transparent 50%
    );
    z-index: -1;
}

.diff-container {
    max-width: 1200px;
    margin: 0 auto;
}

.diff-header {
    text-align: center;
    margin-bottom: 4rem;
}

.diff-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.diff-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.diff-card {
    background: var(--about-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--about-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
}

.diff-card:hover {
    transform: translateY(-10px);
    border-color: var(--terminal-green);
    box-shadow: var(--about-shadow);
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--terminal-green), var(--expert-purple));
}

.diff-icon {
    font-size: 2.5rem;
    color: var(--terminal-green);
    margin-bottom: 1.5rem;
    height: 70px;
    width: 70px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diff-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.diff-badge {
    background: linear-gradient(135deg, var(--elite-gold), #d97706);
    color: white;
}

.diff-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.diff-card-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.diff-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.feature-tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--terminal-green);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ========== SERVICE MODEL SECTION ========== */
.service-model {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-container {
    background: var(--about-bg);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--about-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-explanation {
    margin-top: 3rem;
}

.service-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.visual-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--expert-purple);
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.visual-arrow {
    font-size: 1.5rem;
    color: var(--terminal-green);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50% { transform: translateX(10px); opacity: 1; }
}

.visual-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    max-width: 150px;
}

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

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--terminal-green);
}

.detail-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== TEAM PHILOSOPHY ========== */
.team-philosophy {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: var(--radius-lg);
    margin: 6rem 5%;
    border: 1px solid rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--elite-gold), var(--terminal-green));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.philosophy-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.philosophy-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.step {
    background: var(--about-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--about-border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--elite-gold);
    box-shadow: var(--about-shadow);
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--elite-gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.philosophy-quote {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-quote i {
    color: var(--elite-gold);
    font-size: 2rem;
    flex-shrink: 0;
}

.philosophy-quote p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
    font-style: italic;
    font-size: 1.1rem;
}

/* ========== FINAL CTA ========== */
.about-cta {
    padding: 6rem 5%;
    text-align: center;
    background: rgba(20, 20, 30, 0.7);
    border-radius: var(--radius-lg);
    margin: 6rem 5%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, 
        rgba(16, 185, 129, 0.1) 0%, 
        transparent 50%
    );
    z-index: -1;
}

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

.about-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.cta-subtitle {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 1.3rem 4rem;
    background: linear-gradient(135deg, var(--terminal-green), #059669);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
}

.btn-cta-secondary {
    padding: 1.3rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--expert-purple);
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.feature i {
    color: var(--terminal-green);
    font-size: 1.2rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero-container {
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 2rem auto 0;
    }
    
    .service-visual {
        flex-direction: column;
    }
    
    .visual-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .philosophy-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 5% 4rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .section-title,
    .diff-title,
    .service-title,
    .philosophy-content h2,
    .about-cta h2 {
        font-size: 2.2rem;
    }
    
    .founder-grid,
    .diff-grid,
    .philosophy-steps,
    .service-details {
        grid-template-columns: 1fr;
    }
    
    .differentiators,
    .team-philosophy,
    .about-cta {
        margin: 4rem 1rem;
        padding: 4rem 1.5rem;
    }
    
    .section-container,
    .diff-container,
    .service-container {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .philosophy-quote {
        flex-direction: column;
        text-align: center;
    }
    
    .philosophy-quote p {
        text-align: center;
    }
    
    .terminal-window {
        transform: scale(0.9);
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .badge-about,
    .badge-expert {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .terminal-window {
        transform: scale(0.8);
        margin-left: -20px;
    }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

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

/* Founder card animations */
.founder-card {
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
}

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

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

/* Diff card animations */
.diff-card {
    animation: fadeInScale 0.6s ease forwards;
    opacity: 0;
}

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

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

/* Discord footer social links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link.discord {
    background: var(--discord-blue);
}

.social-link.email {
    background: var(--accent-purple);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}