:root {

    --bg: #050816;
    --bg-secondary: #080d20;

    --surface: rgba(255,255,255,.045);
    --surface-hover: rgba(255,255,255,.075);

    --border: rgba(255,255,255,.09);
    --border-light: rgba(255,255,255,.14);

    --text: #f5f7ff;
    --text-secondary: #a7afc4;
    --text-muted: #69728b;

    --primary: #7857ff;
    --primary-light: #a78bfa;

    --cyan: #00d9ff;
    --green: #3cff9a;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --container: 1180px;

    --transition:
        .35s cubic-bezier(.2,.8,.2,1);

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    background: var(--bg);

    color: var(--text);

    font-family:
        "Inter",
        sans-serif;

    line-height: 1.7;

    overflow-x: hidden;

}

body.loading {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    width: 100%;
    display: block;
}

::selection {
    background: var(--primary);
    color: white;
}


::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            var(--primary),
            var(--cyan)
        );

    border-radius: 20px;

}


.container {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin-inline: auto;

}


.loader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    background: var(--bg);

    display: grid;

    place-items: center;

    transition:
        opacity .7s ease,
        visibility .7s ease;

}

.loader.hidden {

    opacity: 0;

    visibility: hidden;

}

.loader-content {
    text-align: center;
}

.loader-logo {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 5rem;

    font-weight: 800;

    line-height: 1;

}

.loader-logo span {
    color: var(--cyan);
}

.loader-line {

    width: 120px;

    height: 2px;

    margin: 20px auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            transparent
        );

    animation:
        loaderLine 1.3s infinite;

}

.loader p {

    color:
        var(--text-muted);

    font-size:
        .75rem;

    letter-spacing:
        2px;

    text-transform:
        uppercase;

}

@keyframes loaderLine {

    0% {
        transform: scaleX(.2);
        opacity: .3;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(.2);
        opacity: .3;
    }

}


.background {

    position: fixed;

    inset: 0;

    z-index: -10;

    pointer-events: none;

    overflow: hidden;

}

.grid-background {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            transparent 90%
        );

}

.glow {

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .13;

}

.glow-1 {

    background:
        var(--primary);

    left: -220px;

    top: 10%;

}

.glow-2 {

    background:
        var(--cyan);

    right: -250px;

    top: 40%;

}

.glow-3 {

    background:
        #5d35ff;

    left: 30%;

    bottom: -300px;

}

#particles {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

}


.cursor-dot,
.cursor-outline {

    position: fixed;

    top: 0;
    left: 0;

    pointer-events: none;

    z-index: 999999;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

}

.cursor-dot {

    width: 6px;

    height: 6px;

    background:
        var(--cyan);

    box-shadow:
        0 0 15px var(--cyan);

}

.cursor-outline {

    width: 32px;

    height: 32px;

    border:
        1px solid
        rgba(0,217,255,.5);

    transition:
        width .2s,
        height .2s;

}

.cursor-hover {

    width: 48px;

    height: 48px;

    background:
        rgba(0,217,255,.05);

}

@media (max-width: 900px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

}


.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 76px;

    z-index: 1000;

    transition:
        background var(--transition),
        border var(--transition);

}

.navbar.scrolled {

    background:
        rgba(5,8,22,.82);

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid var(--border);

}

.nav-container {

    height: 100%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

}


.logo {

    display:
        flex;

    align-items:
        center;

    gap: 10px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-weight:
        700;

}

.logo-symbol {

    width: 36px;

    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--cyan)
        );

    font-size:
        1.1rem;

    box-shadow:
        0 0 25px
        rgba(0,217,255,.15);

}

.logo-text {

    font-size:
        1rem;

    letter-spacing:
        -.5px;

}

.logo-text span {
    color: var(--cyan);
}


.nav-links {

    display:
        flex;

    align-items:
        center;

    gap: 34px;

    list-style:
        none;

}

.nav-link {

    position:
        relative;

    color:
        var(--text-secondary);

    font-size:
        .84rem;

    font-weight:
        500;

    transition:
        var(--transition);

}

