:root {
    /* =========================================
   START SECTION: Cool Green Palette
   ========================================= */
    --bg: #22577A;
    /* deep teal – main bg */
    --bg2: #1a4562;
    /* darker teal – loader / overlays */
    --bg3: #12354d;
    /* darkest teal – section alt bg */
    --surface: #2a6a8f;
    /* lighter teal – elevated card surface */
    --surface2: #337da5;
    /* hover / active surface */
    --border: #38A3A5;
    /* teal – subtle border */

/* =========================================
   END SECTION: Cool Green Palette
   ========================================= */

/* =========================================
   START SECTION: Accent palette
   ========================================= */
    --accent: #57CC99;
    /* emerald – primary accent / CTAs */
    --accent2: #38A3A5;
    /* teal – secondary accent / links */
    --accent3: #80ED99;
    /* light green – highlights */
    --orange: #57CC99;
    /* emerald – hover / emphasis */

/* =========================================
   END SECTION: Accent palette
   ========================================= */

/* =========================================
   START SECTION: Text
   ========================================= */
    --text: #C7F9CC;
    /* tea green – primary text */
    --text2: #a3e8b0;
    /* muted green – secondary text */
    --text3: #80d094;
    /* muted sage */

/* =========================================
   END SECTION: Text
   ========================================= */

/* =========================================
   START SECTION: Glow
   ========================================= */
    --glow: rgba(87, 204, 153, 0.25);
    --glow2: rgba(56, 163, 165, 0.2);
    --glow3: rgba(128, 237, 153, 0.2);

/* =========================================
   END SECTION: Glow
   ========================================= */

/* =========================================
   START SECTION: Legacy alias
   ========================================= */
    --cream: #C7F9CC;
}


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



body {
    background: #000000;
    background: -webkit-linear-gradient(to right, #434343, #000000);
    background: linear-gradient(to right, #434343, #000000);
    background-attachment: fixed;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   END SECTION: Legacy alias
   ========================================= */

/* =========================================
   START SECTION: LOADING SCREEN
   ========================================= */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000000;
    background: -webkit-linear-gradient(to right, #434343, #000000);
    background: linear-gradient(to right, #434343, #000000);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.8s ease;
}

#loader.hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.loader-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: 'General Sans', 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-transform: capitalize;
    font-weight: 500;
    width: 100%;
    max-width: 600px;
    padding: 0 2rem;
}

.loader-name {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: right;
    line-height: 1.2;
}

.loader-line-wrap {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.loader-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--text);
    transition: width 0.05s linear;
}

.loader-pct {
    flex: 0 0 3rem;
    text-align: left;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.5
    }
}

/* =========================================
   END SECTION: LOADING SCREEN
   ========================================= */

/* =========================================
   START SECTION: NAV TRANSITION SPLASH
   ========================================= */
.nav-splash {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-splash.active {
    pointer-events: all;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav-splash.closing {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.5s cubic-bezier(0.76, 0, 0.24, 1) 0.1s;
}

.nav-splash-inner {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-word {
    position: absolute;
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px) rotateX(40deg);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
}

.splash-word.active {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.splash-word.exit {
    opacity: 0;
    transform: translateY(-30px) rotateX(-40deg);
    transition: opacity 0.2s ease, transform 0.25s ease-in;
}

/* =========================================
   END SECTION: NAV TRANSITION SPLASH
   ========================================= */

/* =========================================
   START SECTION: NAV
   ========================================= */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.4s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
}

nav.hidden-nav {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* CIRCULAR FAB MENU (Desktop + Mobile overlay) */
.fab-nav-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    /* Initially hidden */
    transform: scale(0.5);
    opacity: 0;
    pointer-events: none;
}

.fab-nav-btn.visible {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.fab-nav-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.fab-nav-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.fab-nav-btn.open span:nth-child(2) {
    opacity: 0;
}

.fab-nav-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

nav.scrolled {
    padding: 0.7rem 2rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-logo span {
    color: var(--text3);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text2);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.2s;
    transform-origin: left;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--cream) !important;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    transition: background 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
    background: rgba(255, 183, 3, 0.15) !important;
    box-shadow: 0 0 12px var(--glow);
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text2);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
}

/* =========================================
   END SECTION: NAV
   ========================================= */

/* =========================================
   START SECTION: SECTIONS
   ========================================= */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================================
   END SECTION: SECTIONS
   ========================================= */

/* =========================================
   START SECTION: HERO
   ========================================= */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    position: relative;
    background: #000;
    /* Match body background */
}

.hero-photo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    /* Prevents stretching too wide */
    height: 90%;
    /* Prevents vertical clipping */
    object-fit: contain;
    /* Ensures the whole image is visible without cropping */
    object-position: center;
    /* Centers the focal point */
    z-index: 1;
}

