﻿:root {

    /* Global */
    --black: #0a0a0a;
    --near-black: #111111;
    --white: #f5f3ee;
    --muted: #99958d;
    --border: rgba(255, 255, 255, 0.10);

    /* Coding */
    --code-blue: #3d8bfd;
    --code-dark: #07111f;

    /* Geography */
    --geo-green: #3c8c62;
    --geo-dark: #07150e;

    /* History */
    --history-brown: #9a6846;
    --history-dark: #1a100b;

    /* Science */
    --science-purple: #8067d9;
    --science-dark: #0e0b19;

    /* Literature */
    --literature-red: #9b4854;
    --literature-dark: #190b0f;

    /* Music */
    --music-gold: #d09a43;
    --music-dark: #181108;

    /* Typography */
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "DM Sans", sans-serif;
    --font-mono: "Space Mono", monospace;

    /* Layout */
    --max-width: 1400px;
    --section-padding: clamp(90px, 10vw, 170px);

}


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

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

a {color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 4px;
}

::selection {
    background: var(--white);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: white;
}

.cursor-outline {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition:
        width 0.2s ease,
        height 0.2s ease,
        border-color 0.2s ease;
}

.cursor-outline.hover {
    width: 55px;
    height: 55px;
    border-color: rgba(255, 255, 255, 0.8);
}

@media (pointer: fine) {
    body {
        cursor: none;
    }

    a,
    button {
        cursor: none;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    padding: 0 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.logo-mark {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.35);

    font-family: var(--font-display);
    font-size: 19px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.logo:hover .logo-mark {
    background: white;
    color: black;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    position: relative;

    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #aaa;

    transition: color 0.3s ease;
}
.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: white;

    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

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

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    width: 17px;
    height: 1px;
    background: white;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding:
        150px 7vw
        100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 45%,
            rgba(30, 74, 130, 0.18),
            transparent 35%
        ),
        var(--black);
}

.hero-background-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black 0%,
            transparent 75%
        );

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;

    max-width: 850px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 30px;

    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;

    color: #aaa;
}

.status-dot {
    width: 7px;
    height: 7px;

    background: #63d38a;

    border-radius: 50%;

    box-shadow: 0 0 15px rgba(99, 211, 138, 0.7);

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }

}


.hero h1 {
    font-family: var(--font-display);

    font-size: clamp(65px, 9.5vw, 150px);

    line-height: 0.88;

    letter-spacing: 0;

    font-weight: 600;

    max-width: 1000px;
}

.hero h1 span {
    display: block;
}

.hero h1 span:nth-child(2) {
    margin-left: 10vw;
    font-style: italic;
    color: #c8c5bd;
}

.hero h1 span:nth-child(3) {
    margin-left: 4vw;
}


.hero-description {
    max-width: 570px;

    margin:
        45px 0
        0 12vw;

    color: #aaa8a2;

    font-size: 16px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;

    margin-top: 35px;
    margin-left: 12vw;
}

.btn {
    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    border: 1px solid rgba(255, 255, 255, 0.25);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: white;
}

.btn-secondary {
    background: transparent;
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 15px 18px;

    background: rgba(20, 20, 20, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(15px);

    animation: floating 5s ease-in-out infinite;

    z-index: 3;
}

.floating-card small {
    display: block;

    font-family: var(--font-mono);
    font-size: 7px;

    letter-spacing: 0.12em;

    color: #777;
}

.floating-card strong {
    display: block;

    margin-top: 3px;

    font-family: var(--font-display);
    font-size: 17px;
}

.card-icon {
    font-size: 22px;
}

.card-history {
    top: 25%;
    right: 13%;

    transform: rotate(3deg);

    animation-delay: -1s;
}

.card-history .card-icon {
    color: var(--history-brown);
}

.card-code {
    bottom: 20%;
    right: 23%;

    transform: rotate(-4deg);

    animation-delay: -3s;
}

.card-code .card-icon {
    color: var(--code-blue);

    font-family: var(--font-mono);
}

.card-science {
    top: 58%;
    right: 6%;

    transform: rotate(4deg);

    animation-delay: -2s;
}

.card-science .card-icon {
    color: var(--science-purple);
}

@keyframes floating {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -15px;
    }

}

.scroll-indicator {
    position: absolute;

    left: 7vw;
    bottom: 40px;

    display: flex;
    align-items: center;
    gap: 15px;

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.15em;
    color: #666;
}

.scroll-line {
    width: 60px;
    height: 1px;

    background: #444;
}

.section {
    position: relative;

    padding:
        var(--section-padding)
        7vw;
}

.section-number {
    position: absolute;

    top: 55px;
    left: 7vw;

    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.15em;

    color: #666;
}

.section-label {
    margin-bottom: 18px;

    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.18em;

    color: #777;
    text-transform: uppercase;
}

.section-intro {
    max-width: 800px;

    margin-bottom: 75px;
}