.nav-link::after {

    content: "";

    position:
        absolute;

    left: 50%;

    bottom: -8px;

    width: 0;

    height: 2px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--cyan)
        );

    transition:
        var(--transition);

}

.nav-link:hover,
.nav-link.active {

    color:
        white;

}

.nav-link.active::after,
.nav-link:hover::after {

    width:
        20px;

}


.menu-button {

    display:
        none;

    width:
        42px;

    height:
        42px;

    border:
        1px solid var(--border);

    border-radius:
        10px;

    background:
        var(--surface);

    cursor:
        pointer;

}

.menu-button span {

    display:
        block;

    width:
        18px;

    height:
        2px;

    margin:
        4px auto;

    background:
        white;

    transition:
        var(--transition);

}


.section {

    padding:
        130px 0;

}

.hero {

    min-height:
        100vh;

    padding-top:
        130px;

    padding-bottom:
        80px;

    display:
        flex;

    align-items:
        center;

    position:
        relative;

}


.hero-container {

    display:
        grid;

    grid-template-columns:
        1.1fr .9fr;

    gap:
        70px;

    align-items:
        center;

}


.availability {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    padding:
        7px 13px;

    border:
        1px solid var(--border);

    background:
        var(--surface);

    border-radius:
        999px;

    color:
        var(--text-secondary);

    font-size:
        .75rem;

    margin-bottom:
        24px;

}

.availability-dot {

    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        var(--green);

    box-shadow:
        0 0 12px
        var(--green);

    animation:
        pulse 2s infinite;

}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }

}


.hero-small-title {

    font-size:
        .78rem;

    font-weight:
        700;

    letter-spacing:
        3px;

    color:
        var(--cyan);

    margin-bottom:
        12px;

}

.hero h1 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            3.2rem,
            7vw,
            6rem
        );

    line-height:
        .95;

    letter-spacing:
        -5px;

    margin-bottom:
        22px;

}

.gradient-text {

    background:
        linear-gradient(
            100deg,
            #ffffff 5%,
            var(--primary-light) 45%,
            var(--cyan) 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;

}


.hero-role {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        1.2rem;

    margin-bottom:
        18px;

}

.hero-role > span:first-child {

    color:
        var(--text-muted);

}

.typing-text {

    color:
        var(--cyan);

    font-weight:
        600;

}

.typing-cursor {

    color:
        var(--cyan);

    animation:
        blink .7s infinite;

}

@keyframes blink {

    50% {
        opacity: 0;
    }

}


.hero-description {

    max-width:
        620px;

    color:
        var(--text-secondary);

    font-size:
        .98rem;

    margin-bottom:
        30px;

}

.hero-description strong {
    color: white;
}


.hero-buttons {

    display:
        flex;

    gap:
        12px;

    flex-wrap:
        wrap;

}

.btn {

    min-height:
        48px;

    padding:
        0 19px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

    border-radius:
        11px;

    font-size:
        .82rem;

    font-weight:
        600;

    border:
        1px solid var(--border);

    transition:
        var(--transition);

}

.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #5c7cff
        );

    border:
        none;

    box-shadow:
        0 12px 35px
        rgba(120,87,255,.2);

}

.btn-outline {

    background:
        var(--surface);

}

.btn:hover {

    transform:
        translateY(-4px);

    border-color:
        var(--border-light);

}

.btn-primary:hover {

    box-shadow:
        0 18px 40px
        rgba(120,87,255,.35);

}


.hero-social {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    margin-top:
        30px;

    color:
        var(--text-muted);

    font-size:
        .75rem;

}

.hero-social a {

    width:
        32px;

    height:
        32px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid var(--border);

    border-radius:
        8px;

    transition:
        var(--transition);

}

.hero-social a:hover {

    color:
        var(--cyan);

    border-color:
        var(--cyan);

    transform:
        translateY(-3px);

}


.hero-visual {

    position:
        relative;

    max-width:
        470px;

    margin-inline:
        auto;

    width:
        100%;

}

.profile-card {

    position:
        relative;

    padding:
        15px;

    border:
        1px solid var(--border);

    border-radius:
        28px;

    background:
        rgba(255,255,255,.045);

    box-shadow:
        0 35px 90px
        rgba(0,0,0,.35);

    transform:
        rotate(2deg);

    transition:
        .5s ease;

}

