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

body {
    font-family: 'Manrope', sans-serif;
    background-color: #000000;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #ffffff;
    min-height: 100vh;
}

header {
    padding: 60px 40px 40px;
    position: relative;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-left {
    display: flex;
    flex-direction: column;
}

.header-right {
    padding-top: 10px;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
}

.header-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8e44ad 0%, #e74c3c 30%, #ff4757 55%, #ff7f50 75%, #ff9500 100%);
    margin-top: 12px;
    opacity: 0;
    animation: slideInLeft 0.8s ease 0.3s forwards;
}

.header-contact {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.header-contact:hover {
    background: linear-gradient(90deg, #8e44ad 0%, #e74c3c 25%, #ff4757 50%, #ff7f50 75%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero {
    margin-bottom: 100px;
    position: relative;
}

.hero-main h2 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-main h2:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-emphasis {
    font-weight: 700 !important;
    background: linear-gradient(135deg, #8e44ad 0%, #e74c3c 25%, #ff4757 45%, #ff7f50 65%, #ff9500 85%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s !important;
}

.hero-main h2:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-accent-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, #8e44ad 0%, #e74c3c 25%, #ff4757 45%, #ff7f50 65%, #ff9500 80%, transparent 100%);
    margin-top: 30px;
    opacity: 0;
    animation: slideInLeft 0.8s ease 0.8s forwards;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.section-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-right: 20px;
    color: #ffffff;
}

.section-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.backing-line {
    background: linear-gradient(90deg, transparent 0%, #8e44ad 20%, #e74c3c 35%, #ff4757 50%, #ff7f50 65%, #ff9500 80%, transparent 100%);
}

.company-card {
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.built .company-card:nth-child(2) {
    animation-delay: 1.2s;
}

.built .company-card:nth-child(3) {
    animation-delay: 1.4s;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #8e44ad 20%, #e74c3c 35%, #ff4757 50%, #ff7f50 65%, #ff9500 80%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    border-color: rgba(142,68,173,0.4);
    background: rgba(255,255,255,0.04);
}

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

.company-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.company-card h4 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-card h4 a:hover {
    background: linear-gradient(90deg, #8e44ad 0%, #e74c3c 25%, #ff4757 50%, #ff7f50 75%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-desc {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 16px;
}

.company-status {
    font-size: 0.9rem;
    color: #999999;
    font-weight: 500;
}

.beta-cta {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 8px;
}

.beta-contact-link {
    color: #ff7f50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.beta-contact-link:hover {
    color: #ff9500;
    text-decoration: underline;
}

.focus-areas {
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.thesis {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.focus-list {
    font-size: 1rem;
    color: #999999;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 16px;
}

.focus-note {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
}

.focus-contact-link {
    color: #ff7f50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.focus-contact-link:hover {
    color: #ff9500;
    text-decoration: underline;
}

.footer {
    background-color: var(--primary-color, #000000);
    color: var(--text-secondary, #999999);
    text-align: center;
    padding: 40px 0;
    margin-top: 100px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-email {
    margin-bottom: 16px;
}

.footer-email a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-email a:hover {
    color: #ff7f50;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #666666;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-main h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 40px 20px 30px;
    }
    
    header h1 {
        font-size: 2.2rem;
    }
    
    main {
        padding: 0 20px;
    }
    
    .hero-main h2 {
        font-size: 2.5rem;
    }
    
    .content-grid {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-line {
        width: 100%;
        margin-top: 10px;
    }
    
    .company-card {
        padding: 20px;
        margin-bottom: 30px;
    }
}