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

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray: #808080;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    cursor: crosshair;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--black);
}

/* Animated grid background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--black) 1px, transparent 1px),
        linear-gradient(90deg, var(--black) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.05;
    z-index: 0;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

/* Hero section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 1;
}

.glitch-wrapper {
    position: relative;
}

.hero-title {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: clamp(1.8rem, 6vw, 4rem);
    line-height: 0.95;
    text-align: center;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-top: 2rem;
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.hero-date {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-top: 3rem;
    font-weight: 800;
    border: 4px solid var(--black);
    padding: 1rem 2rem;
    display: inline-block;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
    transition: all 0.3s ease;
}

.hero-date:hover {
    background: var(--black);
    color: var(--white);
    transform: scale(1.05);
}

.hero-date::before,
.hero-date::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 4px solid var(--black);
}

.hero-date::before {
    top: -12px;
    left: -12px;
    border-right: none;
    border-bottom: none;
}

.hero-date::after {
    bottom: -12px;
    right: -12px;
    border-left: none;
    border-top: none;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Info section */
.info-section {
    position: relative;
    padding: 8rem 2rem;
    background: var(--black);
    color: var(--white);
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--white);
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.info-card {
    border: 2px solid var(--white);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    background: var(--black);
}

.info-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 0 var(--white);
}

.info-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.info-card p {
    line-height: 1.6;
    opacity: 0.9;
}

.info-card .number {
    position: absolute;
    top: -30px;
    right: 20px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 4rem;
    opacity: 0.2;
}

/* Stats section */
.stats-section {
    position: relative;
    padding: 8rem 2rem;
    background: var(--white);
    color: var(--black);
    z-index: 1;
}

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

.stat {
    position: relative;
}

.stat-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: var(--black);
}

.stat-label {
    margin-top: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 12rem 2rem;
    background: var(--black);
    color: var(--white);
    text-align: center;
    z-index: 1;
}

.cta-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.5rem, 8vw, 7rem);
    margin-bottom: 3rem;
    line-height: 1.1;
}

.cta-button {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.5rem 4rem;
    background: var(--white);
    color: var(--black);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button:hover::before {
    left: 0;
}

/* Footer */
footer {
    position: relative;
    padding: 4rem 2rem;
    background: var(--white);
    border-top: 2px solid var(--black);
    text-align: center;
    z-index: 1;
}

.footer-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* Floating shapes */
.shape {
    position: fixed;
    border: 2px solid var(--black);
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

.shape.square {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 130px solid var(--black);
    border: none;
    background: none;
    top: 50%;
    right: 5%;
    opacity: 0.05;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 150px;
    height: 130px;
    background: var(--black);
    animation: float 7s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@media (max-width: 768px) {

    .info-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .shape {
        display: none;
    }
}
