/* ========================================
           DESIGN SYSTEM — VARIABLES
        ======================================== */
:root {
    --bg-deep: #030712;
    --bg-primary: #070b14;
    --bg-elevated: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.55);
    --bg-glass: rgba(15, 23, 42, 0.65);
    --accent: #2dd4bf;
    --accent-dim: #14b8a6;
    --accent-bright: #5eead4;
    --accent-glow: rgba(45, 212, 191, 0.12);
    --accent-glow-md: rgba(45, 212, 191, 0.2);
    --accent-glow-strong: rgba(45, 212, 191, 0.35);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(45, 212, 191, 0.08);
    --border-hover: rgba(45, 212, 191, 0.25);
    --glass-border: rgba(255, 255, 255, 0.06);
    --shadow-lg: 0 25px 60px -12px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(45, 212, 191, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================
           RESET & BASE
        ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background:
        linear-gradient(180deg, rgba(5, 7, 13, 0.88), rgba(3, 5, 10, 0.96)),
        url('hero-background.svg') center center / cover no-repeat fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    background:
        radial-gradient(circle at 8% 8%, rgba(45, 212, 191, 0.05), transparent 12%),
        radial-gradient(circle at 92% 8%, rgba(45, 212, 191, 0.045), transparent 12%);
    filter: blur(34px);
    opacity: 0.18;
    animation: ambient-drift 24s ease-in-out infinite alternate;
}

body::after {
    background: none;
    opacity: 0;
}

@media (max-width: 768px) {
    body {
        background:
            linear-gradient(180deg, rgba(5, 7, 13, 0.9), rgba(3, 5, 10, 0.98)),
            url('hero-background.svg') center top / cover no-repeat scroll;
        background-attachment: scroll;
    }

    body::before {
        opacity: 0.12;
        filter: blur(24px);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    flex-shrink: 0;
}

.icon::before {
    display: none !important;
}

.icon svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.motion-icon {
    position: relative;
    animation: icon-float 4.8s ease-in-out infinite;
    transform-origin: center;
}

.motion-icon::after {
    content: '';
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.18), transparent 65%);
    filter: blur(6px);
    opacity: 0.8;
    z-index: -1;
    animation: icon-glow 4.8s ease-in-out infinite;
}

.motion-icon svg {
    filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.18));
}

ul {
    list-style: none;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* ========================================
           SCROLLBAR
        ======================================== */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--accent-dim);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ========================================
           KEYFRAME ANIMATIONS
        ======================================== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes float-reverse {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(20px) scale(0.96);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(45, 212, 191, 0.2), 0 0 60px rgba(45, 212, 191, 0.05);
    }

    50% {
        box-shadow: 0 0 30px rgba(45, 212, 191, 0.35), 0 0 80px rgba(45, 212, 191, 0.1);
    }
}

@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-3px) rotate(-2deg);
    }
}

@keyframes icon-glow {

    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.95;
        transform: scale(1.05);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes progress-fill {
    from {
        width: 0;
    }
}

@keyframes ambient-drift {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }

    50% {
        transform: translate3d(2%, 1.5%, 0) scale(1.05);
    }

    100% {
        transform: translate3d(-1%, 2%, 0) scale(1.08);
    }
}

@keyframes grid-float {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-70px, -70px, 0);
    }
}

@keyframes soft-float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@keyframes pill-float-top {
    0%,
    100% {
        transform: translateX(-50%) translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translateX(-50%) translate3d(0, -7px, 0) scale(1.01);
    }
}

@keyframes pill-float-bottom {
    0%,
    100% {
        transform: translateY(45%) translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translateY(45%) translate3d(0, -8px, 0) scale(1.01);
    }
}

@keyframes sheen-sweep {
    0% {
        transform: translateX(-120%) skewX(-18deg);
        opacity: 0;
    }

    25% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        transform: translateX(120%) skewX(-18deg);
        opacity: 0;
    }
}

/* ========================================
           SCROLL REVEAL
        ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    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;
}

/* ========================================
           NAVBAR
        ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.7rem 2rem;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-name {
    color: #f7fbff;
    background: linear-gradient(135deg, #f7fbff 0%, #dfe7ef 36%, #8ea0b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 14px rgba(45, 212, 191, 0.14);
}

.logo-dot {
    color: var(--accent-bright);
    text-shadow: 0 0 10px rgba(45, 212, 191, 0.45);
}

.logo:hover .logo-name {
    filter: brightness(1.06);
}

.logo:hover .logo-dot {
    filter: brightness(1.1);
}

.logo-mark {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: var(--accent-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--accent-glow);
}

.menu-close {
    display: none;
}

/* ========================================
           HERO SECTION
        ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(5, 7, 13, 0.2), rgba(5, 7, 13, 0.35)),
        url('hero-background.svg') center center / cover no-repeat fixed;
    opacity: 0.95;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(30px);
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-bg::before {
    width: 260px;
    height: 260px;
    left: -48px;
    top: 18px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.24) 0%, rgba(45, 212, 191, 0.12) 32%, transparent 72%);
    animation: soft-float 16s ease-in-out infinite;
}

.hero-bg::after {
    width: 220px;
    height: 220px;
    right: -44px;
    top: 22px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.22) 0%, rgba(94, 234, 212, 0.09) 36%, transparent 74%);
    animation: float-reverse 18s ease-in-out infinite;
}

.hero-orb {
    position: absolute;
    border-radius: 10px;
    filter: blur(92px);
    opacity: 0.14;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.14), transparent 70%);
    top: 3%;
    right: 2%;
    animation: float 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.11), transparent 70%);
    bottom: 14%;
    left: 0%;
    animation: float-reverse 14s ease-in-out infinite;
}

.hero-orb-3 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.1), transparent 70%);
    top: 42%;
    left: 46%;
    animation: float 16s ease-in-out infinite 2s;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(45, 212, 191, 0.016) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 212, 191, 0.016) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 78% 58% at 50% 42%, black 28%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.88fr);
    gap: clamp(3rem, 5vw, 5.5rem);
    align-items: center;
    width: 100%;
    max-width: 1450px;
}

.hero-copy {
    max-width: 640px;
    padding-left: clamp(0rem, 1vw, 0.5rem);
    padding-right: clamp(0.5rem, 1.8vw, 1.5rem);
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transform: translateX(0);
}

.hero-skill-card {
    width: min(100%, 560px);
    min-height: 560px;
    padding: 1.55rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 14%, rgba(62, 240, 255, 0.18), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(62, 240, 255, 0.1), transparent 20%),
        linear-gradient(180deg, rgba(14, 21, 35, 0.78), rgba(7, 11, 19, 0.9));
    border: 1px solid rgba(62, 240, 255, 0.16);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    box-shadow:
        0 26px 68px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(62, 240, 255, 0.05),
        0 0 40px rgba(62, 240, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
    animation: hero-card-float 14s ease-in-out infinite;
}

.hero-skill-card::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    border: 1px solid rgba(62, 240, 255, 0.08);
    pointer-events: none;
}

.hero-skill-card::after {
    content: '';
    position: absolute;
    inset: -28% -18% auto auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(62, 240, 255, 0.16), transparent 70%);
    filter: blur(12px);
    opacity: 0.7;
    pointer-events: none;
    animation: hero-card-glow 6.5s ease-in-out infinite;
}

.hero-skill-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.hero-skill-title {
    margin: 0;
    color: #f5fbff;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-shadow: 0 0 18px rgba(62, 240, 255, 0.12);
}

.hero-skill-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    color: #63f5ff;
    font-size: 0.92rem;
    font-weight: 500;
    background: linear-gradient(180deg, rgba(11, 19, 31, 0.7), rgba(9, 14, 24, 0.72));
    border: 1px solid rgba(62, 240, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-skill-link:hover {
    transform: translateY(-1px);
    border-color: rgba(62, 240, 255, 0.24);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.24),
        0 0 16px rgba(62, 240, 255, 0.08);
}

.hero-skill-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}

.hero-skill-mini {
    min-height: 128px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 0.65rem;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 36%),
        linear-gradient(180deg, rgba(12, 19, 31, 0.92), rgba(8, 12, 20, 0.88));
    border: 1px solid rgba(62, 240, 255, 0.08);
    color: rgba(241, 245, 249, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 10px 24px rgba(0, 0, 0, 0.16);
    animation: hero-tile-float 11s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    will-change: transform;
}

.hero-skill-mini:nth-child(2n) {
    animation-delay: -1.3s;
}

.hero-skill-mini:nth-child(3n) {
    animation-delay: -2.1s;
}

.hero-skill-mini:nth-child(4n) {
    animation-delay: -2.8s;
}

.hero-skill-mini i.icon,
.hero-skill-mini i {
    font-size: 3rem;
    color: var(--accent-bright);
    line-height: 1;
    filter: drop-shadow(0 0 12px rgba(62, 240, 255, 0.18));
}

.hero-skill-mini em {
    font-style: normal;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.1;
    color: rgba(245, 251, 255, 0.96);
}

.hero-skill-mini:hover {
    transform: translateY(-7px) scale(1.03);
    border-color: rgba(114, 255, 240, 0.32);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24), 0 0 24px rgba(45, 212, 191, 0.12);
    background:
        radial-gradient(circle at top left, rgba(114, 255, 240, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(16, 26, 42, 0.96), rgba(10, 16, 26, 0.9));
}

.hero-visual:hover .hero-skill-card,
.hero-visual:focus-within .hero-skill-card {
    animation-play-state: paused;
}

.hero-visual:hover .hero-skill-mini,
.hero-visual:focus-within .hero-skill-mini {
    animation-play-state: paused;
}

.hero-skill-mini:nth-child(1) i {
    color: #64f4ff;
}

.hero-skill-mini:nth-child(2) i {
    color: #82db4a;
}

.hero-skill-mini:nth-child(3) i {
    color: #45e9ff;
}

.hero-skill-mini:nth-child(4) i {
    color: #4da6ff;
}

.hero-skill-mini:nth-child(5) i {
    color: #8f7bff;
}

.hero-skill-mini:nth-child(6) i {
    color: #f7d93a;
}

.hero-skill-mini:nth-child(7) i {
    color: #f2f4f8;
}

.hero-skill-mini:nth-child(8) i {
    color: #35dff0;
}

.hero-skill-mini:nth-child(9) i {
    color: #66ecff;
}

.hero-skill-js {
    background:
        radial-gradient(circle at top left, rgba(247, 217, 58, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(19, 18, 16, 0.96), rgba(10, 12, 18, 0.92));
    border-color: rgba(247, 217, 58, 0.22);
    overflow: visible;
}

.hero-skill-js i.icon,
.hero-skill-js i {
    font-size: 3.35rem;
    color: #f7d93a;
    filter:
        drop-shadow(0 0 10px rgba(247, 217, 58, 0.28)) drop-shadow(0 0 18px rgba(247, 217, 58, 0.12));
}

.hero-skill-js em {
    color: #fff7bf;
}

.hero-line {
    display: block;
    line-height: 1.08;
}

.hero-line-top {
    color: #f6fbff;
    margin-bottom: 0.12em;
}

.hero-line-name {
    margin-top: 0;
    white-space: nowrap;
}



.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background: var(--accent);
    animation: blink 2s infinite;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.06em;
    margin-bottom: 0.95rem;
    padding-bottom: 0.08em;
    white-space: nowrap;
    max-width: 620px;
}

.hero h1 .name-accent {
    display: inline-block;
    padding-right: 0.12em;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-typing-wrapper {
    font-size: clamp(0.98rem, 2.1vw, 1.28rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    min-height: 1.8em;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.35rem;
    line-height: 1.35;
    white-space: nowrap;
}

.hero-typing-wrapper .typing-text {
    color: var(--accent);
    font-weight: 600;
    padding-right: 2px;
    letter-spacing: 0.01em;
}

.typing-prefix {
    color: var(--text-secondary);
    font-weight: 500;
}

.typing-caret {
    color: var(--accent);
    font-weight: 400;
    animation: blink 0.8s step-end infinite;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    background:
        linear-gradient(135deg, rgba(114, 255, 240, 0.95), rgba(45, 212, 191, 0.88));
    color: #041016;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 0 0 1px rgba(114, 255, 240, 0.2), 0 18px 42px rgba(45, 212, 191, 0.34), 0 0 28px rgba(114, 255, 240, 0.28);
    filter: brightness(1.04);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(234, 255, 251, 0.92);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    border: 1px solid rgba(114, 255, 240, 0.24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    background: rgba(114, 255, 240, 0.08);
    border-color: rgba(114, 255, 240, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22), 0 0 24px rgba(45, 212, 191, 0.14);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 1.65rem;
    left: 44%;
    right: auto;
    transform: translateX(-50%);
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 900px) {
    .hero-scroll-indicator {
        left: 0 !important;
        right: 0 !important;
        margin-inline: auto;
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-scroll-indicator {
        left: 0 !important;
        right: 0 !important;
        margin-inline: auto;
        transform: none;
        bottom: 1.35rem;
    }
}

.hero-scroll-indicator i.icon {
    font-size: 1.15rem;
    color: var(--accent);
}

@keyframes hero-card-float {

    0%,
    100% {
        transform: translateY(0) rotate(-0.35deg);
    }

    50% {
        transform: translateY(-8px) rotate(0.35deg);
    }
}

@keyframes hero-card-glow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.75;
    }

    50% {
        transform: translate(-18px, 12px) scale(1.08);
        opacity: 1;
    }
}

@keyframes hero-tile-float {

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

    50% {
        transform: translateY(-4px);
    }
}

@keyframes about-float-a {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(16px, 12px, 0) scale(1.08);
    }
}

@keyframes about-float-b {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(-14px, -10px, 0) scale(1.06);
    }
}

/* ========================================
           SECTION COMMON
        ======================================== */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 5, 10, 0.12), rgba(3, 5, 10, 0.2)),
        url('hero-background.svg') center center / cover no-repeat fixed;
    opacity: 0.16;
    pointer-events: none;
}