.hero-overlay-v2 {
    position: absolute;
    inset: 0;
    /* Fades from transparent center into black edges */
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 20%, #000 80%);
    z-index: 2;
}

.hero-inner-v2 {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    padding: 1.5rem;
    margin: 0 auto;
}

.hero-card-v2 {
    position: relative;
    width: 100%;
    height: 70vh;
    /* Reduced height to move bottom content up into view */
    min-height: 480px;
    /* Reduced min-height perfectly fits most laptops */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 3rem 2rem 3rem;
    /* Added slightly more bottom padding */
}

.hero-top-v2 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-eyebrow-v2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(25px);
}

.hero-center-links-v2 {
    display: flex;
    gap: 2.5rem;
}

.hero-center-links-v2 a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.hero-center-links-v2 a:hover {
    opacity: 0.6;
}

.hero-pill-btn-v2 {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-pill-btn-v2:hover {
    background: #fff;
    color: #000;
}

.hero-bottom-v2 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.hero-name-group-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-iam-v2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-name-huge-v2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
}

.hero-name-huge-v2::after,
.hero-name-huge-v2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ff0000, #00ffff);
    left: 0;
    transform: scaleX(0);
    transition: transform 0.4s ease-out;
}

.hero-name-huge-v2::after {
    bottom: -15px;
    transform-origin: right;
}

.hero-name-huge-v2::before {
    top: -10px;
    transform-origin: left;
}

.hero-name-huge-v2:hover::after {
    transform: scaleX(1);
}

.hero-name-huge-v2:hover::before {
    transform: scaleX(0.4);
}

.hero-info-right-v2 {
    text-align: right;
    max-width: 400px;
    padding-bottom: 1rem;
}

.hero-title-small-v2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
}

.hero-tagline-small-v2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
}

.hero-tagline-small-v2 em {
    color: #fff;
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 900px) {
    .hero-card-v2 {
        padding: 1.5rem;
        height: auto;
        min-height: 80vh;
    }

    .hero-top-v2 {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-bottom-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        margin-top: 4rem;
    }

    .hero-info-right-v2 {
        text-align: left;
    }

    .hero-name-huge-v2 {
        font-size: clamp(3.5rem, 15vw, 6rem);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 183, 3, 0.55);
}

.btn-outline {
    background: rgba(1, 32, 48, 0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--accent2);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--glow2);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s 2s ease forwards;
}

.hero-scroll span {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1)
    }

    50% {
        opacity: 0.3;
        transform: scaleY(0.5)
    }
}

/* =========================================
   END SECTION: HERO
   ========================================= */

/* =========================================
   START SECTION: SECTION HEADERS
   ========================================= */
.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-title .dim {
    color: var(--text3);
}

/* =========================================
   END SECTION: SECTION HEADERS
   ========================================= */

/* =========================================
   START SECTION: ABOUT
   ========================================= */
#about {
    background: var(--bg2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
}

.about-avatar-wrap {
    position: relative;
}

.about-avatar {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.avatar-initials {
    font-family: 'Syne', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.15;
    user-select: none;
    letter-spacing: -0.05em;
}

.avatar-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.avatar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(255, 183, 3, 0.3);
}

