:root {
    --bg: #fffb00;
    --ink: #000;
    --soft: #1a1a1a;
    --muted: #666;
    --red: #ff0000;
    --blue: #0000ff;
    --line: #000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Archivo', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.4;
    overflow-x: hidden;
    font-weight: 500;
    letter-spacing: -.005em;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
header {
    border-bottom: 4px solid var(--ink);
    padding: 16px 0;
    background: var(--ink);
    color: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    text-decoration: none;
    color: var(--bg);
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    letter-spacing: -.01em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo::before {
    content: '■';
    color: var(--red);
    font-size: 24px;
}

nav {
    display: flex;
    gap: 4px;
    margin-left: auto;
    margin-right: 16px;
}

nav a {
    padding: 8px 16px;
    color: var(--bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: 2px solid transparent;
    transition: all .15s;
}

nav a:hover {
    background: var(--red);
    border-color: var(--red);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--red);
    color: #fff;
    border: 2px solid var(--bg);
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: all .15s;
}

.cta-btn:hover {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--ink);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    background: transparent;
    border: 2px solid var(--bg);
    cursor: pointer;
    padding: 8px 10px;
    z-index: 301;
    width: 48px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--bg);
    transition: all .25s;
}

.hamburger.active {
    background: var(--red);
    border-color: var(--red);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 250;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 24px 40px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: 'Archivo Black', sans-serif;
    font-size: 40px;
    color: var(--ink);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -.02em;
    padding: 8px 24px;
    border: 4px solid var(--ink);
    background: var(--bg);
    transform: rotate(-1deg);
    transition: all .15s;
    box-shadow: 6px 6px 0 var(--ink);
}

.mobile-menu a:nth-child(2) { transform: rotate(1deg); }
.mobile-menu a:nth-child(3) { transform: rotate(-2deg); }

.mobile-menu a:hover {
    background: var(--red);
    color: #fff;
    transform: rotate(0) translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--ink);
}

.mobile-menu .mobile-cta {
    margin-top: 20px;
    background: var(--red);
    color: #fff;
    border-color: var(--ink);
    font-size: 28px;
    transform: rotate(2deg);
}

.mobile-menu .mobile-cta:hover {
    background: var(--ink);
    color: var(--red);
}

/* ===== TICKER ===== */
.ticker {
    background: var(--red);
    color: var(--bg);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 4px solid var(--ink);
}

.ticker-track {
    display: inline-flex;
    gap: 32px;
    animation: tick 25s linear infinite;
    font-family: 'VT323', monospace;
    font-size: 20px;
    letter-spacing: .05em;
}

