/* lunchbox.dev — Graffiti developer portal */
/* Colors: #0D0D0D, #1A1A1A, #333333, #E0E0E0, #00FF41, #FF00FF, #FFE500, #FF6B00 */
/* Fonts: Bungee, Inter, Space Grotesk */

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1A1A1A;
    color: #E0E0E0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Spray texture */
.spray-defs {
    position: absolute;
}

.spray-overlay {
    position: fixed;
    inset: 0;
    filter: url(#spray-noise);
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
}

/* Spray line intro */
.spray-line {
    position: fixed;
    top: 50%;
    left: 0;
    height: 4px;
    width: 0;
    background: #00FF41;
    z-index: 100;
    pointer-events: none;
    transition: width 0.4s ease, opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.spray-line.active {
    width: 100%;
}

.spray-line.fade {
    opacity: 0;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-section.visible {
    opacity: 1;
    transform: scale(1);
}

.hero-title {
    font-family: 'Bungee', cursive;
    font-weight: 400;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    text-transform: uppercase;
    -webkit-text-stroke: 2px #0D0D0D;
    background: linear-gradient(135deg, #00FF41, #00FFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    line-height: 1;
}

.hero-dot {
    background: linear-gradient(135deg, #FF00FF, #FF6B00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #333333;
    text-transform: uppercase;
    margin-top: 16px;
}

/* Diagonal Sections */
.diagonal-section {
    position: relative;
    z-index: 5;
    padding: 80px 40px;
    margin: -20px 0;
}

.section-green {
    background-color: rgba(0, 255, 65, 0.08);
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
}

.section-magenta {
    background-color: rgba(255, 0, 255, 0.06);
    clip-path: polygon(0 0%, 100% 8%, 100% 100%, 0% 92%);
}

.section-yellow {
    background-color: rgba(255, 229, 0, 0.06);
    clip-path: polygon(0 6%, 100% 0%, 100% 94%, 0% 100%);
}

.section-orange {
    background-color: rgba(255, 107, 0, 0.06);
    clip-path: polygon(0 0%, 100% 5%, 100% 100%, 0% 95%);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Section Typography */
.section-title {
    font-family: 'Bungee', cursive;
    font-weight: 400;
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-transform: uppercase;
    color: #00FF41;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

.section-yellow .section-title {
    color: #FFE500;
}

.section-body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.85rem, 1vw, 1rem);
    line-height: 1.8;
    color: #E0E0E0;
}

/* Code Block */
.code-block {
    background-color: rgba(13, 13, 13, 0.8);
    border-left: 3px solid #FF00FF;
    padding: 24px;
    font-family: 'Courier New', monospace;
}

.code-ln {
    display: block;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #00FF41;
}

.code-ln:first-child,
.code-ln:last-child {
    color: #FF00FF;
}

/* Crew Grid */
.crew-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.crew-tag {
    border: 2px solid #FFE500;
    padding: 16px;
    text-align: center;
    background-color: rgba(13, 13, 13, 0.6);
    transform: rotate(-1deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.crew-tag:nth-child(2n) {
    transform: rotate(1deg);
}

.crew-tag:hover {
    transform: rotate(0deg) scale(1.03);
    border-color: #00FF41;
}

.crew-name {
    font-family: 'Bungee', cursive;
    font-size: 1.2rem;
    color: #FFE500;
    display: block;
}

.crew-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: #333333;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

/* Graffiti Quote */
.graffiti-quote {
    font-family: 'Bungee', cursive;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #FF6B00;
    text-align: center;
    border: none;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

/* Drip decoration */
.drip-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.drip {
    position: absolute;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #00FF41, transparent);
    border-radius: 0 0 2px 2px;
}

.drip-orange {
    background: linear-gradient(to bottom, #FF6B00, transparent);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px;
    position: relative;
    z-index: 5;
}

.footer-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: #333333;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .diagonal-section {
        padding: 60px 24px;
    }

    .crew-grid {
        grid-template-columns: 1fr;
    }
}