.avatar-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.avatar-sub {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.about-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border-color: var(--accent);
    border-style: solid;
    opacity: 0.5;
}

.about-corner-tl {
    top: -8px;
    left: -8px;
    border-width: 2px 0 0 2px;
    border-radius: 4px 0 0 0;
}

.about-corner-br {
    bottom: -8px;
    right: -8px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 4px 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(255, 183, 3, 0.15);
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text3);
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.05em;
}

.about-text p {
    color: var(--text2);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-text p strong {
    color: var(--text);
    font-weight: 500;
}

.interest-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.pill {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    color: var(--text2);
    font-family: 'Space Mono', monospace;
    transition: all 0.2s;
}

.pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 183, 3, 0.07);
}

.scroll-velocity-wrapper {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Full bleed trick */
}

.parallax {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.scroller {
  display: flex;
  white-space: nowrap;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  color: var(--text2);
  opacity: 0.6;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.scroller span {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .scroller {
    font-size: 5rem;
    line-height: 5rem;
  }
}

/* =========================================
   END SECTION: ABOUT
   ========================================= */

/* =========================================
   START SECTION: SKILLS
   ========================================= */
#skills {
    background: var(--bg);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent2), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.skill-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(87, 204, 153, 0.08);
}

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

.skill-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.skill-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.skill-item {}

.skill-item-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.skill-item-name {
    font-size: 0.82rem;
    color: var(--text2);
}

.skill-item-pct {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--text3);
}

.skill-bar {
    height: 3px;
    background: var(--bg);
    border-radius: 3px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent2), var(--accent));
    width: 0%;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 6px rgba(33, 158, 188, 0.6);
}

/* =========================================
   END SECTION: SKILLS
   ========================================= */

/* =========================================
   START SECTION: PROJECTS
   ========================================= */
#projects {
    background: transparent;
}

.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text2);
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    color: var(--cream);
    background: rgba(255, 183, 3, 0.1);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.04), rgba(33, 158, 188, 0.04));
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 25px rgba(87, 204, 153, 0.08);
}

.project-card:hover::after {
    opacity: 1;
}

.project-card.hidden {
    display: none;
}

.project-number {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--text3);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.project-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
    line-height: 1.3;
}

.project-desc {
    font-size: 0.87rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.project-learning {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.project-learning-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.project-learning-text {
    font-size: 0.8rem;
    color: var(--text2);
    line-height: 1.5;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.25rem 0.65rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    color: var(--text3);
    letter-spacing: 0.05em;
}

.project-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--text2);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.project-link:hover {
    color: var(--accent2);
    border-color: var(--accent2);
    background: rgba(33, 158, 188, 0.08);
}

.project-link svg {
    width: 12px;
    height: 12px;
}

/* =========================================
   END SECTION: PROJECTS
   ========================================= */

/* =========================================
   START SECTION: EDUCATION
   ========================================= */
#education {
    background: transparent;
}

.edu-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    border-radius: 16px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.edu-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(87, 204, 153, 0.08);
}

.edu-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent), var(--accent2));
}

.edu-icon {
    width: 56px;
    height: 56px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.edu-degree {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.edu-school {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.edu-year {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: var(--text3);
    margin-bottom: 1.2rem;
    letter-spacing: 0.1em;
}

.edu-courses-title {
    font-size: 0.78rem;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: 'Space Mono', monospace;
    margin-bottom: 0.75rem;
}

.edu-courses {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.course-tag {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    color: var(--text2);
}

/* =========================================
   END SECTION: EDUCATION
   ========================================= */

/* =========================================
   START SECTION: ACHIEVEMENTS
   ========================================= */
#achievements {
    background: transparent;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.25s;
}

.achievement-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(87, 204, 153, 0.08);
}

.achievement-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ach-blue {
    background: rgba(33, 158, 188, 0.15);
    border: 1px solid rgba(33, 158, 188, 0.3);
}

.ach-purple {
    background: rgba(251, 133, 0, 0.12);
    border: 1px solid rgba(251, 133, 0, 0.25);
}

.ach-green {
    background: rgba(142, 202, 230, 0.08);
    border: 1px solid rgba(142, 202, 230, 0.2);
}

.achievement-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.achievement-sub {
    font-size: 0.8rem;
    color: var(--text2);
    line-height: 1.5;
}

.achievement-badge {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent2);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* =========================================
   END SECTION: ACHIEVEMENTS
   ========================================= */

/* =========================================
   START SECTION: CONTACT
   ========================================= */
#contact {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info p {
    font-size: 0.92rem;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s;
}

.contact-link:hover {
    border-color: var(--accent2);
    transform: translateX(6px);
    box-shadow: 0 0 16px var(--glow2);
}

.contact-link-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-link-text {
    font-size: 0.85rem;
}

.contact-link-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--text3);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.15rem;
}

