:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-blue: #38bdf8;
    --accent-green: #34d399;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top center, #1e293b 0%, #000000 80%);
    padding: 20px;
}

.glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.main-container {
    width: 100%;
    max-width: 700px;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

header .logo { font-weight: 800; letter-spacing: 2px; margin-bottom: 1.5rem; opacity: 0.8; }
header h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 1rem; }
.gradient-text { background: linear-gradient(135deg, #fff 30%, #94a3b8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.intro { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 3rem; }

.ventures-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }

.venture-card {
    display: flex; flex-direction: column; text-align: left;
    padding: 1.5rem; border-radius: 16px; text-decoration: none; color: white;
    transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
}
.venture-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.1); }

.venture-card.software:hover { border-color: rgba(56, 189, 248, 0.3); box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.2); }
.venture-card.hardware:hover { border-color: rgba(52, 211, 153, 0.3); box-shadow: 0 10px 30px -10px rgba(52, 211, 153, 0.2); }

.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.venture-name { font-weight: 700; font-size: 1.2rem; }
.dot.blue { color: var(--accent-blue); } .dot.green { color: var(--accent-green); }

.badge { font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 99px; text-transform: uppercase; }
.badge.blue { background: rgba(56, 189, 248, 0.1); color: var(--accent-blue); }
.badge.green { background: rgba(52, 211, 153, 0.1); color: var(--accent-green); }

.venture-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: auto; padding-bottom: 1.5rem;}

.launch-info { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; font-size: 0.8rem; display: flex; flex-direction: column; gap: 0.3rem;}
.launch-info .label { color: #64748b; font-weight: 500; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 1px;}
.launch-info .date { font-weight: 700; color: #e2e8f0; }

footer { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 1.5rem; font-size: 0.8rem; color: #64748b; display: flex; justify-content: space-between; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) { .main-container { padding: 2rem; } header h1 { font-size: 2rem; } .ventures-grid { grid-template-columns: 1fr; } }