#about {
    overflow: hidden;
}

#about::before,
#about::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(28px);
    opacity: 0.2;
    mix-blend-mode: screen;
}

#about::before {
    width: 220px;
    height: 220px;
    left: -40px;
    top: 28px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.22) 0%, rgba(45, 212, 191, 0.1) 34%, transparent 72%);
    animation: about-float-a 14s ease-in-out infinite alternate;
}

#about::after {
    width: 180px;
    height: 180px;
    right: -24px;
    top: 36px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.2) 0%, rgba(94, 234, 212, 0.08) 36%, transparent 74%);
    animation: about-float-b 16s ease-in-out infinite alternate;
}

#about .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.section-label i.icon {
    font-size: 0.7rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.section-subtitle {
    margin: 0.75rem auto 0;
    max-width: 720px;
    color: var(--text-secondary);
    font-size: 1rem;
    text-align: center;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    background-size: 200% 100%;
    margin: 1rem auto 0;
    border-radius: 2px;
    animation: gradient-shift 4s ease infinite;
}

#projects {
    overflow: hidden;
}

#projects .container {
    position: relative;
    z-index: 1;
}

#skills {
    position: relative;
    overflow: hidden;
}

#skills::before {
    content: '';
    position: absolute;
    inset: -10% auto auto -8%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.15), transparent 70%);
    filter: blur(10px);
    animation: soft-float 16s ease-in-out infinite;
    pointer-events: none;
}

#skills::after {
    content: '';
    position: absolute;
    inset: auto -8% -12% auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.12), transparent 68%);
    filter: blur(14px);
    animation: float-reverse 18s ease-in-out infinite;
    pointer-events: none;
}

#skills .skills-shot {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(1.8rem, 4vw, 4.5rem);
    align-items: start;
    margin-top: 0.5rem;
}

#skills .skills-shot-left {
    position: relative;
}

#skills .skills-shot-title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.88;
    letter-spacing: -0.07em;
    color: var(--text-primary);
}

#skills .skills-shot-title span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(241, 245, 249, 0.88);
}

#skills .skills-figure {
    position: relative;
    width: min(100%, 640px);
    aspect-ratio: 1 / 1;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(45, 212, 191, 0.14), transparent 16%),
        radial-gradient(circle at 82% 20%, rgba(99, 102, 241, 0.12), transparent 18%),
        radial-gradient(circle at 50% 45%, rgba(45, 212, 191, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(9, 13, 24, 0.36), rgba(9, 13, 24, 0.16));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 0 120px rgba(45, 212, 191, 0.05);
}

#skills .skills-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(44vw, 255px);
    height: min(44vw, 255px);
    transform: translate(-50%, -48%) rotate(-4deg);
    border-radius: 34px;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.14), transparent 24%),
        linear-gradient(145deg, rgba(50, 68, 86, 0.94), rgba(10, 16, 26, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(45, 212, 191, 0.08),
        0 0 70px rgba(45, 212, 191, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: core-card-float 7.8s ease-in-out infinite;
}

#skills .skills-core::before,
#skills .skills-core::after {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 28%),
        radial-gradient(circle at 50% 20%, rgba(45, 212, 191, 0.12), transparent 42%);
    pointer-events: none;
}

#skills .skills-core::after {
    inset: 28px;
    border-style: dashed;
    opacity: 0.35;
}

#skills .skills-core-inner {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
}

#skills .skills-core-icons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 1rem 1.05rem;
    align-content: center;
    justify-content: center;
}

#skills .skills-core-icons .core-skill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.72rem 0.48rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.44), rgba(15, 23, 42, 0.26));
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 26px rgba(0, 0, 0, 0.16);
    animation: core-chip-float 6.8s ease-in-out infinite;
}

#skills .skills-core-icons .core-skill:nth-child(2n) {
    animation-delay: -1.2s;
}

#skills .skills-core-icons .core-skill:nth-child(3n) {
    animation-delay: -2.1s;
}

#skills .skills-core-icons .core-skill:nth-child(4n) {
    animation-delay: -3s;
}

#skills .skills-core-icons .core-skill i {
    font-size: 1rem;
    color: var(--accent-bright);
    text-shadow: 0 0 12px rgba(45, 212, 191, 0.25);
}

#skills .skills-core-icons .core-skill em {
    font-style: normal;
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(241, 245, 249, 0.88);
    text-align: center;
}

#skills .skills-core-icons .core-skill:nth-child(1) i {
    color: #e3673b;
}

#skills .skills-core-icons .core-skill:nth-child(2) i {
    color: #8cc84b;
}

#skills .skills-core-icons .core-skill:nth-child(3) i {
    color: #61dafb;
}

#skills .skills-core-icons .core-skill:nth-child(4) i {
    color: #4b8bbe;
}

#skills .skills-core-icons .core-skill:nth-child(5) i {
    color: #7c83fb;
}

#skills .skills-core-icons .core-skill:nth-child(6) i {
    color: #42b883;
}

#skills .skills-core-icons .core-skill:nth-child(7) i {
    color: #f7df1e;
}

#skills .skills-core-icons .core-skill:nth-child(8) i {
    color: #3178c6;
}

#skills .skills-core-icons .core-skill:nth-child(9) i {
    color: #ffffff;
}

#skills .skills-core-icons .core-skill:nth-child(10) i {
    color: #61dafb;
}

#skills .skills-core-icons .core-skill:nth-child(11) i {
    color: #f05340;
}

@keyframes core-chip-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.02);
    }
}

@keyframes core-card-float {

    0%,
    100% {
        transform: translate(-50%, -48%) rotate(-4deg) translateY(0);
    }

    50% {
        transform: translate(-50%, -48%) rotate(-4deg) translateY(-8px);
    }
}

@keyframes outer-chip-float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--twist, 0deg)) scale(1);
    }

    50% {
        transform: translateY(-10px) rotate(var(--twist, 0deg)) scale(1.03);
    }
}

#skills .skills-core-inner span {
    display: block;
    margin-top: -0.4rem;
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

#skills .skills-core-inner small {
    display: block;
    margin-top: 0.7rem;
    color: rgba(241, 245, 249, 0.92);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

#skills .skills-float {
    position: absolute;
    display: grid;
    place-items: center;
    width: 102px;
    height: 102px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(241, 245, 249, 0.88);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: translateY(0) rotate(var(--twist, 0deg));
    animation: outer-chip-float var(--dur, 7.8s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    will-change: transform;
}

#skills .skills-figure:hover .skills-float,
#skills .skills-figure:focus-within .skills-float {
    animation-play-state: paused;
}

#skills .skills-float::after {
    content: '';
    position: absolute;
    inset: auto auto 14px 50%;
    width: 10px;
    height: 10px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--accent-bright);
    box-shadow: 0 0 12px rgba(45, 212, 191, 0.8);
}

#skills .skills-float-c1 {
    top: 14%;
    left: 20%;
    --twist: 10deg;
    --dur: 7.2s;
    --delay: -0.4s;
}

#skills .skills-float-h1 {
    left: 4%;
    bottom: 17%;
    --twist: 8deg;
    --dur: 8s;
    --delay: -1s;
}

#skills .skills-float-r1 {
    top: 22%;
    right: 13%;
    --twist: 9deg;
    --dur: 7.6s;
    --delay: -1.7s;
}

#skills .skills-float-j1 {
    right: 7%;
    bottom: 23%;
    --twist: 8deg;
    --dur: 8.4s;
    --delay: -0.9s;
}

#skills .skills-float-s1 {
    top: 54%;
    right: 1%;
    transform: rotate(6deg);
}

#skills .skills-float-g1 {
    bottom: 8%;
    left: 10%;
    transform: rotate(-8deg);
}

#skills .skills-quick-bars {
    margin-top: 1.1rem;
    max-width: 540px;
    display: grid;
    gap: 1rem;
}

#skills .skills-quick-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
}

#skills .skills-quick-row span {
    min-width: 112px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#skills .skills-quick-track {
    position: relative;
    height: 5px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.14);
    overflow: hidden;
}

#skills .skills-quick-track i {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--bar);
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(45, 212, 191, 0.72), rgba(241, 245, 249, 0.92));
    box-shadow: 0 0 18px rgba(45, 212, 191, 0.18);
}

#skills .skills-quick-row strong {
    min-width: 48px;
    text-align: right;
    color: rgba(241, 245, 249, 0.92);
    font-size: 1rem;
    font-weight: 700;
}

#skills .skills-shot-right {
    padding-top: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

#skills .skills-panel-card {
    padding: 1.55rem 1.4rem 1.5rem;
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.66);
    border: 1px solid rgba(148, 163, 184, 0.08);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#skills .skills-panel-card+.skills-panel-card {
    margin-top: 0;
}

#skills .skills-panel-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
}

#skills .skills-panel-dot {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(45, 212, 191, 0.14);
    color: rgba(241, 245, 249, 0.88);
}

#skills .skills-panel-dot i {
    font-size: 1rem;
    line-height: 1;
}

#skills .skills-panel-head span {
    font-size: 1.05rem;
    font-weight: 700;
}

#skills .skills-panel-head strong {
    color: rgba(241, 245, 249, 0.78);
    font-size: 0.95rem;
    font-weight: 700;
}

#skills .skills-panel-track {
    position: relative;
    height: 6px;
    margin-top: 1.15rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.12);
    overflow: hidden;
}

#skills .skills-panel-track i {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--bar);
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(241, 245, 249, 0.92), rgba(45, 212, 191, 0.88));
    box-shadow: 0 0 16px rgba(45, 212, 191, 0.2);
}

#skills .skills-chip-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 3rem;
    padding-top: 0.1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
}

#skills .skills-chip-row::-webkit-scrollbar {
    display: none;
}

#skills .skills-chip-row .skills-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.54);
    border: 1px solid rgba(148, 163, 184, 0.1);
    color: rgba(241, 245, 249, 0.88);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#skills .skills-chip-row .skills-chip i {
    color: var(--accent-bright);
    font-size: 0.76rem;
}

#skills .skills-chip-row .skills-chip.muted {
    color: rgba(148, 163, 184, 0.28);
    background: transparent;
    border-color: transparent;
    padding-left: 0;
}