.profile-card:hover {

    transform:
        rotate(0deg)
        translateY(-8px);

}


.profile-image {

    position:
        relative;

    aspect-ratio:
        4 / 5;

    overflow:
        hidden;

    border-radius:
        20px;

    background:
        linear-gradient(
            135deg,
            rgba(120,87,255,.25),
            rgba(0,217,255,.08)
        );

}

.profile-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

}

.profile-fallback {

    position:
        absolute;

    inset:
        0;

    display:
        none;

    align-items:
        center;

    justify-content:
        center;

    background:
        linear-gradient(
            135deg,
            #22145f,
            #073d4b
        );

}

.profile-fallback span {

    width:
        130px;

    height:
        130px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--cyan)
        );

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        4rem;

    font-weight:
        800;

}


.profile-info {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding:
        17px 5px 3px;

}

.profile-info h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        1rem;

}

.profile-info p {

    color:
        var(--text-muted);

    font-size:
        .72rem;

}

.profile-number {

    text-align:
        right;

}

.profile-number span {

    display:
        block;

    color:
        var(--cyan);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-weight:
        700;

}

.profile-number small {

    color:
        var(--text-muted);

    font-size:
        .6rem;

    letter-spacing:
        2px;

}


.floating-card {

    position:
        absolute;

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    padding:
        11px 14px;

    background:
        rgba(10,14,35,.85);

    backdrop-filter:
        blur(15px);

    border:
        1px solid var(--border);

    border-radius:
        13px;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.25);

    animation:
        floating 4s ease-in-out infinite;

}

.floating-card i {

    color:
        var(--cyan);

}

.floating-card strong {

    display:
        block;

    font-size:
        .7rem;

}

.floating-card span {

    display:
        block;

    color:
        var(--text-muted);

    font-size:
        .6rem;

}

.floating-card-top {

    top:
        15%;

    left:
        -55px;

}

.floating-card-bottom {

    bottom:
        18%;

    right:
        -50px;

    animation-delay:
        -2s;

}

.chess-icon {

    font-size:
        1.5rem !important;

    color:
        white !important;

}

@keyframes floating {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }

}


.scroll-indicator {

    position:
        absolute;

    bottom:
        35px;

    left:
        50%;

    transform:
        translateX(-50%);

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        7px;

    color:
        var(--text-muted);

    font-size:
        .65rem;

    letter-spacing:
        1px;

}

.scroll-indicator i {

    color:
        var(--cyan);

    animation:
        scrollDown 1.5s infinite;

}

@keyframes scrollDown {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(5px);
    }

}


.section-header {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        20px;

    margin-bottom:
        50px;

}

.section-number {

    color:
        var(--cyan);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        .8rem;

    padding-top:
        10px;

}

.section-label {

    color:
        var(--text-muted);

    font-size:
        .7rem;

    letter-spacing:
        3px;

    font-weight:
        700;

    margin-bottom:
        8px;

}

.section-header h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            2.2rem,
            5vw,
            3.8rem
        );

    line-height:
        1;

    letter-spacing:
        -2px;

}


.glass-card {

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 25px 70px
        rgba(0,0,0,.2);

}


.about-grid {

    display:
        grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap:
        22px;

}

.about-intro {

    padding:
        35px;

}

.card-icon {

    width:
        45px;

    height:
        45px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        12px;

    background:
        rgba(120,87,255,.12);

    color:
        var(--primary-light);

    margin-bottom:
        22px;

}

.about-intro h3,
.biodata-card h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        1.35rem;

    margin-bottom:
        14px;

}

.about-intro > p {

    color:
        var(--text-secondary);

    font-size:
        .88rem;

    margin-bottom:
        14px;

}

.about-intro strong {
    color: white;
}


.quote {

    margin-top:
        28px;

    padding:
        18px;

    border-left:
        2px solid var(--cyan);

    background:
        rgba(0,217,255,.04);

    border-radius:
        0 12px 12px 0;

}

