/* Base styles imported via HTML link tag */

/* About Page Specific Styles */

/* Hero Section */
.hero {
    background: radial-gradient(ellipse at 50% 65%, #1e0a38 0%, #110a20 40%, #0a0a0a 100%);
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><circle cx="15" cy="15" r="1" fill="%23510a94" opacity="0.6"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 280px;
    background: radial-gradient(ellipse, rgba(81, 10, 148, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    text-align: center;
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a374f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 0;
}

/* Main Content */
.main-content {
    background: #0f0f0f;
}

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

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

/* Company Intro */
.intro-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-bottom: 1px solid var(--border);
}

.intro-text {
    max-width: 760px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.25rem;
}

.intro-text p:last-child {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Why "Censored"? */
.name-section {
    background: #0f0f0f;
}

.name-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.name-content {
    max-width: 760px;
    margin: 0 auto;
}

.name-lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.name-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.name-content p:last-child {
    margin-bottom: 0;
}

.name-content a {
    color: var(--accent-secondary);
    text-decoration: none;
}

.name-content a:hover {
    text-decoration: underline;
}

/* What We Believe */
.beliefs-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 1px solid var(--border);
}

.beliefs-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.beliefs-list {
    max-width: 760px;
    margin: 2rem auto 0;
}

.belief {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}

.belief:last-child {
    border-bottom: 1px solid var(--border);
}

.belief h3 {
    font-size: 1.45rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.85rem;
}

.belief p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #510a94 0%, #7a1db8 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #510a94;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
    }

    .hero-container {
        min-height: 50vh;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .name-section h2,
    .beliefs-section h2 {
        font-size: 2rem;
    }

    .intro-text p {
        font-size: 1.1rem;
    }

    .name-lead {
        font-size: 1.2rem;
    }

    .belief h3 {
        font-size: 1.25rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .belief {
        padding: 2rem 0;
    }
}