@media (max-width: 1100px) {
    #skills .skills-shot {
        grid-template-columns: 1fr;
    }

    #skills .skills-shot-right {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    #skills .skills-shot {
        gap: 1.1rem;
    }

    #skills .skills-shot-title {
        font-size: clamp(2rem, 11vw, 3rem);
        margin-bottom: 0.75rem;
    }

    #skills .skills-figure {
        min-height: 340px;
        border-radius: 28px;
    }

    #skills .skills-float {
        width: 72px;
        height: 72px;
        border-radius: 16px;
        font-size: 0.56rem;
        letter-spacing: 0.11em;
    }

    #skills .skills-core {
        width: min(58vw, 210px);
        height: min(58vw, 210px);
        border-radius: 28px;
    }

    #skills .skills-core::before,
    #skills .skills-core::after {
        inset: 12px;
    }

    #skills .skills-core::after {
        inset: 22px;
    }

    #skills .skills-core-icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
        padding: 0.8rem;
    }

    #skills .skills-core-icons .core-skill {
        padding: 0.6rem 0.42rem;
        border-radius: 14px;
    }

    #skills .skills-core-icons .core-skill i {
        font-size: 0.9rem;
    }

    #skills .skills-core-icons .core-skill em {
        font-size: 0.48rem;
        letter-spacing: 0.09em;
    }

    #skills .skills-quick-row {
        grid-template-columns: 92px 1fr 42px;
        gap: 0.7rem;
    }

    #skills .skills-quick-row span,
    #skills .skills-quick-row strong {
        font-size: 0.88rem;
    }

    #skills .skills-panel-card {
        padding: 1.3rem 1.1rem 1.2rem;
        border-radius: 22px;
    }

    #skills .skills-chip-row {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    #skills .skills-figure {
        min-height: 300px;
        border-radius: 24px;
    }

    #skills .skills-float-c1 {
        top: 12%;
        left: 14%;
    }

    #skills .skills-float-h1 {
        left: 0;
        bottom: 16%;
    }

    #skills .skills-float-r1 {
        top: 18%;
        right: 6%;
    }

    #skills .skills-float-j1 {
        right: 2%;
        bottom: 18%;
    }

    #skills .skills-float-s1 {
        top: 54%;
        right: 0;
    }

    #skills .skills-float-g1 {
        bottom: 6%;
        left: 4%;
    }

    #skills .skills-core {
        width: min(66vw, 180px);
        height: min(66vw, 180px);
        border-radius: 24px;
    }

    #skills .skills-core-icons {
        gap: 0.3rem;
        padding: 0.65rem;
    }

    #skills .skills-core-icons .core-skill {
        padding: 0.52rem 0.35rem;
        border-radius: 12px;
    }

    #skills .skills-core-icons .core-skill em {
        font-size: 0.42rem;
        letter-spacing: 0.08em;
    }

    #skills .skills-core-inner small {
        letter-spacing: 0.22em;
        font-size: 0.64rem;
    }

    #skills .skills-float {
        width: 62px;
        height: 62px;
        border-radius: 14px;
        font-size: 0.5rem;
    }

    #skills .skills-float::after {
        width: 8px;
        height: 8px;
        bottom: 10px;
    }

    #skills .skills-quick-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    #skills .skills-quick-row strong {
        text-align: left;
    }

    #skills .skills-panel-head {
        grid-template-columns: auto 1fr;
    }

    #skills .skills-panel-head strong {
        grid-column: 2;
        justify-self: end;
    }
}

#projects::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 10px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.12), transparent 68%);
    top: 0;
    right: -120px;
    filter: blur(12px);
    animation: soft-float 10s ease-in-out infinite;
    pointer-events: none;
}

#projects::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.08), transparent 70%);
    bottom: 0;
    left: -80px;
    filter: blur(16px);
    animation: float-reverse 12s ease-in-out infinite;
    pointer-events: none;
}

/* ========================================
           ABOUT SECTION
        ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: center;
}

.about-photo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
    width: min(100%, 320px);
    margin-inline: auto;
    padding-top: 3rem;
    padding-bottom: 2.2rem;
}

.about-photo-frame {
    position: relative;
    width: 320px;
    height: 380px;
    border-radius: var(--radius-lg);
    border: 3px solid var(--accent);
    box-shadow: 0 0 25px rgba(45, 212, 191, 0.3), 0 0 60px rgba(45, 212, 191, 0.1);
    animation: glow-pulse 4s ease-in-out infinite;
    overflow: hidden;
    transition: border 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.about-floating-pill {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(28, 20, 26, 0.82), rgba(16, 12, 18, 0.88));
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    color: rgba(245, 247, 250, 0.94);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    will-change: transform, box-shadow, filter;
    animation-duration: 5.8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.about-floating-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 35%, rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.about-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #87ffd9;
    box-shadow: 0 0 10px rgba(132, 255, 247, 0.9);
    flex: 0 0 auto;
}

.about-floating-pill-top {
    top: 0.35rem;
    left: 0.35rem;
    right: auto;
    transform: none;
    animation-name: pill-float-top;
    animation-delay: -0.9s;
}

.about-floating-pill-bottom {
    right: -0.55rem;
    bottom: 0.2rem;
    transform: translateY(45%);
    animation-name: pill-float-bottom;
    animation-delay: -2.2s;
}

.about-photo-frame:hover {
    border-color: var(--accent-bright);
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.5), 0 0 80px rgba(45, 212, 191, 0.2), 0 0 120px rgba(45, 212, 191, 0.08);
}

.about-photo-wrapper:hover .about-floating-pill {
    filter: brightness(1.06);
}

.about-photo-wrapper:hover .about-floating-pill-top {
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.3),
        0 0 22px rgba(132, 255, 247, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-photo-wrapper:hover .about-floating-pill-bottom {
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.3),
        0 0 22px rgba(132, 255, 247, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-photo-frame.clicked {
    border: 1.5px solid var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 3px);
}

.about-photo-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent-glow-md);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-photo-decoration.top-right {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
}

.about-photo-decoration.bottom-left {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
}

.about-photo-note {
    width: 100%;
    max-width: 320px;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.55));
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.about-photo-note strong {
    display: block;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
}

.about-photo-note p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

.about-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.75rem;
}

.about-mini-tag {
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-full);
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid var(--border);
    color: var(--accent-bright);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.about-text h3 span {
    color: var(--accent);
}

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

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

.about-stat {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    text-align: center;
    transition: var(--transition);
}

.about-stat:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.about-stat .stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.about-stat .stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-info-box {
    background: linear-gradient(135deg, var(--accent-glow), rgba(15, 23, 42, 0.4));
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.about-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.about-info-item i.icon {
    color: var(--accent);
    width: 18px;
    font-size: 0.9rem;
}

.about-interests {
    margin-top: 1.5rem;
    padding: 1.3rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.35));
    backdrop-filter: blur(10px);
}

.about-interests h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.9rem;
    letter-spacing: -0.2px;
}

.interest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.interest-chip {
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: rgba(45, 212, 191, 0.06);
    color: var(--text-secondary);
    font-size: 0.84rem;
    transition: var(--transition);
}

.interest-chip:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    background: var(--accent-glow);
    color: var(--accent-bright);
}

/* ========================================
           SKILLS SECTION
        ======================================== */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    margin-top: 0.25rem;
}

.skills-visual {
    position: relative;
    max-width: 1180px;
    min-height: 0;
    padding: clamp(1.2rem, 2vw, 2rem);
    margin: 0 auto;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 120, 56, 0.12), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(45, 212, 191, 0.14), transparent 22%),
        radial-gradient(circle at 50% 84%, rgba(59, 130, 246, 0.12), transparent 24%),
        linear-gradient(160deg, rgba(5, 8, 22, 0.96), rgba(6, 10, 24, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.skills-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.12;
    mask-image: radial-gradient(circle at center, black 25%, transparent 84%);
    -webkit-mask-image: radial-gradient(circle at center, black 25%, transparent 84%);
    pointer-events: none;
}

.skills-visual::after {
    content: '';
    position: absolute;
    inset: auto -14% -18% auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 120, 56, 0.16), transparent 66%);
    filter: blur(18px);
    animation: soft-float 12s ease-in-out infinite;
    pointer-events: none;
}

.skills-orbit-shell {
    position: relative;
    min-height: clamp(560px, 70vw, 760px);
    margin-top: 1.75rem;
    border-radius: 36px;
    overflow: hidden;
    perspective: 1400px;
    transform-style: preserve-3d;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 138, 76, 0.16), transparent 22%),
        radial-gradient(circle at 80% 22%, rgba(45, 212, 191, 0.16), transparent 20%),
        radial-gradient(circle at 50% 82%, rgba(59, 130, 246, 0.12), transparent 26%),
        linear-gradient(160deg, rgba(5, 8, 22, 0.96), rgba(6, 10, 24, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 32px 80px rgba(0, 0, 0, 0.55);
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --orbit-tilt: 0px;
    --cursor-x: 0;
    --cursor-y: 0;
    --orbit-scale: 1;
    transform: translate3d(0, 0, 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transition: transform 180ms ease-out;
    will-change: transform;
}

.skills-orbit-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: 0.14;
    mask-image: radial-gradient(circle at center, black 26%, transparent 82%);
    -webkit-mask-image: radial-gradient(circle at center, black 26%, transparent 82%);
    pointer-events: none;
}

.skills-orbit-shell::after {
    content: '';
    position: absolute;
    inset: auto 12% 10% auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 138, 76, 0.16), transparent 68%);
    filter: blur(22px);
    pointer-events: none;
    animation: soft-float 12s ease-in-out infinite;
}

.motion-hero-copy {
    position: relative;
    z-index: 2;
}

.motion-stage {
    position: relative;
    width: 100%;
    height: 380px;
    margin-top: 4.8rem;
    display: grid;
    place-items: center;
    perspective: 1200px;
}

.orbit-rings {
    position: absolute;
    inset: 8% 6%;
    border-radius: 32px;
    border: 1px solid rgba(94, 234, 212, 0.08);
    box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.05);
}

.orbit-rings::before,
.orbit-rings::after {
    content: '';
    position: absolute;
    inset: 14% 14%;
    border-radius: 50%;
    border: 1px solid rgba(94, 234, 212, 0.11);
    transform: scale(1.08);
    animation: orbit-breathe 10s ease-in-out infinite;
}

.orbit-rings::after {
    inset: 20% 20%;
    border-color: rgba(45, 212, 191, 0.08);
    transform: scale(0.94);
    animation-delay: -5s;
}

.orbit-track {
    position: absolute;
    inset: 0;
    animation: orbit-spin 24s linear infinite;
    transform-style: preserve-3d;
}

.wd-orb-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 84px;
    height: 84px;
    margin: -42px;
    transform:
        rotate(var(--angle)) translateX(182px) rotate(calc(-1 * var(--angle)));
    display: grid;
    place-items: center;
    gap: 0.28rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.12);
    backdrop-filter: blur(12px);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: var(--accent-bright);
    text-align: center;
    animation: orbit-item-pulse 4.8s ease-in-out infinite;
    animation-delay: calc(var(--angle) / 360deg * -1s);
}

.wd-orb-badge i.icon {
    font-size: 1.25rem;
}

.wd-orb-badge span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.orbit-core {
    position: relative;
    width: 210px;
    height: 210px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(45, 212, 191, 0.18), rgba(11, 18, 34, 0.95)),
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.1), transparent 42%);
    border: 1px solid rgba(94, 234, 212, 0.3);
    box-shadow:
        0 0 0 1px rgba(45, 212, 191, 0.08),
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(45, 212, 191, 0.12);
    transform: perspective(1100px) rotateX(16deg) rotateY(-18deg);
    overflow: hidden;
}

.orbit-core::before,
.orbit-core::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.orbit-core::after {
    inset: 34px;
    border-style: dashed;
    opacity: 0.5;
}

.orbit-core-inner {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
}

.orbit-core-inner span {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--accent-bright);
    letter-spacing: 0.1em;
    text-shadow: 0 0 18px rgba(45, 212, 191, 0.35);
}

.orbit-core-inner small {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-secondary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.motion-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.motion-hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

.motion-hero-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    text-shadow: 0 0 24px rgba(45, 212, 191, 0.08);
}

.motion-hero-copy h3 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(241, 245, 249, 0.7);
    text-shadow: none;
}

.skills-orbit-bg,
.skills-orbit-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.skills-orbit-bg {
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 38%),
        radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.08), transparent 55%);
    filter: blur(8px);
}

.skills-orbit-particles {
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.6px),
        radial-gradient(circle, rgba(45, 212, 191, 0.8) 0 1.4px, transparent 1.8px),
        radial-gradient(circle, rgba(255, 138, 76, 0.55) 0 1.2px, transparent 1.8px);
    background-size: 140px 140px, 220px 220px, 180px 180px;
    background-position: 10% 18%, 72% 28%, 38% 68%;
    opacity: 0.5;
    animation: particles-drift 28s linear infinite;
}

.orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.05);
    transform: translate(-50%, -50%);
}

.orbit-ring::before,
.orbit-ring::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0.4;
}

.orbit-ring::after {
    inset: 22px;
    border-color: rgba(255, 138, 76, 0.12);
}

.orbit-ring-1 {
    width: min(68vw, 620px);
    height: min(68vw, 620px);
    animation: ring-breathe 11s ease-in-out infinite;
}

.orbit-ring-2 {
    width: min(54vw, 500px);
    height: min(54vw, 500px);
    animation: ring-breathe 13s ease-in-out infinite reverse;
}