.quote i {

    color:
        var(--cyan);

    font-size:
        .8rem;

    margin-bottom:
        6px;

}

.quote p {

    color:
        #c5cbe0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        .82rem;

    margin:
        0;

}


.biodata-card {

    padding:
        30px;

}

.card-header {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    margin-bottom:
        24px;

}

.card-header .card-icon {

    margin:
        0;

}

.card-header h3 {

    margin:
        0;

}

.card-header p {

    color:
        var(--text-muted);

    font-size:
        .7rem;

}

.biodata-list {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        10px;

}

.biodata-item {

    padding:
        15px;

    border:
        1px solid rgba(255,255,255,.055);

    background:
        rgba(255,255,255,.025);

    border-radius:
        12px;

    transition:
        var(--transition);

}

.biodata-item:hover {

    background:
        rgba(255,255,255,.05);

    border-color:
        rgba(0,217,255,.2);

    transform:
        translateY(-2px);

}

.biodata-item.full {

    grid-column:
        1 / -1;

}

.biodata-item span {

    display:
        flex;

    align-items:
        center;

    gap:
        7px;

    color:
        var(--text-muted);

    font-size:
        .65rem;

    margin-bottom:
        4px;

}

.biodata-item span i {

    color:
        var(--cyan);

}

.biodata-item strong {

    display:
        block;

    font-size:
        .77rem;

}


.stats-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        12px;

    margin-top:
        20px;

}

.stat-card {

    padding:
        25px 20px;

    text-align:
        center;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        18px;

    transition:
        var(--transition);

}

.stat-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(0,217,255,.2);

}

.stat-icon {

    display:
        block;

    font-size:
        1.4rem;

    margin-bottom:
        10px;

}

.stat-card strong {

    display:
        block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        1.7rem;

}

.stat-card p {

    color:
        var(--text-secondary);

    font-size:
        .72rem;

}

.stat-card small {

    color:
        var(--text-muted);

    font-size:
        .6rem;

}


.journey-section {

    position:
        relative;

}

.journey-content {

    display:
        grid;

    grid-template-columns:
        1.35fr .65fr;

    gap:
        22px;

}

.journey-main {

    position:
        relative;

    padding:
        40px;

    overflow:
        hidden;

}

.code-decoration {

    position:
        absolute;

    top:
        -20px;

    right:
        20px;

    font-family:
        monospace;

    font-size:
        7rem;

    font-weight:
        900;

    color:
        rgba(255,255,255,.025);

}

.journey-tag {

    color:
        var(--cyan);

    font-size:
        .65rem;

    font-weight:
        700;

    letter-spacing:
        2px;

}

.journey-main h3 {

    position:
        relative;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        2.3rem;

    line-height:
        1.1;

    max-width:
        600px;

    margin:
        15px 0 28px;

}

.journey-main p {

    color:
        var(--text-secondary);

    font-size:
        .88rem;

    margin-bottom:
        16px;

    max-width:
        700px;

}

.journey-main strong {
    color: white;
}


.journey-side {

    display:
        flex;

    flex-direction:
        column;

    gap:
        22px;

}

.dream-card {

    padding:
        30px;

}

.dream-icon {

    font-size:
        2rem;

    margin-bottom:
        18px;

}

.dream-card h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        1.6rem;

    margin:
        8px 0;

}

.dream-card h3 span {

    color:
        var(--primary-light);

    font-size:
        .8rem;

}

.dream-card p {

    color:
        var(--text-secondary);

    font-size:
        .78rem;

}


.hobby-card {

    padding:
        22px;

    display:
        flex;

    align-items:
        center;

    gap:
        20px;

}

.hobby-card h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        1.15rem;

    margin:
        5px 0;

}

.hobby-card p {

    color:
        var(--text-secondary);

    font-size:
        .7rem;

}


.chess-board {

    width:
        95px;

    height:
        95px;

    flex-shrink:
        0;

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-template-rows:
        repeat(4, 1fr);

    border:
        3px solid
        rgba(255,255,255,.1);

    border-radius:
        6px;

    overflow:
        hidden;

}

