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

:root {
    --primary: #3b82f6;
    --secondary: #06b6d4;
    --accent: #8b5cf6;
    --pink: #ec4899;
    --orange: #f97316;

    --bg-light: #f8fafc;
    --bg2-light: #ffffff;
    --text1-light: #0f172a;
    --text2-light: #475569;
    --border-light: #e2e8f0;
    --bg-dark: #0a0e27;
    --bg2-dark: #141a33;
    --text1-dark: #ffffff;
    --text2-dark: #94a3b8;
    --border-dark: rgba(59, 130, 246, .14);

    --radius: 18px;
    --shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Segoe UI Emoji";
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color .25s, color .25s;
}

body.light-mode {
    background: var(--bg-light);
    color: var(--text1-light)
}

body.dark-mode {
    background: var(--bg-dark);
    color: var(--text1-dark)
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, .14) 0%, transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, .12) 0%, transparent 55%);
    opacity: .9;
}

body.light-mode::before {
    opacity: .55
}

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

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

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    backdrop-filter: blur(16px);
    transition: all .25s ease;
}

body.light-mode nav {
    background: rgba(255, 255, 255, .75);
    border-bottom: 1px solid var(--border-light)
}

body.dark-mode nav {
    background: rgba(10, 14, 39, .7);
    border-bottom: 1px solid var(--border-dark)
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
    letter-spacing: .2px;
    font-size: 1.05rem;
}

.logo-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--pink));
    box-shadow: 0 12px 28px rgba(59, 130, 246, .25);
}

.logo span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
}

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

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    position: relative;
    transition: .2s;
    padding: .2rem .1rem;
}

body.light-mode .nav-links a {
    color: var(--text2-light)
}

body.dark-mode .nav-links a {
    color: var(--text2-dark)
}

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

.nav-links a.active {
    color: var(--primary)
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
}

.right-tools {
    display: flex;
    align-items: center;
    gap: .75rem
}

.theme-toggle {
    width: 58px;
    height: 30px;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    border: 2px solid rgba(59, 130, 246, .8);
    transition: .25s;
}

body.light-mode .theme-toggle {
    background: linear-gradient(135deg, #fbbf24, #f59e0b)
}

body.dark-mode .theme-toggle {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6)
}

.theme-toggle::before {
    content: "☀️";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    transition: .25s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

body.dark-mode .theme-toggle::before {
    content: "🌙";
    left: 31px
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, .25);
    background: transparent;
    cursor: pointer;
}

body.light-mode .hamburger {
    background: rgba(59, 130, 246, .06)
}

body.dark-mode .hamburger {
    background: rgba(59, 130, 246, .10)
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    margin: 4px auto
}

body.light-mode .hamburger {
    color: var(--text1-light)
}

body.dark-mode .hamburger {
    color: var(--text1-dark)
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(6px);
}

.mobile-sheet {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 92vw);
    height: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, .85);
    border-left: 1px solid var(--border-light);
}

body.dark-mode .mobile-sheet {
    background: rgba(10, 14, 39, .86);
    border-left: 1px solid var(--border-dark);
}

.mobile-sheet h4 {
    margin-bottom: 1rem
}

.mobile-sheet a {
    display: block;
    padding: .9rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 650;
    margin-bottom: .6rem;
}

body.light-mode .mobile-sheet a {
    color: var(--text1-light);
    background: rgba(59, 130, 246, .06)
}

body.dark-mode .mobile-sheet a {
    color: var(--text1-dark);
    background: rgba(59, 130, 246, .10)
}

.mobile-sheet a:hover {
    background: rgba(59, 130, 246, .18)
}

.close-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, .25);
    background: transparent;
    cursor: pointer;
    margin-left: auto;
    display: block;
    color: inherit;
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 8.5rem 5% 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    grid-template-columns: 1.2fr .8fr;
}

.pill {
    display: inline-flex;
    gap: .6rem;
    align-items: center;
    padding: .55rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
    border: 1px solid rgba(59, 130, 246, .25);
    background: rgba(59, 130, 246, .10);
    width: fit-content;
}

body.light-mode .pill {
    background: rgba(59, 130, 246, .07)
}

.pill b {
    color: var(--primary)
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.1rem);
    line-height: 1.12;
    margin: 1rem 0 1rem;
    letter-spacing: -0.6px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: grad 3.2s ease infinite;
}