.orbit-ring-3 {
    width: min(40vw, 380px);
    height: min(40vw, 380px);
    animation: ring-breathe 15s ease-in-out infinite;
}

.center-build-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(34vw, 320px);
    height: min(34vw, 320px);
    transform: translate(-50%, -50%) rotate(-4deg);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(15, 23, 42, 0.42)),
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.1), transparent 44%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(45, 212, 191, 0.08),
        0 0 70px rgba(45, 212, 191, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: build-float 6s ease-in-out infinite;
    transition: transform 260ms ease, box-shadow 260ms ease;
    z-index: 4;
}

.center-build-card:hover {
    transform: translate(-50%, -50%) rotate(-8deg) scale(1.05);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 138, 76, 0.18),
        0 0 80px rgba(255, 138, 76, 0.2);
}

.center-build-card::before,
.center-build-card::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.center-build-card::after {
    inset: 34px;
    border-style: dashed;
    opacity: 0.45;
}

.center-build-inner {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
}

.center-build-inner span {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    padding-left: 0.18em;
    color: #f8fafc;
    text-shadow:
        0 0 22px rgba(45, 212, 191, 0.28),
        0 0 42px rgba(255, 138, 76, 0.16);
}

.center-build-inner small {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.orbit-card {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 0;
    height: 0;
    transform-style: preserve-3d;
    animation: orbit-rotate var(--orbit-duration, 20s) linear infinite;
    animation-delay: var(--orbit-delay, 0s);
    will-change: transform;
}

.orbit-card-track {
    transform:
        rotate(var(--orbit-angle)) translateX(calc(var(--orbit-radius) * var(--orbit-scale))) translateY(var(--orbit-y, 0px));
    transform-style: preserve-3d;
    transition: filter 200ms ease;
}

.orbit-card-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: var(--card-width, 132px);
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(15, 23, 42, 0.56)),
        rgba(15, 23, 42, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(45, 212, 191, 0.08),
        0 0 22px rgba(45, 212, 191, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform-origin: center;
    animation: orbit-counter var(--orbit-duration, 20s) linear infinite;
    animation-delay: var(--orbit-delay, 0s);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        filter 220ms ease;
}

.orbit-card-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 36%),
        radial-gradient(circle at bottom right, var(--accent-glow, rgba(45, 212, 191, 0.14)), transparent 45%);
    opacity: 0.9;
    pointer-events: none;
}

.orbit-card-panel i.icon {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent-bright);
    flex-shrink: 0;
    font-size: 1rem;
}

.orbit-card-panel span {
    position: relative;
    z-index: 1;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.orbit-card:hover .orbit-card-panel {
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 28px rgba(45, 212, 191, 0.24);
    filter: brightness(1.08) saturate(1.1);
}

.orbit-card-seo {
    --orbit-radius: min(29vw, 260px);
    --orbit-angle: 12deg;
    --orbit-duration: 18s;
    --orbit-delay: -1s;
    --orbit-y: -42px;
    --card-width: 112px;
    --accent-glow: rgba(255, 138, 76, 0.18);
}

.orbit-card-react {
    --orbit-radius: min(33vw, 290px);
    --orbit-angle: 54deg;
    --orbit-duration: 22s;
    --orbit-delay: -6s;
    --orbit-y: 24px;
    --card-width: 118px;
    --accent-glow: rgba(45, 212, 191, 0.18);
}

.orbit-card-next {
    --orbit-radius: min(36vw, 320px);
    --orbit-angle: 88deg;
    --orbit-duration: 26s;
    --orbit-delay: -9s;
    --orbit-y: -16px;
    --card-width: 124px;
    --accent-glow: rgba(59, 130, 246, 0.18);
}

.orbit-card-node {
    --orbit-radius: min(28vw, 250px);
    --orbit-angle: 124deg;
    --orbit-duration: 20s;
    --orbit-delay: -4s;
    --orbit-y: 34px;
    --card-width: 122px;
    --accent-glow: rgba(45, 212, 191, 0.16);
}

.orbit-card-html {
    --orbit-radius: min(39vw, 340px);
    --orbit-angle: 158deg;
    --orbit-duration: 24s;
    --orbit-delay: -10s;
    --orbit-y: -24px;
    --card-width: 110px;
    --accent-glow: rgba(255, 138, 76, 0.2);
}

.orbit-card-css {
    --orbit-radius: min(30vw, 268px);
    --orbit-angle: 190deg;
    --orbit-duration: 19s;
    --orbit-delay: -2s;
    --orbit-y: 18px;
    --card-width: 106px;
    --accent-glow: rgba(45, 212, 191, 0.16);
}

.orbit-card-php {
    --orbit-radius: min(34vw, 300px);
    --orbit-angle: 224deg;
    --orbit-duration: 23s;
    --orbit-delay: -7s;
    --orbit-y: -10px;
    --card-width: 112px;
    --accent-glow: rgba(59, 130, 246, 0.16);
}

.orbit-card-js {
    --orbit-radius: min(41vw, 360px);
    --orbit-angle: 248deg;
    --orbit-duration: 27s;
    --orbit-delay: -12s;
    --orbit-y: 28px;
    --card-width: 110px;
    --accent-glow: rgba(255, 138, 76, 0.16);
}

.orbit-card-sql {
    --orbit-radius: min(27vw, 238px);
    --orbit-angle: 280deg;
    --orbit-duration: 17s;
    --orbit-delay: -5s;
    --orbit-y: -30px;
    --card-width: 100px;
    --accent-glow: rgba(45, 212, 191, 0.16);
}

.orbit-card-wordpress {
    --orbit-radius: min(37vw, 326px);
    --orbit-angle: 304deg;
    --orbit-duration: 25s;
    --orbit-delay: -8s;
    --orbit-y: 12px;
    --card-width: 134px;
    --accent-glow: rgba(59, 130, 246, 0.16);
}

.orbit-card-mysql {
    --orbit-radius: min(31vw, 276px);
    --orbit-angle: 332deg;
    --orbit-duration: 21s;
    --orbit-delay: -3s;
    --orbit-y: -22px;
    --card-width: 112px;
    --accent-glow: rgba(255, 138, 76, 0.16);
}

.orbit-card-python {
    --orbit-radius: min(43vw, 376px);
    --orbit-angle: 352deg;
    --orbit-duration: 28s;
    --orbit-delay: -13s;
    --orbit-y: 36px;
    --card-width: 114px;
    --accent-glow: rgba(45, 212, 191, 0.16);
}

.orbit-card-git {
    --orbit-radius: min(26vw, 228px);
    --orbit-angle: 18deg;
    --orbit-duration: 16s;
    --orbit-delay: -4s;
    --orbit-y: -18px;
    --card-width: 100px;
    --accent-glow: rgba(255, 138, 76, 0.18);
}

.orbit-card-testing {
    --orbit-radius: min(32vw, 284px);
    --orbit-angle: 74deg;
    --orbit-duration: 22s;
    --orbit-delay: -11s;
    --orbit-y: 18px;
    --card-width: 116px;
    --accent-glow: rgba(59, 130, 246, 0.18);
}

.orbit-card-design {
    --orbit-radius: min(38vw, 336px);
    --orbit-angle: 206deg;
    --orbit-duration: 26s;
    --orbit-delay: -9s;
    --orbit-y: -16px;
    --card-width: 136px;
    --accent-glow: rgba(255, 138, 76, 0.18);
}

@keyframes orbit-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-counter {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes build-float {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-4deg) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-1deg) translateY(-8px);
    }
}

@keyframes ring-breathe {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.03);
        opacity: 0.8;
    }
}

@keyframes particles-drift {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-4%, -2%, 0);
    }
}

@keyframes orbit-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-breathe {

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

    50% {
        opacity: 0.8;
        transform: scale(1.06);
    }
}

@keyframes orbit-item-pulse {

    0%,
    100% {
        transform:
            rotate(var(--angle)) translateX(182px) rotate(calc(-1 * var(--angle))) translateY(0);
    }

    50% {
        transform:
            rotate(var(--angle)) translateX(182px) rotate(calc(-1 * var(--angle))) translateY(-5px);
    }
}

@keyframes motion-core-float {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-6px) rotate(-1deg);
    }
}

@keyframes motion-orbit-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes motion-pill-bob {

    0%,
    100% {
        transform-origin: center;
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.15);
    }
}

@keyframes motion-scan-1 {
    0% {
        transform: translateX(-24%);
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    100% {
        transform: translateX(124%);
        opacity: 0;
    }
}

@keyframes motion-scan-2 {
    0% {
        transform: translateX(24%);
        opacity: 0;
    }

    20% {
        opacity: 0.55;
    }

    100% {
        transform: translateX(-124%);
        opacity: 0;
    }
}

@keyframes motion-scan-3 {
    0% {
        transform: translateX(-18%);
        opacity: 0;
    }

    25% {
        opacity: 0.6;
    }

    100% {
        transform: translateX(118%);
        opacity: 0;
    }
}

@keyframes motion-scan-4 {
    0% {
        transform: translateX(18%);
        opacity: 0;
    }

    25% {
        opacity: 0.35;
    }

    100% {
        transform: translateX(-118%);
        opacity: 0;
    }
}

.language-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 2rem;
}

.language-icon-card {
    position: relative;
    min-height: 320px;
    padding: 1.4rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 38%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(15, 23, 42, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 24px 60px rgba(2, 6, 23, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.language-icon-card::before {
    content: '';
    position: absolute;
    inset: -20% auto auto -18%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.35;
    pointer-events: none;
}

.language-icon-card::after {
    content: '';
    position: absolute;
    inset: auto -10% -18% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 65%);
    filter: blur(12px);
    opacity: 0.8;
    pointer-events: none;
}

.language-icon-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 30px 70px rgba(2, 6, 23, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.html-card::before {
    background: radial-gradient(circle, rgba(227, 79, 38, 0.28), transparent 68%);
}

.css-card::before {
    background: radial-gradient(circle, rgba(38, 77, 228, 0.28), transparent 68%);
}

.js-card::before {
    background: radial-gradient(circle, rgba(247, 223, 30, 0.3), transparent 68%);
}

.language-icon-shell {
    position: relative;
    width: min(100%, 280px);
    aspect-ratio: 1 / 1;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82) 44%, rgba(233, 236, 240, 0.84) 72%, rgba(214, 219, 226, 0.9) 100%);
    box-shadow:
        0 24px 36px rgba(2, 6, 23, 0.25),
        inset 0 -12px 20px rgba(0, 0, 0, 0.08);
}

.language-icon-shell::before {
    content: '';
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: inset 0 0 0 1px rgba(2, 6, 23, 0.03);
}

.language-icon-shell::after {
    content: '';
    position: absolute;
    inset: auto 12% 10% 18%;
    height: 12%;
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.18);
    filter: blur(14px);
    transform: rotate(-10deg);
}

.language-icon-disc {
    position: relative;
    width: 62%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    border-radius: 28%;
    color: #ffffff;
    box-shadow:
        0 18px 28px rgba(2, 6, 23, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: perspective(900px) rotateX(8deg) rotateY(-10deg);
    overflow: hidden;
}

.language-icon-disc::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.45), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03));
}

.language-icon-disc::after {
    content: '';
    position: absolute;
    inset: 14%;
    border-radius: 24%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.html-card .language-icon-disc {
    background: linear-gradient(145deg, rgba(227, 79, 38, 0.98), rgba(197, 67, 31, 0.88));
}

.css-card .language-icon-disc {
    background: linear-gradient(145deg, rgba(38, 77, 228, 0.98), rgba(28, 61, 181, 0.9));
}

.js-card .language-icon-disc {
    background: linear-gradient(145deg, rgba(247, 223, 30, 0.98), rgba(220, 198, 26, 0.9));
    color: #111827;
}

.language-icon-disc i {
    position: relative;
    z-index: 1;
    font-size: clamp(4.2rem, 6vw, 5.6rem);
    filter: drop-shadow(0 10px 14px rgba(2, 6, 23, 0.16));
}

.language-icon-meta {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0.2rem 0.2rem 0.35rem;
}

.language-icon-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.35rem 0.7rem;
    margin-bottom: 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--accent-bright);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.language-icon-meta h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    letter-spacing: -0.03em;
}

.language-icon-meta p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

.skills-hero-copy {
    position: absolute;
    left: 1.6rem;
    top: 1.6rem;
    z-index: 2;
}

.skills-hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.skills-hero-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    text-shadow: 0 0 24px rgba(45, 212, 191, 0.08);
}

