/* Performance Optimization Styles */
.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-p {
    margin: 0 auto 2.5rem;
}

.cta-margin {
    margin-top: 3rem;
}

.mockup-container {
    margin-top: 8rem;
    max-width: 1000px;
}

.mockup-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 40px;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 100px 200px rgba(0, 0, 0, 0.6);
}

.mockup-header {
    padding: 1rem 1.5rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 0.5rem;
}

.mockup-terminal {
    flex: 1;
    padding: 2rem;
    font-family: 'Inter', monospace;
    font-size: 0.8rem;
    color: #4ade80;
    line-height: 1.6;
}

.pulse-section {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.pulse-scroll {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    width: max-content;
    animation: scrollLeft 60s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.tech-baseline {
    padding: 8rem 0;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.tech-item-label {
    font-family: monospace;
    color: var(--accent);
    font-size: 0.7rem;
    display: block;
    margin-bottom: 1rem;
}

.tech-item-title {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tech-item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.workflow-section {
    padding: 15rem 0;
    position: relative;
    overflow: hidden;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social-links a:hover {
    color: var(--accent);
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 1.5rem 0;
}

.price-tag span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.feature-list {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

.pricing-header {
    text-align: center;
    margin-bottom: 8rem;
}

.container-pricing {
    padding-top: 15rem;
    padding-bottom: 10rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Auth Pages */
.auth-container {
    max-width: 450px;
    margin: 10rem auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.auth-tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.auth-tab {
    padding-bottom: 1rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.auth-tab.active {
    color: white;
}

.auth-tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.auth-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    transition: 0.3s;
}

.auth-input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 1px var(--accent);
}

.btn-auth {
    width: 100%;
    margin-top: 1rem;
}

.oauth-group {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-oauth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    padding: 0.7rem;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Documentation Pages */
.doc-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.code-block {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #4ade80;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.process-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.flow-step {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
}

.flow-arrow {
    color: var(--accent);
    font-size: 1.5rem;
}

.tool-card {
    background: rgba(0, 0, 0, 0.4);
    border-left: 3px solid var(--accent);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
}

.architecture-layer {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 15px;
}

.concept-box {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
}

/* Support Pages */
.support-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 4rem auto 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--accent);
}

.btn-copy {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-copy:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}