.section-intro h2,
.about-heading h2,
.achievement-intro h2,
.journey-heading h2 {
    font-family: var(--font-display);

    font-weight: 500;

    font-size: clamp(48px, 6vw, 85px);

    line-height: 0.98;

    letter-spacing: 0;
}

.section-intro h2 em {
    color: #aaa;
    font-weight: 400;
}

.section-intro > p:last-child {
    max-width: 500px;

    margin-top: 25px;

    color: #888;

    font-size: 15px;
}

.about-section {
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255,255,255,0.04),
            transparent 35%
        ),
        #111;
}

.about-grid {
    max-width: var(--max-width);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10vw;

    align-items: start;
}

.about-heading h2 {
    max-width: 600px;
}

.about-text {
    padding-top: 30px;
}

.about-text p {
    max-width: 580px;

    margin-bottom: 28px;

    color: #999;

    font-size: 15px;

    line-height: 1.9;
}

.about-text .large-text {
    color: #d0cec8;

    font-family: var(--font-display);

    font-size: 24px;

    line-height: 1.5;
}

.text-link {
    display: inline-flex;

    gap: 18px;

    margin-top: 20px;

    padding-bottom: 7px;

    border-bottom: 1px solid #555;

    font-family: var(--font-mono);

    font-size: 9px;

    letter-spacing: 0.12em;
}

.text-link span {
    transition: transform 0.3s ease;
}

.text-link:hover span {
    transform: translateX(6px);
}

.interests-section {
    background: #0d0d0d;
}

.interest-grid {
    max-width: var(--max-width);

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.interest-card {
    position: relative;

    min-height: 390px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease;
}

.interest-card:hover {
    transform: translateY(-8px);
}

.interest-card::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(255, 255, 255, 0.10),
            transparent 45%
        );

    transition: opacity 0.4s ease;
}

.interest-card:hover::before {
    opacity: 1;
}

.interest-top {
    display: flex;

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

    position: relative;
    z-index: 2;
}

.interest-number {
    font-family: var(--font-mono);
    font-size: 9px;

    opacity: 0.5;
}

.interest-symbol {
    font-size: 25px;
}

.interest-content {
    position: relative;
    z-index: 2;

    margin-top: auto;
}

.interest-tag {
    margin-bottom: 10px;

    font-family: var(--font-mono);
    font-size: 8px;

    letter-spacing: 0.16em;

    opacity: 0.6;
}

.interest-content h3 {
    margin-bottom: 15px;

    font-family: var(--font-display);

    font-size: 43px;

    line-height: 1;
}

.interest-content p {
    max-width: 340px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;

    line-height: 1.7;
}

.interest-footer {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;

    margin-top: 30px;

    padding-top: 17px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    font-family: var(--font-mono);

    font-size: 8px;

    letter-spacing: 0.12em;
}

/* History */

.history-card {
    background:
        linear-gradient(
            145deg,
            var(--history-dark),
            #24160e
        );
}

.history-card .interest-symbol,
.history-card h3 {
    color: #c18a62;
}

.history-card:hover {
    border-color: rgba(193, 138, 98, 0.45);
}


/* Geography */

.geography-card {
    background:
        linear-gradient(
            145deg,
            var(--geo-dark),
            #0d2115
        );
}

.geography-card .interest-symbol,
.geography-card h3 {
    color: #68b989;
}

.geography-card:hover {
    border-color: rgba(104, 185, 137, 0.45);
}


/* Science */

.science-card {
    background:
        linear-gradient(
            145deg,
            var(--science-dark),
            #17112b
        );
}

.science-card .interest-symbol,
.science-card h3 {
    color: #a695f0;
}

.science-card:hover {
    border-color: rgba(166, 149, 240, 0.45);
}


/* Coding */

.coding-card {
    background:
        linear-gradient(
            145deg,
            #05080d,
            #09192d
        );
}

.coding-card .interest-symbol,
.coding-card h3 {
    color: #62a6ff;

    font-family: var(--font-mono);
}

.coding-card:hover {
    border-color: rgba(98, 166, 255, 0.5);
}


/* Literature */

.literature-card {
    background:
        linear-gradient(
            145deg,
            var(--literature-dark),
            #251016
        );
}

.literature-card .interest-symbol,
.literature-card h3 {
    color: #d77d89;
}

.literature-card:hover {
    border-color: rgba(215, 125, 137, 0.45);
}


/* Music */

.music-card {
    background:
        linear-gradient(
            145deg,
            var(--music-dark),
            #241a0a
        );
}

.music-card .interest-symbol,
.music-card h3 {
    color: #e2b763;
}

.music-card:hover {
    border-color: rgba(226, 183, 99, 0.45);
}

.achievements-section {
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(154, 104, 70, 0.08),
            transparent 35%
        ),
        #111;
}

.achievements-grid {
    max-width: var(--max-width);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        280px
        1.2fr;

    gap: 60px;

    align-items: center;
}

.achievement-intro h2 {
    margin-bottom: 30px;
}

