* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "JetBrains Mono", "Fira Code", "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
}
body {
    color: #ffffff;
    padding: 32px 20px 80px;
    overflow-x: hidden;
    overflow-y: auto;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: #2b2b2b;
    z-index: -2;
    pointer-events: none;
}
.page {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(50, 52, 54, 0.55) 0%, rgba(30, 30, 30, 0.75) 100%);
    border: 1px solid rgba(47, 49, 51, 0.7);
    border-radius: 18px;
    padding: 24px 24px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.page {
    max-width: 980px;
    margin: 0 auto;
}
.page::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(104, 151, 187, 0.6), transparent);
    opacity: 0.6;
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 80px 0 48px;
}
.hero h1 {
    font-size: 3.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    animation: fadeIn 1.5s ease-in-out;
}
.hero p {
    font-size: 1.1rem;
    margin-top: 12px;
    animation: fadeIn 2s ease-in-out;
}
.hero p:first-of-type {
    color: var(--type);
}
.hero .tagline {
    color: var(--muted);
    margin-top: 16px;
    max-width: 720px;
    line-height: 1.6;
}
.hero .cta {
    margin-top: 22px;
}

.cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.cta a:hover {
    transform: translateY(-1px);
    border-color: var(--accent);
}

.section {
    margin-top: 28px;
    padding: 18px 20px;
}
.section-title {
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(104, 151, 187, 0.6), transparent);
}
.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag {
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(104, 151, 187, 0.14);
    border: 1px solid rgba(104, 151, 187, 0.4);
    font-size: 0.85rem;
}
.timeline {
    display: grid;
    gap: 16px;
}
.panel {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.panel:hover {
    transform: translateY(-2px);
    border-color: rgba(104, 151, 187, 0.5);
}
.role {
    display: grid;
    gap: 6px;
}
.role .title {
    font-size: 1rem;
    color: var(--type);
}
.role .meta {
    color: var(--muted);
    font-size: 0.85rem;
}
.role .desc {
    line-height: 1.6;
    color: var(--text);
}
.muted {
    color: var(--muted);
}
@media (max-width: 720px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero {
        padding-top: 60px;
    }
    .page::before {
        display: none;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