@keyframes tick {
    to { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
    padding: 0;
    border-bottom: 4px solid var(--ink);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.hero-left {
    padding: 48px 32px;
    border-right: 4px solid var(--ink);
    position: relative;
}

.hero-stamp {
    position: absolute;
    top: 24px;
    right: 32px;
    background: var(--red);
    color: var(--bg);
    padding: 6px 12px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    transform: rotate(4deg);
    border: 2px solid var(--ink);
}

.hero-meta {
    font-family: 'VT323', monospace;
    font-size: 18px;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-meta span {
    padding: 2px 10px;
    background: var(--ink);
    color: var(--bg);
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(56px, 9vw, 140px);
    line-height: .85;
    letter-spacing: -.04em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title .outline {
    -webkit-text-stroke: 3px var(--ink);
    color: transparent;
}

.hero-title .underline {
    text-decoration: underline;
    text-decoration-thickness: 8px;
    text-decoration-color: var(--red);
    text-underline-offset: 4px;
}

.hero-title .slash {
    color: var(--red);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 32px;
    background: var(--ink);
    color: var(--bg);
    border: 4px solid var(--ink);
    text-decoration: none;
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .03em;
    transition: all .15s;
    box-shadow: 8px 8px 0 var(--red);
}

.hero-cta:hover {
    background: var(--red);
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--ink);
}

.hero-right {
    background: var(--ink);
    color: var(--bg);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '★';
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 200px;
    color: var(--red);
    opacity: .2;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero-year {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(120px, 18vw, 200px);
    line-height: .8;
    letter-spacing: -.05em;
    color: var(--bg);
    position: relative;
}

.hero-year em {
    color: var(--red);
    font-style: normal;
}

.hero-specs {
    font-family: 'VT323', monospace;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-specs div {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed var(--muted);
}

.hero-specs span:last-child {
    color: var(--red);
}

/* ===== STATS ===== */
.stats {
    background: var(--ink);
    color: var(--bg);
    border-bottom: 4px solid var(--ink);
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.stat {
    padding: 64px 32px;
    border-right: 4px solid var(--bg);
    text-align: center;
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(80px, 12vw, 180px);
    line-height: .85;
    letter-spacing: -.05em;
    color: var(--bg);
    margin-bottom: 12px;
}

.stat:nth-child(1) .stat-num { color: var(--bg); }
.stat:nth-child(2) .stat-num { color: var(--red); }
.stat:nth-child(3) .stat-num {
    color: var(--bg);
    -webkit-text-stroke: 2px var(--red);
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: 'VT323', monospace;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* ===== SECTIONS ===== */
section {
    padding: 0;
    border-bottom: 4px solid var(--ink);
}

.section-head {
    display: flex;
    align-items: stretch;
    border-bottom: 4px solid var(--ink);
}

.section-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(60px, 10vw, 140px);
    line-height: 1;
    padding: 40px 48px;
    background: var(--ink);
    color: var(--bg);
    border-right: 4px solid var(--ink);
    letter-spacing: -.04em;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(44px, 7vw, 96px);
    line-height: .9;
    letter-spacing: -.03em;
    text-transform: uppercase;
    padding: 40px 32px;
    flex: 1;
    display: flex;
    align-items: center;
}

.section-title em {
    font-style: normal;
    color: var(--red);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.service-card {
    padding: 48px 32px;
    border-right: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);
    transition: all .2s;
    cursor: default;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(2n) {
    border-right: none;
}

.service-card:hover {
    background: var(--ink);
    color: var(--bg);
}

.service-card:hover .service-num-inner {
    color: var(--red);
}

.service-card:nth-child(5) {
    grid-column: 1 / -1;
    background: var(--red);
    color: #fff;
    border-right: none;
}

.service-card:nth-child(5):hover {
    background: var(--ink);
    color: var(--red);
}

.service-num-inner {
    font-family: 'VT323', monospace;
    font-size: 24px;
    margin-bottom: auto;
}

.service-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: -.02em;
    line-height: 1;
    margin: 48px 0 20px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 480px;
}

.service-arrow {
    position: absolute;
    top: 32px;
    right: 32px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 32px;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.about-left {
    background: var(--ink);
    color: var(--bg);
    padding: 64px 48px;
    border-right: 4px solid var(--ink);
    position: sticky;
    top: 76px;
    align-self: start;
}

.about-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(48px, 5vw, 80px);
    text-transform: uppercase;
    line-height: .85;
    letter-spacing: -.04em;
    margin-bottom: 32px;
}

.about-name em {
    font-style: normal;
    color: var(--red);
}

.about-role {
    font-family: 'VT323', monospace;
    font-size: 18px;
    padding-top: 24px;
    border-top: 2px solid var(--bg);
}

.about-right {
    padding: 64px 48px;
}

.about-right p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.about-lead {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 34px !important;
    line-height: 1.05 !important;
    text-transform: uppercase !important;
    letter-spacing: -.02em;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 32px;
    border-top: 2px solid var(--ink);
    border-left: 2px solid var(--ink);
}

.tech-tag {
    padding: 12px 24px;
    border-right: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .02em;
    background: var(--bg);
    transition: all .15s;
}

.tech-tag:hover {
    background: var(--ink);
    color: var(--red);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 64px 40px;
    border-right: 4px solid var(--ink);
    text-decoration: none;
    color: inherit;
    transition: all .2s;
    position: relative;
    background: var(--bg);
    min-height: 320px;
}

.contact-card:last-child {
    border-right: none;
}

.contact-card:nth-child(2) {
    background: var(--red);
    color: #fff;
}

.contact-card--max {
    background: var(--blue) !important;
    color: #fff !important;
}

.contact-card:hover {
    background: var(--ink);
    color: var(--bg);
}

.contact-card:nth-child(2):hover {
    background: var(--ink);
    color: var(--red);
}

.contact-card--max:hover {
    background: var(--ink) !important;
    color: #fffb00 !important;
}

.contact-label {
    font-family: 'VT323', monospace;
    font-size: 20px;
    margin-bottom: 32px;
}

.contact-value {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(28px, 3.5vw, 52px);
    text-transform: lowercase;
    letter-spacing: -.03em;
    line-height: 1;
    word-break: break-word;
}

.contact-card::after {
    content: '→';
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 40px;
    transition: transform .3s;
}

.contact-card:hover::after {
    transform: translate(8px, -8px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: var(--bg);
    padding: 24px 0;
    border-top: 4px solid var(--ink);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: 'VT323', monospace;
    font-size: 16px;
}

.footer-inner a {
    color: var(--red);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    letter-spacing: .05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-card {
        border-right: none;
        border-bottom: 4px solid var(--ink);
        min-height: 220px;
    }
    .contact-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .services-grid,
    .stats-inner {
        grid-template-columns: 1fr;
    }

    .hero-left,
    .hero-right,
    .service-card,
    .stat {
        border-right: none;
        border-bottom: 4px solid var(--ink);
    }

    .hero-right {
        border-bottom: 4px solid var(--ink);
        min-height: 400px;
    }

    .stat:last-child,
    .hero-right:last-child {
        border-bottom: none;
    }

    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    nav,
    .cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section-head {
        flex-direction: column;
    }

    .section-num {
        border-right: none;
        border-bottom: 4px solid var(--ink);
        min-width: 0;
        padding: 24px;
    }

    .section-title {
        padding: 24px;
    }

    .about-left {
        position: static;
        padding: 40px 24px;
    }

    .about-right {
        padding: 40px 24px;
    }

    .hero-left {
        padding: 32px 20px;
    }

    .hero-right {
        padding: 32px 20px;
    }

    .service-card {
        padding: 32px 20px;
        min-height: 260px;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .contact-card {
        padding: 48px 24px;
    }

    .stat {
        padding: 48px 24px;
    }
}