.achievement-intro > p:last-child {
    max-width: 480px;

    color: #888;

    font-size: 14px;

    line-height: 1.8;
}

.trophy-display {
    display: flex;
    flex-direction: column;

    align-items: center;

    justify-content: center;
}

.trophy-main {
    position: relative;

    width: 190px;
    height: 190px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(193, 138, 98, 0.3);

    border-radius: 50%;
}

.trophy-ring {
    position: absolute;

    inset: 15px;

    border: 1px dashed rgba(193, 138, 98, 0.4);

    border-radius: 50%;

    animation: spin 20s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.trophy-icon {
    font-size: 55px;

    color: #c18a62;

    text-shadow:
        0 0 35px rgba(193, 138, 98, 0.3);
}

.trophy-caption {
    margin-top: 20px;

    font-family: var(--font-mono);
    font-size: 8px;

    letter-spacing: 0.15em;

    color: #777;
}

.achievement-list {
    border-top: 1px solid var(--border);
}

.achievement-item {
    display: grid;

    grid-template-columns: 90px 1fr 30px;

    gap: 20px;

    align-items: center;

    padding: 25px 0;

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

    transition: padding 0.3s ease;
}

.achievement-item:hover {
    padding-left: 10px;
}

.achievement-year {
    font-family: var(--font-mono);

    font-size: 7px;

    letter-spacing: 0.1em;

    color: #777;
}

.achievement-item h3 {
    margin-bottom: 5px;

    font-family: var(--font-display);

    font-size: 20px;
}

.achievement-item p {
    color: #777;

    font-size: 11px;

    line-height: 1.6;
}

.achievement-arrow {
    color: #777;
}

.projects-section {
    background: #090909;
}

.projects-container {
    max-width: var(--max-width);

    margin: auto;

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

.project-card {
    position: relative;

    display: grid;

    grid-template-columns: 100px 1fr 180px;

    gap: 30px;

    align-items: center;

    padding: 45px 20px;

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

    transition:
        background 0.4s ease,
        padding 0.4s ease;
}

.project-card:hover {
    padding-left: 35px;
    padding-right: 35px;

    background:
        linear-gradient(
            90deg,
            rgba(61, 139, 253, 0.05),
            transparent
        );
}

.project-number {
    font-family: var(--font-mono);

    font-size: 11px;

    color: #555;
}

.project-type {
    margin-bottom: 8px;

    font-family: var(--font-mono);

    font-size: 8px;

    letter-spacing: 0.15em;

    color: var(--code-blue);
}

.project-info h3 {
    margin-bottom: 10px;

    font-family: var(--font-display);

    font-size: 40px;
}
.project-info > p {
    max-width: 650px;

    color: #777;

    font-size: 13px;

    line-height: 1.7;
}

.project-tech {
    display: flex;

    gap: 8px;

    margin-top: 18px;

    flex-wrap: wrap;
}

.project-tech span {
    padding: 5px 9px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    font-family: var(--font-mono);

    font-size: 7px;

    color: #777;
}

.project-action {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 15px;

    font-family: var(--font-mono);

    font-size: 8px;

    letter-spacing: 0.1em;

    color: #777;
}

.project-arrow {
    font-size: 18px;

    transition: transform 0.3s ease;
}

.project-card:hover .project-arrow {
    transform: translate(5px, -5px);

    color: var(--code-blue);
}

.journey-section {
    background:
        linear-gradient(
            180deg,
            #111,
            #0c0c0c
        );
}

.journey-heading {
    max-width: 700px;

    margin-bottom: 90px;
}

.timeline {
    position: relative;

    max-width: 1000px;

    margin: auto;
}

.timeline-line {
    position: absolute;

    top: 0;
    bottom: 0;

    left: 145px;

    width: 1px;

    background:
        linear-gradient(
            180deg,
            transparent,
            #555 10%,
            #555 90%,
            transparent
        );
}

.timeline-item {
    position: relative;

    display: grid;

    grid-template-columns: 120px 50px 1fr;

    gap: 25px;

    padding: 35px 0;
}

.timeline-dot {
    position: absolute;

    left: 141px;
    top: 43px;

    width: 9px;
    height: 9px;

    background: var(--white);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px #111,
        0 0 0 6px #555;
}

.timeline-date {
    font-family: var(--font-mono);

    font-size: 8px;

    letter-spacing: 0.12em;

    color: #666;

    text-align: right;
}

.timeline-content {
    grid-column: 3;

    padding-left: 20px;
}

.timeline-content h3 {
    margin-bottom: 8px;

    font-family: var(--font-display);

    font-size: 30px;
}

.timeline-content p {
    max-width: 550px;

    color: #777;

    font-size: 13px;

    line-height: 1.7;
}

.future-item .timeline-dot {
    background: transparent;

    border: 1px dashed #777;

    box-shadow: none;
}

.quote-section {
    min-height: 70vh;

    padding:
        150px 7vw;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.055),
            transparent 50%
        ),
        #0a0a0a;
}