.contact-link-val {
    color: var(--text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    border-radius: 16px;
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--text3);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent2);
    box-shadow: 0 0 0 3px rgba(33, 158, 188, 0.15);
}

.form-textarea {
    min-height: 130px;
}

.form-submit {
    background: var(--accent);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.3);
    align-self: flex-start;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 183, 3, 0.5);
}

/* =========================================
   END SECTION: CONTACT
   ========================================= */

/* =========================================
   START SECTION: FOOTER
   ========================================= */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: var(--text3);
    letter-spacing: 0.05em;
}

.footer-copy span {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--text3);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent2);
}

/* =========================================
   END SECTION: FOOTER
   ========================================= */

/* =========================================
   START SECTION: ANIMATIONS
   ========================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* =========================================
   END SECTION: ANIMATIONS
   ========================================= */

/* =========================================
   START SECTION: RESUME BUTTON
   ========================================= */
.resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--accent2);
    border-radius: 8px;
    color: var(--cream);
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 1rem;
    background: rgba(33, 158, 188, 0.1);
}

.resume-btn:hover {
    background: rgba(33, 158, 188, 0.22);
    transform: translateY(-2px);
    box-shadow: 0 0 14px var(--glow2);
}

/* =========================================
   END SECTION: RESUME BUTTON
   ========================================= */

/* =========================================
   START SECTION: BLOG TEASER
   ========================================= */
#blog {
    background: transparent;
    border-top: 1px solid var(--border);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.25s;
    cursor: pointer;
}

.blog-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(87, 204, 153, 0.08);
}

.blog-date {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--text3);
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--text);
}

.blog-excerpt {
    font-size: 0.83rem;
    color: var(--text2);
    line-height: 1.6;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent2);
    letter-spacing: 0.1em;
    margin-top: 1rem;
    text-decoration: none;
}

.blog-read-more:hover {
    color: var(--cream);
}

/* =========================================
   END SECTION: BLOG TEASER
   ========================================= */

/* =========================================
   START SECTION: RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.25rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 4rem 1.25rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-avatar-wrap {
        max-width: 280px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .edu-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

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

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   END SECTION: RESPONSIVE
   ========================================= */

/* =========================================
   START SECTION: SCROLL TO TOP
   ========================================= */
#scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    color: var(--text2);
    font-size: 1.1rem;
}

#scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

#scroll-top:hover {
    border-color: var(--accent2);
    color: var(--accent2);
    box-shadow: 0 0 12px var(--glow2);
}

/* =========================================
   END SECTION: SCROLL TO TOP
   ========================================= */

/* =========================================
   START SECTION: TERMINAL TYPING
   ========================================= */
.typed-cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* Noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Active nav indicator */
.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    transform: scaleX(1);
}

/* Ensure about and skills sections are transparent */
#about,
#skills {
    background: transparent !important;
}

/* From Uiverse.io by Praashoo7 */
.main {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.6);
    /* Scale it down a bit to fit beside the loader text better */
}

.loaders,
.loadersB {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: absolute;
    width: 1.15em;
    height: 13em;
    border-radius: 50px;
    background: #e0e0e0;
}

