:root {
    --bg-primary: #111111;
    --text-primary: #F0F0F0;
    --text-secondary: #BABABA;
    --accent: #CC0B0D;
    --accent-hover: #E31216;
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Logo */

.logo-name .logo-title,
.logo-www {
    font-size: 26px;
    font-family: Megrim;
}

.logo-name {
    position: relative;
    width: 12vw;
    height: 30px;
}

.logo-name .logo-title {
    position: absolute;
    top: 0;
    left: 0;
}

.logo-www {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wB,
.logo-w0,
.logo-wA {
    position: absolute;
    margin-bottom: -25px;
}

.logo-wB {
    transform: rotate(120deg);
    transform-origin: center -1px;
}

.logo-wA {
    transform: rotate(-120deg);
    transform-origin: center -1px;
}

/* Main Content */

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.font-heading {
    font-family: 'Montserrat', sans-serif;
}

.font-footer {
    font-family: 'Lato', sans-serif;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.grid-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.gradient-radial {
    background: radial-gradient(ellipse at center, rgba(204, 11, 13, 0.08) 0%, transparent 70%);
}

.btn-primary,
.btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(204, 11, 13, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.18);
}

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

.audit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px;
    backdrop-filter: blur(10px);
}

.audit-card p {
    color: var(--text-secondary);
}

.link-subtle {
    color: var(--text-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.link-subtle:hover {
    color: var(--accent);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}