.skills-hero-copy h3 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(241, 245, 249, 0.7);
    text-shadow: none;
}

.tech-orbit {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.tech-core {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(45, 212, 191, 0.22), rgba(15, 23, 42, 0.9)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 40%);
    border: 1px solid rgba(94, 234, 212, 0.28);
    box-shadow:
        0 0 0 1px rgba(45, 212, 191, 0.08),
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(45, 212, 191, 0.12);
    transform-style: preserve-3d;
    animation: cube-float 6s ease-in-out infinite;
}

.tech-core::before,
.tech-core::after {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-core::after {
    inset: 32px;
    border-style: dashed;
    opacity: 0.55;
}

.tech-core-mark {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-bright);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(45, 212, 191, 0.45);
}

.skill-float {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.12);
    backdrop-filter: blur(12px);
    display: grid;
    place-items: center;
    color: var(--accent-bright);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
    animation: float-reverse 4.8s ease-in-out infinite;
}

.skill-float i.icon {
    font-size: 1.35rem;
}

.skill-float::after {
    content: attr(data-label);
    position: absolute;
    bottom: -1.7rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.skill-float.f1 {
    top: 18%;
    left: 12%;
    animation-duration: 5.2s;
}

.skill-float.f2 {
    top: 20%;
    right: 12%;
    animation-duration: 6s;
}

.skill-float.f3 {
    bottom: 20%;
    left: 18%;
    animation-duration: 5.6s;
}

.skill-float.f4 {
    bottom: 18%;
    right: 18%;
    animation-duration: 6.4s;
}

.skill-grid-lines {
    position: absolute;
    inset: auto 1.4rem 1.4rem 1.4rem;
    display: grid;
    gap: 0.85rem;
    z-index: 2;
}

.skill-grid-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
}

.skill-grid-row span:first-child {
    width: 74px;
    color: var(--text-primary);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.skill-grid-row .line {
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.08);
    overflow: hidden;
    position: relative;
}

.skill-grid-row .line::before {
    content: '';
    position: absolute;
    inset: 0;
    width: var(--bar, 60%);
    background: linear-gradient(90deg, var(--accent-dim), var(--accent-bright));
    box-shadow: 0 0 14px rgba(45, 212, 191, 0.35);
    border-radius: inherit;
    transform-origin: left center;
    transform: scaleX(0);
    animation: line-grow 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.skill-grid-row .pct {
    width: 44px;
    text-align: right;
    color: var(--accent-bright);
    font-size: 0.8rem;
}

.skills-list {
    display: grid;
    gap: 1rem;
}

.skill-line-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.56));
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.skill-line-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.06) 50%, transparent 65%);
    transform: translateX(-120%) skewX(-18deg);
    opacity: 0;
    pointer-events: none;
}

.skill-line-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
}

.skill-line-card:hover::before {
    opacity: 1;
    animation: sheen-sweep 1.4s ease;
}

.skill-line-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.skill-line-head i.icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--accent-glow);
    color: var(--accent-bright);
    font-size: 1rem;
    flex-shrink: 0;
}

.skill-line-head span {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.96rem;
    font-weight: 600;
}

.skill-line-head strong {
    color: var(--accent-bright);
    font-size: 0.82rem;
    font-weight: 700;
}

.skill-line-bar {
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.08);
    overflow: hidden;
    position: relative;
}

.skill-line-bar span {
    display: block;
    height: 100%;
    width: var(--bar, 60%);
    border-radius: inherit;
    background: linear-gradient(90deg, #51dfd5, #13ecec, var(--accent-bright));
    box-shadow: 0 0 16px rgba(255, 159, 67, 0.24);
    transform-origin: left center;
    animation: line-grow 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.skill-line-card:hover .skill-line-bar span {
    box-shadow: 0 0 20px rgba(255, 159, 67, 0.34);
}

.skill-bar-group {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.skill-bar-item {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.skill-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.skill-bar-label span:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.skill-bar-label span:last-child {
    color: var(--accent);
    font-weight: 600;
}

.skill-bar-track {
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.08);
    overflow: hidden;
    position: relative;
}

.skill-bar-track::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: translateX(-120%);
    animation: bar-shine 2.8s ease-in-out infinite;
}

.skill-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-dim), var(--accent-bright));
    width: 0;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-bar-fill.animated {
    animation: progress-fill 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.skill-marquee {
    position: relative;
    margin-top: 2.25rem;
    overflow: hidden;
    padding: 0.5rem 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.skill-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0.9rem;
    animation: skills-marquee 28s linear infinite;
    will-change: transform;
}

.skill-marquee:hover .skill-marquee-track,
.skill-marquee:focus-within .skill-marquee-track {
    animation-play-state: paused;
}

.skill-marquee-group {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
}

.skill-chip {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    position: relative;
    animation: chip-breathe 5.5s ease-in-out infinite;
    animation-delay: var(--chip-delay, 0s);
    will-change: transform;
}

.skill-chip i,
.skill-chip i.icon {
    font-size: 0.9rem;
    color: var(--accent-bright);
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.skill-chip:hover {
    color: var(--accent-bright);
    border-color: var(--border-hover);
    background: var(--accent-glow);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(45, 212, 191, 0.16);
}

@keyframes skills-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.45rem));
    }
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.08), 0 0 24px rgba(45, 212, 191, 0.12);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.14), 0 0 34px rgba(45, 212, 191, 0.2);
    }
}

@keyframes bar-shine {
    0% {
        transform: translateX(-120%);
    }

    55% {
        transform: translateX(120%);
    }

    100% {
        transform: translateX(120%);
    }
}

@keyframes chip-breathe {

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

    50% {
        transform: translateY(-2px);
    }
}

@keyframes cube-float {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: translateY(-12px) rotateX(8deg) rotateY(-10deg);
    }
}

@keyframes line-grow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

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

    body::before,
    body::after,
    section::before,
    .hero-bg::before,
    .hero-bg::after,
    .hero-orb,
    .section-divider,
    #projects::before,
    #projects::after,
    .project-card::after,
    .project-card-image i.icon,
    .skill-float,
    .tech-core,
    .skills-orbit-stage,
    .orbit-track,
    .orbit-rings::before,
    .orbit-rings::after,
    .wd-orb-badge,
    .orbit-core,
    .skills-visual::after,
    .skills-visual::before,
    .skill-grid-row .line::before,
    .skill-bar-track::after {
        animation: none;
    }

    .skill-marquee-track {
        animation: none;
        transform: translateX(0);
    }

    .skill-marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .section-divider,
    #projects::before,
    #projects::after,
    .project-card::after,
    .project-card-image i.icon {
        animation: none;
    }
}

/* ========================================
           PROJECTS SECTION
        ======================================== */
.projects-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 0.75rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.projects-grid::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 min(360px, 84vw);
    background:
        linear-gradient(180deg, rgba(10, 14, 28, 0.96), rgba(7, 11, 20, 0.98));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
    isolation: isolate;
    scroll-snap-align: start;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.45), transparent 35%, rgba(94, 234, 212, 0.15), transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.08) 50%, transparent 65%);
    transform: translateX(-120%) skewX(-18deg);
    pointer-events: none;
    opacity: 0;
}

.project-card:hover {
    border-color: rgba(45, 212, 191, 0.28);
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6);
}

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

.project-card:hover::after {
    opacity: 1;
    animation: sheen-sweep 1.3s ease;
}

.project-card-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.15), rgba(15, 23, 42, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem 1rem 0;
}

.project-card-image::after {
    content: '';
    position: absolute;
    inset: 1rem 1rem 0;
    border-radius: 16px;
    background: linear-gradient(to bottom, transparent 58%, rgba(3, 7, 18, 0.86));
    z-index: 1;
}

.project-card-image img {
    position: absolute;
    inset: 1rem 1rem 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    z-index: 0;
    transition: var(--transition);
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-image i.icon {
    display: none;
}

.project-badge {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    z-index: 3;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed, #22d3ee);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 24px rgba(34, 211, 238, 0.18);
}

.project-card-body {
    padding: 1.3rem 1.35rem 1.4rem;
}

.project-card-head {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.project-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    background: rgba(13, 20, 35, 0.95);
    border: 1px solid rgba(45, 212, 191, 0.18);
    box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.06);
}

.project-card-icon i.icon {
    font-size: 1.35rem;
    color: var(--accent-bright);
}

.project-card-icon-blue {
    border-color: rgba(96, 165, 250, 0.18);
    box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.06);
}

.project-card-icon-blue i.icon {
    color: #60a5fa;
}

.project-card-icon-green {
    border-color: rgba(74, 222, 128, 0.18);
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.06);
}

.project-card-icon-green i.icon {
    color: #4ade80;
}

.project-card-icon-amber {
    border-color: rgba(251, 191, 36, 0.18);
    box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.06);
}

.project-card-icon-amber i.icon {
    color: #fbbf24;
}

.project-card-copy h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.project-summary {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

.project-card-body .project-tech {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    margin-top: 0.2rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.project-card-body .project-tech::-webkit-scrollbar {
    display: none;
}

.project-card-body .project-tech span {
    flex: 0 0 auto;
    font-size: 0.7rem;
    padding: 0.25rem 0.58rem;
    border-radius: 999px;
    background: rgba(16, 24, 39, 0.92);
    color: #e5eef7;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

.project-card-body .project-tech span:hover {
    transform: translateY(-2px);
    background: rgba(45, 212, 191, 0.14);
}

.project-view-btn,
.project-details {
    display: none;
}

@media (max-width: 1100px) {
    .projects-grid {
        gap: 1rem;
        padding-bottom: 0.5rem;
    }
}

/* ========================================
           TIMELINE (Education & Experience)
        ======================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--border), transparent);
}

.timeline-item {
    position: relative;
    padding-left: 65px;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 3px solid var(--accent);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background: var(--accent);
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.5);
}

.timeline-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.8rem;
    transition: var(--transition);
}

@media (min-width: 1025px) {
    .timeline {
        max-width: 1120px;
    }

    .timeline-item {
        padding-left: 76px;
        margin-bottom: 3rem;
    }

    .timeline::before {
        left: 26px;
    }

    .timeline-dot {
        left: 18px;
    }

    .timeline-card {
        padding: 1.8rem 2.2rem;
    }
}

.timeline-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
}

.timeline-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-card h3 i.icon {
    color: var(--accent);
    font-size: 1rem;
}

.timeline-card .timeline-meta {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.timeline-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ========================================
           CERTIFICATIONS
        ======================================== */
.certs-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 0.75rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.certs-grid::-webkit-scrollbar {
    display: none;
}

.cert-card {
    flex: 0 0 min(320px, 84vw);
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.cert-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem;
    color: var(--accent);
    border: 2px solid var(--border-hover);
}

.cert-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.cert-card .cert-meta {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.cert-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ========================================
           CONTACT SECTION
        ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-block h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-info-block>p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-detail:hover {
    border-color: var(--border-hover);
    transform: translateX(5px);
}

.contact-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-detail-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.contact-detail-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(90, 96, 112, 0.84), rgba(28, 33, 46, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.92rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-socials a:nth-child(1) {
    --icon-glow: rgba(24, 23, 23, 0.35);
    --icon-accent: rgba(255, 255, 255, 0.08);
}

.contact-socials a:nth-child(2) {
    --icon-glow: rgba(10, 102, 194, 0.32);
    --icon-accent: rgba(10, 102, 194, 0.16);
}

.contact-socials a:nth-child(3) {
    --icon-glow: rgba(37, 211, 102, 0.3);
    --icon-accent: rgba(37, 211, 102, 0.15);
}

.contact-socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(2, 6, 23, 0.38);
}

.contact-socials a::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, var(--icon-accent, rgba(255, 255, 255, 0.18)), transparent 50%),
        radial-gradient(circle at 70% 80%, var(--icon-glow, rgba(255, 255, 255, 0.14)), transparent 62%);
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.contact-socials a i {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-socials a svg {
    position: relative;
    z-index: 1;
    width: 28%;
    height: 28%;
    display: block;
    filter: drop-shadow(0 8px 12px rgba(2, 6, 23, 0.16));
}

.contact-socials a:nth-child(1):hover {
    color: #ffffff;
}

.contact-socials a:nth-child(2):hover {
    color: #ffffff;
}

.contact-socials a:nth-child(3):hover {
    color: #ffffff;
}

.contact-extras {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
}

.contact-extras h4 {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-extras p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
}

.contact-form-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    border-radius: var(--radius-sm);
}

.form-submit {
    width: 100%;
    padding: 0.9rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent-dim), var(--accent));
    color: var(--bg-deep);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.form-status {
    min-height: 1.2rem;
    margin-top: 0.9rem;
    color: var(--accent-bright);
    font-size: 0.92rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-status.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
           FOOTER
        ======================================== */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.footer-brand::before {
    content: '';
    width: 40px;
    height: 40px;
    background: url('logo.svg') center center / contain no-repeat;
    flex-shrink: 0;
}

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

.footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(90, 96, 112, 0.84), rgba(28, 33, 46, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.16);
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-socials a:nth-child(1) {
    --icon-glow: rgba(24, 23, 23, 0.35);
    --icon-accent: rgba(255, 255, 255, 0.08);
}

.footer-socials a:nth-child(2) {
    --icon-glow: rgba(10, 102, 194, 0.32);
    --icon-accent: rgba(10, 102, 194, 0.16);
}

.footer-socials a:nth-child(3) {
    --icon-glow: rgba(37, 211, 102, 0.3);
    --icon-accent: rgba(37, 211, 102, 0.15);
}

.footer-socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(2, 6, 23, 0.38);
}

.footer-socials a::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, var(--icon-accent, rgba(255, 255, 255, 0.18)), transparent 50%),
        radial-gradient(circle at 70% 80%, var(--icon-glow, rgba(255, 255, 255, 0.14)), transparent 62%);
    pointer-events: none;
}

