* {
    margin: 0;
    padding: 0;
}

body {
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 25%), radial-gradient(circle at 80% 10%, rgba(255, 205, 86, 0.07), transparent 30%), linear-gradient(135deg, rgb(11, 18, 32), rgb(15, 23, 42) 50%, rgb(11, 18, 32));
    color: white;
    max-width: 100%;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 52px 24px;
    font-family: 'Inter', sans-serif;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    text-align: start;
    width: 100%;
}

/* MOBILE FIRST */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.heroInfo {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
}

.heroTag {
    color: #f59e0b;
    font-size: 12px;
    text-align: start;
    text-transform: uppercase;
    font-weight: bold;
}

.heroTitle {
    font-size: 32px;
    color: #f8fafc;
    margin: 12px 0;
    font-weight: 900;
    text-align: start;
}

.heroParagraph {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 18px;
}

.heroButtons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.heroButton {
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 16px;
    font-weight: 900;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    color: #e5e7eb;
    font-family: 'Inter', sans-serif;
}

.firstHeroButton {
    background-image: linear-gradient(180deg, #f59e0b, #ef4444 100%);
    box-shadow: 0 12px 30px rgba(239,68,68,0.35);
}

.secondHeroButton {
    background-color: rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.3);
}

.heroImage {
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 42px 0;
}

.heroImage img {
    width: 50%;
}

.portfolio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sectionInfo {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin-bottom: 24px;
}

.sectionID {
    font-size: 12px;
    color: #f59e0b;
    font-weight: bold;
}

.sectionTitle {
    font-size: 28px;
    margin: 6px 0;
    color: #f8fafc;
}

.sectionDescription {
    font-size: 16px;
    color: #cbd5e1;
}

.portfolioCards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ventureCard {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    margin-bottom: 16px;
    border: 1px solid rgba(226, 232, 240, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.logoAndText {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-bottom: 12px;
}

.ventureName {
    font-size: 18px;
    color: #f8fafc;
    font-weight: 700;
}

.ventureCard img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    box-shadow: 0 8px 12px rgba(245, 158, 11, 0.1);
}

.ventureDescription {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.ventureTags {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
}

.ventureTagText {
    background-color: rgba(245, 158, 11, 0.1);
    padding: 4px 10px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    color: #f59e0b;
    font-size: 12px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.teamCards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.memberCard {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    margin-bottom: 16px;
    border: 1px solid rgba(226, 232, 240, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.memberID {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-bottom: 12px;
}

.memberID img{
    width: 64px;
    border-radius: 8px;
    box-shadow: 0 8px 12px rgba(245, 158, 11, 0.1);
}

.nameNRole {
    display: flex;
    flex-direction: column;
}

.memberName {
    font-size: 16px;
    color: #f8fafc;
    font-weight: 900;
}

.memberRole {
    font-size: 16px;
    color: #a5b4fc;
    font-weight: 500;
}

.memberDesc {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.memberSocials {
    display: flex;
    gap: 12px;
}

.memberSocials img {
    width: 18px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.08);
}

