:root {
    --primary: #DC143C;
    --primary-dark: #B01030;
    --secondary: #1a1a1a;
    --text: #e0e0e0;
    --text-muted: #a0a0a0;
    --bg: #0a0a0a;
    --bg-card: #1a1a1a;
    --border: #333;
    --success: #00ff88;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
    padding: 160px 20px 80px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    margin-top: 70px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Stats Bar */
.stats {
    background: var(--bg-card);
    padding: 60px 20px;
    border-bottom: 1px solid var(--border);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* What We Found */
.what-we-found {
    padding: 100px 20px;
    background: var(--bg);
}

.what-we-found h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
}

.attack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.attack-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.attack-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.2);
}

.attack-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.attack-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.attack-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.attack-result {
    background: rgba(220, 20, 60, 0.1);
    border-left: 3px solid var(--primary);
    padding: 12px;
    font-size: 14px;
    color: var(--text);
    border-radius: 4px;
}

.key-insight {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(220, 20, 60, 0.05) 100%);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.key-insight h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.key-insight p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.key-insight strong {
    color: var(--primary);
}

/* Services */
.services {
    padding: 100px 20px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-card li {
    padding: 8px 0;
    color: var(--text);
    position: relative;
    padding-left: 25px;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-deliverable {
    background: rgba(0, 255, 136, 0.1);
    border-left: 3px solid var(--success);
    padding: 12px;
    font-size: 14px;
    color: var(--text);
    border-radius: 4px;
    margin-top: 20px;
}

/* Writeup */
.writeup {
    padding: 100px 20px;
    background: var(--bg);
    text-align: center;
}

.writeup h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.writeup > p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.writeup-preview {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.writeup-stat {
    font-size: 18px;
}

.writeup-stat strong {
    display: block;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 8px;
}

/* Team */
.team {
    padding: 100px 20px;
    background: var(--bg-card);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.team h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.team-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(220, 20, 60, 0.05);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.credential-item:hover {
    border-color: var(--primary);
    background: rgba(220, 20, 60, 0.1);
}

.credential-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.credential-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}

.credential-text strong {
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

/* Contact */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
    text-align: center;
}

.contact h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.contact-card li {
    padding: 8px 0;
    color: var(--text);
    position: relative;
    padding-left: 25px;
}

.contact-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
}

.contact-email {
    margin-top: 60px;
    font-size: 18px;
}

.contact-email a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--bg-card);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.disclaimer {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 0;
    }

    .logo {
        font-size: 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero {
        margin-top: 60px;
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .what-we-found h2,
    .services h2,
    .writeup h2,
    .team h2,
    .contact h2 {
        font-size: 32px;
    }

    .attack-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
}
