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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.manifesto-link, .back-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    margin-bottom: 40px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s;
}

.manifesto-link:hover, .back-link:hover {
    border-bottom: 1px solid #0066cc;
}

.back-link {
    margin-bottom: 30px;
}

.members {
    margin-bottom: 50px;
}

.member {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.member::before {
    content: "•";
    color: #999;
    margin-right: 8px;
}

.title {
    color: #666;
    margin-right: 10px;
}

.about {
    margin-left: 12px;
    margin-top: 4px;
    font-size: 0.9rem;
    color: #666;
}

.label {
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proptech { background: #28a745; color: white; }
.cre { background: #007bff; color: white; }
.vc { background: #fd7e14; color: white; }
.media { background: #6f42c1; color: white; }

.join-form, .connect-form {
    border-top: 1px solid #eee;
    padding-top: 40px;
    margin-bottom: 40px;
}

.connect-form {
    border-top: none;
    padding-top: 30px;
}

.join-form h3, .connect-form h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 15px;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    box-sizing: border-box;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 40px;
    line-height: 1.2;
    background-color: #fff;
    color: #333;
    padding-right: 30px;
}

select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: none;
}

button {
    background: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

button:hover {
    background: #555;
}

.manifesto-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.manifesto-content p {
    margin-bottom: 1.5rem;
}

.manifesto-content em {
    font-style: italic;
    color: #666;
}

.signature {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.95rem;
}

/* Skeleton loader styles for members placeholder */
.members-skeleton {
    margin-top: 30px;
}
.members-skeleton-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.members-skeleton-header strong {
    font-size: 1.05rem;
    color: #666;
    font-weight: 600;
}
.members-skeleton-cta a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s;
}
.members-skeleton-cta a:hover {
    border-bottom: 1px solid #0066cc;
}
.skeleton-card {
    background: #fafbfc;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 16px 18px 12px 18px;
    margin-bottom: 14px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    min-width: 0;
}
.skeleton {
    background: #e3e6ea;
    border-radius: 4px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.skeleton-name {
    width: 40%;
    height: 18px;
    margin-bottom: 8px;
}
.skeleton-title {
    width: 30%;
    height: 14px;
    margin-bottom: 8px;
}
.skeleton-label {
    width: 18%;
    height: 13px;
    margin-bottom: 10px;
    border-radius: 8px;
}
.skeleton-about {
    width: 90%;
    height: 13px;
    margin-bottom: 0;
}
/* Shimmer animation */
.shimmer::before {
    content: '';
    position: absolute;
    top: 0; left: -60%;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    animation: shimmer 1.2s infinite;
}
@keyframes shimmer {
    100% { left: 100%; }
}

/* Progress text styling */
.progress-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

/* Member skeleton styles */
.member-skeleton {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.skeleton-photo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e3e6ea;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.skeleton-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.skeleton-line1 {
    width: 60%;
    height: 16px;
    background: #e3e6ea;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.skeleton-line2 {
    width: 45%;
    height: 14px;
    background: #e3e6ea;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}


@media (prefers-color-scheme: dark) {
    body {
        background: #0d1117;
        color: #e6edf3;
    }
    
    .intro {
        color: #8d96a0;
    }
    
    .title {
        color: #8d96a0;
    }
    
    .about {
        color: #8d96a0;
    }
    
    .member::before {
        color: #656d76;
    }
    
    .manifesto-link, .back-link {
        color: #58a6ff;
    }
    
    .manifesto-link:hover, .back-link:hover {
        border-bottom-color: #58a6ff;
    }
    
    input, select, textarea {
        background: #21262d;
        border-color: #30363d;
        color: #e6edf3;
    }
    
    input:focus, select:focus, textarea:focus {
        border-color: #58a6ff;
    }
    
    button {
        background: #2186eb;
    }
    
    button:hover {
        background: #0066cc;
    }
    
    .join-form, .connect-form {
        border-top-color: #21262d;
    }
    
    .manifesto-content em {
        color: #8d96a0;
    }
    
    .signature {
        border-top-color: #21262d;
        color: #8d96a0;
    }
    
    .members-skeleton-header strong {
        color: #8d96a0;
    }
    .skeleton-card {
        background: #161b22;
        border-color: #21262d;
    }
    .skeleton {
        background: #23272e;
    }
    .shimmer::before {
        background: linear-gradient(90deg, rgba(34,38,46,0) 0%, rgba(255,255,255,0.08) 50%, rgba(34,38,46,0) 100%);
    }
    
    .progress-text {
        color: #8d96a0;
    }
    
    .skeleton-photo,
    .skeleton-line1,
    .skeleton-line2 {
        background: #30363d;
    }
    
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    body {
        padding: 30px 15px;
    }
    .roles-row {
        flex-direction: column;
        gap: 0;
    }
    .roles-row .role-col {
        width: 100%;
        margin-bottom: 0;
        flex: 0 0 auto;
    }
    .roles-row .role-col:first-child {
        margin-bottom: 12px;
    }
    
}

.site-footer {
    text-align: center;
    font-size: 0.95rem;
    color: #888;
    margin-top: 60px;
    margin-bottom: 10px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}
.site-footer a {
    color: #888;
    text-decoration: underline;
    transition: color 0.2s;
}
.site-footer a:hover {
    color: #0066cc;
}

.join-disclaimer {
    text-align: left;
    font-size: 0.93rem;
    color: #888;
    margin-top: 10px;
    margin-bottom: 0;
}

@media (prefers-color-scheme: dark) {
    .site-footer {
        color: #666;
        border-top-color: #21262d;
    }
    .site-footer a {
        color: #666;
    }
    .site-footer a:hover {
        color: #58a6ff;
    }
    .join-disclaimer {
        color: #666;
    }
}

.about-sections {
    padding-top: 0px;
    padding-bottom: 40px;
}

.about-sections h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: 600;
}

.about-sections p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.log-list {
    padding-left: 0;
    margin-left: 1.2em;
    list-style-position: inside;
    margin-bottom: 0;
}

.join-link-inline {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    margin-left: 12px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s;
    vertical-align: middle;
}
.join-link-inline:hover {
    border-bottom: 1px solid #0066cc;
}

.who-invited-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.5em;
}
.who-invited-row h3 {
    margin-bottom: 0;
}
.who-invited-row .members-skeleton-cta {
    margin-left: 0;
}
.who-invited-row .members-skeleton-cta a {
    font-size: unset;
}

.roles-row {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.role-col {
    flex: 1 1 180px;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
@media (max-width: 600px) {
    .roles-row {
        flex-direction: column;
        gap: 0;
    }
    .role-col {
        margin-bottom: 12px;
    }
}