/* ==========================================================================
   STYLING & THEME VARIABLES
   Theme: Programming + Robotics + AI + Electronics (Dark Sci-Fi HUD)
   ========================================================================== */

:root {
    --bg-dark: #070a0f;
    --card-bg: rgba(15, 23, 42, 0.75);
    --border-color: rgba(0, 243, 255, 0.2);
    --border-glow: rgba(0, 243, 255, 0.4);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --accent-cyan: #00f3ff;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --font-mono: 'Courier New', Courier, monospace;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Canvas for Particles and Grid */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Common Layout Containers */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 1.5px;
    font-family: var(--font-mono);
}

.subsection-title {
    font-size: 1.4rem;
    color: var(--accent-cyan);
    margin: 40px 0 20px 0;
    font-family: var(--font-mono);
}

.hud-accent {
    color: var(--accent-cyan);
}

/* Glassmorphism Futuristic Cards */
.hud-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition);
    position: relative;
}

.hud-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.btn-primary:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-muted);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    color: #fff;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.logo-bracket {
    color: var(--accent-cyan);
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--font-mono);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

/* Hero / Home Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-description {
    color: var(--text-main);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Terminal Component */
.terminal-window {
    background: rgba(5, 8, 15, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    font-family: var(--font-mono);
    overflow: hidden;
}

.terminal-header {
    background: rgba(15, 23, 42, 0.9);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-buttons {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.green { background: #10b981; }

.terminal-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 20px;
    min-height: 220px;
    font-size: 0.9rem;
    color: var(--accent-cyan);
    line-height: 1.8;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--accent-cyan);
    margin-left: 4px;
    animation: blink 1s infinite;
}

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.profile-container {
    text-align: center;
    margin-bottom: 20px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    object-fit: cover;
}

.info-list {
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.info-item {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.info-label {
    color: var(--accent-cyan);
    font-weight: bold;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.interest-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
}

.interest-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-cyan);
}

.interest-card .icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.soft-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.soft-skill-card {
    background: rgba(15, 23, 42, 0.4);
    border-left: 3px solid var(--accent-purple);
    padding: 15px;
    border-radius: 0 6px 6px 0;
}

.soft-skill-card h4 {
    color: #fff;
    margin-bottom: 5px;
}

/* Skills & Projects Section */
.skills-container {
    margin-top: 20px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    margin-bottom: 6px;
}

.progress-bar-bg {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: width 1.5s ease-out;
}

.learning-areas, .tools-section {
    margin-top: 30px;
}

.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.hud-badge {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid var(--accent-purple);
    color: #ddd;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.tool-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    font-family: var(--font-mono);
    color: var(--accent-cyan);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.project-img:hover {
    opacity: 0.85;
}

.project-body {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-title {
    font-size: 1.3rem;
    color: #fff;
    font-family: var(--font-mono);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
}

.tag {
    font-size: 0.75rem;
    background: rgba(0, 243, 255, 0.1);
    color: var(--accent-cyan);
    padding: 2px 8px;
    border-radius: 3px;
    font-family: var(--font-mono);
}

.project-description {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.video-container {
    margin: 15px 0;
}

.video-container video {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: #000;
}

.project-video video {
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.project-video-portrait video {
    width: min(100%, 245px);
    aspect-ratio: 9 / 16;
    margin-inline: auto;
}

.editable-details {
    margin-top: auto;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 4px;
    border-left: 2px solid var(--accent-cyan);
}

.detail-group {
    margin-bottom: 5px;
}

/* Career Roadmap */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.goal-header {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

.goal-card ul {
    list-style-type: none;
    padding-left: 5px;
}

.goal-card li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.goal-card li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 6px;
}

.step-marker {
    font-family: var(--font-mono);
    font-weight: bold;
    color: var(--accent-cyan);
    min-width: 70px;
    font-size: 0.85rem;
}

.highlight-step {
    border-color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.05);
}

.highlight-step .step-marker {
    color: #fff;
    background: var(--accent-cyan);
    color: #000;
    padding: 2px 6px;
    border-radius: 3px;
    text-align: center;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 20px var(--accent-cyan);
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Floating Audio Controller */
.audio-controller {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.music-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-mono);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.volume-indicator {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-cyan);
    border-left: 1px solid var(--border-color);
    padding-left: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.copyright {
    margin-top: 5px;
    font-family: var(--font-mono);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

@media (max-width: 768px) {
    .hero-container, .about-grid, .soft-skills-grid {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 10, 15, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ==========================================================================
   PORT-FOLIO DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-dark: #080d18;
    --card-bg: rgba(15, 24, 41, 0.82);
    --border-color: rgba(128, 169, 220, 0.17);
    --border-glow: rgba(91, 225, 204, 0.48);
    --text-main: #e8edf6;
    --text-muted: #8996aa;
    --accent-cyan: #70e7ce;
    --accent-blue: #71a9ff;
    --accent-purple: #a18aff;
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    scroll-padding-top: 92px;
    scrollbar-color: #293750 #080d18;
}

body {
    background:
        radial-gradient(ellipse at 78% 5%, rgba(43, 79, 132, .2), transparent 36%),
        radial-gradient(ellipse at 12% 42%, rgba(30, 108, 105, .1), transparent 31%),
        var(--bg-dark);
    color: var(--text-main);
    line-height: 1.72;
    letter-spacing: .005em;
}

body::before {
    content: "";
    position: fixed;
    z-index: -2;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(156, 182, 214, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(156, 182, 214, .025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

#bg-canvas {
    opacity: .54;
}

.container {
    max-width: 1200px;
    padding-inline: 30px;
}

section {
    padding: 112px 0;
    border-color: rgba(157, 181, 213, .08);
    scroll-margin-top: 72px;
}

.section-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 42px;
    color: #f5f7fb;
    font-family: var(--font-sans);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -.045em;
}

.section-title::after {
    content: "";
    height: 1px;
    flex: 1;
    margin-left: 8px;
    background: linear-gradient(90deg, rgba(112, 231, 206, .36), transparent);
}

.hud-accent {
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    font-size: .83em;
}

.subsection-title {
    margin: 48px 0 20px;
    color: #e5ecf5;
    font-family: var(--font-sans);
    font-size: 1.14rem;
    letter-spacing: -.025em;
}

.hud-card {
    border: 1px solid var(--border-color);
    border-radius: 17px;
    background:
        linear-gradient(145deg, rgba(25, 37, 59, .78), rgba(12, 19, 33, .88));
    box-shadow: 0 22px 70px rgba(0, 0, 0, .2), inset 0 1px rgba(255, 255, 255, .035);
    backdrop-filter: blur(16px);
}

.hud-card:hover {
    border-color: rgba(112, 231, 206, .34);
    box-shadow: 0 24px 76px rgba(0, 0, 0, .26), 0 0 28px rgba(112, 231, 206, .045);
}

.navbar {
    border-bottom: 1px solid rgba(147, 173, 211, .12);
    background: rgba(8, 13, 24, .78);
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1260px;
    min-height: 76px;
    padding: 10px 30px;
}

.logo {
    display: grid;
    grid-template-columns: 40px auto;
    grid-template-rows: 23px 14px;
    column-gap: 10px;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1;
}

.port-mark {
    grid-column: 1;
    grid-row: 1 / 3;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(112, 231, 206, .4);
    border-radius: 12px;
    color: var(--accent-cyan);
    background: rgba(112, 231, 206, .08);
    box-shadow: 0 0 24px rgba(112, 231, 206, .09);
}

.port-mark svg {
    width: 27px;
    height: 27px;
}

.logo-word {
    grid-column: 2;
    grid-row: 1;
    letter-spacing: .07em;
    font-size: .9rem;
}

.logo-word span,
.hero-brand span {
    color: var(--accent-cyan);
}

.logo-caption {
    grid-column: 2;
    grid-row: 2;
    color: #78869a;
    font-family: var(--font-mono);
    font-size: .52rem;
    letter-spacing: .09em;
}

.nav-links {
    align-items: center;
    gap: clamp(17px, 2.4vw, 33px);
}

.nav-link {
    color: #a0adc0;
    font-family: var(--font-sans);
    font-size: .76rem;
    font-weight: 650;
    letter-spacing: .075em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
}

.nav-link.active::after {
    bottom: -10px;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 14px rgba(112, 231, 206, .55);
}

.hamburger {
    padding: 8px;
}

.hamburger span {
    border-radius: 5px;
}

.hero-section {
    min-height: min(840px, 100svh);
    padding: 142px 0 100px;
    border-bottom: 1px solid rgba(157, 181, 213, .08);
}

.hero-container {
    min-width: 0;
    max-width: 1200px;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: clamp(36px, 7vw, 96px);
}

.hero-content {
    min-width: 0;
}

.status-badge {
    gap: 9px;
    margin-bottom: 25px;
    border: 1px solid rgba(112, 231, 206, .22);
    border-radius: 8px;
    background: rgba(112, 231, 206, .055);
    color: #a8f5e4;
    padding: 7px 11px;
    font-size: .65rem;
    letter-spacing: .09em;
}

.status-divider {
    color: rgba(112, 231, 206, .45);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 12px var(--accent-cyan);
}

.hero-kicker,
.eyebrow {
    margin-bottom: 12px;
    color: #8d9ab0;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .16em;
}

.hero-title {
    margin-bottom: 14px;
    color: #eff3fa;
    font-size: clamp(1.75rem, 3.4vw, 2.8rem);
    font-weight: 540;
    letter-spacing: -.055em;
    line-height: 1.13;
}

.hero-brand {
    display: inline-block;
    margin: 0 0 22px -.065em;
    padding-right: .18em;
    background: linear-gradient(115deg, #f6f9ff 9%, #9eadd1 55%, #70e7ce 100%);
    background-clip: text;
    color: transparent;
    font-size: clamp(4.5rem, 9vw, 7.2rem);
    font-weight: 780;
    letter-spacing: -.07em;
    line-height: .9;
    filter: drop-shadow(0 7px 35px rgba(112, 231, 206, .1));
    white-space: nowrap;
    overflow: visible;
}

.hero-subtitle {
    margin-bottom: 19px;
    color: #b5c0d0;
    font-size: clamp(1.03rem, 2vw, 1.3rem);
    font-weight: 500;
    letter-spacing: -.025em;
}

.highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 24px rgba(112, 231, 206, .23);
}

.hero-description {
    max-width: 535px;
    margin-bottom: 27px;
    color: #97a4b8;
    font-size: .99rem;
    line-height: 1.85;
}

.hero-buttons {
    flex-wrap: wrap;
    gap: 11px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    border-radius: 9px;
    padding: 11px 17px;
    font-family: var(--font-sans);
    font-size: .83rem;
    font-weight: 650;
    letter-spacing: .01em;
}

.btn-primary {
    border: 1px solid rgba(112, 231, 206, .7);
    background: var(--accent-cyan);
    color: #08221f;
    box-shadow: 0 8px 28px rgba(112, 231, 206, .13);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #9af4df;
    color: #08221f;
    box-shadow: 0 12px 34px rgba(112, 231, 206, .23);
}

.btn-secondary {
    border: 1px solid rgba(156, 177, 207, .2);
    color: #ccd5e3;
}

.btn-secondary:hover {
    border-color: rgba(112, 231, 206, .4);
    color: #fff;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    color: #7e8ba0;
    font-family: var(--font-mono);
    font-size: .57rem;
    letter-spacing: .08em;
}

.hero-meta b {
    margin-right: 4px;
    color: var(--accent-cyan);
    font-size: .76rem;
}

.hero-meta-line {
    width: 32px;
    height: 1px;
    background: rgba(133, 157, 190, .3);
}

.terminal-window {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(120, 160, 208, .24);
    border-radius: 16px;
    background: linear-gradient(140deg, rgba(16, 26, 43, .96), rgba(8, 14, 26, .97));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .36), 0 0 50px rgba(84, 148, 192, .06);
    transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
    transition: transform .5s ease, border-color .4s ease;
}

.terminal-window::after {
    position: absolute;
    z-index: -1;
    right: -70px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(112, 231, 206, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(112, 231, 206, .018), 0 0 0 43px rgba(112, 231, 206, .014);
    content: "";
}

.terminal-window:hover {
    border-color: rgba(112, 231, 206, .43);
    transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-4px);
}

.terminal-header {
    min-height: 47px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(140, 169, 208, .12);
    background: rgba(26, 38, 59, .56);
}

.terminal-buttons {
    margin-right: 12px;
}

.dot {
    width: 8px;
    height: 8px;
}

.terminal-title {
    flex: 1;
    color: #a5b1c4;
    font-size: .72rem;
}

.terminal-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9ee4cf;
    font-family: var(--font-mono);
    font-size: .57rem;
    letter-spacing: .08em;
}

.terminal-live i,
.connected-indicator i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 11px rgba(112, 231, 206, .75);
}

.terminal-body {
    min-height: 280px;
    padding: 24px;
    color: #8ee6d0;
    font-size: .76rem;
    line-height: 2;
}

.terminal-body div {
    position: relative;
    z-index: 1;
}

.cursor {
    width: 7px;
    height: 14px;
    margin-left: 1px;
    background: var(--accent-cyan);
}

.about-grid {
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
    gap: 22px;
}

.info-card,
.bio-card {
    padding: clamp(22px, 3vw, 34px);
}

.profile-container {
    margin-bottom: 24px;
}

.profile-img {
    width: 136px;
    height: 136px;
    border: 2px solid rgba(112, 231, 206, .7);
    box-shadow: 0 0 0 8px rgba(112, 231, 206, .045), 0 12px 35px rgba(0, 0, 0, .25);
}

.info-list {
    color: #cbd4e1;
    font-family: var(--font-sans);
    font-size: .83rem;
}

.info-item {
    margin-bottom: 0;
    padding: 9px 0;
    border-bottom: 1px solid rgba(156, 177, 207, .1);
    overflow-wrap: anywhere;
}

.info-label {
    color: #8e9db2;
    font-size: .65rem;
    letter-spacing: .07em;
}

.bio-card h3 {
    margin-bottom: 17px;
    color: #edf2f9;
    font-size: 1.2rem;
    letter-spacing: -.025em;
}

.bio-card p {
    margin-bottom: 15px;
    color: #a8b4c5;
    font-size: .9rem;
    line-height: 1.8;
}

.interest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.interest-card {
    min-height: 154px;
    padding: 21px 15px 17px;
    border: 1px solid rgba(131, 161, 204, .14);
    border-radius: 14px;
    background: rgba(16, 26, 43, .7);
    text-align: left;
    transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.interest-card:hover {
    transform: translateY(-4px);
    border-color: rgba(112, 231, 206, .37);
    background: rgba(23, 39, 56, .92);
}

.interest-card .icon {
    display: grid;
    width: 39px;
    height: 39px;
    margin: 0 0 15px;
    place-items: center;
    border: 1px solid rgba(112, 231, 206, .22);
    border-radius: 11px;
    background: rgba(112, 231, 206, .065);
    color: var(--accent-cyan);
}

.interest-card .icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.interest-card h4 {
    margin-bottom: 2px;
    color: #e4eaf2;
    font-size: .88rem;
    font-weight: 650;
}

.interest-card > span {
    color: #73839b;
    font-family: var(--font-mono);
    font-size: .56rem;
    letter-spacing: .09em;
}

.soft-skills-grid {
    gap: 13px;
}

.soft-skill-card {
    border: 1px solid rgba(131, 161, 204, .11);
    border-left: 2px solid var(--accent-purple);
    border-radius: 0 12px 12px 0;
    background: rgba(16, 26, 43, .52);
    padding: 18px 19px;
}

.soft-skill-card h4 {
    margin-bottom: 5px;
    color: #e0e7f2;
    font-size: .9rem;
}

.soft-skill-card p {
    color: #929fb2;
    font-size: .82rem;
    line-height: 1.7;
}

.reveal-up {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .55s ease, transform .55s ease;
}

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

.skills-projects-section {
    position: relative;
}

.skills-dashboard {
    overflow: hidden;
    padding: clamp(22px, 4vw, 42px);
}

.dashboard-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.dashboard-heading .eyebrow {
    margin-bottom: 6px;
    color: var(--accent-cyan);
    font-size: .6rem;
}

.dashboard-heading h3 {
    color: #f0f4fa;
    font-size: clamp(1.35rem, 2.7vw, 1.8rem);
    letter-spacing: -.045em;
}

.dashboard-intro {
    margin-top: 5px;
    color: #94a1b4;
    font-size: .86rem;
}

.skill-count {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border: 1px solid rgba(133, 164, 203, .14);
    border-radius: 10px;
    background: rgba(6, 12, 23, .3);
}

.skill-count b {
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    font-size: 1.3rem;
}

.skill-count span {
    color: #8996aa;
    font-family: var(--font-mono);
    font-size: .49rem;
    line-height: 1.35;
    letter-spacing: .07em;
}

.skill-explorer {
    display: grid;
    grid-template-columns: minmax(310px, 1fr) minmax(300px, .96fr);
    gap: clamp(18px, 3vw, 33px);
}

.skill-orbit-panel,
.skill-detail-panel {
    min-width: 0;
    border: 1px solid rgba(132, 163, 205, .13);
    border-radius: 15px;
    background: rgba(7, 13, 25, .39);
}

.skill-orbit-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 440px;
    padding: 18px 14px 15px;
}

.orbit-label {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 0 8px;
    color: #75869d;
    font-family: var(--font-mono);
    font-size: .54rem;
    letter-spacing: .1em;
}

.orbit-label span:last-child {
    color: #6ddbc4;
}

.orbit-scene {
    position: relative;
    width: min(100%, 400px);
    aspect-ratio: 1;
    margin: 1px auto 0;
    overflow: hidden;
    outline: none;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.orbit-scene:focus-visible {
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(112, 231, 206, .32);
}

.orbit-shell {
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(112, 231, 206, .12);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-shell-outer {
    inset: 13%;
    border-color: rgba(104, 159, 220, .25);
    border-style: dashed;
    animation: port-orbit 38s linear infinite;
}

.orbit-shell-outer::before,
.orbit-shell-outer::after {
    position: absolute;
    width: 7px;
    height: 7px;
    border: 1px solid rgba(112, 231, 206, .8);
    border-radius: 50%;
    background: #142d37;
    box-shadow: 0 0 12px rgba(112, 231, 206, .4);
    content: "";
}

.orbit-shell-outer::before {
    top: 12%;
    right: 11%;
}

.orbit-shell-outer::after {
    bottom: 14%;
    left: 9%;
}

.orbit-shell-inner {
    inset: 27%;
    border-color: rgba(115, 151, 204, .1);
    box-shadow: 0 0 60px rgba(81, 167, 189, .045), inset 0 0 36px rgba(81, 167, 189, .035);
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 96px;
    height: 96px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 1px solid rgba(112, 231, 206, .3);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(39, 79, 83, .5), rgba(10, 18, 32, .95) 70%);
    box-shadow: 0 0 40px rgba(112, 231, 206, .09), inset 0 0 20px rgba(112, 231, 206, .055);
    color: var(--accent-cyan);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-center svg {
    width: 36px;
    height: 36px;
}

.orbit-center span {
    color: #93a8b5;
    font-family: var(--font-mono);
    font-size: .47rem;
    line-height: 1.35;
    letter-spacing: .12em;
    text-align: center;
}

.skill-nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.skill-node {
    position: absolute;
    display: flex;
    width: 86px;
    min-height: 83px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(134, 166, 208, .2);
    border-radius: 15px;
    background: linear-gradient(150deg, rgba(27, 40, 62, .97), rgba(12, 20, 35, .97));
    box-shadow: 0 10px 25px rgba(0, 0, 0, .28);
    color: #e4eaf3;
    cursor: pointer;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(var(--node-depth, .9));
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.skill-node.is-selected,
.skill-node:focus-visible {
    z-index: 20 !important;
    border-color: rgba(112, 231, 206, .75);
    background: linear-gradient(150deg, rgba(30, 64, 69, .98), rgba(14, 27, 42, .98));
    box-shadow: 0 0 0 3px rgba(112, 231, 206, .07), 0 10px 30px rgba(0, 0, 0, .4), 0 0 28px rgba(112, 231, 206, .1);
}

.node-logo {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #70e7ce;
}

.node-logo svg {
    display: block;
    width: 31px;
    height: 31px;
}

.skill-node:nth-child(2) .node-logo {
    color: #f3d65a;
}

.skill-node:nth-child(3) .node-logo {
    color: #ff8655;
}

.skill-node:nth-child(4) .node-logo {
    color: #779df9;
}

.skill-node:nth-child(5) .node-logo {
    color: #b49cff;
}

.node-name {
    font-family: var(--font-mono);
    font-size: .59rem;
    letter-spacing: .015em;
}

.orbit-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: -1px;
    color: #7f8ca0;
    font-size: .65rem;
}

.hint-pointer {
    position: relative;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(112, 231, 206, .7);
    border-radius: 50%;
}

.hint-pointer::after {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-cyan);
    content: "";
}

.skill-detail-panel {
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 3vw, 30px);
}

.skill-detail-top,
.skill-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.detail-label,
.connected-indicator,
.skill-kind,
.knowledge-copy > span,
.skill-detail-footer {
    font-family: var(--font-mono);
    font-size: .55rem;
    letter-spacing: .095em;
}

.detail-label,
.knowledge-copy > span {
    color: #8291a7;
}

.connected-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8fe4cd;
    font-size: .5rem;
}

.connected-indicator i {
    width: 5px;
    height: 5px;
}

.skill-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 23px;
}

.selected-skill-logo {
    display: grid;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(112, 231, 206, .22);
    border-radius: 15px;
    background: rgba(112, 231, 206, .07);
    color: var(--accent-cyan);
}

.selected-skill-logo svg {
    width: 35px;
    height: 35px;
}

.skill-kind {
    margin-bottom: 2px;
    color: #8897ad;
    font-size: .5rem;
}

.skill-title-row h4 {
    color: #f1f5fa;
    font-size: 1.43rem;
    font-weight: 680;
    letter-spacing: -.045em;
    line-height: 1.25;
}

.knowledge-content {
    display: flex;
    align-items: center;
    gap: 19px;
    margin: 27px 0 24px;
}

.knowledge-ring {
    position: relative;
    width: 116px;
    height: 116px;
    flex: 0 0 116px;
}

.knowledge-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.knowledge-ring circle {
    fill: none;
    stroke-width: 7;
}

.ring-track {
    stroke: rgba(137, 164, 199, .14);
}

.ring-value {
    stroke: var(--accent-cyan);
    stroke-dasharray: 320.44;
    stroke-dashoffset: 70.5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 5px rgba(112, 231, 206, .32));
    transition: stroke-dashoffset .8s cubic-bezier(.2, .75, .22, 1);
}

.knowledge-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

.knowledge-value strong {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -.08em;
}

.knowledge-value span {
    align-self: center;
    margin: 5px 0 0 2px;
    color: #9eb5b5;
    font-size: .8rem;
}

.knowledge-copy {
    flex: 1;
}

.knowledge-copy p {
    margin-top: 8px;
    color: #a0adbf;
    font-size: .83rem;
    line-height: 1.7;
}

.skill-meter {
    overflow: hidden;
    width: 100%;
    height: 5px;
    border-radius: 9px;
    background: rgba(157, 177, 204, .11);
}

.skill-meter span {
    display: block;
    width: 78%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #56b8cf, var(--accent-cyan));
    box-shadow: 0 0 13px rgba(112, 231, 206, .25);
    transition: width .8s cubic-bezier(.2, .75, .22, 1);
}

.skill-detail-footer {
    margin-top: 9px;
    color: #7f8ca0;
    font-size: .48rem;
}

.skill-detail-footer span:last-child {
    color: #b2c4c6;
}

.skill-switcher {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    margin-top: auto;
    padding: 22px 0 1px;
    scrollbar-width: thin;
    scrollbar-color: rgba(112, 231, 206, .23) transparent;
}

.skill-tab {
    display: flex;
    min-width: 76px;
    flex: 1 0 76px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(131, 161, 204, .13);
    border-radius: 9px;
    background: rgba(18, 28, 45, .76);
    color: #a2aec0;
    cursor: pointer;
    padding: 8px 5px 6px;
    font-size: .58rem;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.skill-tab-logo {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: #85dcca;
}

.skill-tab-logo svg {
    display: block;
    width: 20px;
    height: 20px;
}

.skill-tab-percent {
    color: #75859b;
    font-family: var(--font-mono);
    font-size: .5rem;
}

.skill-tab:hover,
.skill-tab.is-selected {
    border-color: rgba(112, 231, 206, .45);
    background: rgba(112, 231, 206, .08);
    color: #e0f3ee;
}

.skill-tab.is-selected .skill-tab-percent {
    color: var(--accent-cyan);
}

.learning-areas,
.tools-section {
    margin-top: 28px;
}

.learning-areas h4,
.tools-section h4 {
    color: #ccd5e1;
    font-size: .86rem;
    font-weight: 620;
}

.badge-group {
    gap: 8px;
    margin-top: 11px;
}

.hud-badge {
    border: 1px solid rgba(161, 138, 255, .25);
    border-radius: 20px;
    background: rgba(161, 138, 255, .07);
    color: #c4baff;
    padding: 6px 12px;
    font-family: var(--font-sans);
    font-size: .69rem;
}

.tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 9px;
    margin-top: 10px;
}

.tool-card {
    border: 1px solid rgba(131, 161, 204, .13);
    border-radius: 9px;
    background: rgba(5, 11, 21, .35);
    color: #b6c3d4;
    padding: 10px;
    font-size: .72rem;
}

.projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 20px;
}

.project-card {
    overflow: hidden;
    padding: 13px;
    border-radius: 16px;
}

.project-media {
    overflow: hidden;
    border: 1px solid rgba(131, 161, 204, .14);
    border-radius: 10px;
    background: #101c2d;
}

.project-img {
    height: 205px;
    border-radius: 9px;
    object-fit: contain;
    transition: transform .45s ease, opacity .25s ease;
}

.project-media:hover .project-img {
    transform: scale(1.025);
}

.project-body {
    padding: 18px 7px 7px;
}

.project-title {
    color: #f0f4fa;
    font-family: var(--font-sans);
    font-size: 1.16rem;
    letter-spacing: -.03em;
}

.project-tags {
    gap: 6px;
    margin: 8px 0 11px;
}

.tag {
    border: 1px solid rgba(112, 231, 206, .12);
    border-radius: 20px;
    background: rgba(112, 231, 206, .06);
    color: #99e5d4;
    padding: 3px 9px;
    font-family: var(--font-sans);
    font-size: .62rem;
}

.project-description {
    color: #9ca9bc;
    font-size: .82rem;
    line-height: 1.75;
}

.video-container video {
    border-color: rgba(131, 161, 204, .17);
    border-radius: 10px;
}

.editable-details {
    border-left-color: var(--accent-cyan);
    border-radius: 0 9px 9px 0;
    background: rgba(7, 13, 24, .53);
    color: #9fadc0;
    padding: 13px;
    font-size: .74rem;
    line-height: 1.7;
}

.detail-group {
    margin-bottom: 7px;
}

.detail-group strong {
    color: #d6e0ea;
}

.goals-grid {
    gap: 15px;
    margin-bottom: 22px;
}

.goal-card {
    padding: 23px;
}

.goal-header {
    margin-bottom: 12px;
    border-color: rgba(131, 161, 204, .16);
    color: var(--accent-cyan);
    font-size: .67rem;
    letter-spacing: .08em;
}

.goal-card li,
.goal-card p {
    color: #a4b0c1;
    font-size: .83rem;
}

.goal-card li::before {
    color: var(--accent-cyan);
}

.timeline-container {
    padding: clamp(22px, 4vw, 36px);
}

.timeline-container h3 {
    margin-bottom: 24px !important;
    color: #e2eaf3 !important;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    letter-spacing: -.03em;
}

.timeline {
    gap: 9px;
}

.timeline-step {
    border: 1px solid rgba(131, 161, 204, .12);
    border-radius: 10px;
    background: rgba(13, 22, 37, .75);
    padding: 13px 17px;
    transition: border-color .22s ease, transform .22s ease;
}

.timeline-step:hover {
    transform: translateX(3px);
    border-color: rgba(112, 231, 206, .3);
}

.step-marker {
    color: var(--accent-cyan);
    font-size: .66rem;
    letter-spacing: .05em;
}

.step-content {
    color: #c0cad8;
    font-size: .84rem;
}

.highlight-step {
    border-color: rgba(112, 231, 206, .38);
    background: rgba(112, 231, 206, .055);
}

.highlight-step .step-marker {
    background: var(--accent-cyan);
    color: #09201d;
}

.lightbox {
    padding: 22px;
    background: rgba(4, 8, 15, .94);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    border: 1px solid rgba(112, 231, 206, .45);
    border-radius: 12px;
    box-shadow: 0 0 55px rgba(112, 231, 206, .1);
}

.lightbox-close {
    top: 17px;
    right: 26px;
    color: #cdd8e6;
}

.audio-controller {
    right: clamp(12px, 2vw, 25px);
    bottom: clamp(12px, 2vw, 25px);
    gap: 13px;
    max-width: calc(100vw - 24px);
    border: 1px solid rgba(127, 169, 203, .2);
    border-radius: 14px;
    background: rgba(11, 18, 31, .9);
    box-shadow: 0 14px 45px rgba(0, 0, 0, .35);
    padding: 9px 12px;
    backdrop-filter: blur(18px);
}

.music-btn {
    gap: 10px;
    color: #d7e0ec;
    text-align: left;
}

.audio-icon-frame {
    display: grid;
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(112, 231, 206, .25);
    border-radius: 10px;
    background: rgba(112, 231, 206, .07);
    color: var(--accent-cyan);
}

.audio-icon {
    width: 21px;
    height: 21px;
}

.audio-wave {
    opacity: .35;
    transition: opacity .25s ease;
}

.is-playing .audio-wave {
    opacity: 1;
    animation: audio-wave-pulse 1.1s ease-in-out infinite alternate;
}

.is-playing .audio-wave-two {
    animation-delay: .22s;
}

.music-btn-copy {
    display: flex;
    min-width: 100px;
    flex-direction: column;
    gap: 1px;
}

#music-text {
    color: #e6edf5;
    font-size: .72rem;
    font-weight: 650;
}

#music-subtext {
    color: #8291a4;
    font-family: var(--font-mono);
    font-size: .49rem;
    letter-spacing: .065em;
}