.chess-board span {

    display:
        grid;

    place-items:
        center;

    font-size:
        .95rem;

}

.chess-board span:nth-child(
    1
),
.chess-board span:nth-child(
    3
),
.chess-board span:nth-child(
    6
),
.chess-board span:nth-child(
    8
),
.chess-board span:nth-child(
    9
),
.chess-board span:nth-child(
    11
),
.chess-board span:nth-child(
    14
),
.chess-board span:nth-child(
    16
) {

    background:
        #252044;

}

.chess-board span:nth-child(
    2
),
.chess-board span:nth-child(
    4
),
.chess-board span:nth-child(
    5
),
.chess-board span:nth-child(
    7
),
.chess-board span:nth-child(
    10
),
.chess-board span:nth-child(
    12
),
.chess-board span:nth-child(
    13
),
.chess-board span:nth-child(
    15
) {

    background:
        #b6a8e8;

    color:
        #19152d;

}


.section-description {

    max-width:
        600px;

    color:
        var(--text-secondary);

    font-size:
        .88rem;

    margin-top:
        -25px;

    margin-bottom:
        35px;

}

.gallery-grid {

    display:
        grid;

    grid-template-columns:
        1.3fr .7fr;

    grid-template-rows:
        250px 250px;

    gap:
        14px;

}

.gallery-item {

    position:
        relative;

    overflow:
        hidden;

    border:
        1px solid var(--border);

    border-radius:
        20px;

    background:
        linear-gradient(
            135deg,
            rgba(120,87,255,.12),
            rgba(0,217,255,.04)
        );

}

.gallery-large {

    grid-row:
        1 / 3;

}

.gallery-item img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .7s ease;

}

.gallery-item:hover img {

    transform:
        scale(1.07);

}

.gallery-fallback {

    position:
        absolute;

    inset:
        0;

    display:
        none;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    color:
        var(--text-muted);

}

.gallery-fallback i {

    font-size:
        1.8rem;

    color:
        var(--primary-light);

}

.gallery-fallback span {

    font-size:
        .7rem;

}


.gallery-overlay {

    position:
        absolute;

    inset:
        auto 0 0;

    padding:
        50px 20px 18px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.8)
        );

    transform:
        translateY(5px);

}

.gallery-overlay span {

    color:
        var(--cyan);

    font-size:
        .6rem;

    font-weight:
        700;

}

.gallery-overlay p {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        .9rem;

}


.contact-section {

    padding-top:
        80px;

}

.contact-card {

    position:
        relative;

    padding:
        80px 30px;

    text-align:
        center;

    overflow:
        hidden;

    border:
        1px solid var(--border);

    border-radius:
        30px;

    background:
        linear-gradient(
            135deg,
            rgba(120,87,255,.1),
            rgba(0,217,255,.05)
        );

}

.contact-card h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            2.5rem,
            6vw,
            4.5rem
        );

    line-height:
        1;

    letter-spacing:
        -3px;

    margin:
        12px 0 18px;

}

.contact-card > p:not(.section-label) {

    max-width:
        550px;

    margin:
        auto;

    color:
        var(--text-secondary);

    font-size:
        .85rem;

}

.contact-buttons {

    display:
        flex;

    justify-content:
        center;

    gap:
        10px;

    flex-wrap:
        wrap;

    margin-top:
        28px;

}

.contact-info {

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        20px;

    margin-top:
        35px;

    color:
        var(--text-muted);

    font-size:
        .65rem;

}

.contact-info span {

    display:
        flex;

    align-items:
        center;

    gap:
        6px;

}

.contact-info i {

    color:
        var(--cyan);

}


.contact-decoration {

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

}

.contact-decoration span {

    position:
        absolute;

    width:
        150px;

    height:
        150px;

    border:
        1px solid
        rgba(255,255,255,.03);

    border-radius:
        50%;

}

.contact-decoration span:nth-child(1) {

    left:
        -70px;

    top:
        -70px;

}

.contact-decoration span:nth-child(2) {

    right:
        -100px;

    bottom:
        -100px;

    width:
        250px;

    height:
        250px;

}