.quote-mark {
    font-family: var(--font-display);

    font-size: 100px;

    line-height: 0.5;

    color: #444;
}

.quote-section blockquote {
    max-width: 900px;

    margin-top: 20px;

    font-family: var(--font-display);

    font-size: clamp(38px, 5vw, 70px);

    line-height: 1.1;

    letter-spacing: 0;
}

.quote-section p {
    margin-top: 30px;

    font-family: var(--font-mono);

    font-size: 8px;

    letter-spacing: 0.15em;

    color: #666;
}

.contact-section {
    position: relative;

    padding:
        150px 7vw;

    background:
        linear-gradient(
            135deg,
            #111,
            #17120d
        );

    overflow: hidden;
}

.contact-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -150px;
    top: -200px;

    border: 1px solid rgba(208, 154, 67, 0.15);

    border-radius: 50%;
}

.contact-section::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -250px;
    top: -300px;

    border: 1px solid rgba(208, 154, 67, 0.08);

    border-radius: 50%;
}

.contact-inner {
    position: relative;

    z-index: 2;

    max-width: 800px;
}

.contact-inner h2 {
    font-family: var(--font-display);

    font-size: clamp(60px, 8vw, 110px);

    line-height: 0.9;

    letter-spacing: 0;
}

.contact-inner > p:not(.section-label) {
    max-width: 550px;

    margin-top: 30px;

    color: #888;

    font-size: 14px;

    line-height: 1.8;
}

.contact-buttons {
    display: flex;

    gap: 12px;

    margin-top: 35px;
}

.footer {
    padding:
        70px 7vw
        30px;

    background: #070707;

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

.footer-top {
    max-width: var(--max-width);

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 50px;
}

.footer-brand p {
    margin-top: 20px;

    color: #666;

    font-family: var(--font-mono);

    font-size: 9px;

    line-height: 1.8;

    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;

    gap: 100px;
}

.footer-links > div {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-heading {
    margin-bottom: 8px;

    font-family: var(--font-mono);

    font-size: 8px;

    letter-spacing: 0.15em;

    color: #555;
}

.footer-links a {
    font-size: 11px;

    color: #888;

    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: var(--max-width);

    margin: 70px auto 0;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

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

    font-family: var(--font-mono);

    font-size: 7px;

    letter-spacing: 0.12em;

    color: #555;
}

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}

@media (max-width: 1100px) {

    .floating-card {
        transform: scale(0.85);
    }

    .card-history {
        right: 5%;
    }

    .card-code {
        right: 15%;
    }

    .card-science {
        right: 0;
    }

    .interest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: 1fr 220px;
    }

    .achievement-list {
        grid-column: 1 / -1;
    }

}

/* =========================================================
   INTERESTS SECTION
   ========================================================= */

.interests-section {
    background: #0b0b0b;
}

.interest-world {
    max-width: 1400px;
    margin: auto;
}

/* =========================================================
   GENERIC INTEREST SECTION
   ========================================================= */

.interest-section {
    position: relative;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10vw;
    padding: 100px clamp(40px, 8vw, 100px);
    margin: 0 auto;
    max-width: 1400px;
    overflow: hidden;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    backdrop-filter: blur(1px);
}

.interest-section:last-child {
    border-bottom: none;
}

.interest-section.reveal {
    opacity: 0;
    animation: fadeInUp 0.9s ease-out forwards;
}