.music-equalizer {
    display: flex;
    height: 19px;
    align-items: center;
    gap: 2px;
    margin-left: 1px;
}

.music-equalizer i {
    display: block;
    width: 2px;
    height: 4px;
    border-radius: 2px;
    background: var(--accent-cyan);
}

.is-playing .music-equalizer i {
    animation: equalize .62s ease-in-out infinite alternate;
}

.music-equalizer i:nth-child(2) {
    animation-delay: .15s;
}

.music-equalizer i:nth-child(3) {
    animation-delay: .28s;
}

.music-equalizer i:nth-child(4) {
    animation-delay: .08s;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-left: 12px;
    border-left: 1px solid rgba(131, 161, 204, .15);
    color: #95a5b7;
}

.volume-control svg {
    width: 15px;
    height: 15px;
}

.volume-control input {
    width: 54px;
    height: 3px;
    accent-color: var(--accent-cyan);
    cursor: pointer;
}

.volume-control span {
    min-width: 27px;
    color: #a0b6b6;
    font-family: var(--font-mono);
    font-size: .56rem;
}

footer {
    border-top: 1px solid rgba(157, 181, 213, .08);
    color: #8491a4;
    padding: 30px 0 104px;
    font-size: .78rem;
}

footer strong {
    color: #cbd7e4;
}

