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

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ccff00; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #d4ff33; }
* { scrollbar-width: thin; scrollbar-color: #ccff00 transparent; }

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ccff00;
}

.logo img { width: 32px; height: 32px; }
.logo-text { font-size: 20px; font-weight: 700; color: #fff; }

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link:hover { color: #ccff00; }

.content {
    flex: 1;
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.updated, .intro {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin-bottom: 32px;
}

.intro {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 10px;
    color: #ccff00;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 6px;
    color: rgba(255,255,255,0.8);
}

p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.content a {
    color: #ccff00;
    text-decoration: none;
}

.content a:visited {
    color: #ccff00;
}

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

/* Founder */
.founder-section {
    margin-top: 48px;
}

.founder-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    margin-top: 16px;
}

.founder-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.founder-photo {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 10px;
}

.founder-left h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.founder-role {
    font-size: 13px;
    color: #ccff00;
    font-weight: 600;
    margin-bottom: 8px;
}

.founder-bio {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
}

.founder-fun {
    font-size: 16px;
    font-weight: 700;
    color: #ccff00;
    margin-top: 8px;
    letter-spacing: 1px;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.founder-linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #fff;
}

/* Footer styles are in footer.css */

@media (max-width: 700px) {
    nav { padding: 16px 20px; }
    .content { padding: 40px 20px 60px; }
    h1 { font-size: 28px; }
    .founder-card { flex-direction: column; align-items: center; text-align: center; }
    .founder-left { width: 100%; }
    .founder-photo { width: 120px; height: 120px; }
}