.interest-section.visible {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.interest-description {
    position: relative;
    z-index: 3;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.interest-number {
    display: block;
    margin-bottom: 40px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

.interest-description h3 {
    margin-bottom: 28px;
    font-family: var(--font-display);
    font-size: clamp(50px, 7vw, 95px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 600;
}

.interest-description > p:not(.interest-tag) {
    max-width: 480px;
    color: rgba(255,255,255,0.62);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
}

.interest-description .interest-tag {
    margin-bottom: 15px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.interest-caption {
    display: inline-block;
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.interest-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* =========================================================
   HISTORY SECTION
   ========================================================= */

.history-section {
    background: linear-gradient(
        135deg,
        rgba(139, 90, 43, 0.05) 0%,
        rgba(160, 108, 68, 0.08) 100%
    );
}

.history-section .interest-description {
    color: #d4a574;
}

.history-section h3 {
    color: #e8c896;
}

.history-section .interest-tag {
    color: #a67c52;
}

.history-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(166, 124, 82, 0.2),
        rgba(208, 170, 130, 0.6),
        rgba(166, 124, 82, 0.2)
    );
    transform: translateY(-50%);
}

.history-event {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.history-dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(232, 200, 150, 0.9),
        rgba(166, 124, 82, 0.6)
    );
    box-shadow:
        0 0 20px rgba(208, 170, 130, 0.5),
        inset 0 1px 3px rgba(255,255,255,0.3);
    animation: dotGlow 2s ease-in-out infinite;
}

@keyframes dotGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(208, 170, 130, 0.5),
            inset 0 1px 3px rgba(255,255,255,0.3);
    }
    50% {
        box-shadow:
            0 0 35px rgba(208, 170, 130, 0.8),
            inset 0 1px 3px rgba(255,255,255,0.5);
    }
}

.history-event small {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(166, 124, 82, 0.7);
    text-transform: uppercase;
}

.history-event strong {
    font-size: 18px;
    font-weight: 600;
    color: #e8c896;
}

.event-1 {
    left: 8%;
    top: 35%;
    animation: eventAppear 0.8s ease-out 0.2s forwards;
}

.event-2 {
    left: 50%;
    top: 58%;
    transform: translateX(-50%);
    animation: eventAppear 0.8s ease-out 0.4s forwards;
}

.event-3 {
    right: 8%;
    top: 35%;
    animation: eventAppear 0.8s ease-out 0.6s forwards;
}

@keyframes eventAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.history-compass {
    position: absolute;
    font-size: 80px;
    right: 8%;
    bottom: 8%;
    opacity: 0.25;
    animation: rotateCompass 6s linear infinite;
}

@keyframes rotateCompass {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =========================================================
   GEOGRAPHY SECTION
   ========================================================= */

.geography-section {
    background: linear-gradient(
        135deg,
        rgba(34, 139, 85, 0.05) 0%,
        rgba(46, 125, 70, 0.08) 100%
    );
}

.geography-section .interest-description {
    order: 2;
}

.geography-section .interest-visual {
    order: 1;
}

.geography-section h3 {
    color: #7ec980;
}

.geography-section .interest-tag {
    color: #4a8f5e;
}

.geography-visual {
    position: relative;
    width: 100%;
    height: 480px;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.grid-line-horizontal {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(126, 201, 128, 0.2),
        transparent
    );
}

.grid-line-horizontal:nth-child(1) { top: 20%; animation: gridPulse 2s ease-in-out infinite; }
.grid-line-horizontal:nth-child(2) { top: 40%; animation: gridPulse 2s ease-in-out 0.3s infinite; }
.grid-line-horizontal:nth-child(3) { top: 60%; animation: gridPulse 2s ease-in-out 0.6s infinite; }
.grid-line-horizontal:nth-child(4) { top: 80%; animation: gridPulse 2s ease-in-out 0.9s infinite; }

@keyframes gridPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.compass {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    color: rgba(126, 201, 128, 0.6);
    text-transform: uppercase;
    z-index: 10;
}

.compass span {
    font-size: 24px;
    color: #7ec980;
    animation: compassFloat 3s ease-in-out infinite;
}

@keyframes compassFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.geo-point {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(126, 201, 128, 0.4);
    animation: geoAppear 0.6s ease-out forwards;
}

.geo-point-1 { left: 15%; top: 25%; animation-delay: 0.2s; }
.geo-point-2 { left: 65%; top: 35%; animation-delay: 0.4s; }
.geo-point-3 { right: 20%; top: 60%; animation-delay: 0.6s; }
.geo-point-4 { left: 35%; bottom: 20%; animation-delay: 0.8s; }

@keyframes geoAppear {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.coordinate-label {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.1em;
    color: rgba(126, 201, 128, 0.5);
    text-transform: uppercase;
    white-space: nowrap;
}

/* =========================================================
   CODING SECTION
   ========================================================= */

.coding-section {
    background: linear-gradient(
        135deg,
        rgba(30, 30, 50, 0.05) 0%,
        rgba(40, 40, 70, 0.1) 100%
    );
}

.coding-section h3 {
    color: #64b5ff;
}

.coding-section .interest-tag {
    color: #4a9cff;
}

.terminal-window {
    width: 100%;
    max-width: 580px;
    background: #0f0f23;
    border: 1px solid rgba(100, 181, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(100, 181, 255, 0.1),
        inset 0 0 30px rgba(100, 181, 255, 0.02);
    animation: terminalGlow 0.8s ease-out;
}

@keyframes terminalGlow {
    from {
        opacity: 0;
        box-shadow:
            0 0 20px rgba(100, 181, 255, 0.05),
            inset 0 0 20px rgba(100, 181, 255, 0.01);
    }
    to {
        opacity: 1;
        box-shadow:
            0 0 40px rgba(100, 181, 255, 0.1),
            inset 0 0 30px rgba(100, 181, 255, 0.02);
    }
}

.terminal-top {
    height: 40px;
    background: linear-gradient(
        180deg,
        rgba(100, 181, 255, 0.08),
        rgba(100, 181, 255, 0.02)
    );
    border-bottom: 1px solid rgba(100, 181, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
}

.terminal-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(100, 181, 255, 0.5);
}

.terminal-top span:nth-child(1) { background: #ff6b6b; }
.terminal-top span:nth-child(2) { background: #ffd93d; }
.terminal-top span:nth-child(3) { background: #6bcf7f; }

.terminal-body {
    padding: 30px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.9;
    color: #64b5ff;
    background: #0f0f23;
}

.terminal-body p {
    margin: 0;
    color: #64b5ff;
    animation: codeScroll 4s ease-in-out infinite;
}

@keyframes codeScroll {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.indent {
    padding-left: 24px;
}

.keyword {
    color: #ff6b9d;
}

.function {
    color: #64b5ff;
}

.string {
    color: #c3e88d;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #64b5ff;
    margin-left: 4px;
    animation: blink 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes blink {
    0%, 49%, 100% { opacity: 1; }
    50%, 99% { opacity: 0; }
}

/* =========================================================
   SCIENCE SECTION
   ========================================================= */

.science-section {
    background: linear-gradient(
        135deg,
        rgba(106, 90, 205, 0.05) 0%,
        rgba(75, 0, 130, 0.08) 100%
    );
}

.science-section .interest-description {
    order: 2;
}

.science-section .interest-visual {
    order: 1;
}

.science-section h3 {
    color: #b4a6f1;
}

.science-section .interest-tag {
    color: #8b7ab8;
}

.orbital-system {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(180, 166, 241, 0.2);
    border-radius: 50%;
    animation: orbitalRotate linear infinite;
}

.orbit-1 {
    width: 280px;
    height: 140px;
    animation-duration: 12s;
    animation-direction: normal;
}

.orbit-2 {
    width: 380px;
    height: 160px;
    animation-duration: 18s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 480px;
    height: 200px;
    animation-duration: 24s;
    animation-direction: normal;
}

@keyframes orbitalRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.science-core {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(180, 166, 241, 0.6),
        rgba(106, 90, 205, 0.3)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    animation: corePulse 2s ease-in-out infinite;
    box-shadow:
        0 0 50px rgba(180, 166, 241, 0.3),
        inset 0 0 30px rgba(180, 166, 241, 0.2);
    z-index: 10;
}

@keyframes corePulse {
    0%, 100% {
        box-shadow:
            0 0 50px rgba(180, 166, 241, 0.3),
            inset 0 0 30px rgba(180, 166, 241, 0.2);
    }
    50% {
        box-shadow:
            0 0 80px rgba(180, 166, 241, 0.5),
            inset 0 0 50px rgba(180, 166, 241, 0.3);
    }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(180, 166, 241, 0.6);
    animation: particleFloat 6s ease-in-out infinite;
}

.particle-1 { left: 30%; top: 20%; animation-delay: 0s; }
.particle-2 { right: 25%; top: 35%; animation-delay: -2s; }
.particle-3 { left: 15%; bottom: 25%; animation-delay: -4s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(30px, -30px); opacity: 0.8; }
}

.formula {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 16px;
    color: rgba(180, 166, 241, 0.5);
    animation: formulaFloat 4s ease-in-out infinite;
}

.formula-1 { top: 15%; left: 10%; animation-delay: 0s; }
.formula-2 { bottom: 20%; right: 15%; animation-delay: -1.3s; }
.formula-3 { top: 45%; right: 8%; font-size: 28px; animation-delay: -2.6s; }

@keyframes formulaFloat {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-15px); opacity: 0.7; }
}

/* =========================================================
   LITERATURE SECTION
   ========================================================= */

.literature-section {
    background: linear-gradient(
        135deg,
        rgba(185, 100, 100, 0.05) 0%,
        rgba(139, 60, 60, 0.08) 100%
    );
}

.literature-section h3 {
    color: #e6a8ac;
}

.literature-section .interest-tag {
    color: #d77d89;
}

.book {
    position: relative;
    width: 450px;
    max-width: 95%;
    height: 320px;
    display: flex;
    transform: perspective(1200px) rotateY(-8deg);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.5),
        -20px 0 40px rgba(0,0,0,0.3);
    animation: bookHover 0.6s ease-out;
}

@keyframes bookHover {
    from {
        transform: perspective(1200px) rotateY(-15deg) rotateX(5deg);
        opacity: 0;
    }
    to {
        transform: perspective(1200px) rotateY(-8deg);
        opacity: 1;
    }
}

.book:hover {
    transform: perspective(1200px) rotateY(-5deg);
}

.book-page {
    position: relative;
    width: 50%;
    padding: 40px;
    background: linear-gradient(
        135deg,
        #e0d3c4,
        #d8cbb8
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow:
        inset 2px 0 4px rgba(0,0,0,0.1),
        inset -1px 0 2px rgba(255,255,255,0.5);
}

.book-page:first-child {
    border-radius: 2px 0 0 2px;
}

.book-page:last-child {
    border-radius: 0 2px 2px 0;
    background: linear-gradient(
        135deg,
        #ded0c1,
        #d5c8b9
    );
}

.book-quote {
    font-family: var(--font-display);
    font-size: 60px;
    line-height: 0.8;
    color: rgba(139, 60, 60, 0.2);
    animation: quoteAppear 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes quoteAppear {
    to {
        opacity: 1;
    }
}

.book-lines {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
}

.book-line {
    height: 2px;
    background: rgba(139, 60, 60, 0.3);
    width: 100%;
    animation: lineExpand 0.8s ease-out forwards;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.book-line:nth-child(1) { animation-delay: 0.4s; }
.book-line:nth-child(2) { animation-delay: 0.5s; width: 90%; }
.book-line:nth-child(3) { animation-delay: 0.6s; width: 85%; }

@keyframes lineExpand {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* =========================================================
   MUSIC SECTION
   ========================================================= */

.music-section {
    background: linear-gradient(
        135deg,
        rgba(80, 60, 40, 0.05) 0%,
        rgba(100, 75, 50, 0.08) 100%
    );
}

.music-section .interest-description {
    order: 2;
}

.music-section .interest-visual {
    order: 1;
}

.music-section h3 {
    color: #daa52f;
}

.music-section .interest-tag {
    color: #b0860d;
}

.waveform {
    width: 100%;
    max-width: 500px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 20px;
}

.waveform span {
    width: 5px;
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        #d09a43,
        #e8c06b
    );
    opacity: 0.8;
    animation:
        waveform 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow:
        0 0 8px rgba(208, 154, 67, 0.6);
}

.waveform span:nth-child(1) { height: 30px; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 70px; animation-delay: -0.15s; }
.waveform span:nth-child(3) { height: 110px; animation-delay: -0.3s; }
.waveform span:nth-child(4) { height: 60px; animation-delay: -0.15s; }
.waveform span:nth-child(5) { height: 150px; animation-delay: -0.45s; }
.waveform span:nth-child(6) { height: 95px; animation-delay: -0.3s; }
.waveform span:nth-child(7) { height: 120px; animation-delay: -0.4s; }
.waveform span:nth-child(8) { height: 80px; animation-delay: -0.2s; }
.waveform span:nth-child(9) { height: 140px; animation-delay: -0.5s; }
.waveform span:nth-child(10) { height: 50px; animation-delay: -0.1s; }
.waveform span:nth-child(11) { height: 100px; animation-delay: -0.35s; }
.waveform span:nth-child(12) { height: 75px; animation-delay: -0.25s; }
.waveform span:nth-child(13) { height: 130px; animation-delay: -0.4s; }
.waveform span:nth-child(14) { height: 65px; animation-delay: -0.15s; }
.waveform span:nth-child(15) { height: 115px; animation-delay: -0.35s; }
.waveform span:nth-child(16) { height: 85px; animation-delay: -0.25s; }
.waveform span:nth-child(17) { height: 130px; animation-delay: -0.32s; }
.waveform span:nth-child(18) { height: 60px; animation-delay: -0.2s; }
.waveform span:nth-child(19) { height: 105px; animation-delay: -0.38s; }
.waveform span:nth-child(20) { height: 35px; animation-delay: -0.1s; }
.waveform span:nth-child(21) { height: 70px; animation-delay: -0.3s; }

@keyframes waveform {
    0%,
    100% {
        transform: scaleY(0.55);
        opacity: 0.7;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.music-note {
    position: absolute;
    font-family: var(--font-display);
    color: rgba(224, 183, 99, 0.5);
    font-size: 50px;
    animation: musicFloat 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
}

.note-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.note-2 {
    top: 20%;
    right: 12%;
    animation-delay: -1.5s;
    font-size: 55px;
}

.note-3 {
    bottom: 12%;
    right: 20%;
    animation-delay: -3s;
    font-size: 45px;
}

@keyframes musicFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-25px) rotate(8deg);
        opacity: 0.7;
    }
}

@media (max-width: 768px) {

    /* Cursor */

    .cursor-dot,
    .cursor-outline {
        display: none;
    }


    /* Navigation */

    .navbar {
        height: 70px;

        padding: 0 5vw;
    }

    .nav-links {
        position: fixed;

        top: 70px;
        left: 0;

        width: 100%;

        padding: 30px 5vw;

        flex-direction: column;

        gap: 22px;

        background: rgba(10, 10, 10, 0.96);

        backdrop-filter: blur(20px);

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

        transform: translateY(-120%);

        transition: transform 0.4s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .menu-toggle {
        display: flex;
    }


    /* Hero */

    .hero {
        min-height: 100svh;

        padding:
            130px 7vw
            90px;
    }

    .hero h1 {
        font-size: clamp(55px, 17vw, 100px);
    }

    .hero h1 span:nth-child(2) {
        margin-left: 5vw;
    }

    .hero h1 span:nth-child(3) {
        margin-left: 0;
    }

    .hero-description {
        margin-left: 0;

        font-size: 14px;
    }

    .hero-buttons {
        margin-left: 0;

        flex-direction: column;

        align-items: flex-start;
    }

    .floating-card {
        display: none;
    }

    .scroll-indicator {
        left: 7vw;
    }


    /* Sections */

    .section {
        padding:
            100px 7vw;
    }

    .section-number {
        top: 35px;
        left: 7vw;
    }


    /* About */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-text {
        padding-top: 0;
    }

    .about-text .large-text {
        font-size: 21px;
    }


   /* Interests - Mobile only styles will be added here */
    


    /* Achievements */

    .achievements-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .trophy-display {
        order: -1;
    }

    .achievement-item {
        grid-template-columns: 75px 1fr 20px;

        gap: 12px;
    }


    /* Projects */

    .project-card {
        grid-template-columns: 40px 1fr;

        gap: 15px;

        padding: 35px 5px;
    }

    .project-info h3 {
        font-size: 32px;
    }

    .project-action {
        grid-column: 2;

        justify-content: flex-start;
    }


    /* Timeline */

    .timeline-line {
        left: 10px;
    }

    .timeline-item {
        display: block;

        padding-left: 40px;
    }

    .timeline-dot {
        left: 6px;
    }

    .timeline-date {
        text-align: left;

        margin-bottom: 10px;
    }

    .timeline-content {
        padding-left: 0;
    }


    /* Quote */

    .quote-section {
        min-height: 60vh;

        padding: 100px 7vw;
    }

    .quote-mark {
        font-size: 70px;
    }


    /* Contact */

    .contact-section {
        padding:
            100px 7vw;
    }

    .contact-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    /* Interests */

    .interest-section {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 70px clamp(25px, 5vw, 50px);
    }

    .geography-section .interest-description,
    .science-section .interest-visual,
    .music-section .interest-visual {
        order: initial;
    }

    .interest-description {
        order: 1;
        max-width: 100%;
    }

    .interest-visual {
        order: 2;
        min-height: 400px;
        width: 100%;
    }

    .history-section .interest-visual,
    .coding-section .interest-visual,
    .literature-section .interest-visual {
        min-height: 380px;
    }

    .interest-number {
        margin-bottom: 30px;
        font-size: 10px;
    }

    .interest-description h3 {
        font-size: clamp(40px, 12vw, 70px);
        margin-bottom: 20px;
    }

    .interest-description > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .interest-caption {
        margin-top: 25px;
        padding-top: 12px;
        font-size: 8px;
    }

    .history-line {
        left: 3%;
        right: 3%;
        top: 45%;
    }

    .history-event {
        gap: 4px;
    }

    .history-event small {
        font-size: 7px;
    }

    .history-event strong {
        font-size: 16px;
    }

    .event-1 {
        left: 5%;
        top: 40%;
    }

    .event-2 {
        left: 40%;
        top: 52%;
    }

    .event-3 {
        right: 5%;
        top: 40%;
    }

    .history-compass {
        font-size: 60px;
        right: 5%;
        bottom: 10%;
    }

    .geography-visual {
        min-height: 380px;
    }

    .compass {
        right: 15px;
        top: 15px;
        gap: 6px;
        font-size: 8px;
    }

    .compass span {
        font-size: 20px;
    }

    .terminal-window {
        width: 100%;
        max-width: 100%;
    }

    .terminal-top {
        height: 38px;
        gap: 6px;
        padding: 0 12px;
    }

    .terminal-top span {
        width: 8px;
        height: 8px;
    }

    .terminal-body {
        padding: 20px;
        font-size: 11px;
        line-height: 1.7;
    }

    .indent {
        padding-left: 18px;
    }

    .science-visual {
        min-height: 400px;
    }

    .orbit {
        border-color: rgba(166,149,240,0.15);
    }

    .orbit-1 {
        width: 200px;
        height: 90px;
    }

    .orbit-2 {
        width: 280px;
        height: 130px;
    }

    .orbit-3 {
        width: 360px;
        height: 160px;
    }

    .science-core {
        width: 85px;
        height: 85px;
        font-size: 38px;
    }

    .formula {
        font-size: 18px;
    }

    .formula-3 {
        font-size: 28px;
    }

    .book {
        width: 100%;
        max-width: 100%;
        height: 280px;
        transform: perspective(1000px) rotateY(-5deg);
    }

    .book:hover {
        transform: perspective(1000px) rotateY(-3deg);
    }

    .book-page {
        padding: 28px;
    }

    .book-lines {
        gap: 11px;
        margin-top: 15px;
    }

    .book-page span {
        font-size: 50px;
    }

    .music-visual {
        min-height: 320px;
    }

    .waveform {
        width: 100%;
        max-width: 100%;
        height: 200px;
        gap: 5px;
        padding: 0 15px;
    }

    .waveform span {
        width: 4px;
    }

    .music-note {
        font-size: 35px;
    }

    .note-1 {
        top: 8%;
        left: 10%;
        font-size: 30px;
    }

    .note-2 {
        top: 15%;
        right: 10%;
        font-size: 35px;
    }

    .note-3 {
        bottom: 10%;
        right: 15%;
        font-size: 28px;
    }


    /* Footer */

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        gap: 70px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 12px;
    }

}


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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}