.copyright {
    color: #66758b;
    font-size: .64rem;
}

@keyframes port-orbit {
    to { transform: rotate(360deg); }
}

@keyframes equalize {
    from { height: 4px; }
    to { height: 16px; }
}

@keyframes audio-wave-pulse {
    from { opacity: .55; }
    to { opacity: 1; }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(300px, .84fr);
        gap: 34px;
    }

    .hero-brand {
        font-size: clamp(4rem, 9vw, 6.3rem);
    }

    .skill-explorer {
        grid-template-columns: minmax(0, 1fr) minmax(280px, .93fr);
        gap: 15px;
    }

    .skill-orbit-panel {
        min-height: 390px;
    }

    .orbit-label {
        font-size: .47rem;
    }
}

/* Keep the large portfolio word inside its grid column on tablet-sized screens. */
@media (min-width: 769px) and (max-width: 1100px) {
    .hero-section {
        padding: 112px 0 64px;
    }

    .hero-container {
        gap: clamp(24px, 4vw, 42px);
    }

    .hero-content {
        container-type: inline-size;
    }

    .hero-brand {
        font-size: clamp(3.2rem, 6.6vw, 5.5rem);
    }

    @supports (font-size: 1cqw) {
        .hero-brand {
            font-size: clamp(3.2rem, 18cqw, 5.5rem);
        }
    }
}