.footer-socials a i {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a svg {
    position: relative;
    z-index: 1;
    width: 42%;
    height: 42%;
    display: block;
    filter: drop-shadow(0 8px 12px rgba(2, 6, 23, 0.16));
}

.footer-socials a:nth-child(1):hover {
    color: #ffffff;
}

.footer-socials a:nth-child(2):hover {
    color: #ffffff;
}

.footer-socials a:nth-child(3):hover {
    color: #ffffff;
}

/* ========================================
           RESPONSIVE
        ======================================== */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-skill-card {
        width: min(100%, 520px);
        min-height: 520px;
    }

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

    .about-photo-wrapper {
        order: -1;
        width: min(100%, 280px);
        padding-top: 4rem;
        padding-bottom: 1.8rem;
    }

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

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

    .language-icon-card {
        min-height: 300px;
    }

    .motion-stage {
        height: 330px;
    }

    .wd-orb-badge {
        width: 68px;
        height: 68px;
        margin: -34px;
        transform:
            rotate(var(--angle)) translateX(138px) rotate(calc(-1 * var(--angle)));
    }

    .orbit-core {
        width: 168px;
        height: 168px;
    }

    @keyframes orbit-item-pulse {

        0%,
        100% {
            transform:
                rotate(var(--angle)) translateX(138px) rotate(calc(-1 * var(--angle))) translateY(0);
        }

        50% {
            transform:
                rotate(var(--angle)) translateX(138px) rotate(calc(-1 * var(--angle))) translateY(-4px);
        }
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-links {
        display: flex;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(3, 7, 18, 0.995);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 5rem 1.25rem 1.25rem;
        z-index: 1006;
        transform: translateY(-100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease;
        box-shadow: none;
    }

    .nav-links.open {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    body.nav-open .menu-toggle {
        opacity: 0;
        pointer-events: none;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        font-size: 1.08rem;
        padding: 0.85rem 1rem;
    }

    .nav-links a:first-of-type {
        margin-top: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1007;
    }

    .menu-close {
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 1.5rem;
        cursor: pointer;
        display: none;
        padding: 0.5rem;
    }

    .nav-links.open .menu-close {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .skills-visual {
        min-height: auto;
    }

    .skills-orbit-shell {
        --orbit-scale: 0.76;
        min-height: 560px;
    }

    .language-icons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .language-icon-card {
        min-height: 280px;
        padding: 1.15rem;
    }

    .language-icon-shell {
        width: min(100%, 240px);
    }

    .language-icon-meta h3 {
        font-size: 1.2rem;
    }

    .language-icon-disc i {
        font-size: clamp(3.8rem, 18vw, 5rem);
    }

    .skills-hero-copy h3 {
        font-size: 1.9rem;
    }

    .skills-orbit-stage {
        height: 330px;
    }

    .wd-orb-badge {
        width: 68px;
        height: 68px;
        margin: -34px;
        transform:
            rotate(var(--angle)) translateX(138px) rotate(calc(-1 * var(--angle)));
    }

    .orbit-core {
        width: 168px;
        height: 168px;
    }

    @keyframes orbit-item-pulse {

        0%,
        100% {
            transform:
                rotate(var(--angle)) translateX(138px) rotate(calc(-1 * var(--angle))) translateY(0);
        }

        50% {
            transform:
                rotate(var(--angle)) translateX(138px) rotate(calc(-1 * var(--angle))) translateY(-4px);
        }
    }

    .skills-list {
        gap: 0.85rem;
    }

    .skill-line-card {
        padding: 1rem 1.05rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .about-info-box {
        padding: 1rem 1.1rem;
    }

    .projects-grid {
        gap: 1rem;
        padding-bottom: 0;
    }

    .project-card {
        flex-basis: 86vw;
    }

    .contact-grid {
        gap: 1.5rem;
    }

    .certs-grid {
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .cert-card {
        flex-basis: 86vw;
    }

    .orbit-card-panel span {
        font-size: 0.74rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .about-info-box {
        flex-direction: column;
        gap: 0.8rem;
    }

    .timeline::before {
        left: 14px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-dot {
        left: 7px;
        width: 16px;
        height: 16px;
    }

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    #about::before,
    #about::after {
        opacity: 0.16;
        filter: blur(20px);
    }

    #about::before {
        width: 160px;
        height: 160px;
        left: -48px;
        top: 18px;
    }

    #about::after {
        width: 130px;
        height: 130px;
        right: -28px;
        top: 24px;
    }

    .navbar {
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 0.95rem;
    }

    .logo-mark {
        width: 42px;
        height: 42px;
    }

    .hero h1 {
        font-size: 2.9rem;
        max-width: 100%;
        line-height: 1.1;
        margin-bottom: 0.85rem;
        padding-bottom: 0.08em;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-skill-card {
        width: 100%;
        max-width: 520px;
        padding: 0.95rem;
        border-radius: 24px;
    }

    .hero-skill-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .hero-skill-mini {
        min-height: 78px;
        border-radius: 16px;
        padding: 0.5rem 0.25rem;
    }

    .hero-skill-mini i.icon,
    .hero-skill-mini i {
        font-size: 1.65rem;
    }

    .hero-skill-mini em {
        font-size: 0.64rem;
    }

    .language-icon-card {
        min-height: 250px;
        padding: 1rem;
        border-radius: 24px;
    }

    .language-icon-shell {
        width: min(100%, 220px);
    }

    .language-icon-meta p {
        font-size: 0.84rem;
    }

    .skills-hero-copy h3 {
        font-size: 1.55rem;
    }

    .about-photo-frame {
        width: min(100%, 280px);
        aspect-ratio: 4 / 5;
        height: auto;
    }

    .about-floating-pill {
        padding: 0.55rem 0.9rem;
        font-size: 0.8rem;
        gap: 0.5rem;
        max-width: 100%;
        white-space: nowrap;
    }

    .about-floating-pill-bottom {
        right: -0.2rem;
        bottom: 0;
    }

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

    .about-stat .stat-number {
        font-size: 1.4rem;
    }

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

    .skills-visual {
        min-height: auto;
    }

    .motion-stage {
        height: 280px;
    }

    .about-floating-pill-top {
        top: 0.15rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .wd-orb-badge {
        width: 58px;
        height: 58px;
        margin: -29px;
        border-radius: 14px;
        transform:
            rotate(var(--angle)) translateX(112px) rotate(calc(-1 * var(--angle)));
    }

    .wd-orb-badge span {
        font-size: 0.58rem;
    }

    .wd-orb-badge i.icon {
        font-size: 1rem;
    }

    .orbit-core {
        width: 142px;
        height: 142px;
        border-radius: 24px;
    }

    .orbit-core-inner span {
        font-size: 1.7rem;
    }

    .orbit-core-inner small {
        font-size: 0.58rem;
        letter-spacing: 0.2em;
    }

    @keyframes orbit-item-pulse {

        0%,
        100% {
            transform:
                rotate(var(--angle)) translateX(112px) rotate(calc(-1 * var(--angle))) translateY(0);
        }

        50% {
            transform:
                rotate(var(--angle)) translateX(112px) rotate(calc(-1 * var(--angle))) translateY(-3px);
        }
    }

    .skills-hero-copy h3 {
        font-size: 1.4rem;
    }

    .skill-line-head {
        gap: 0.65rem;
    }

    .skill-line-head i.icon {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }

    .skill-line-head span {
        font-size: 0.84rem;
    }

    .skill-line-head strong {
        font-size: 0.75rem;
    }

    .projects-grid {
        gap: 0.85rem;
        padding-bottom: 0;
    }

    .project-card {
        flex-basis: 86vw;
    }

    .project-card-body {
        padding: 1.4rem;
    }

    .certs-grid {
        gap: 0.85rem;
        padding-bottom: 0.25rem;
    }

    .cert-card {
        flex-basis: 86vw;
    }

    .orbit-card-panel {
        min-width: 96px;
        padding: 0.62rem 0.8rem;
    }

    .orbit-card-panel i.icon {
        width: 28px;
        height: 28px;
        font-size: 0.88rem;
    }

    .orbit-card-panel span {
        font-size: 0.62rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-detail {
        padding: 0.9rem 1rem;
    }

    .contact-socials,
    .footer-socials {
        flex-wrap: wrap;
    }

    .contact-socials a,
    .footer-socials a {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
}

/* ========================================
           CYBER THEME OVERRIDES
        ======================================== */
:root {
    --bg-deep: #01040a;
    --bg-primary: #040912;
    --bg-elevated: #08111b;
    --bg-card: rgba(7, 12, 20, 0.8);
    --bg-glass: rgba(7, 12, 20, 0.72);
    --accent: #32e6ff;
    --accent-dim: #16c7f5;
    --accent-bright: #8cf9ff;
    --accent-glow: rgba(50, 230, 255, 0.1);
    --accent-glow-md: rgba(50, 230, 255, 0.18);
    --accent-glow-strong: rgba(50, 230, 255, 0.3);
    --text-primary: #f5fbff;
    --text-secondary: #a6b7c9;
    --text-muted: #738499;
    --border: rgba(50, 230, 255, 0.1);
    --border-hover: rgba(50, 230, 255, 0.28);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-lg: 0 28px 70px -16px rgba(0, 0, 0, 0.72);
    --shadow-glow: 0 0 44px rgba(50, 230, 255, 0.14);
}

body {
    position: relative;
    background:
        radial-gradient(circle at 10% 8%, rgba(50, 230, 255, 0.08), transparent 16%),
        radial-gradient(circle at 90% 8%, rgba(50, 230, 255, 0.07), transparent 16%),
        linear-gradient(180deg, rgba(5, 7, 13, 0.92), rgba(3, 5, 10, 0.98)),
        url('hero-background.svg') center center / cover no-repeat fixed;
}

body::before {
    inset: 0;
    background:
        radial-gradient(circle at 11% 10%, rgba(132, 255, 247, 0.42) 0%, rgba(50, 230, 255, 0.16) 16%, transparent 42%),
        radial-gradient(circle at 89% 10%, rgba(132, 255, 247, 0.38) 0%, rgba(50, 230, 255, 0.14) 16%, transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(50, 230, 255, 0.05), transparent 60%);
    filter: blur(28px);
    opacity: 0.7;
    animation: ambient-drift 18s ease-in-out infinite alternate;
}

body::after {
    inset: 0;
    background:
        radial-gradient(circle at 11% 10%, rgba(132, 255, 247, 0.9) 0 3px, transparent 4px),
        radial-gradient(circle at 7% 6%, rgba(132, 255, 247, 0.55) 0 1px, transparent 2px),
        radial-gradient(circle at 15% 4%, rgba(132, 255, 247, 0.5) 0 1px, transparent 2px),
        radial-gradient(circle at 89% 10%, rgba(132, 255, 247, 0.9) 0 3px, transparent 4px),
        radial-gradient(circle at 93% 6%, rgba(132, 255, 247, 0.55) 0 1px, transparent 2px),
        radial-gradient(circle at 85% 4%, rgba(132, 255, 247, 0.5) 0 1px, transparent 2px);
    filter: blur(3px);
    opacity: 0.8;
    animation: ambient-spark 6.5s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
    body {
        background:
            radial-gradient(circle at 10% 8%, rgba(50, 230, 255, 0.08), transparent 16%),
            radial-gradient(circle at 90% 8%, rgba(50, 230, 255, 0.07), transparent 16%),
            linear-gradient(180deg, rgba(5, 7, 13, 0.92), rgba(3, 5, 10, 0.98)),
            url('hero-background.svg') center top / cover no-repeat scroll;
        background-attachment: scroll;
    }

    section::before {
        background:
            linear-gradient(180deg, rgba(3, 5, 10, 0.1), rgba(3, 5, 10, 0.18)),
            url('hero-background.svg') center top / cover no-repeat scroll;
        opacity: 0.1;
    }
}

section::before {
    background:
        linear-gradient(180deg, rgba(3, 5, 10, 0.08), rgba(3, 5, 10, 0.16)),
        url('hero-background.svg') center center / cover no-repeat fixed;
    opacity: 0.1;
}

.navbar.scrolled {
    background: rgba(2, 7, 14, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-bright);
    box-shadow: inset 0 0 0 1px rgba(50, 230, 255, 0.08);
}

.section-title,
.hero h1,
.about-text h3,
.timeline-card h3,
.cert-card h3,
.contact-info-block h3,
.contact-form-card h3,
.footer-brand {
    text-shadow: 0 0 20px rgba(50, 230, 255, 0.06);
}

.section-divider {
    background: linear-gradient(90deg, var(--accent), rgba(50, 230, 255, 0.08));
}

.hero-skill-card,
.about-photo-note,
.about-stat,
.skills-panel-card,
.project-card,
.timeline-card,
.cert-card,
.contact-detail,
.contact-form-card,
.contact-extras {
    background:
        radial-gradient(circle at 18% 16%, rgba(50, 230, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(10, 16, 26, 0.88), rgba(5, 9, 16, 0.88));
    border-color: rgba(50, 230, 255, 0.1);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-skill-card::before,
.project-card::before,
.cert-card::before,
.contact-form-card::before,
.timeline-card::before {
    border-color: rgba(50, 230, 255, 0.18);
}

.project-card:hover,
.timeline-card:hover,
.cert-card:hover,
.contact-detail:hover,
.about-stat:hover {
    border-color: rgba(50, 230, 255, 0.28);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.56), 0 0 24px rgba(50, 230, 255, 0.1);
}

.project-card-image {
    background: linear-gradient(135deg, rgba(50, 230, 255, 0.16), rgba(5, 8, 15, 0.96));
}

.project-card-image::after {
    background: linear-gradient(to bottom, transparent 56%, rgba(1, 4, 10, 0.96));
}

.project-card-image i.icon {
    color: var(--accent-bright);
    opacity: 0.72;
}

.project-card-body .project-tech span {
    background: rgba(50, 230, 255, 0.08);
    color: var(--accent-bright);
}

.project-view-btn {
    border-color: rgba(50, 230, 255, 0.32);
    background: linear-gradient(135deg, rgba(50, 230, 255, 0.12), rgba(7, 12, 20, 0.72));
}

.project-view-btn:hover {
    box-shadow: 0 12px 24px rgba(50, 230, 255, 0.15);
}

.timeline::before {
    background: linear-gradient(to bottom, var(--accent), rgba(50, 230, 255, 0.18), transparent);
}

.timeline-dot {
    border-color: var(--accent);
}

.timeline-item:hover .timeline-dot {
    box-shadow: 0 0 16px rgba(50, 230, 255, 0.5);
}

.cert-card-icon,
.contact-detail-icon {
    background: rgba(50, 230, 255, 0.1);
    border-color: rgba(50, 230, 255, 0.22);
    color: var(--accent-bright);
}

.form-group input,
.form-group textarea {
    background: rgba(4, 9, 18, 0.78);
    border-color: rgba(50, 230, 255, 0.12);
}

.form-submit {
    background: linear-gradient(135deg, rgba(50, 230, 255, 0.94), rgba(22, 199, 245, 0.9));
    box-shadow: 0 14px 30px rgba(50, 230, 255, 0.18);
}

.form-submit:hover {
    box-shadow: 0 18px 34px rgba(50, 230, 255, 0.24);
}

.contact-socials a,
.footer-socials a {
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(8, 14, 24, 0.88), rgba(4, 8, 16, 0.96));
    border-color: rgba(50, 230, 255, 0.14);
}

.contact-socials a:hover,
.footer-socials a:hover {
    border-color: rgba(50, 230, 255, 0.32);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.44), 0 0 22px rgba(50, 230, 255, 0.12);
}

.footer {
    border-top-color: rgba(50, 230, 255, 0.1);
}

@media (max-width: 768px) {
    body::after {
        height: 16vh;
        opacity: 0.08;
    }

    .nav-links {
        background: rgba(1, 4, 10, 0.98);
    }
}

/* ========================================
              SKILLS RESKIN
        ======================================== */
#skills {
    isolation: isolate;
}

#skills .container {
    position: relative;
    z-index: 1;
}

#skills::before {
    inset: -8% auto auto -10%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.11), transparent 70%);
    filter: blur(18px);
    opacity: 0.75;
    animation: skills-glow-a 14s ease-in-out infinite alternate;
}

#skills::after {
    inset: auto -10% -14% auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.08), transparent 72%);
    filter: blur(20px);
    opacity: 0.7;
    animation: skills-glow-b 16s ease-in-out infinite alternate;
}

