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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: #0a0a0a;
    color: #e5e5e5;
    min-height: 100vh;
    line-height: 1.7;
}

.seo-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Pride Bar */
.pride-bar {
    height: 4px;
    background: linear-gradient(90deg, #E40303, #FF8C00, #FFED00, #008026, #24408E, #732982);
}

/* Archive Banner */
.archive-banner {
    background: #151515;
    border-bottom: 1px solid #222;
    padding: 12px 0;
    font-size: 0.88rem;
}

.archive-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.archive-banner-inner span {
    color: #b8b8b8;
}

.archive-banner-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    padding: 4px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #333;
    font-size: 0.82rem;
    transition: all 0.2s;
}

.archive-banner-link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #555;
}

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Hero */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    background: #fff;
    color: #0a0a0a;
}

.btn-primary:hover {
    background: #e5e5e5;
}

.btn-secondary {
    background: transparent;
    color: #c7c7c7;
    border: 1px solid #555;
}

.btn-secondary:hover {
    border-color: #555;
    color: #fff;
}

/* Section */
.section {
    padding: 80px 0;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.project-card {
    background: #151515;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #222;
    transition: border-color 0.2s;
}

.project-card:hover {
    border-color: #444;
}

.project-emoji {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.project-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.project-status.live {
    background: rgba(100, 200, 120, 0.15);
    color: #6c9;
}

.project-status.soon {
    background: rgba(255, 255, 255, 0.08);
    color: #c1c1c1;
}

.project-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-desc {
    color: #b8b8b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-link:hover {
    text-decoration: underline;
}

/* About */
.about-section {
    background: #111;
    border-radius: 20px;
    padding: 48px;
    margin-top: 24px;
}

.about-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-text {
    color: #b8b8b8;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.value-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-item p {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 48px 0;
    border-top: 1px solid #1a1a1a;
    margin-top: 80px;
}

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

.footer-logo {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #c2c2c2;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    width: 100%;
    text-align: center;
    color: #a8a8a8;
    font-size: 0.8rem;
    margin-top: 32px;
}

/* Responsive */
@media (max-width: 640px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .about-section {
        padding: 32px 24px;
    }

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