.contact-decoration span:nth-child(3) {

    left:
        50%;

    top:
        50%;

    transform:
        translate(-50%,-50%);

    width:
        400px;

    height:
        400px;

}


footer {

    border-top:
        1px solid var(--border);

    padding:
        25px 0;

}

.footer-container {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

}

.footer-container p {

    color:
        var(--text-muted);

    font-size:
        .65rem;

}

.footer-container strong {
    color: var(--text-secondary);
}


.back-to-top {

    position:
        fixed;

    right:
        25px;

    bottom:
        25px;

    width:
        42px;

    height:
        42px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid var(--border);

    border-radius:
        11px;

    background:
        rgba(8,13,32,.8);

    backdrop-filter:
        blur(15px);

    color:
        white;

    cursor:
        pointer;

    opacity:
        0;

    visibility:
        hidden;

    transform:
        translateY(10px);

    transition:
        var(--transition);

    z-index:
        900;

}

.back-to-top.show {

    opacity:
        1;

    visibility:
        visible;

    transform:
        translateY(0);

}

.back-to-top:hover {

    border-color:
        var(--cyan);

    color:
        var(--cyan);

}


.reveal {

    opacity:
        0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.reveal.active {

    opacity:
        1;

    transform:
        translateY(0);

}


@media (max-width: 950px) {


    .nav-links {

        position:
            fixed;

        top:
            76px;

        right:
            24px;

        width:
            230px;

        padding:
            20px;

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            17px;

        background:
            rgba(7,11,28,.96);

        border:
            1px solid var(--border);

        border-radius:
            16px;

        backdrop-filter:
            blur(20px);

        opacity:
            0;

        visibility:
            hidden;

        transform:
            translateY(-10px);

        transition:
            var(--transition);

    }

    .nav-links.open {

        opacity:
            1;

        visibility:
            visible;

        transform:
            translateY(0);

    }

    .menu-button {

        display:
            block;

    }

    .hero-container {

        grid-template-columns:
            1fr;

    }

    .hero-content {

        text-align:
            center;

    }

    .hero-description {

        margin-inline:
            auto;

    }

    .hero-buttons,
    .hero-social {

        justify-content:
            center;

    }

    .hero-visual {

        max-width:
            430px;

    }

    .floating-card-top {

        left:
            -15px;

    }

    .floating-card-bottom {

        right:
            -15px;

    }

    .about-grid {

        grid-template-columns:
            1fr;

    }

    .journey-content {

        grid-template-columns:
            1fr;

    }

}


@media (max-width: 700px) {


    .container {

        width:
            min(
                calc(100% - 30px),
                var(--container)
            );

    }

    .section {

        padding:
            90px 0;

    }

    .hero {

        padding-top:
            110px;

    }

    .hero h1 {

        font-size:
            clamp(
                3rem,
                15vw,
                4.5rem
            );

        letter-spacing:
            -3px;

    }

    .hero-role {

        font-size:
            1rem;

    }

    .floating-card {

        padding:
            8px 10px;

    }

    .floating-card-top {

        left:
            -5px;

    }

    .floating-card-bottom {

        right:
            -5px;

    }

    .biodata-list {

        grid-template-columns:
            1fr;

    }

    .biodata-item.full {

        grid-column:
            auto;

    }

    .stats-grid {

        grid-template-columns:
            1fr 1fr;

    }

    .journey-main {

        padding:
            25px;

    }

    .journey-main h3 {

        font-size:
            1.8rem;

    }

    .hobby-card {

        flex-direction:
            column;

        align-items:
            flex-start;

    }

    .gallery-grid {

        grid-template-columns:
            1fr;

        grid-template-rows:
            repeat(3, 250px);

    }

    .gallery-large {

        grid-row:
            auto;

    }

    .contact-card {

        padding:
            55px 20px;

    }

    .footer-container {

        flex-direction:
            column;

        text-align:
            center;

    }

    .scroll-indicator {

        display:
            none;

    }

}


@media (max-width: 420px) {

    .stats-grid {

        grid-template-columns:
            1fr;

    }

    .hero-buttons .btn {

        width:
            100%;

    }

    .profile-card {

        transform:
            none;

    }

}