#skills .skills-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(1.8rem, 4vw, 4rem);
    align-items: start;
}

#skills .skills-left,
#skills .skills-right {
    position: relative;
    z-index: 1;
}

#skills .skills-kicker,
#skills .skills-progress-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(94, 234, 212, 0.92);
}

#skills .skills-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(180deg, #7ef9ff, var(--accent, #2dd4bf));
    box-shadow: 0 0 14px rgba(94, 234, 212, 0.85);
    flex: 0 0 auto;
}

#skills .skills-headline {
    margin: 0.9rem 0 0.8rem;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.6vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
    color: var(--text-primary, #f8fafc);
}

#skills .skills-headline span {
    color: var(--accent, #2dd4bf);
    text-shadow: 0 0 22px rgba(45, 212, 191, 0.24);
}

#skills .skills-intro {
    max-width: 34rem;
    margin: 0;
    color: rgba(226, 232, 240, 0.8);
    font-size: 1.03rem;
    line-height: 1.8;
}

#skills .skills-visual {
    position: relative;
    width: min(100%, 560px);
    min-height: 560px;
    margin-top: 1.8rem;
    perspective: 1200px;
}

#skills .skills-main-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(100%, 360px);
    padding: 1.15rem;
    border-radius: 28px;
    transform: translate(-50%, -50%) rotate(-6deg);
    background:
        linear-gradient(160deg, rgba(16, 24, 39, 0.96), rgba(6, 11, 22, 0.92));
    border: 1px solid rgba(94, 234, 212, 0.22);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.48),
        0 0 36px rgba(45, 212, 191, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

#skills .skills-main-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(125, 255, 240, 0.3), rgba(45, 212, 191, 0.08), transparent 65%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

#skills .skills-main-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    transform: rotate(6deg);
}

#skills .skills-main-cell {
    min-height: 108px;
    padding: 0.9rem 0.55rem 0.8rem;
    border-radius: 18px;
    background:
        radial-gradient(circle at top, rgba(94, 234, 212, 0.08), transparent 52%),
        linear-gradient(180deg, rgba(10, 16, 30, 0.98), rgba(8, 12, 22, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    text-align: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 10px 22px rgba(0, 0, 0, 0.24);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

#skills .skills-main-cell i {
    font-size: 2rem;
    color: var(--accent-bright, #5eead4);
    text-shadow: 0 0 18px rgba(45, 212, 191, 0.35);
}

#skills .skills-main-cell span {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(241, 245, 249, 0.92);
    letter-spacing: 0.01em;
}

#skills .skills-main-cell:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(94, 234, 212, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.28),
        0 0 20px rgba(45, 212, 191, 0.12);
}

#skills .skills-floating-wp,
#skills .skills-floating-py,
#skills .skills-floating-seo,
#skills .skills-floating-elementor {
    position: absolute;
    width: 84px;
    height: 84px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background:
        radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(10, 18, 33, 0.95), rgba(6, 11, 22, 0.94));
    border: 1px solid rgba(94, 234, 212, 0.16);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.32),
        0 0 18px rgba(45, 212, 191, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 2;
}

#skills .skills-float-card small {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(241, 245, 249, 0.9);
}

#skills .skills-float-card i {
    font-size: 1.9rem;
    color: var(--accent-bright, #5eead4);
    text-shadow: 0 0 16px rgba(45, 212, 191, 0.34);
}

#skills .skills-elementor-badge {
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 0.42rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display, 'Poppins', sans-serif);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #071018;
    background: linear-gradient(180deg, #d9ffff, #8ef6ff);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 0 18px rgba(94, 234, 212, 0.22);
}

#skills .skills-floating-wp {
    left: 0;
    top: 10%;
    transform: rotate(-12deg);
    animation: float-card-a 8s ease-in-out infinite;
}

#skills .skills-floating-py {
    right: 4%;
    top: 12%;
    transform: rotate(10deg);
    animation: float-card-b 9s ease-in-out infinite;
}

#skills .skills-floating-seo {
    left: 0;
    bottom: 12%;
    transform: rotate(-8deg);
    animation: float-card-c 10s ease-in-out infinite;
}

#skills .skills-floating-elementor {
    right: 5%;
    bottom: 10%;
    transform: rotate(9deg);
    animation: float-card-d 11s ease-in-out infinite;
}

#skills .skills-right {
    padding-top: 0.2rem;
}

#skills .skills-progress-heading {
    margin-bottom: 1rem;
}

#skills .skills-progress-list {
    display: grid;
    gap: 0.9rem;
}

#skills .skills-progress-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 0.95rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(10, 15, 27, 0.96), rgba(6, 10, 18, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 14px 28px rgba(0, 0, 0, 0.22);
}

#skills .skills-progress-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.14), transparent 36%),
        linear-gradient(180deg, rgba(14, 20, 33, 0.98), rgba(8, 13, 22, 0.98));
    border: 1px solid rgba(94, 234, 212, 0.16);
    box-shadow: 0 0 18px rgba(45, 212, 191, 0.08);
}

#skills .skills-progress-icon i {
    font-size: 1.55rem;
    color: currentColor;
}

#skills .skills-progress-content {
    min-width: 0;
}

#skills .skills-progress-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

#skills .skills-progress-meta strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary, #f8fafc);
}

#skills .skills-progress-meta span {
    font-size: 0.78rem;
    color: rgba(226, 232, 240, 0.62);
}

#skills .skills-progress-track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.12);
}

#skills .skills-progress-track i {
    display: block;
    width: var(--progress, 0%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent, #2dd4bf), #7ef9ff);
    box-shadow: 0 0 16px rgba(45, 212, 191, 0.35);
    animation: progress-fill 1.5s ease both;
}

#skills .skills-progress-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-bright, #5eead4);
    letter-spacing: 0.01em;
}

#skills .skills-wordpress { color: #60d9ff; }
#skills .skills-node { color: #99db58; }
#skills .skills-react { color: #59f0ff; }
#skills .skills-python { color: #ffcf4b; }
#skills .skills-php { color: #8f95ff; }
#skills .skills-js { color: #f7d23a; }
#skills .skills-next { color: #f3f4f6; }
#skills .skills-mysql { color: #36c2ff; }
#skills .skills-sql { color: #6ee7ff; }
#skills .skills-seo { color: #6ee7ff; }
#skills .skills-elementor { color: #8ef6ff; }

@keyframes float-card-a {
    0%, 100% { transform: translateY(0) rotate(-12deg); }
    50% { transform: translateY(-10px) rotate(-10deg); }
}

@keyframes float-card-b {
    0%, 100% { transform: translateY(0) rotate(10deg); }
    50% { transform: translateY(12px) rotate(12deg); }
}

@keyframes float-card-c {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-14px) rotate(-6deg); }
}

@keyframes float-card-d {
    0%, 100% { transform: translateY(0) rotate(9deg); }
    50% { transform: translateY(10px) rotate(7deg); }
}

@keyframes progress-fill {
    from { width: 0%; }
    to { width: var(--progress, 0%); }
}

@keyframes skills-glow-a {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(18px, 10px, 0) scale(1.08); }
}

@keyframes skills-glow-b {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-16px, -12px, 0) scale(1.06); }
}