@keyframes grad {

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

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

.lead {
    font-size: 1.1rem;
    max-width: 58ch;
    opacity: .95;
}

body.light-mode .lead {
    color: var(--text2-light)
}

body.dark-mode .lead {
    color: var(--text2-dark)
}

.typing {
    font-weight: 800;
    color: var(--primary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem
}

.btn {
    padding: .55rem 1.35rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 750;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    transition: .25s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 18px 45px rgba(59, 130, 246, .32);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(59, 130, 246, .42)
}

.btn-ghost {
    border: 1px solid rgba(59, 130, 246, .35);
    color: var(--primary);
    background: rgba(59, 130, 246, .10);
}

body.light-mode .btn-ghost {
    background: rgba(59, 130, 246, .06)
}

.btn-ghost:hover {
    transform: translateY(-3px);
    background: rgba(59, 130, 246, .18)
}

.hero-card {
    border-radius: var(--radius);
    padding: 1.4rem;
    border: 1px solid rgba(59, 130, 246, .18);
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

body.light-mode .hero-card {
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--border-light);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .08);
}

.mini {
    display: grid;
    gap: 1rem;
}

.mini .row {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: .85rem;
    border-radius: 14px;
    border: 1px solid rgba(59, 130, 246, .12);
    background: rgba(59, 130, 246, .08);
}

body.light-mode .mini .row {
    background: rgba(59, 130, 246, .05)
}

.mini .row b {
    display: block
}

.mini .row span {
    font-size: .92rem;
    opacity: .9
}

/* SECTION */
section {
    padding: 5.5rem 5%
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    text-align: center;
    font-weight: 850;
    margin-bottom: .7rem;
    letter-spacing: -.4px;
}

.section-subtitle {
    text-align: center;
    max-width: 70ch;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

body.light-mode .section-subtitle {
    color: var(--text2-light)
}

body.dark-mode .section-subtitle {
    color: var(--text2-dark)
}

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

.grid-2 {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, .14);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    transition: .28s;
    position: relative;
}

body.light-mode .card {
    background: var(--bg2-light);
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(59, 130, 246, .22)
}

body.light-mode .card:hover {
    box-shadow: 0 26px 70px rgba(0, 0, 0, .10)
}

.card-pad {
    padding: 1.6rem
}

/* ABOUT */
.about-wrap {
    display: grid;
    gap: 1.6rem;
    align-items: stretch;
    grid-template-columns: 1.2fr .8fr;
}

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

.stat {
    border-radius: 16px;
    padding: 1.1rem;
    border: 1px solid rgba(59, 130, 246, .14);
    background: rgba(59, 130, 246, .10);
}

body.light-mode .stat {
    background: rgba(59, 130, 246, .06)
}

.stat h3 {
    font-size: 1.5rem
}

.stat p {
    opacity: .9
}

/* PROJECTS */
.project-cover {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--pink));
    background-size: 200% 200%;
    animation: grad 5.5s ease infinite;
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: .82rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(10, 14, 39, .35);
    color: white;
}

body.light-mode .badge {
    background: rgba(255, 255, 255, .85);
    color: var(--primary);
    border: 1px solid var(--border-light);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .8rem
}

.tag {
    font-size: .82rem;
    font-weight: 750;
    padding: .35rem .65rem;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, .18);
    background: rgba(59, 130, 246, .10);
}

body.light-mode .tag {
    background: rgba(59, 130, 246, .06)
}

.card-actions {
    display: flex;
    gap: .75rem;
    margin-top: 1.2rem;
    flex-wrap: wrap
}

.btn-small {
    padding: .40rem 1rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    font-size: .9rem;
    border: 1px solid rgba(59, 130, 246, .22);
    background: rgba(59, 130, 246, .10);
    color: var(--primary);
    transition: .2s;
}

.btn-small:hover {
    transform: translateY(-2px);
    background: rgba(59, 130, 246, .18)
}

/* SKILLS */
.skill {
    text-align: left;
}

.skill-head {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .65rem;
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .16);
    font-size: 1.2rem;
}

body.light-mode .icon {
    background: rgba(59, 130, 246, .07)
}

.skill p {
    opacity: .9
}

.muted {
    opacity: .85
}

/* CONTACT */
.contact-box {
    max-width: 720px;
    margin: 0 auto
}

.field {
    display: grid;
    gap: .5rem;
    margin-bottom: 1rem
}

label {
    font-weight: 800;
    font-size: .92rem
}

input,
textarea {
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 14px;
    border: 2px solid rgba(59, 130, 246, .14);
    background: rgba(10, 14, 39, .35);
    color: inherit;
    outline: none;
    transition: .2s;
    font: inherit;
}

body.light-mode input,
body.light-mode textarea {
    background: var(--bg-light);
    border-color: var(--border-light);
    color: var(--text1-light);
}

input:focus,
textarea:focus {
    border-color: rgba(59, 130, 246, .7);
    box-shadow: 0 0 0 6px rgba(59, 130, 246, .12);
}

textarea {
    min-height: 150px;
    resize: vertical
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    padding: .9rem 1.1rem;
    border-radius: 999px;
    background: rgba(10, 14, 39, .82);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    z-index: 1400;
    font-weight: 750;
}

body.light-mode .toast {
    background: rgba(255, 255, 255, .92);
    color: var(--text1-light);
    border: 1px solid var(--border-light);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px)
}

/* FOOTER */
footer {
    padding: 3rem 5%;
    margin-top: 3rem
}

.footer-grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: 2fr 1fr 1fr;
}

body.light-mode footer {
    border-top: 1px solid var(--border-light)
}