@media (max-width: 768px) {
    .container {
        padding-inline: 22px;
    }

    section {
        padding: 82px 0;
    }

    .nav-container {
        min-height: 70px;
        padding-inline: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        top: 100%;
        padding: 15px 22px 19px;
        border-bottom: 1px solid rgba(147, 173, 211, .15);
        background: rgba(8, 13, 24, .97);
        gap: 5px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 10px 0;
        font-size: .76rem;
    }

    .nav-link.active::after {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 88px 0 56px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero-content {
        max-width: 650px;
    }

    .status-badge {
        margin-bottom: 16px;
    }

    .hero-kicker {
        margin-bottom: 8px;
    }

    .hero-brand {
        margin-bottom: 12px;
        font-size: clamp(3.4rem, 12vw, 6rem);
    }

    .hero-title {
        margin-bottom: 10px;
    }

    .hero-subtitle {
        margin-bottom: 12px;
    }

    .hero-description {
        margin-bottom: 18px;
    }

    .terminal-window {
        max-width: 620px;
        transform: none;
    }

    .terminal-window:hover {
        transform: translateY(-2px);
    }

    .terminal-body {
        min-height: 238px;
    }

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

    .skill-explorer {
        grid-template-columns: 1fr;
    }

    .skill-orbit-panel {
        min-height: 0;
        padding: 18px 14px 14px;
    }

    .orbit-scene {
        width: min(100%, 380px);
    }

    .skill-detail-panel {
        min-height: 360px;
    }

    .project-img {
        height: 220px;
    }

    .timeline-step {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .step-marker {
        min-width: 64px;
    }
}

@media (max-width: 520px) {
    .container {
        padding-inline: 17px;
    }

    section {
        padding: 68px 0;
    }

    .section-title {
        gap: 9px;
        margin-bottom: 30px;
        font-size: 1.46rem;
    }

    .nav-container {
        padding-inline: 16px;
    }

    .hero-section {
        padding-top: 78px;
    }

    .hero-brand {
        font-size: clamp(3.1rem, 13vw, 4.5rem);
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-kicker {
        font-size: .57rem;
    }

    .hero-meta {
        flex-wrap: wrap;
        gap: 9px;
        font-size: .51rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .terminal-body {
        min-height: 220px;
        padding: 18px;
        font-size: .67rem;
    }

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

    .interest-card {
        min-height: 145px;
        padding: 16px 13px 13px;
    }

    .interest-card h4 {
        font-size: .81rem;
    }

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

    .skills-dashboard {
        padding: 18px 13px;
    }

    .dashboard-heading {
        gap: 9px;
    }

    .dashboard-heading h3 {
        font-size: 1.27rem;
    }

    .dashboard-intro {
        max-width: 265px;
        font-size: .76rem;
    }

    .skill-count {
        gap: 5px;
        padding: 7px;
    }

    .skill-count b {
        font-size: 1rem;
    }

    .skill-count span {
        font-size: .42rem;
    }

    .skill-orbit-panel {
        padding: 15px 5px 12px;
    }

    .orbit-label {
        padding-inline: 9px;
        font-size: .42rem;
    }

    .orbit-scene {
        width: min(100%, 340px);
    }

    .skill-node {
        width: 70px;
        min-height: 71px;
        border-radius: 13px;
    }

    .node-logo,
    .node-logo svg {
        width: 28px;
        height: 28px;
    }

    .node-name {
        font-size: .53rem;
    }

    .orbit-center {
        width: 78px;
        height: 78px;
    }

    .orbit-center svg {
        width: 29px;
        height: 29px;
    }

    .orbit-hint {
        margin-top: 0;
        font-size: .58rem;
    }

    .skill-detail-panel {
        min-height: 0;
        padding: 18px 14px;
    }

    .knowledge-content {
        gap: 13px;
    }

    .knowledge-ring {
        width: 98px;
        height: 98px;
        flex-basis: 98px;
    }

    .knowledge-value strong {
        font-size: 1.53rem;
    }

    .knowledge-copy p {
        font-size: .75rem;
    }

    .skill-tab {
        min-width: 68px;
        flex-basis: 68px;
    }

    .project-card {
        padding: 10px;
    }

    .project-img {
        height: 185px;
    }

    .audio-controller {
        right: 10px;
        bottom: 10px;
        gap: 8px;
        padding: 7px 8px;
    }

    .audio-icon-frame {
        width: 31px;
        height: 31px;
    }

    .music-btn {
        gap: 7px;
    }

    .music-btn-copy {
        min-width: 80px;
    }

    #music-text {
        font-size: .66rem;
    }

    #music-subtext {
        font-size: .43rem;
    }

    .music-equalizer {
        display: none;
    }

    .volume-control {
        gap: 5px;
        padding-left: 8px;
    }

    .volume-control input {
        width: 38px;
    }

    .volume-control span {
        min-width: 22px;
        font-size: .5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal-up {
        opacity: 1;
        transform: none;
    }
}

/* Circular linked-list skill visualizer (not a globe/planet orbit). */
.orbit-scene {
    cursor: grab;
}

.orbit-scene.is-dragging {
    cursor: grabbing;
}

.skill-links {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.skill-link {
    fill: none;
    stroke: rgba(103, 173, 197, .48);
    stroke-width: 1.35;
    stroke-dasharray: 4 5;
    transition: opacity .25s ease, stroke .25s ease, stroke-width .25s ease;
}

.skill-link.is-head-link {
    stroke: var(--accent-cyan);
    stroke-width: 2;
    stroke-dasharray: none;
    filter: drop-shadow(0 0 5px rgba(112, 231, 206, .48));
}

.orbit-center {
    z-index: 2;
    width: 108px;
    height: 108px;
    border-color: rgba(111, 185, 201, .35);
    background: radial-gradient(circle at 50% 40%, rgba(27, 50, 64, .96), rgba(8, 15, 27, .98) 75%);
}

.orbit-center svg {
    width: 35px;
    height: 35px;
}

.orbit-center span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.orbit-center span b {
    max-width: 92px;
    overflow: hidden;
    color: #d9f5ed;
    font-family: var(--font-mono);
    font-size: .44rem;
    font-weight: 600;
    letter-spacing: -.015em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.orbit-center span small {
    color: #748da0;
    font-size: .39rem;
    letter-spacing: .105em;
}

.skill-nodes {
    z-index: 3;
}

.skill-node {
    width: 96px;
    min-height: 96px;
    gap: 1px;
    padding: 6px 5px;
    border-radius: 13px;
    cursor: pointer;
}

.skill-node.is-selected::before {
    position: absolute;
    top: -19px;
    left: 50%;
    border: 1px solid rgba(112, 231, 206, .36);
    border-radius: 5px;
    background: #102b30;
    color: var(--accent-cyan);
    content: "HEAD";
    padding: 1px 5px;
    font-family: var(--font-mono);
    font-size: .45rem;
    letter-spacing: .08em;
    transform: translateX(-50%);
}

.node-id,
.node-next {
    color: #75869a;
    font-family: var(--font-mono);
    font-size: .43rem;
    letter-spacing: .08em;
    line-height: 1.2;
}

.node-logo {
    height: 29px;
}

.node-logo svg {
    width: 27px;
    height: 27px;
}

.node-next b {
    color: #80cbbd;
    font-size: .59rem;
    font-weight: 500;
}

.node-name {
    color: #d5dfeb;
    font-size: .55rem;
}

@media (max-width: 520px) {
    .orbit-center {
        width: 83px;
        height: 83px;
    }

    .orbit-center svg {
        width: 27px;
        height: 27px;
    }

    .orbit-center span b {
        max-width: 72px;
        font-size: .36rem;
    }

    .orbit-center span small {
        font-size: .32rem;
    }

    .skill-node {
        width: 77px;
        min-height: 83px;
        padding: 5px 3px;
    }

    .node-id,
    .node-next {
        font-size: .37rem;
    }

    .node-logo,
    .node-logo svg {
        width: 24px;
        height: 24px;
    }

    .node-name {
        font-size: .48rem;
    }
}

/* Match the reference: a complete, centered circular language structure. */
.skill-explorer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.skill-orbit-panel,
.skill-detail-panel {
    width: min(100%, 820px);
    max-width: 820px;
}

.skill-orbit-panel {
    min-height: 0;
    margin-inline: auto;
    padding: 22px 25px 17px;
}

.orbit-label {
    width: min(100%, 560px);
    margin-inline: auto;
    font-size: .62rem;
}

.orbit-scene {
    width: min(100%, 560px);
    margin: 5px auto 0;
    overflow: visible;
}

.orbit-center {
    width: 144px;
    height: 144px;
    box-shadow: 0 0 0 1px rgba(111, 185, 201, .1), 0 0 46px rgba(112, 231, 206, .08);
}

.orbit-center svg {
    width: 46px;
    height: 46px;
}

.orbit-center span b {
    max-width: 120px;
    font-size: .58rem;
}

.orbit-center span small {
    font-size: .48rem;
}

.skill-node {
    width: 116px;
    min-height: 116px;
    border-radius: 15px;
}

.node-id,
.node-next {
    font-size: .5rem;
}

.node-logo,
.node-logo svg {
    width: 34px;
    height: 34px;
}

.node-name {
    font-size: .67rem;
}

.skill-detail-panel {
    display: grid;
    grid-template-columns: minmax(190px, .75fr) minmax(0, 1.25fr);
    grid-template-areas:
        "status status"
        "title knowledge"
        "meter meter"
        "footer footer"
        "switcher switcher";
    align-items: center;
    column-gap: 28px;
    min-height: 0;
    margin-inline: auto;
    padding: 21px 25px 18px;
}

.skill-detail-top {
    grid-area: status;
}

.skill-title-row {
    grid-area: title;
    margin-top: 8px;
}

.knowledge-content {
    grid-area: knowledge;
    margin: 9px 0;
}

.skill-meter {
    grid-area: meter;
}

.skill-detail-footer {
    grid-area: footer;
}

.skill-switcher {
    grid-area: switcher;
    margin-top: 0;
    padding: 15px 0 0;
}

@media (max-width: 768px) {
    .skill-orbit-panel,
    .skill-detail-panel {
        width: 100%;
    }

    .orbit-scene {
        width: min(100%, 520px);
    }
}

@media (max-width: 520px) {
    .skill-orbit-panel {
        padding: 16px 10px 13px;
    }

    .orbit-label {
        padding-inline: 3px;
        font-size: .47rem;
    }

    .orbit-scene {
        width: min(100%, 440px);
    }

    .orbit-center {
        width: 94px;
        height: 94px;
    }

    .orbit-center svg {
        width: 31px;
        height: 31px;
    }

    .orbit-center span b {
        max-width: 78px;
        font-size: .4rem;
    }

    .orbit-center span small {
        font-size: .34rem;
    }

    .skill-node {
        width: 82px;
        min-height: 86px;
    }

    .node-id,
    .node-next {
        font-size: .4rem;
    }

    .node-logo,
    .node-logo svg {
        width: 27px;
        height: 27px;
    }

    .node-name {
        font-size: .51rem;
    }

    .skill-detail-panel {
        grid-template-columns: 1fr;
        grid-template-areas:
            "status"
            "title"
            "knowledge"
            "meter"
            "footer"
            "switcher";
        row-gap: 6px;
        padding: 18px 14px;
    }

    .skill-title-row {
        margin-top: 7px;
    }

    .knowledge-content {
        margin: 8px 0;
    }

    .skill-switcher {
        padding-top: 11px;
    }
}

.orbit-scene:focus-visible {
    border-radius: 16px;
    box-shadow: none;
    outline: 2px solid rgba(112, 231, 206, .62);
    outline-offset: 5px;
}

/* Interactive data globe for the programming skills map. */
.orbit-scene {
    overflow: hidden;
    isolation: isolate;
    border-radius: 16px;
    background: radial-gradient(circle, rgba(6, 24, 51, .35), transparent 69%);
    cursor: grab;
    touch-action: none;
}

.orbit-scene.is-pressed {
    cursor: grabbing;
}

.orbit-scene.is-dragging {
    cursor: grabbing;
}

.orbit-globe {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    border-radius: 50%;
    pointer-events: none;
}

.orbit-globe::before {
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(40, 184, 236, .62);
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 29%, rgba(56, 148, 212, .26), transparent 39%),
        radial-gradient(circle at 50% 49%, rgba(16, 74, 137, .24), rgba(4, 17, 43, .66) 73%, rgba(4, 18, 48, .12) 100%);
    box-shadow:
        inset 0 0 32px rgba(34, 157, 231, .18),
        0 0 24px rgba(30, 155, 236, .12),
        0 0 56px rgba(39, 104, 219, .12);
    content: "";
}

.orbit-globe::after {
    position: absolute;
    inset: 8%;
    border: 1px solid rgba(54, 177, 236, .2);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(50, 166, 242, .16);
    content: "";
}

.globe-latitude,
.globe-longitude {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(52, 187, 242, .17);
    border-radius: 50%;
}

.globe-latitude-wide {
    inset: 29% 13%;
}

.globe-latitude-narrow {
    inset: 20% 13%;
    transform: scaleY(.48);
}

.globe-longitude-wide {
    inset: 12% 30%;
    transform: rotate(28deg);
}

.globe-longitude-narrow {
    inset: 12% 30%;
    transform: rotate(-28deg);
}

.skill-links {
    z-index: 1;
    overflow: visible;
}

.network-link {
    fill: none;
    stroke: rgba(34, 177, 238, .52);
    stroke-width: .9;
    opacity: .5;
    vector-effect: non-scaling-stroke;
}

.network-link.is-flowing {
    stroke: rgba(67, 208, 255, .72);
    stroke-dasharray: 2 9;
    filter: drop-shadow(0 0 2px rgba(48, 193, 255, .3));
    animation: network-data-flow 2s linear infinite;
}

.network-link.is-back {
    stroke: rgba(48, 131, 205, .4);
    opacity: .12;
}

.network-point {
    fill: #72eaff;
    opacity: .72;
    transition: opacity .2s ease;
}

.network-point.is-back {
    fill: #38a5e8;
    opacity: .24;
}

.network-point.is-beacon {
    transform-box: fill-box;
    transform-origin: center;
    animation: network-node-pulse 2.4s ease-in-out infinite;
}

.network-digit {
    fill: #8ce8ff;
    font-family: var(--font-mono);
    font-size: 8px;
    text-anchor: middle;
    pointer-events: none;
}

.skill-link {
    stroke: rgba(72, 215, 246, .62);
    stroke-width: 1.1;
    stroke-dasharray: 2 3;
    opacity: .54;
    transition: opacity .2s ease, stroke .2s ease, stroke-width .2s ease;
    vector-effect: non-scaling-stroke;
}

.skill-link.is-back {
    opacity: .12;
}

.skill-link.is-selected-link {
    stroke: #6df3e1;
    stroke-width: 1.8;
    stroke-dasharray: none;
    filter: drop-shadow(0 0 4px rgba(72, 229, 224, .55));
    opacity: .95;
}

.skill-hub {
    fill: #72f4e3;
    stroke: rgba(155, 255, 250, .88);
    stroke-width: 1;
    opacity: .88;
}

.skill-hub.is-back {
    opacity: .2;
}

.skill-hub.is-selected {
    fill: #b3fff8;
    r: 4px;
}

.orbit-center {
    z-index: 2;
    width: 124px;
    height: 124px;
    flex-direction: column;
    gap: 5px;
    border-color: rgba(81, 196, 238, .54);
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 28%, rgba(26, 72, 111, .94), rgba(6, 21, 48, .96) 72%);
    box-shadow: 0 0 0 5px rgba(39, 167, 224, .055), 0 0 34px rgba(33, 157, 225, .2), inset 0 0 25px rgba(25, 141, 194, .2);
    backdrop-filter: blur(2px);
}

.profile-image-slot {
    position: relative;
    display: grid;
    width: 66px;
    height: 66px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border: 2px solid rgba(107, 224, 245, .8);
    border-radius: 50%;
    background: rgba(5, 19, 42, .9);
    color: #7de7f3;
    box-shadow: 0 0 18px rgba(72, 194, 255, .28);
}

.profile-image-slot img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 38%;
}

.orbit-center .profile-slot-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.orbit-center .profile-slot-copy b {
    max-width: 100%;
    overflow: visible;
    color: #d7f9ff;
    font-size: .43rem;
    letter-spacing: .02em;
    text-overflow: clip;
    white-space: nowrap;
}

.orbit-center .profile-slot-copy small {
    color: #6e9eb8;
    font-size: .37rem;
    letter-spacing: .07em;
}

.skill-nodes {
    z-index: 3;
}

.skill-node {
    width: 102px;
    min-height: 91px;
    gap: 3px;
    padding: 7px 6px;
    border-color: rgba(75, 177, 228, .34);
    border-radius: 12px;
    background: linear-gradient(150deg, rgba(12, 32, 62, .95), rgba(5, 15, 35, .95));
    box-shadow: 0 6px 23px rgba(1, 8, 23, .55), inset 0 0 19px rgba(31, 120, 180, .08);
    cursor: pointer;
    touch-action: none;
    transition: border-color .2s ease, box-shadow .2s ease, opacity .22s ease, filter .22s ease;
}

.skill-node.is-back {
    border-color: rgba(63, 129, 182, .2);
    box-shadow: 0 4px 14px rgba(1, 8, 23, .38);
    filter: saturate(.6);
    opacity: .3;
}

.skill-node.is-selected,
.skill-node:focus-visible {
    border-color: rgba(91, 240, 226, .88);
    background: linear-gradient(150deg, rgba(12, 59, 80, .98), rgba(6, 24, 50, .97));
    box-shadow: 0 0 0 2px rgba(95, 234, 228, .08), 0 0 24px rgba(27, 197, 228, .22);
    filter: none;
    opacity: 1;
}

.skill-node.is-selected::before {
    top: -15px;
    border-color: rgba(84, 230, 218, .58);
    background: #08263b;
    content: "ACTIVE";
    font-size: .39rem;
}

.node-id,
.node-next {
    font-size: .39rem;
}

.node-logo {
    height: 27px;
}

.node-logo svg {
    width: 25px;
    height: 25px;
}

.node-name {
    color: #e1f4ff;
    font-size: .58rem;
}

.node-next {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #67cbbd;
    font-size: .36rem;
}

.node-next i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #72f4cf;
    box-shadow: 0 0 7px rgba(114, 244, 207, .8);
}

.orbit-hint {
    color: #879db3;
}

@media (max-width: 520px) {
    .orbit-scene {
        width: min(100%, 380px);
    }

    .skill-node {
        width: 76px;
        min-height: 78px;
        padding: 5px 3px;
    }

    .node-id {
        font-size: .34rem;
    }

    .node-logo,
    .node-logo svg {
        width: 23px;
        height: 23px;
    }

    .node-name {
        font-size: .48rem;
    }

    .node-next {
        font-size: .3rem;
    }

    .orbit-center {
        width: 104px;
        height: 104px;
        gap: 4px;
    }

    .profile-image-slot {
        width: 54px;
        height: 54px;
    }

    .profile-image-slot img {
        object-position: center 38%;
    }

    .orbit-center .profile-slot-copy b {
        max-width: 91px;
        font-size: .38rem;
    }

    .orbit-center .profile-slot-copy small {
        font-size: .32rem;
    }
}

.orbit-scene.is-dragging .network-point,
.orbit-scene.is-dragging .skill-link,
.orbit-scene.is-dragging .network-link {
    transition: none;
}

@keyframes network-data-flow {
    to { stroke-dashoffset: -22; }
}

@keyframes network-node-pulse {
    0%, 100% { opacity: .34; transform: scale(.78); }
    50% { opacity: 1; transform: scale(1.55); }
}

@media (prefers-reduced-motion: reduce) {
    .network-link.is-flowing,
    .network-point.is-beacon {
        animation: none;
    }
}