@media (max-width: 1100px) {
    #skills .skills-layout {
        grid-template-columns: 1fr;
    }

    #skills .skills-visual {
        width: min(100%, 520px);
        min-height: 520px;
        margin-inline: auto;
    }

    #skills .skills-right {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #skills {
        padding-bottom: 5rem;
    }

    #skills .skills-headline {
        font-size: clamp(2.3rem, 13vw, 3.7rem);
    }

    #skills .skills-intro {
        font-size: 0.96rem;
    }

    #skills .skills-visual {
        width: 100%;
        min-height: 430px;
        overflow: visible;
    }

    #skills .skills-main-card {
        width: min(100%, 280px);
    }

    #skills .skills-floating-wp {
        display: flex;
        left: -2%;
        top: 14%;
    }

    #skills .skills-floating-py {
        display: flex;
        right: -2%;
        top: 17%;
    }

    #skills .skills-floating-seo {
        display: flex;
        left: -2%;
        bottom: 12%;
    }

    #skills .skills-floating-elementor {
        display: flex;
        right: -2%;
        bottom: 8%;
    }

    #skills .skills-floating-wp,
    #skills .skills-floating-py,
    #skills .skills-floating-seo,
    #skills .skills-floating-elementor {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        padding: 0.35rem 0.2rem;
    }

    #skills .skills-floating-wp small,
    #skills .skills-floating-py small,
    #skills .skills-floating-seo small,
    #skills .skills-floating-elementor small {
        font-size: 0.42rem;
        letter-spacing: 0.12em;
    }

    #skills .skills-floating-wp i,
    #skills .skills-floating-py i,
    #skills .skills-floating-seo i,
    #skills .skills-floating-elementor i,
    #skills .skills-elementor-badge {
        font-size: 1.15rem;
    }

    #skills .skills-progress-item {
        grid-template-columns: 46px minmax(0, 1fr);
        grid-template-areas:
            "icon content"
            ". value";
        gap: 0.75rem 0.9rem;
    }

    #skills .skills-progress-icon {
        width: 46px;
        height: 46px;
        grid-area: icon;
    }

    #skills .skills-progress-content {
        grid-area: content;
    }

    #skills .skills-progress-value {
        grid-area: value;
        justify-self: end;
        margin-left: 52px;
        font-size: 0.92rem;
    }
}

@media (max-width: 560px) {
    #skills .skills-visual {
        min-height: 395px;
    }

    #skills .skills-main-card {
        width: min(100%, 270px);
        padding: 0.85rem;
        transform: translate(-50%, -50%) rotate(-4deg);
    }

    #skills .skills-main-grid {
        gap: 0.45rem;
        transform: rotate(4deg);
    }

    #skills .skills-main-cell {
        min-height: 82px;
        padding: 0.55rem 0.3rem;
        border-radius: 14px;
    }

    #skills .skills-main-cell i {
        font-size: 1.35rem;
    }

    #skills .skills-main-cell span {
        font-size: 0.6rem;
    }

    #skills .skills-floating-wp,
    #skills .skills-floating-py,
    #skills .skills-floating-seo,
    #skills .skills-floating-elementor {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    #skills .skills-floating-wp {
        top: 12%;
        left: -2%;
    }

    #skills .skills-floating-py {
        top: 14%;
        right: -2%;
    }

    #skills .skills-floating-seo {
        bottom: 10%;
        left: -2%;
    }

    #skills .skills-floating-elementor {
        bottom: 7%;
        right: -2%;
    }

    #skills .skills-float-card i {
        font-size: 1.05rem;
    }

    #skills .skills-float-card small {
        font-size: 0.38rem;
    }
}

@media (max-width: 480px) {
    #skills .skills-layout {
        gap: 1.1rem;
    }

    #skills .skills-visual {
        min-height: 360px;
        margin-top: 0.75rem;
    }

    #skills .skills-progress-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    #skills .skills-progress-value {
        margin-left: 46px;
        font-size: 0.88rem;
    }
}

/* ========================================
        GLOBAL GLOW BACKGROUND
        ======================================== */
body {
    position: relative;
    background:
        radial-gradient(circle at 10% 8%, rgba(50, 230, 255, 0.08), transparent 16%),
        radial-gradient(circle at 90% 8%, rgba(50, 230, 255, 0.07), transparent 16%),
        linear-gradient(180deg, rgba(5, 7, 13, 0.92), rgba(3, 5, 10, 0.98)),
        url('hero-background.svg') center center / cover no-repeat fixed;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    background:
        radial-gradient(circle at 11% 10%, rgba(132, 255, 247, 0.42) 0%, rgba(50, 230, 255, 0.16) 16%, transparent 42%),
        radial-gradient(circle at 89% 10%, rgba(132, 255, 247, 0.38) 0%, rgba(50, 230, 255, 0.14) 16%, transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(50, 230, 255, 0.05), transparent 60%);
    filter: blur(28px);
    opacity: 0.7;
    animation: glow-drift 18s ease-in-out infinite alternate;
}

body::after {
    background:
        radial-gradient(circle at 11% 10%, rgba(132, 255, 247, 0.9) 0 3px, transparent 4px),
        radial-gradient(circle at 7% 6%, rgba(132, 255, 247, 0.55) 0 1px, transparent 2px),
        radial-gradient(circle at 15% 4%, rgba(132, 255, 247, 0.5) 0 1px, transparent 2px),
        radial-gradient(circle at 89% 10%, rgba(132, 255, 247, 0.9) 0 3px, transparent 4px),
        radial-gradient(circle at 93% 6%, rgba(132, 255, 247, 0.55) 0 1px, transparent 2px),
        radial-gradient(circle at 85% 4%, rgba(132, 255, 247, 0.5) 0 1px, transparent 2px);
    filter: blur(3px);
    opacity: 0.8;
    animation: glow-spark 6.5s ease-in-out infinite alternate;
}

.hero-bg,
.hero-bg::before,
.hero-bg::after,
.hero-orb,
.hero-grid-pattern {
    display: block;
}

section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(3, 5, 10, 0.08), rgba(3, 5, 10, 0.16)),
        url('hero-background.svg') center center / cover no-repeat fixed;
    opacity: 0.1;
}

@keyframes glow-drift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.74;
    }

    100% {
        transform: translate3d(6px, 4px, 0) scale(1.03);
        opacity: 1;
    }
}

@keyframes glow-spark {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0.72;
    }

    100% {
        transform: translate3d(-4px, 3px, 0);
        opacity: 1;
    }
}

@keyframes ambient-spark {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.74;
    }

    100% {
        transform: translate3d(4px, -2px, 0) scale(1.02);
        opacity: 1;
    }
}

#skills .skills-marquee-wrap {
    margin-top: 2.4rem;
    position: relative;
    z-index: 1;
}

#skills .skill-marquee {
    margin-top: 0;
    padding: 0.7rem 0;
    background: linear-gradient(180deg, rgba(8, 13, 22, 0.42), rgba(8, 13, 22, 0.18));
    border-top: 1px solid rgba(94, 234, 212, 0.08);
    border-bottom: 1px solid rgba(94, 234, 212, 0.08);
    border-radius: 999px;
}

#skills .skill-marquee-track {
    gap: 0.75rem;
}

#skills .skill-chip {
    min-height: 2.8rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    border-color: rgba(94, 234, 212, 0.12);
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.11), transparent 34%),
        linear-gradient(135deg, rgba(10, 18, 31, 0.96), rgba(6, 10, 18, 0.92));
    color: rgba(226, 232, 240, 0.86);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#skills .skill-chip span {
    line-height: 1.15;
}

#skills .skill-chip.is-active,
#skills .skill-chip:focus-visible,
#skills .skill-chip:hover {
    color: var(--accent-bright, #5eead4);
    border-color: rgba(94, 234, 212, 0.3);
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(14, 29, 36, 0.98), rgba(8, 16, 26, 0.96));
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.24),
        0 0 20px rgba(45, 212, 191, 0.15);
    transform: translateY(-3px) scale(1.03);
}

#skills .skill-chip i,
#skills .skill-chip i.icon {
    color: var(--accent-bright, #5eead4);
}

@media (max-width: 768px) {
    #skills .skills-marquee-wrap {
        margin-top: 1.9rem;
    }

    #skills .skill-marquee {
        border-radius: 28px;
        padding-inline: 0.25rem;
    }

    #skills .skill-chip {
        padding-inline: 0.9rem;
    }
}

@media (max-width: 480px) {
    #skills .skill-marquee-track {
        gap: 0.6rem;
    }

    #skills .skill-chip {
        min-height: 2.55rem;
        padding: 0.65rem 0.85rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 74px;
        padding-bottom: 3.5rem;
        align-items: flex-start;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-copy,
    .hero-visual {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 11vw, 3.2rem);
        white-space: normal;
        max-width: 100%;
    }

    .hero-line-name {
        white-space: normal;
    }

    .hero-typing-wrapper {
        white-space: normal;
        flex-wrap: wrap;
        min-height: auto;
        margin-bottom: 1rem;
    }

    .hero-description {
        max-width: 100%;
        margin-bottom: 1.5rem;
        font-size: 0.98rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-skill-card {
        width: 100%;
        min-height: auto;
        padding: 0.95rem;
    }

    .hero-skill-card-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0.9rem;
    }

    .hero-skill-link {
        width: 100%;
        justify-content: center;
    }

    .hero-skill-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .hero-skill-mini {
        min-height: 78px;
        padding: 0.5rem 0.25rem;
        border-radius: 16px;
    }

    section {
        padding: 4.25rem 0;
    }

    #skills .skills-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    #skills .skills-visual {
        width: 100%;
        min-height: auto;
        margin-top: 1rem;
    }

    #skills .skills-main-card {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
    }

    #skills .skills-main-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
        transform: none;
    }

    #skills .skills-main-cell {
        min-height: 74px;
        padding: 0.55rem 0.28rem;
        border-radius: 14px;
    }

    #skills .skills-right {
        display: block;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    #skills .skills-main-cell i {
        font-size: 1.35rem;
    }

    #skills .skills-main-cell span {
        font-size: 0.64rem;
    }

    .about-grid {
        gap: 2rem;
    }

    .about-photo-wrapper {
        width: min(100%, 280px);
        padding-top: 4.2rem;
        padding-bottom: 2rem;
    }

    .about-floating-pill {
        max-width: calc(100% - 1.5rem);
        white-space: nowrap;
    }

    .about-floating-pill-top {
        top: 0.6rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .about-floating-pill-bottom {
        right: 50%;
        bottom: 0.25rem;
        transform: translateX(50%);
    }

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

    .about-info-box {
        flex-direction: column;
        gap: 0.7rem;
    }

    .certs-grid {
        justify-content: flex-start;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

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

    .contact-form-card {
        padding: 1.2rem;
    }

    .contact-detail {
        padding: 0.85rem 0.95rem;
    }

}

@media (max-width: 480px) {
    .hero {
        padding-top: 68px;
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 12vw, 2.75rem);
        line-height: 1.1;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-skill-mini i.icon,
    .hero-skill-mini i {
        font-size: 1.95rem;
    }

    .hero-skill-js i.icon,
    .hero-skill-js i {
        font-size: 2.25rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .section-label i.icon {
        font-size: 0.78rem;
    }

    .menu-toggle,
    .menu-close {
        min-width: 44px;
        min-height: 44px;
    }

    .cert-card-icon,
    .contact-detail-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .contact-socials a,
    .footer-socials a {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }

    .contact-socials a svg,
    .footer-socials a svg {
        width: 34%;
        height: 34%;
    }

    #skills .skills-headline {
        font-size: clamp(1.9rem, 14vw, 2.8rem);
    }

    #skills .skills-visual {
        min-height: auto;
    }

    #skills .skills-main-card {
        padding: 0.9rem;
    }

    #skills .skills-main-cell {
        min-height: 68px;
        font-size: 0.88rem;
    }

    #skills .skills-progress-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    #skills .skills-js {
        overflow: visible;
    }

    #skills .skills-js i.icon,
    #skills .skills-js i {
        font-size: 1.7rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .about-photo-frame {
        width: min(100%, 260px);
    }

    .about-photo-wrapper {
        width: min(100%, 260px);
        padding-top: 4.8rem;
        padding-bottom: 2.2rem;
    }

    .about-floating-pill {
        max-width: calc(100% - 1.25rem);
        font-size: 0.72rem;
        padding: 0.48rem 0.72rem;
    }

    .about-floating-pill-top {
        top: 0.7rem;
    }

    .about-floating-pill-bottom {
        bottom: 0.2rem;
    }

    .cert-card,
    .project-card {
        flex-basis: 92vw;
    }
}
