:root {
    --bg: #0a0a0a;
    --card-bg: #141414;
    --red: #E31937;
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text-main); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { padding: 20px 0; border-bottom: 1px solid #222; position: sticky; top: 0; background: rgba(10, 10, 10, 0.95); z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 1.4rem; text-decoration: none; color: white; letter-spacing: -1px; }
.logo span { color: var(--red); }
nav a { text-decoration: none; color: white; margin-left: 20px; font-size: 0.9rem; font-weight: 500; }
.nav-btn { border: 1px solid #333; padding: 6px 15px; border-radius: 4px; transition: 0.3s; }
.nav-btn:hover { border-color: var(--red); color: var(--red); }

/* Sections */
section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.2rem; font-weight: 800; }
.section-title span { color: var(--red); }

/* Hero */
.hero { text-align: center; padding: 150px 0; background: radial-gradient(circle at 50% 50%, #1a0505 0%, #0a0a0a 100%); }
.hero h1 { font-size: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--red); }
.hero p { color: var(--text-dim); font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; }
.btn-red { background: var(--red); color: white; padding: 15px 40px; text-decoration: none; font-weight: 800; border-radius: 4px; transition: 0.3s; }
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(227, 25, 55, 0.3); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.about-title h2 { font-size: 2.5rem; font-weight: 900; line-height: 1.1; }
.about-title span { color: var(--red); }
.about-content p { color: var(--text-dim); margin-bottom: 20px; font-size: 1.1rem; }

/* Competencies */
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.comp-item { background: var(--card-bg); border: 1px solid #222; padding: 25px; text-align: center; font-weight: 600; border-radius: 8px; transition: 0.3s; }
.comp-item:hover { border-color: var(--red); background: #1a1a1a; }

/* Ventures */
.ventures { background: #050505; }
.venture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v-card { background: var(--card-bg); padding: 40px; border-radius: 12px; border-top: 4px solid var(--red); }
.v-card h3 { font-size: 1.8rem; margin-bottom: 5px; }
.v-sub { color: var(--red); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 15px; }
.v-card p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 20px; }
.v-card a { color: white; text-decoration: none; font-weight: 700; font-size: 0.9rem; }

/* Footer */
footer { padding: 80px 0 20px; background: #000; border-top: 1px solid #111; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-grid h4 { margin-bottom: 20px; color: var(--red); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.footer-grid p { color: var(--text-dim); font-size: 0.9rem; }
.footer-bottom { text-align: center; font-size: 0.75rem; color: #444; padding-top: 20px; border-top: 1px solid #111; }

/* Responsive */
@media (max-width: 768px) {
    .about-grid, .comp-grid, .venture-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
}