body.dark-mode footer {
    border-top: 1px solid var(--border-dark)
}

.social {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-top: 1rem
}

.social a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    text-decoration: none;
    border: 1px solid rgba(59, 130, 246, .18);
    background: rgba(59, 130, 246, .10);
    color: var(--primary);
    font-weight: 900;
    transition: .22s;
}

body.light-mode .social a {
    background: rgba(59, 130, 246, .06)
}

.social a:hover {
    transform: translateY(-4px) rotate(4deg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 14px 30px rgba(59, 130, 246, .30);
}

.foot-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    opacity: .85;
    border-top: 1px solid rgba(59, 130, 246, .12);
}

body.light-mode .foot-bottom {
    border-color: var(--border-light)
}

.foot-bottom a {
    color: inherit
}

/* SCROLL TOP */
.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: translateY(120px);
    transition: .25s;
    z-index: 999;
    box-shadow: 0 16px 36px rgba(59, 130, 246, .35);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0)
}

.scroll-top:hover {
    transform: translateY(-5px)
}

/* FLOATING ICONS */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.floating-icon {
    position: absolute;
    font-size: 1.8rem;
    opacity: .25;
    animation: floatIcon 4s ease-in-out infinite
}

.floating-icon:nth-child(1) {
    top: 18%;
    left: 8%;
    animation-delay: 0s
}

.floating-icon:nth-child(2) {
    top: 62%;
    right: 8%;
    animation-delay: 1s
}

.floating-icon:nth-child(3) {
    bottom: 18%;
    left: 16%;
    animation-delay: 2s
}

.floating-icon:nth-child(4) {
    top: 42%;
    right: 18%;
    animation-delay: 1.5s
}

@keyframes floatIcon {

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

    50% {
        transform: translateY(-16px) rotate(10deg)
    }
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: left
    }

    .hero-card {
        max-width: 520px
    }

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

    .grid-3 {
        grid-template-columns: 1fr
    }

    .grid-2 {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .nav-links {
        display: none
    }

    .hamburger {
        display: block
    }
}



/* ===== Better Footer ===== */
.site-footer {
    padding: 3.2rem 5% 2.2rem;
    margin-top: 3rem;
    position: relative;
}

body.light-mode .site-footer {
    background: rgba(255, 255, 255, .6);
    border-top: 1px solid var(--border-light);
}

body.dark-mode .site-footer {
    background: rgba(10, 14, 39, .55);
    border-top: 1px solid var(--border-dark);
}

.footer-topline {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, .65), rgba(139, 92, 246, .55), transparent);
    margin-bottom: 2rem;
    opacity: .9;
}

.footer-wrap {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    gap: .85rem;
    align-items: center;
    margin-bottom: .9rem;
}

.footer-logo h3 {
    font-size: 1.25rem;
    margin-bottom: .15rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    max-width: 52ch;
    margin-bottom: 1.1rem;
    line-height: 1.7;
}

.footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    font-weight: 750;
    font-size: .85rem;
    border: 1px solid rgba(59, 130, 246, .2);
    background: rgba(59, 130, 246, .10);
}

body.light-mode .availability {
    background: rgba(59, 130, 246, .06);
}

.availability .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, .18);
}

.footer-mail {
    font-weight: 750;
    text-decoration: none;
    color: var(--primary);
    padding: .4rem .2rem;
}

.footer-social {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
    margin-top: .4rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .3px;
    transition: .22s;
    border: 1px solid rgba(59, 130, 246, .2);
    background: rgba(59, 130, 246, .10);
    color: var(--primary);
}

body.light-mode .social-btn {
    background: rgba(59, 130, 246, .06);
}

.social-btn:hover {
    transform: translateY(-4px) rotate(3deg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 14px 30px rgba(59, 130, 246, .30);
}

.footer-col h4 {
    margin-bottom: .9rem;
    font-size: 1.05rem;
    font-weight: 850;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: .65rem;
}

.footer-col a {
    text-decoration: none;
    transition: .2s;
}

body.light-mode .footer-col a {
    color: var(--text-secondary-light);
}

body.dark-mode .footer-col a {
    color: var(--text-secondary-dark);
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: .55rem;
    align-items: center;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: .55rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 850;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 14px 35px rgba(59, 130, 246, .25);
    transition: .22s;
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(59, 130, 246, .35);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(59, 130, 246, .12);
    opacity: .92;
}

body.light-mode .footer-bottom {
    border-color: var(--border-light);
}

.footer-bottom a {
    color: inherit;
}

.tiny-btn {
    padding: .55rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, .25);
    background: rgba(59, 130, 246, .10);
    color: var(--primary);
    font-weight: 850;
    cursor: pointer;
    transition: .2s;
}

body.light-mode .tiny-btn {
    background: rgba(59, 130, 246, .06);
}

.tiny-btn:hover {
    transform: translateY(-2px);
    background: rgba(59, 130, 246, .18);
}

@media (max-width: 980px) {
    .footer-wrap {
        grid-template-columns: 1fr;
    }

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