:root {
    --black: #000000;
    --white: #FFFFFF;
    --yellow: #FFE500;
    --pink: #FF006E;
    --cyan: #00F5FF;
    --green: #39FF14;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

.font-mono {
    font-family: 'Space Mono', monospace;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Backgrounds */
.bg-white { background-color: var(--white); }
.bg-yellow { background-color: var(--yellow); }
.bg-pink { background-color: var(--pink); color: var(--white); }
.bg-cyan { background-color: var(--cyan); }
.bg-green { background-color: var(--green); }

/* Navigation */
.nav {
    background-color: var(--white);
    border-bottom: 4px solid var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-box {
    width: 48px;
    height: 48px;
    background-color: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 24px;
    font-weight: bold;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 150ms ease;
}

.nav-links a:hover:not(.btn-primary) {
    color: var(--pink);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--yellow);
    border: 4px solid var(--black);
    color: var(--black);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 6px 6px 0px 0px var(--black);
    transition: all 150ms ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px 0px var(--black);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--white);
    border: 4px solid var(--black);
    color: var(--black);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 6px 6px 0px 0px var(--black);
    transition: all 150ms ease;
    cursor: pointer;
}

.btn-secondary:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px 0px var(--black);
}

.btn-large {
    padding: 16px 48px;
    font-size: 16px;
}

/* Hero */
.hero {
    padding: 120px 0 100px;
    background-color: var(--white);
    text-align: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Typography */
.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* Cards */
.card {
    background-color: var(--white);
    border: 4px solid var(--black);
    padding: 32px;
    box-shadow: 8px 8px 0px 0px var(--black);
    transition: all 200ms ease;
}

.card:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px 0px var(--black);
}

.card-number {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Space Mono', monospace;
    margin-bottom: 16px;
    color: var(--pink);
}

.card-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.card-text {
    font-size: 16px;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.timeline-marker {
    width: 64px;
    height: 64px;
    border: 4px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    font-family: 'Space Mono', monospace;
    flex-shrink: 0;
    box-shadow: 4px 4px 0px 0px var(--black);
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
}

/* CTA */
.cta-text {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 48px 0;
    border-top: 4px solid var(--black);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer .logo-box {
    background-color: var(--yellow);
    color: var(--black);
}

.footer .logo-text {
    color: var(--white);
}

.footer-text {
    font-size: 14px;
}

.footer-text a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 700;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .nav-links {
        gap: 12px;
    }
    
    .nav-links a:not(.btn-primary) {
        display: none;
    }
}
