```css
:root {
    --background: #050b14;
    --background-top: #081426;

    --surface: rgba(11, 28, 49, 0.55);
    --surface-hover: rgba(18, 43, 72, 0.7);

    --border: rgba(151, 184, 220, 0.14);
    --border-hover: rgba(96, 165, 250, 0.35);

    --text: #edf5ff;
    --muted: #91a4bb;
    --muted-dark: #657991;

    --blue: #4b91ed;
    --blue-light: #76b1ff;

    --max-width: 760px;
}


/* RESET */

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


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    background:
        radial-gradient(
            ellipse at top,
            #0a1c32 0%,
            #050b14 50%,
            #03070d 100%
        );

    background-attachment: fixed;

    color: var(--text);

    font-family: "Inter", sans-serif;

    font-size: 14px;

    line-height: 1.8;

    overflow-x: hidden;
}


body::before {
    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(59, 130, 246, 0.09),
            transparent 28%
        ),

        radial-gradient(
            circle at 85% 65%,
            rgba(30, 96, 170, 0.07),
            transparent 30%
        );

    z-index: -1;
}


a {
    color: inherit;

    text-decoration: none;
}


/* MAIN WIDTH */

.site {
    width: min(
        var(--max-width),
        calc(100% - 42px)
    );

    margin: 0 auto;

    padding-top: 70px;
}


/* INTRO */

.intro {
    text-align: center;

    padding: 20px 0 65px;
}


.profile-image {
    width: 104px;
    height: 104px;

    margin: 0 auto 25px;

    padding: 4px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #377ed0,
            #0d2846
        );

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);
}


.profile-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #102b4b,
            #071321
        );

    color: #c8e0ff;

    font-size: 27px;

    font-weight: 700;

    letter-spacing: -1px;
}


.intro h1 {
    font-size: 32px;

    line-height: 1.2;

    letter-spacing: -1.2px;

    font-weight: 700;
}


.handle {
    color: var(--blue-light);

    margin-top: 5px;

    font-size: 13px;
}


.details {
    color: var(--muted-dark);

    font-size: 11px;

    margin-top: 2px;
}


/* SECTIONS */

.section {
    padding: 48px 0;

    border-top: 1px solid var(--border);
}


.section h2 {
    font-size: 22px;

    line-height: 1.3;

    letter-spacing: -0.6px;

    font-weight: 600;

    margin-bottom: 10px;
}


.section h3 {
    font-size: 13px;

    color: #b6c8dc;

    font-weight: 600;

    margin-bottom: 12px;
}


.section p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.95;

    margin-bottom: 18px;
}


.section p:last-child {
    margin-bottom: 0;
}


.divider {
    width: 100%;

    height: 1px;

    background: var(--border);

    margin: 22px 0 28px;
}


/* DIRECTORY */

.directory {
    padding-top: 38px;
}


.directory-links {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-top: 18px;
}


.directory-links a {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 11px 13px;

    border: 1px solid transparent;

    border-radius: 8px;

    color: #a9bbcf;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.directory-links a span {
    width: 25px;

    color: #536a83;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


.directory-links a:hover {
    color: white;

    background: rgba(59, 130, 246, 0.06);

    border-color: var(--border-hover);

    transform: translateX(4px);
}


/* ABOUT */

.about-block {
    margin-bottom: 38px;
}


.about-block:last-child {
    margin-bottom: 0;
}


/* PAGE HEADER */

.page-top {
    padding: 20px 0 60px;
}


.page-top h1 {
    font-size: 38px;

    line-height: 1.1;

    letter-spacing: -1.7px;

    margin-top: 38px;

    margin-bottom: 12px;
}


.page-top > p {
    color: var(--muted);

    font-size: 14px;
}


.back-link {
    display: inline-block;

    color: var(--muted);

    font-size: 12px;

    transition: color 0.2s ease;
}


.back-link:hover {
    color: var(--blue-light);
}


/* PORTFOLIO */

.portfolio-note {
    color: var(--muted-dark) !important;

    font-size: 11px !important;

    border-left: 2px solid rgba(75, 145, 237, 0.4);

    padding-left: 14px;
}


.portfolio-list {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.portfolio-item {
    display: grid;

    grid-template-columns: 1.5fr 1fr auto;

    align-items: center;

    gap: 15px;

    padding: 14px 15px;

    border: 1px solid transparent;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.015);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.portfolio-item:hover {
    background: var(--surface);

    border-color: var(--border);

    transform: translateX(3px);
}


.portfolio-item strong {
    color: #dceaff;

    font-size: 12px;

    font-weight: 600;
}


.portfolio-item span {
    color: var(--muted);

    font-size: 11px;
}


.portfolio-item small {
    color: var(--muted-dark);

    font-size: 10px;

    font-weight: 600;
}


/* STORY */

.story {
    margin-top: 15px;
}


.story p {
    max-width: 680px;
}


/* BUTTONS */

.text-link {
    display: inline-block;

    color: var(--blue-light);

    font-size: 11px;

    transition: color 0.2s ease;
}


.text-link:hover {
    color: white;
}


.outline-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 15px;

    border: 1px solid rgba(96, 165, 250, 0.24);

    border-radius: 8px;

    background: rgba(59, 130, 246, 0.045);

    color: #a8caff;

    font-size: 11px;

    font-weight: 600;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.outline-button:hover {
    background: rgba(59, 130, 246, 0.1);

    border-color: rgba(96, 165, 250, 0.45);

    transform: translateY(-2px);
}


/* CONTACT */

.contact-list {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-top: 25px;
}


.contact-card {
    display: grid;

    grid-template-columns: 32px 1fr 20px;

    align-items: center;

    gap: 12px;

    padding: 14px 15px;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: var(--surface);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.contact-card:hover {
    background: var(--surface-hover);

    border-color: var(--border-hover);

    transform: translateY(-2px);
}


.contact-number {
    color: var(--muted-dark);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


.contact-information {
    display: flex;

    flex-direction: column;
}


.contact-information strong {
    color: #dceaff;

    font-size: 12px;

    font-weight: 600;
}


.contact-information small {
    color: var(--muted-dark);

    font-size: 10px;
}


.contact-arrow {
    color: var(--blue-light);

    font-size: 14px;
}


.email-link {
    display: inline-block;

    margin-top: 5px;

    color: var(--blue-light);

    font-size: 13px;

    border-bottom: 1px solid rgba(118, 177, 255, 0.25);

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}


.email-link:hover {
    color: white;

    border-color: white;
}


/* NOTICE */

.notice {
    padding: 20px;

    margin: 10px 0 50px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(59, 130, 246, 0.055),
            rgba(255,255,255,0.01)
        );
}


.notice strong {
    display: block;

    color: #c3d8f1;

    font-size: 11px;

    margin-bottom: 7px;
}


.notice p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}


/* FOOTER */

footer {
    padding: 35px 0 60px;

    border-top: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


footer p {
    color: var(--muted-dark);

    font-size: 10px;
}


.footer-small {
    opacity: 0.65;
}


.footer-link {
    color: var(--muted);

    font-size: 10px;

    transition: color 0.2s ease;
}


.footer-link:hover {
    color: white;
}


/* FADE IN */

.fade-in {
    opacity: 0;

    animation:
        fadeIn
        0.75s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}


@keyframes fadeIn {

    from {
        opacity: 0;

        transform:
            translateY(18px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


.delay-1 {
    animation-delay: 0.08s;
}


.delay-2 {
    animation-delay: 0.16s;
}


.delay-3 {
    animation-delay: 0.24s;
}


.delay-4 {
    animation-delay: 0.32s;
}


.delay-5 {
    animation-delay: 0.40s;
}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .fade-in {
        animation: none;

        opacity: 1;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .site {
        width: calc(100% - 32px);

        padding-top: 40px;
    }


    .intro {
        padding-bottom: 45px;
    }


    .intro h1 {
        font-size: 28px;
    }


    .section {
        padding: 38px 0;
    }


    .page-top {
        padding-bottom: 42px;
    }


    .page-top h1 {
        font-size: 32px;

        margin-top: 30px;
    }


    .portfolio-item {
        grid-template-columns: 1fr auto;

        gap: 3px 12px;

        padding: 13px;
    }


    .portfolio-item strong {
        grid-column: 1;
    }


    .portfolio-item span {
        grid-column: 1;
    }


    .portfolio-item small {
        grid-column: 2;

        grid-row: 1 / span 2;

        align-self: center;
    }


    .contact-card {
        grid-template-columns: 25px 1fr 15px;
    }


    footer {
        flex-direction: column;

        align-items: flex-start;

        padding-bottom: 40px;
    }

}


@media (max-width: 400px) {

    .site {
        width: calc(100% - 26px);
    }


    .profile-image {
        width: 90px;
        height: 90px;
    }


    .section h2 {
        font-size: 20px;
    }


    .directory-links a {
        padding: 10px;
    }

}
```