.loader:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.15em;
    height: 5em;
    background: #e0e0e0;
    border-radius: 50px;
    border: 1px solid #e2e2e2;
    box-shadow:
        inset 5px 5px 15px #d3d2d2ab,
        inset -5px -5px 15px #e9e9e9ab;
    mask-image: linear-gradient(to bottom,
            black calc(100% - 48px),
            transparent 100%);
}

.loader::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1.15em;
    height: 4.5em;
    background: #e0e0e0;
    border-radius: 50px;
    border: 1px solid #e2e2e2;
    box-shadow:
        inset 5px 5px 15px #d3d2d2ab,
        inset -5px -5px 15px #e9e9e9ab;
    mask-image: linear-gradient(to top,
            black calc(100% - 48px),
            transparent 100%);
}

.loaderA {
    position: absolute;
    width: 1.15em;
    height: 13em;
    border-radius: 50px;
    background: transparent;
}

.ball0,
.ball1,
.ball2,
.ball3,
.ball4,
.ball5,
.ball6,
.ball7,
.ball8,
.ball9 {
    width: 1.15em;
    height: 1.15em;
    box-shadow:
        rgba(0, 0, 0, 0.17) 0px -10px 10px 0px inset,
        rgba(0, 0, 0, 0.15) 0px -15px 15px 0px inset,
        rgba(0, 0, 0, 0.1) 0px -40px 20px 0px inset,
        rgba(0, 0, 0, 0.06) 0px 2px 1px,
        rgba(0, 0, 0, 0.09) 0px 4px 2px,
        rgba(0, 0, 0, 0.09) 0px 8px 4px,
        rgba(0, 0, 0, 0.09) 0px 16px 8px,
        rgba(0, 0, 0, 0.09) 0px 32px 16px,
        0px -1px 15px -8px rgba(0, 0, 0, 0.09);
    border-radius: 50%;
    transition: transform 800ms cubic-bezier(1, -0.4, 0, 1.4);
    background-color: rgb(232, 232, 232, 8);
    animation: 3.63s move ease-in-out infinite;
}

.loader:nth-child(2) {
    transform: rotate(20deg);
}

.loader:nth-child(3) {
    transform: rotate(40deg);
}

.loader:nth-child(4) {
    transform: rotate(60deg);
}

.loader:nth-child(5) {
    transform: rotate(80deg);
}

.loader:nth-child(6) {
    transform: rotate(100deg);
}

.loader:nth-child(7) {
    transform: rotate(120deg);
}

.loader:nth-child(8) {
    transform: rotate(140deg);
}

.loader:nth-child(9) {
    transform: rotate(160deg);
}

.loaderA:nth-child(2) {
    transform: rotate(20deg);
}

.loaderA:nth-child(3) {
    transform: rotate(40deg);
}

.loaderA:nth-child(4) {
    transform: rotate(60deg);
}

.loaderA:nth-child(5) {
    transform: rotate(80deg);
}

.loaderA:nth-child(6) {
    transform: rotate(100deg);
}

.loaderA:nth-child(7) {
    transform: rotate(120deg);
}

.loaderA:nth-child(8) {
    transform: rotate(140deg);
}

.loaderA:nth-child(9) {
    transform: rotate(160deg);
}

.ball1 {
    animation-delay: 0.2s;
}

.ball2 {
    animation-delay: 0.4s;
}

.ball3 {
    animation-delay: 0.6s;
}

.ball4 {
    animation-delay: 0.8s;
}

.ball5 {
    animation-delay: 1s;
}

.ball6 {
    animation-delay: 1.2s;
}

.ball7 {
    animation-delay: 1.4s;
}

.ball8 {
    animation-delay: 1.6s;
}

.ball9 {
    animation-delay: 1.8s;
}

@keyframes move {
    0% {
        transform: translateY(0em);
    }

    50% {
        transform: translateY(12em);
    }

    100% {
        transform: translateY(0em);
    }
}

/* =========================================
   END SECTION: TERMINAL TYPING
   ========================================= */
