* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    background: #0e1511;
    color: #c1cdc3;
    font-family: "Google Sans", "Roboto", "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    min-height: 100%;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 3rem;
}
.avatar {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    object-fit: cover;
    flex: 0 0 auto;
}
.header-text {
    display: flex;
    flex-direction: column;
}
.name {
    font-size: 20px;
    font-weight: 500;
    color: #dcf0de;
    margin-bottom: 6px;
}
.tagline {
    color: #90a893;
    margin-bottom: 0;
    font-size: 13px;
}

.section {
    margin-bottom: 2.6rem;
}
.section-label {
    font-size: 12px;
    font-weight: 500;
    color: #9dd9a3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bio {
    color: #c1cdc3;
    background: #1a211c;
    border-radius: 20px;
    padding: 18px 20px;
}

.project {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 12px;
    padding: 16px 20px;
    background: #1a211c;
    border-radius: 20px;
    margin-bottom: 10px;
    transition: background 0.2s ease;
}
.project:hover {
    background: #212a23;
}
.project-name {
    color: #dcf0de;
    font-weight: 500;
    margin-bottom: 2px;
}
.project-desc {
    color: #90a893;
}
.project-url a {
    color: #9dd9a3;
    text-decoration: none;
    white-space: nowrap;
    background: #2c4530;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}
.project-url a:hover {
    background: #37543b;
}

.stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
}
.stack span {
    background: #1a211c;
    color: #9dd9a3;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12px;
}

.row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 8px;
    padding: 12px 20px;
    background: #1a211c;
    border-radius: 16px;
    margin-bottom: 6px;
}
.key {
    color: #6b8570;
}
.value {
    color: #c1cdc3;
}
.value a {
    color: #9dd9a3;
    text-decoration: none;
}
.value a:hover {
    color: #c3ecc7;
}
