/* =========================================================
   IVANE PORTFOLIO — CLEANED STYLESHEET
   Preserves the existing purple/black visual direction while
   removing selectors for layouts no longer present in HTML.
   ========================================================= */

:root {
    --bg: #08090b;
    --surface: #0e1013;
    --surface-light: #13161a;
    --text: #f1f3f5;
    --muted: #858b94;
    --border: rgba(255, 255, 255, 0.09);
    --accent: #7c5cff;
    --accent-light: #a996ff;
    --green: #67e8a5;
    --max-width: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.background-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.07;
    pointer-events: none;
    z-index: -1;
}

.glow-one {
    background: #6e55ff;
    top: -250px;
    left: -150px;
}

.glow-two {
    background: #3267ff;
    right: -250px;
    top: 40%;
}

.navbar {
    position: fixed;
    width: 100%;
    height: 75px;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    background: rgba(8,9,11,.72);
    backdrop-filter: blur(20px);
    z-index: 100;
}

.footer-logo span {
    color: var(--accent-light);
}

.navbar nav {
    display: flex;
    gap: 34px;
    margin: auto;
}

.navbar nav a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    transition: .25s;
}

.navbar nav a:hover {
    color: white;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: white;
    color: black;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: .25s;
}

.nav-button:hover {
    transform: translateY(-2px);
}

.section {
    width: min(var(--max-width), calc(100% - 60px));
    margin: auto;
    padding: 140px 0;
}

.eyebrow {
    display: block;
    color: var(--accent-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 55px;
}

.section-heading h2 {
    font-size: clamp(35px, 5vw, 58px);
    letter-spacing: -3px;
}

.section-heading > p {
    width: 300px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 80px;
    padding-top: 150px;
}

.green-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
}

.hero h1 {
    font-size: clamp(55px, 8vw, 100px);
    line-height: .93;
    letter-spacing: -6px;
    margin-bottom: 30px;
}

.hero h1 span {
    color: #737983;
}

.hero-description {
    max-width: 570px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 35px;
}

.purple {
    color: #bd9cff;
}

.green {
    color: #83dfac;
}

.project-card {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 13px;
    overflow: hidden;
    transition: .35s;
}

.project-card:hover {
    border-color: rgba(255,255,255,.2);
    transform: translateY(-6px);
}

.project-arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: .3s;
}

.project-card:hover .project-arrow {
    background: white;
    color: black;
}

.reviews-section {
    border-top: 1px solid var(--border);
}

.about-section {
    border-top: 1px solid var(--border);
}

.contact-section {
    padding-bottom: 160px;
}

.contact-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: radial-gradient(circle at 50% 0%, rgba(124,92,255,.13), transparent 50%),
        var(--surface);
}

.contact-card h2 {
    font-size: clamp(45px, 7vw, 85px);
    letter-spacing: -5px;
    line-height: .95;
    margin-bottom: 25px;
}

.contact-card h2 span {
    color: #747982;
}

.contact-card > p {
    max-width: 480px;
    margin: auto auto 35px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.discord-button {
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 21px;
    border-radius: 8px;
    background: white;
    color: black;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: .3s;
}

.discord-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,.08);
}

.discord-icon {
    font-size: 17px;
}

.contact-note {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #70757d;
    font-size: 10px;
}

footer {
    width: min(var(--max-width), calc(100% - 60px));
    margin: auto;
    padding: 30px 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-weight: 800;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--muted);
    font-size: 11px;
    transition: .2s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #555a61;
    font-size: 10px;
}

.toast {
    position: fixed;
    bottom: 25px;
    right: 25px;
    padding: 12px 17px;
    background: white;
    color: black;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transform: translateY(100px);
    opacity: 0;
    transition: .35s;
    z-index: 500;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .8s ease,
        transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 850px) {
    .navbar nav,
    .nav-links,
    .nav-button {
        display: flex !important;
    }

    .section {
        width: min(100% - 35px, 600px);
        padding: 100px 0;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 150px;
        gap: 60px;
    }

    .hero h1 {
        letter-spacing: -4px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 18px;
        width: auto;
    }

    .contact-card {
        padding: 70px 20px;
    }

    .contact-card h2 {
        letter-spacing: -3px;
    }

    footer {
        width: calc(100% - 35px);
        flex-direction: column;
        gap: 25px;
    }
}

.video-project {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
}

.project-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #08090b;
    transform: scale(1);
    transition: transform .8s cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}

.video-project:hover .project-video {
    transform: scale(1.075);
    filter: brightness(.75)
        saturate(1.1);
}

@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 7;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(10,10,12,.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: opacity .3s ease,
        transform .3s ease,
        background .3s ease;
}

.video-project:hover .play-button {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.7);
}

.play-button:hover {
    background: white;
    color: black;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease,
        visibility .35s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2,2,4,.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: min(1100px, 95vw);
    max-height: 90vh;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 15px;
    background: linear-gradient(
            135deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.025)
        );
    box-shadow: 0 40px 120px rgba(0,0,0,.7),
        inset 0 1px 0 rgba(255,255,255,.1);
    transform: scale(.92) translateY(20px);
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.video-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-content video {
    display: block;
    width: 100%;
    max-height: 82vh;
    border-radius: 9px;
    background: #000;
}

.modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    background: rgba(15,15,18,.8);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: .25s;
}

.modal-close:hover {
    background: white;
    color: black;
    transform: rotate(90deg);
}

@media (max-width: 850px) {
    .project-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-project .play-button {
        opacity: 1;
    }

    .video-modal {
        padding: 15px;
    }

    .modal-content {
        width: 100%;
        padding: 5px;
        border-radius: 10px;
    }

    .modal-close {
        top: -15px;
        right: -5px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px
        max(30px, calc((100vw - 1180px) / 2))
        0;
    background: radial-gradient(
            circle at 75% 45%,
            rgba(124,92,255,.075),
            transparent 30%
        );
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image: linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image: radial-gradient(
            ellipse at center,
            black 0%,
            transparent 75%
        );
}

.hero-mouse-glow {
    position: fixed;
    width: 450px;
    height: 450px;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(
            circle,
            rgba(124,92,255,.12),
            transparent 68%
        );
    transform: translate(-50%, -50%);
    transition: left .15s ease-out,
        top .15s ease-out;
}

@keyframes heroStatusPulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .45;
    }
}

.hero-title {
    position: relative;
    margin: 0;
    font-size: clamp(60px, 7vw, 100px);
    line-height: .88;
    letter-spacing: -7px;
    font-weight: 800;
}

.hero-title span {
    color: #777d86;
}

.hero-description {
    max-width: 570px;
    margin-top: 32px;
    color: #858b94;
    font-size: 14px;
    line-height: 1.8;
}

.hero-description strong {
    color: #e8eaf0;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.hero-primary-button,
.hero-secondary-button {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 14px 17px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
    transition: transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.hero-primary-button {
    background: #f5f5f5;
    color: #09090b;
}

.hero-secondary-button {
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.025);
    color: #d1d4da;
    backdrop-filter: blur(10px);
}

.hero-primary-button:hover,
.hero-secondary-button:hover {
    transform: translateY(-3px);
}

.hero-secondary-button:hover {
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
}

.button-icon {
    font-size: 14px;
}

@keyframes terminalBlink {
    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

@keyframes floatingCard {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes floatingCode {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 950px) {
    .hero {
        padding-top: 130px;
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 110px;
    }

    .hero-title {
        font-size: clamp(55px, 12vw, 85px);
    }
}

@media (max-width: 600px) {
    .hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-title {
        font-size: clamp(52px, 15vw, 75px);
        letter-spacing: -5px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-primary-button,
    .hero-secondary-button {
        justify-content: space-between;
        width: 100%;
    }
}

.contact-buttons-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 5px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 21px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: #f1f3f5;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: .3s;
    backdrop-filter: blur(10px);
}

.social-button:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
    font-size: 14px;
    color: var(--accent-light);
}

@media (max-width: 600px) {
    .contact-buttons-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .discord-button,
    .social-button {
        justify-content: space-between;
        width: 100%;
    }
}

.about-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 140px;
}

.green-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #63e6a5;
    box-shadow: 0 0 10px rgba(99, 230, 165, 0.7);
}

.about-section .eyebrow {
    display: inline-block;
    font-family: monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.38);
}

.about-section .reveal {
    opacity: 0;
    transform: translateY(25px);
    animation: aboutReveal 0.8s ease forwards;
}

@keyframes aboutReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .about-section {
        padding-top: 80px;
        padding-bottom: 90px;
    }
}

@media (min-width: 851px) {
    html,
    body,
    body * {
        cursor: none !important;
    }

    .cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 6px;
        height: 6px;
        background: #fff;
        border-radius: 50%;
        pointer-events: none;
        z-index: 999999;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 8px rgba(124, 92, 255, .95),
            0 0 20px rgba(124, 92, 255, .65);
    }

    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255,255,255,.4);
        border-radius: 50%;
        pointer-events: none;
        z-index: 999998;
        transform: translate(-50%, -50%);
        transition: width .2s ease,
            height .2s ease,
            border-color .2s ease,
            background .2s ease,
            box-shadow .2s ease;
        backdrop-filter: blur(2px);
    }

    body.cursor-hover .cursor-ring {
        width: 52px;
        height: 52px;
        border-color: rgba(124, 92, 255, .8);
        background: rgba(124, 92, 255, .06);
        box-shadow: 0 0 25px rgba(124, 92, 255, .18);
    }

    body.cursor-hover .cursor-dot {
        box-shadow: 0 0 10px rgba(124, 92, 255, 1),
            0 0 30px rgba(124, 92, 255, .8);
    }
}

@media (max-width: 850px) {
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
}

:root {
    --bg-color: #0c0814;
    --card-bg: rgba(25, 18, 43, 0.6);
    --card-border: rgba(147, 51, 234, 0.2);
    --primary-purple: #8b5cf6;
    --neon-glow: rgba(139, 92, 246, 0.4);
}

body {
    background-color: var(--bg-color);
    color: #e2e8f0;
}

.background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.glow-one {
    width: 600px;
    height: 600px;
    background: rgba(139, 92, 246, 0.15);
    top: -100px;
    left: -100px;
}

.glow-two {
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.1);
    bottom: 20%;
    right: -100px;
}

.project-card,
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover,
.contact-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

.hero-primary-button,
.nav-button {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    border: 1px solid rgba(216, 180, 254, 0.3);
}

.hero-primary-button:hover,
.nav-button:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
}

.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: 95%;
    height: auto !important;
    background: transparent;
    border: none;
    padding: 0;
    display: block !important;
}

.nav-container {
    display: flex;
    align-items: center;
    background: rgba(25, 18, 43, 0.75);
    border: 1px solid rgba(147, 51, 234, 0.25);
    backdrop-filter: blur(16px);
    padding: 8px 12px;
    border-radius: 9999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.15);
    gap: 12px;
}

.nav-profile-group {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding-left: 4px;
}

.nav-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-name {
    font-size: 14px;
    letter-spacing: -0.2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    text-decoration: none;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 9999px;
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.25);
}

.nav-button {
    background: #ffffff;
    color: #0c0814;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 9999px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-left: 4px;
}

.nav-button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

body {
    background-color: #0c0814;
    position: relative;
    overflow-x: hidden;
}

.bg-dots-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(rgba(168, 85, 247, 0.15) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: -2;
    pointer-events: none;
}

.bg-cosmic-rings {
    position: absolute;
    top: 40vh;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(800px, 88vw);
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    border: 1px dashed rgba(147, 51, 234, 0.12);
    box-shadow: 0 0 100px rgba(139, 92, 246, 0.05), inset 0 0 100px rgba(139, 92, 246, 0.05);
    z-index: -1;
    pointer-events: none;
}

.bg-cosmic-rings::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62.5%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.08);
}

@media (max-width: 480px) {
    .bg-cosmic-rings {
        width: 84vw;
    }
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.about-stat-box {
    background: rgba(25, 18, 43, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-box:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 1px;
}

.about-lower-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: start;
}

.about-bio-content:hover {
    border-color: transparent;
    box-shadow: none;
}

.about-bio-content {
    background: transparent;
    padding: 10px 0;
}

.about-bio-content p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-bio-content p strong {
    color: #ffffff;
}

.about-trait-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.trait-pill {
    background: rgba(25, 18, 43, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.25);
    color: #cbd5e1;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
}

.about-tech-card {
    background: rgba(25, 18, 43, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 25px;
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tech-card-icon {
    width: 36px;
    height: 36px;
    background: rgba(139, 92, 246, 0.2);
    color: #c084fc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.tech-card-header strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
}

.tech-card-header span {
    font-size: 0.85rem;
    color: #94a3b8;
}

.tech-tag {
    background: rgba(15, 10, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tech-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.tech-tag .dot.yellow {
    background: #facc15;
}

.tech-tag .dot.purple {
    background: #c084fc;
}

.tech-tag .dot.green {
    background: #4ade80;
}

.tech-tag .dot.red {
    background: #f87171;
}

.tech-tag .dot.blue {
    background: #60a5fa;
}

@media (max-width: 900px) {
    .about-stats-row {
        grid-template-columns: 1fr;
    }

    .about-lower-grid {
        grid-template-columns: 1fr;
    }
}

.about-tech-card {
    background: rgba(25, 18, 43, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 25px;
    overflow: hidden;
}

.tech-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    position: relative;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 8px;
    will-change: transform;
}

.marquee-left {
    animation: scrollLeft 15s linear infinite;
}

.marquee-right {
    animation: scrollRight 15s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 850px) {
    .navbar {
        position: fixed !important;
        top: 12px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        max-width: calc(100vw - 12px) !important;
        height: auto !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        display: block !important;
        z-index: 1000 !important;
    }

    .nav-container {
        width: auto !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 4px !important;
        padding: 5px 8px !important;
        box-sizing: border-box !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-container::-webkit-scrollbar {
        display: none;
    }

    .nav-links,
    .navbar nav,
    .nav-button {
        display: flex !important;
        visibility: visible !important;
    }

    .nav-profile-group {
        gap: 5px !important;
        padding-left: 2px !important;
        flex-shrink: 0 !important;
    }

    .nav-avatar {
        width: 22px !important;
        height: 22px !important;
    }

    .nav-name {
        font-size: 12px !important;
    }

    .nav-links {
        gap: 1px !important;
        flex-shrink: 0 !important;
    }

    .nav-link {
        font-size: 11px !important;
        padding: 5px 8px !important;
        white-space: nowrap !important;
    }

    .nav-button {
        font-size: 11px !important;
        padding: 6px 12px !important;
        margin-left: 2px !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }

    body {
        overflow-x: hidden;
    }

    .section {
        width: min(100% - 30px, 550px);
        padding: 90px 0;
    }

    .hero {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: clamp(45px, 11vw, 65px);
        letter-spacing: -3px;
    }

    h2 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
}

@media (max-width: 480px) {
    .nav-name {
        display: none !important;
    }

    .nav-link {
        font-size: 10px !important;
        padding: 4px 6px !important;
    }

    .nav-button {
        font-size: 10px !important;
        padding: 5px 10px !important;
    }

    .nav-container {
        gap: 3px !important;
        padding: 4px 6px !important;
    }

    .nav-avatar {
        width: 20px !important;
        height: 20px !important;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-primary-button,
    .hero-secondary-button {
        width: 100%;
        justify-content: space-between;
    }

    .contact-card {
        padding: 50px 15px;
    }
}

.navbar {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.nav-container {
    background: rgba(25, 18, 43, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background-clip: padding-box;
    border-radius: 9999px !important;
}

@media (max-width: 850px) {
    .navbar {
        width: calc(100vw - 12px) !important;
        max-width: none !important;
    }

    .nav-container {
        width: 100% !important;
        max-width: none !important;
        overflow: hidden !important;
        justify-content: center !important;
    }
}

@media (max-width: 360px) {
    .nav-link {
        font-size: 9px !important;
        padding: 4px 5px !important;
    }

    .nav-button {
        font-size: 9px !important;
        padding: 5px 8px !important;
    }

    .nav-container {
        gap: 2px !important;
        padding: 4px 5px !important;
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
}

body {
    position: relative;
}

main,
section,
footer {
    max-width: 100%;
}

.bg-dots-pattern,
.bg-cosmic-rings,
.background-glow,
.hero-mouse-glow {
    pointer-events: none;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip !important;
    }
}

@media (max-width: 850px) {
    .navbar {
        left: 50% !important;
        right: auto !important;
        width: auto !important;
        max-width: calc(100vw - 16px) !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .nav-container {
        width: max-content !important;
        max-width: calc(100vw - 16px) !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        padding: 5px 7px !important;
        gap: 3px !important;
        overflow: hidden !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
    }

    .nav-profile-group,
    .nav-links,
    .nav-link,
    .nav-button {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }

    .nav-profile-group {
        gap: 4px !important;
        padding-left: 0 !important;
    }

    .nav-links {
        gap: 0 !important;
    }

    .nav-link {
        font-size: 10.5px !important;
        padding: 5px 7px !important;
    }

    .nav-button {
        font-size: 10.5px !important;
        padding: 6px 10px !important;
        gap: 4px !important;
        margin-left: 1px !important;
    }
}

@media (max-width: 430px) {
    .nav-name {
        display: none !important;
    }

    .nav-avatar {
        width: 20px !important;
        height: 20px !important;
    }

    .nav-container {
        padding: 4px 6px !important;
        gap: 2px !important;
    }

    .nav-link {
        font-size: 9.5px !important;
        padding: 4px 6px !important;
    }

    .nav-button {
        font-size: 9.5px !important;
        padding: 5px 8px !important;
        gap: 3px !important;
    }
}

@media (max-width: 360px) {
    .nav-avatar {
        width: 18px !important;
        height: 18px !important;
    }

    .nav-container {
        max-width: calc(100vw - 10px) !important;
        padding: 4px 5px !important;
        gap: 1px !important;
    }

    .nav-link {
        font-size: 8.5px !important;
        padding: 4px 4px !important;
    }

    .nav-button {
        font-size: 8.5px !important;
        padding: 5px 7px !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 520px) {
    .nav-name {
        display: none !important;
    }

    .navbar {
        width: calc(100vw - 12px) !important;
        max-width: calc(100vw - 12px) !important;
    }

    .nav-container {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
    }

    .nav-links {
        min-width: 0 !important;
        flex: 0 1 auto !important;
        justify-content: center !important;
    }
}

@media (max-width: 390px) {
    .nav-profile-group {
        display: none !important;
    }

    .nav-link {
        font-size: 8.75px !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .nav-button {
        font-size: 8.75px !important;
        padding-left: 7px !important;
        padding-right: 7px !important;
    }
}

.hero-title span {
    color: #9494a3;
}

.about-section-heading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-section-heading .eyebrow {
    margin-bottom: 12px;
}

@media (max-width: 520px) {
    .navbar {
        left: 50% !important;
        right: auto !important;
        width: calc(100vw - 12px) !important;
        max-width: calc(100vw - 12px) !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .nav-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 3px !important;
        padding: 5px 7px !important;
        overflow: hidden !important;
        flex-wrap: nowrap !important;
    }

    .nav-profile-group {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        gap: 4px !important;
        padding-left: 0 !important;
    }

    .nav-name {
        display: inline !important;
        font-size: 10px !important;
    }

    .nav-avatar {
        display: block !important;
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
    }

    .nav-links {
        display: flex !important;
        flex: 0 1 auto !important;
        min-width: 0 !important;
        gap: 0 !important;
        justify-content: center !important;
    }

    .nav-link[href="#home"],
    .nav-link[href="#contact"] {
        display: none !important;
    }

    .nav-link {
        display: inline-flex !important;
        flex-shrink: 0 !important;
        font-size: 9px !important;
        padding: 4px 5px !important;
        white-space: nowrap !important;
    }

    .nav-button {
        display: flex !important;
        flex-shrink: 0 !important;
        font-size: 9px !important;
        padding: 5px 8px !important;
        gap: 3px !important;
        margin-left: 0 !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 360px) {
    .nav-name {
        display: inline !important;
        font-size: 9px !important;
    }

    .nav-avatar {
        width: 18px !important;
        height: 18px !important;
    }

    .nav-container {
        padding: 4px 5px !important;
        gap: 1px !important;
    }

    .nav-link {
        font-size: 8px !important;
        padding: 4px !important;
    }

    .nav-button {
        font-size: 8px !important;
        padding: 5px 6px !important;
    }
}

@keyframes availabilityGlow {
    0%,
    100% {
        box-shadow: inset 0 1px 0 rgba(255,255,255,.07),
            0 0 0 rgba(139,92,246,0);
    }

    50% {
        box-shadow: inset 0 1px 0 rgba(255,255,255,.07),
            0 0 18px rgba(139,92,246,.22);
    }
}

@keyframes statusArrowNudge {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(2px, -2px);
    }
}

#work.work-section {
    position: relative;
}

.work-showcase {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 18px;
    align-items: stretch;
}

#work .work-card {
    min-width: 0;
    border: 1px solid
        rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(
            145deg,
            rgba(30, 22, 48, 0.72),
            rgba(15, 11, 24, 0.78)
        );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0
        rgba(255, 255, 255, 0.035);
    transition: border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

#work .work-card:hover {
    border-color: rgba(169, 150, 255, 0.35);
    box-shadow: 0 22px 70px
        rgba(0, 0, 0, 0.25),

        0 0 35px
        rgba(124, 92, 255, 0.08);
}

#work .work-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #08080c;
    cursor: pointer;
}

#work .work-featured .work-media {
    height: 390px;
}

#work .work-small .work-media {
    height: 150px;
}

#work .work-extra-card .work-media {
    height: 205px;
}

#work .work-media .project-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.7s
        cubic-bezier(.2, .8, .2, 1),

        filter 0.4s ease;
}

#work .work-card:hover .project-video {
    transform: scale(1.055);
}

.work-video-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
            to bottom,
            rgba(5, 5, 8, 0.1) 0%,
            transparent 42%,
            rgba(5, 5, 8, 0.78) 100%
        );
}

.work-media-top {
    position: absolute;
    z-index: 5;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.work-featured-badge,
.work-category,
.work-index {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 9px;
    border: 1px solid
        rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    background: rgba(7, 7, 10, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.78);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.work-featured-badge {
    color: #fff;
    background: rgba(124, 92, 255, 0.78);
    border-color: rgba(185, 169, 255, 0.4);
    box-shadow: 0 5px 25px
        rgba(124, 92, 255, 0.2);
}

.work-media-bottom {
    position: absolute;
    z-index: 5;
    left: 18px;
    right: 18px;
    bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.work-preview-text {
    display: flex;
    align-items: center;
    gap: 7px;
}

.work-preview-text::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px
        var(--green);
}

.work-side-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

#work .work-copy {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 17px;
}

#work .work-featured-copy {
    padding: 25px 26px 26px;
}

.work-small-label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

#work .work-copy h3 {
    margin: 0;
    color: #f5f3ff;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

#work .work-featured-copy h3 {
    font-size: clamp(
        25px,
        3vw,
        34px
    );
    letter-spacing: -1.3px;
}

#work .work-copy p {
    max-width: 540px;
    margin-top: 8px;
    color: rgba(215, 211, 225, 0.56);
    font-size: 11px;
    line-height: 1.55;
}

#work .work-featured-copy p {
    max-width: 530px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.65;
}

.work-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.work-tech span {
    padding: 7px 10px;
    border: 1px solid
        rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.025);
    color: rgba(230, 226, 239, 0.62);
    font-size: 9px;
    font-weight: 600;
}

#work .work-open {
    width: 37px;
    min-width: 37px;
    height: 37px;
    border: 1px solid
        rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 14px;
    transition: background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

#work .work-card:hover .work-open {
    color: #111;
    background: #fff;
    border-color: #fff;
    transform: rotate(8deg);
}

.work-more {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: max-height 0.75s
        cubic-bezier(.2, .8, .2, 1),

        opacity 0.45s ease,

        margin-top 0.55s ease,

        transform 0.55s ease;
}

.work-more.open {
    max-height: 1500px;
    margin-top: 18px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.work-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.work-more-button {
    min-width: 220px;
    height: 52px;
    padding: 0 17px 0 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid
        rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.work-more-button:hover {
    transform: translateY(-2px);
    background: rgba(124, 92, 255, 0.13);
    border-color: rgba(169, 150, 255, 0.34);
}

.work-more-count {
    display: grid;
    place-items: center;
    min-width: 26px;
    height: 22px;
    padding: 0 6px;
    border-radius: 6px;
    background: rgba(124, 92, 255, 0.18);
    color: var(--accent-light);
    font-size: 9px;
}

.work-more-arrow {
    transition: transform 0.4s
        cubic-bezier(.2, .8, .2, 1);
}

.work-more-button.active
.work-more-arrow {
    transform: rotate(180deg);
}

@media (max-width: 1000px) {
    .work-showcase {
        grid-template-columns: 1fr;
    }

    #work .work-featured .work-media {
        height: 400px;
    }

    #work .work-small .work-media {
        height: 210px;
    }

    .work-more {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .work-side-grid {
        grid-template-columns: 1fr;
    }

    .work-more {
        grid-template-columns: 1fr;
    }

    #work .work-featured .work-media,
    #work .work-small .work-media,
    #work .work-extra-card .work-media {
        height: 220px;
    }

    #work .work-featured-copy {
        padding: 19px;
    }

    #work .work-featured-copy h3 {
        font-size: 24px;
    }

    #work .work-copy {
        padding: 17px;
    }

    .work-more.open {
        max-height: 3000px;
    }
}

#home.hero-three-layout {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px
        max(30px, calc((100vw - 1580px) / 2))
        80px;
    background: transparent !important;
    isolation: isolate;
}

#home.hero-three-layout::before {
    display: none !important;
}

#home.hero-three-layout::after {
    content: "";
    position: absolute;
    width: 780px;
    height: 780px;
    left: 50%;
    top: 48%;
    z-index: -1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(
            circle,
            rgba(124, 92, 255, .055),
            transparent 67%
        );
}

.hero-mouse-glow {
    position: fixed !important;
    width: 540px !important;
    height: 540px !important;
    left: 0;
    top: 0;
    z-index: 0 !important;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background: radial-gradient(
            circle,
            rgba(124, 92, 255, .105),
            rgba(124, 92, 255, .028) 40%,
            transparent 70%
        ) !important;
    filter: blur(8px);
    transition: none !important;
    will-change: left, top;
}

main,
footer {
    position: relative;
    z-index: 1;
}

.navbar {
    z-index: 100;
}

.hero-three-grid {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1580px;
    display: grid;
    grid-template-columns: minmax(400px, 1.05fr)
        minmax(430px, 1.15fr)
        minmax(390px, .98fr);
    align-items: center;
    gap: clamp(16px, 2vw, 38px);
}

#home .hero-center-copy {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(-8px);
}

#home .hero-top-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 31px;
    padding: 0 12px;
    margin-bottom: 24px;
    border: 1px solid
        rgba(169, 150, 255, .14);
    border-radius: 999px;
    background: rgba(14, 10, 23, .7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0
        rgba(255, 255, 255, .045);
    color: rgba(190, 185, 202, .6);
    font-family: monospace;
    font-size: 8px;
    letter-spacing: 1.2px;
}

#home .hero-top-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 10px
        rgba(169, 150, 255, .9);
}

#home .hero-top-separator {
    width: 1px;
    height: 11px;
    background: rgba(255,255,255,.1);
}

#home .hero-center-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: rgba(169, 150, 255, .75);
    font-family: monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.1px;
}

#home .hero-title {
    width: 100%;
    max-width: 670px;
    margin: 0;
    color: #f1f3f5;
    font-size: clamp(47px, 4.9vw, 76px);
    line-height: .92;
    font-weight: 800;
    letter-spacing: clamp(-5px, -.38vw, -3px);
}

#home .hero-title span {
    display: block;
    margin-top: 8px;
    color: rgba(162, 162, 176, .44);
}

#home .hero-description {
    max-width: 540px;
    margin: 26px auto 0;
    color: rgba(180, 180, 193, .57);
    font-size: 13px;
    line-height: 1.75;
}

#home .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

#home .hero-primary-button,
#home .hero-secondary-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 15px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 650;
    transition: transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

#home .hero-primary-button {
    background: #f1f3f5;
    color: #08090b;
    box-shadow: 0 12px 35px
        rgba(124, 92, 255, .06);
}

#home .hero-secondary-button {
    border: 1px solid
        rgba(169, 150, 255, .13);
    background: rgba(255, 255, 255, .018);
    color: rgba(225, 222, 232, .78);
    backdrop-filter: blur(12px);
}

#home .hero-primary-button:hover,
#home .hero-secondary-button:hover {
    transform: translateY(-3px);
}

#home .hero-secondary-button:hover {
    border-color: rgba(169, 150, 255, .35);
    background: rgba(124, 92, 255, .055);
    box-shadow: 0 10px 35px
        rgba(124, 92, 255, .07);
}

.hero-particle-side {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-particle-side::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 310px;
    border-radius: 50%;
    background: rgba(124, 92, 255, .065);
    filter: blur(100px);
    pointer-events: none;
}

.particle-visual {
    position: relative;
    width: 560px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-character {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: auto;
}

.particle-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    pointer-events: none;
    border-radius: 50%;
}

.particle-ring-one {
    width: 440px;
    height: 310px;
    border: 1px solid
        rgba(124, 92, 255, .11);
    transform: translate(-50%, -50%)
        rotate(-10deg);
    animation: particleFishRingOne
        18s
        linear
        infinite;
}

.particle-ring-two {
    width: 510px;
    height: 255px;
    border: 1px dashed
        rgba(169, 150, 255, .075);
    transform: translate(-50%, -50%)
        rotate(20deg);
    animation: particleFishRingTwo
        24s
        linear
        infinite;
}

@keyframes particleFishRingOne {
    from {
        transform: translate(-50%, -50%)
            rotate(-10deg);
    }

    to {
        transform: translate(-50%, -50%)
            rotate(350deg);
    }
}

@keyframes particleFishRingTwo {
    from {
        transform: translate(-50%, -50%)
            rotate(20deg);
    }

    to {
        transform: translate(-50%, -50%)
            rotate(-340deg);
    }
}

.hero-right-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orbit-stage {
    position: relative;
    width: 440px;
    height: 470px;
    display: grid;
    place-items: center;
    perspective: 1000px;
    will-change: translate;
}

.hero-stage-grid {
    position: absolute;
    width: 330px;
    height: 330px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
        rotate(-4deg);
    opacity: .22;
    pointer-events: none;
    background-image: linear-gradient(
            rgba(124, 92, 255, .115) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(124, 92, 255, .115) 1px,
            transparent 1px
        );
    background-size: 28px 28px;
    mask-image: radial-gradient(
            circle,
            #000 20%,
            transparent 73%
        );
}

.hero-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    pointer-events: none;
    border-radius: 50%;
    transform-origin: center;
}

.hero-orbit-main {
    width: 360px;
    height: 360px;
    border: 1px solid
        rgba(124, 92, 255, .34);
    box-shadow: inset 0 0 45px
        rgba(124, 92, 255, .025);
    animation: heroOrbitSpin
        13s
        linear
        infinite;
}

.hero-orbit-main::after {
    content: "";
    position: absolute;
    inset: 25px;
    border-radius: 50%;
    border: 1px solid
        rgba(124, 92, 255, .05);
}

.hero-orbit-secondary {
    width: 425px;
    height: 270px;
    border: 1px dashed
        rgba(169, 150, 255, .14);
    animation: heroOrbitEllipse
        19s
        linear
        infinite;
}

.hero-orbit-inner {
    width: 290px;
    height: 290px;
    border: 1px solid
        rgba(255, 255, 255, .045);
    animation: heroOrbitInnerPulse
        5s
        ease-in-out
        infinite;
}

.hero-orbit-satellite {
    position: absolute;
    width: 7px;
    height: 7px;
    left: 50%;
    top: -4px;
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 6px
        var(--accent-light),
        0 0 22px
        rgba(169, 150, 255, .7);
}

.satellite-two {
    width: 5px;
    height: 5px;
    left: auto;
    right: 18%;
    top: auto;
    bottom: -3px;
    opacity: .7;
}

@keyframes heroOrbitSpin {
    from {
        transform: translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%)
            rotate(360deg);
    }
}

@keyframes heroOrbitEllipse {
    from {
        transform: translate(-50%, -50%)
            rotate(-15deg);
    }

    to {
        transform: translate(-50%, -50%)
            rotate(345deg);
    }
}

@keyframes heroOrbitInnerPulse {
    0%,
    100% {
        opacity: .35;
        transform: translate(-50%, -50%)
            scale(.98);
    }

    50% {
        opacity: .85;
        transform: translate(-50%, -50%)
            scale(1.03);
    }
}

.hero-profile-card {
    --portrait-rotate-x: 0deg;
    --portrait-rotate-y: 0deg;
    position: relative;
    z-index: 5;
    width: 245px;
    height: 315px;
    overflow: hidden;
    border: 1px solid
        rgba(169, 150, 255, .22);
    border-radius: 24px;
    background: rgba(8, 8, 12, .96);
    box-shadow: 0 35px 90px
        rgba(0, 0, 0, .5),
        0 0 60px
        rgba(124, 92, 255, .08),
        inset 0 1px 0
        rgba(255, 255, 255, .06);
    transform: rotateX(
            var(--portrait-rotate-x)
        )
        rotateY(
            var(--portrait-rotate-y)
        )
        rotateZ(-1.5deg);
    transition: transform .18s ease-out,
        border-color .3s ease,
        box-shadow .3s ease;
    will-change: transform;
}

.hero-profile-card:hover {
    border-color: rgba(169, 150, 255, .42);
    box-shadow: 0 40px 100px
        rgba(0, 0, 0, .56),
        0 0 85px
        rgba(124, 92, 255, .13),
        inset 0 1px 0
        rgba(255, 255, 255, .08);
}

.hero-profile-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(.92)
        contrast(1.04);
    transform: scale(1.015);
}

.hero-profile-glow {
    position: absolute;
    z-index: 1;
    width: 80%;
    height: 65%;
    left: 10%;
    top: 15%;
    border-radius: 50%;
    background: rgba(124, 92, 255, .22);
    filter: blur(70px);
    pointer-events: none;
}

.hero-profile-shade {
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, .02),
            transparent 55%,
            rgba(0, 0, 0, .45) 100%
        ),
        linear-gradient(
            120deg,
            rgba(255, 255, 255, .06),
            transparent 25%
        );
}

.hero-profile-corner {
    position: absolute;
    z-index: 5;
    width: 14px;
    height: 14px;
    pointer-events: none;
}

.corner-one {
    left: 11px;
    top: 11px;
    border-left: 1px solid
        rgba(169, 150, 255, .7);
    border-top: 1px solid
        rgba(169, 150, 255, .7);
}

.corner-two {
    right: 11px;
    top: 11px;
    border-right: 1px solid
        rgba(169, 150, 255, .7);
    border-top: 1px solid
        rgba(169, 150, 255, .7);
}

.corner-three {
    left: 11px;
    bottom: 11px;
    border-left: 1px solid
        rgba(169, 150, 255, .7);
    border-bottom: 1px solid
        rgba(169, 150, 255, .7);
}

.corner-four {
    right: 11px;
    bottom: 11px;
    border-right: 1px solid
        rgba(169, 150, 255, .7);
    border-bottom: 1px solid
        rgba(169, 150, 255, .7);
}

.hero-floating-chip {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid
        rgba(169, 150, 255, .16);
    border-radius: 8px;
    background: rgba(11, 9, 17, .78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0
        rgba(255, 255, 255, .035),
        0 15px 35px
        rgba(0, 0, 0, .25);
    color: rgba(185, 181, 197, .58);
    font-family: monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .75px;
}

.hero-chip-system {
    left: -5px;
    top: 78px;
    animation: heroChipFloatOne
        5s
        ease-in-out
        infinite;
}

.hero-chip-build {
    right: -12px;
    bottom: 62px;
    animation: heroChipFloatTwo
        5.8s
        ease-in-out
        infinite;
}

.chip-number {
    color: var(--accent-light);
}

.chip-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #67e8a5;
    box-shadow: 0 0 10px
        rgba(103, 232, 165, .75);
}

@keyframes heroChipFloatOne {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes heroChipFloatTwo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes heroScrollLine {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(34px);
    }
}

@media (min-width: 851px) {
    html,
    body,
    body * {
        cursor: none !important;
    }

    .cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 4px;
        height: 4px;
        z-index: 999999;
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        background: #fff;
        box-shadow: 0 0 7px
            rgba(124, 92, 255, 1),
            0 0 18px
            rgba(124, 92, 255, .58);
        transition: width .16s ease,
            height .16s ease,
            box-shadow .16s ease;
    }

    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        width: 30px;
        height: 30px;
        z-index: 999998;
        border: none;
        border-radius: 0;
        pointer-events: none;
        transform: translate(-50%, -50%);
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        filter: drop-shadow(
                0 0 5px
                rgba(124, 92, 255, .38)
            );
        transition: width .18s ease,
            height .18s ease,
            transform .18s ease,
            filter .18s ease;
    }

    .cursor-ring::before,
    .cursor-ring::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .cursor-ring::before {
        width: 100%;
        height: 1px;
        background: linear-gradient(
                90deg,
                var(--accent-light) 0 26%,
                transparent 26% 74%,
                var(--accent-light) 74% 100%
            );
    }

    .cursor-ring::after {
        width: 1px;
        height: 100%;
        background: linear-gradient(
                180deg,
                var(--accent-light) 0 26%,
                transparent 26% 74%,
                var(--accent-light) 74% 100%
            );
    }

    body.cursor-hover .cursor-ring {
        width: 44px;
        height: 44px;
        transform: translate(-50%, -50%)
            rotate(45deg);
        filter: drop-shadow(
                0 0 8px
                rgba(124, 92, 255, .68)
            );
    }

    body.cursor-hover .cursor-dot {
        width: 6px;
        height: 6px;
        box-shadow: 0 0 8px
            rgba(124, 92, 255, 1),
            0 0 24px
            rgba(124, 92, 255, .8);
    }

    body.cursor-clicking .cursor-ring {
        width: 22px;
        height: 22px;
        transform: translate(-50%, -50%)
            rotate(90deg);
    }

    body.cursor-clicking .cursor-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 1380px) {
    .hero-three-grid {
        grid-template-columns: minmax(320px, .92fr)
            minmax(390px, 1.1fr)
            minmax(330px, .88fr);
    }

    .particle-visual {
        width: 450px;
        height: 440px;
    }

    .hero-orbit-stage {
        width: 390px;
        height: 440px;
    }

    #home .hero-title {
        font-size: clamp(45px, 4.6vw, 67px);
    }
}

@media (max-width: 1050px) {
    #home.hero-three-layout {
        padding: 120px
            26px
            80px;
    }

    .hero-three-grid {
        grid-template-columns: 1fr
            1fr;
    }

    .hero-particle-side {
        display: none;
    }

    #home .hero-center-copy {
        transform: none;
    }

    .hero-right-visual {
        justify-content: center;
    }
}

@media (max-width: 760px) {
    #home.hero-three-layout {
        padding: 110px
            18px
            70px;
    }

    .hero-three-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    #home .hero-center-copy {
        order: 1;
    }

    .hero-right-visual {
        order: 2;
    }

    .hero-orbit-stage {
        width: 350px;
        height: 350px;
        transform: scale(.84);
    }

    #home .hero-title {
        font-size: clamp(42px, 13vw, 60px);
        letter-spacing: -3px;
    }

    #home .hero-description {
        max-width: 430px;
        font-size: 12px;
    }

    #home .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    #home .hero-primary-button,
    #home .hero-secondary-button {
        width: min(320px, 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .particle-ring-one,
    .particle-ring-two,
    .hero-orbit-main,
    .hero-orbit-secondary,
    .hero-orbit-inner,
    .hero-chip-system,
    .hero-chip-build {
        animation: none !important;
    }
}

@media (min-width: 1051px) {
    .hero-three-grid {
        grid-template-columns: minmax(360px, .95fr)
            minmax(420px, 1fr)
            minmax(350px, .9fr);
        gap: 16px;
    }

    .hero-particle-side {
        overflow: visible;
    }

    .particle-visual {
        width: min(720px, 49vw);
        height: 610px;
        margin-left: -75px;
        margin-right: -75px;
    }

    .hero-particle-side::before {
        width: 580px;
        height: 430px;
        background: rgba(124, 92, 255, .07);
        filter: blur(110px);
    }

    .particle-ring-one {
        width: 590px;
        height: 420px;
    }

    .particle-ring-two {
        width: 680px;
        height: 355px;
    }
}

@media (min-width: 1051px) and (max-width: 1380px) {
    .hero-three-grid {
        grid-template-columns: minmax(310px, .9fr)
            minmax(390px, 1fr)
            minmax(320px, .86fr);
        gap: 8px;
    }

    .particle-visual {
        width: min(630px, 48vw);
        height: 550px;
        margin-left: -65px;
        margin-right: -55px;
    }

    .hero-particle-side::before {
        width: 520px;
        height: 390px;
    }

    .particle-ring-one {
        width: 525px;
        height: 375px;
    }

    .particle-ring-two {
        width: 610px;
        height: 325px;
    }

    .hero-orbit-stage {
        width: 365px;
        height: 420px;
    }
}

.hero-right-visual {
    overflow: visible;
}

.hero-orbit-stage {
    width: 520px;
    height: 560px;
}

.hero-profile-card {
    width: 310px;
    height: 400px;
    border-radius: 28px;
}

.hero-orbit-main {
    width: 440px;
    height: 440px;
}

.hero-orbit-secondary {
    width: 510px;
    height: 330px;
}

.hero-orbit-inner {
    width: 350px;
    height: 350px;
}

.hero-stage-grid {
    width: 400px;
    height: 400px;
    background-size: 32px 32px;
}

.hero-chip-system {
    left: -20px;
    top: 85px;
}

.hero-chip-build {
    right: -30px;
    bottom: 70px;
}

@media (min-width: 1051px) {
    .hero-three-grid {
        grid-template-columns: minmax(360px, 1fr)
            minmax(420px, 1fr)
            minmax(460px, 1fr);
    }
}

.navbar {
    position: fixed;
    top: 10px;
    left: 50%;
    width: auto;
    height: auto;
    padding: 0;
    transform: translateX(-50%);
    border: none;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
}

.nav-container {
    position: relative;
    width: max-content;
    height: 42px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 5px;
    border: 1px solid
        rgba(255, 255, 255, .085);
    border-radius: 14px;
    background: linear-gradient(
            135deg,
            rgba(25, 18, 39, .58),
            rgba(13, 10, 21, .48)
        );
    backdrop-filter: blur(20px)
        saturate(135%);
    -webkit-backdrop-filter: blur(20px)
        saturate(135%);
    box-shadow: 0 8px 30px
        rgba(0, 0, 0, .24),

        inset 0 1px 0
        rgba(255, 255, 255, .055);
}

.nav-container::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .11),
            transparent
        );
}

.nav-profile-group {
    height: 32px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0
        9px
        0
        4px;
    border-radius: 10px;
    transition: background .2s ease;
}

.nav-profile-group:hover {
    background: rgba(255, 255, 255, .035);
}

.nav-avatar {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid
        rgba(169, 150, 255, .16);
}

.nav-name {
    color: rgba(245, 243, 250, .9);
    font-size: 10px;
    font-weight: 650;
    white-space: nowrap;
}

.nav-divider {
    width: 1px;
    height: 17px;
    margin: 0
        3px;
    background: rgba(255, 255, 255, .07);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1px;
    margin: 0 !important;
}

.nav-links .nav-link {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0
        10px;
    border-radius: 9px;
    color: rgba(182, 178, 194, .57);
    font-size: 9px;
    font-weight: 550;
    white-space: nowrap;
    transition: color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.nav-links .nav-link:hover {
    color: rgba(245, 243, 250, .92);
    background: rgba(255, 255, 255, .035);
}

.nav-links .nav-link.active {
    color: #f4f1ff;
    background: rgba(124, 92, 255, .15);
    box-shadow: inset 0 0 0 1px
        rgba(169, 150, 255, .07);
}

.nav-links .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 3px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 7px
        rgba(169, 150, 255, .75);
}

.nav-button {
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0
        12px;
    border-radius: 9px;
    background: rgba(245, 243, 250, .96);
    color: #0c0912;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform .2s ease,
        box-shadow .2s ease;
}

.nav-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px
        rgba(124, 92, 255, .13);
}

@media (max-width: 900px) {
    .navbar {
        width: calc(100% - 24px);
    }

    .nav-container {
        width: 100%;
        justify-content: space-between;
    }

    .nav-links .nav-link {
        padding: 0
            7px;
    }
}

@media (max-width: 680px) {
    .navbar {
        top: 8px;
        width: calc(100% - 18px);
    }

    .nav-container {
        height: 40px;
        padding: 4px;
        border-radius: 13px;
    }

    .nav-divider {
        display: none;
    }

    .nav-links .nav-link {
        display: none;
    }

    .nav-links .nav-link.active {
        display: flex;
        height: 29px;
        padding: 0
            13px;
    }

    .nav-profile-group {
        height: 30px;
    }

    .nav-avatar {
        width: 23px;
        height: 23px;
    }

    .nav-button {
        height: 29px;
        padding: 0
            10px;
    }
}

.navbar {
    position: fixed;
    top: 11px;
    left: 50%;
    width: auto;
    height: auto;
    padding: 0;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    z-index: 1000;
}

.nav-container {
    position: relative;
    width: max-content;
    height: 42px;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border: 1px solid
        rgba(255,255,255,.085);
    border-radius: 22px;
    background: linear-gradient(
            135deg,
            rgba(27,20,43,.62),
            rgba(15,11,25,.50)
        );
    backdrop-filter: blur(22px)
        saturate(145%);
    -webkit-backdrop-filter: blur(22px)
        saturate(145%);
    box-shadow: 0 8px 30px
        rgba(0,0,0,.22),

        inset 0 1px 0
        rgba(255,255,255,.07),

        0 0 30px
        rgba(124,92,255,.035);
}

.nav-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.16),
            transparent
        );
    pointer-events: none;
}

.nav-profile-group {
    height: 32px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0
        9px
        0
        4px;
    border-radius: 17px;
    transition: background .2s ease;
}

.nav-profile-group:hover {
    background: rgba(255,255,255,.035);
}

.nav-avatar {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid
        rgba(169,150,255,.17);
}

.nav-name {
    font-size: 10px;
    font-weight: 650;
    color: rgba(245,243,250,.9);
    white-space: nowrap;
}

.nav-divider {
    width: 1px;
    height: 18px;
    margin: 0
        3px;
    background: rgba(255,255,255,.075);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1px;
    margin: 0 !important;
}

.nav-links .nav-link {
    position: relative;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0
        11px;
    border-radius: 16px;
    color: rgba(186,181,198,.56);
    font-size: 9px;
    font-weight: 550;
    white-space: nowrap;
    transition: color .2s ease,
        background .2s ease;
}

.nav-links .nav-link:hover {
    color: #f4f1ff;
    background: rgba(255,255,255,.035);
}

.nav-links .nav-link.active {
    color: #fff;
    background: rgba(124,92,255,.19);
    box-shadow: inset 0 0 0 1px
        rgba(169,150,255,.08);
}

.nav-links .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 3px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 7px
        rgba(169,150,255,.8);
}

.nav-button {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0
        13px;
    border-radius: 16px;
    background: #f2f0f7;
    color: #0b0910;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform .2s ease,
        box-shadow .2s ease;
}

.nav-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 22px
        rgba(124,92,255,.15);
}

.nav-button span {
    font-size: 10px;
}

@media (max-width: 760px) {
    .navbar {
        width: calc(100% - 18px);
        top: 8px;
    }

    .nav-container {
        width: 100%;
        justify-content: space-between;
    }

    .nav-divider {
        display: none;
    }

    .nav-links .nav-link {
        display: none;
    }

    .nav-links .nav-link.active {
        display: flex;
    }
}

.reviews-section {
    position: relative;
    border-top: 1px solid
        rgba(255,255,255,.055);
}

.reviews-heading {
    max-width: 650px;
    margin: 0
        auto
        55px;
    text-align: center;
}

.reviews-heading .eyebrow {
    margin-bottom: 14px;
}

.reviews-heading h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -3.5px;
}

.reviews-heading p {
    max-width: 430px;
    margin: 17px
        auto
        0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.reviews-new-grid {
    width: 100%;
    max-width: 940px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.review-new {
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    overflow: hidden;
    border: 1px solid
        rgba(255,255,255,.075);
    border-radius: 15px;
    background: linear-gradient(
            145deg,
            rgba(26,19,41,.48),
            rgba(12,9,20,.48)
        );
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    box-shadow: inset 0 1px 0
        rgba(255,255,255,.04);
    transition: transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.review-new::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -120px;
    top: -130px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(124,92,255,.07);
    filter: blur(65px);
}

.review-new:hover {
    transform: translateY(-5px);
    border-color: rgba(169,150,255,.17);
    box-shadow: 0 18px 55px
        rgba(0,0,0,.22),

        inset 0 1px 0
        rgba(255,255,255,.055);
}

.review-new-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-new-avatar {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid
        rgba(255,255,255,.1);
    background: var(--surface);
}

.review-user strong {
    display: block;
    margin-bottom: 3px;
    color: rgba(245,243,250,.92);
    font-size: 11px;
    font-weight: 650;
}

.review-user span {
    display: block;
    color: rgba(147,143,157,.56);
    font-size: 8px;
}

.review-rating {
    display: flex;
    align-items: baseline;
    gap: 3px;
    padding: 7px
        9px;
    border: 1px solid
        rgba(255,255,255,.06);
    border-radius: 8px;
    background: rgba(255,255,255,.02);
}

.review-rating strong {
    color: rgba(245,243,250,.9);
    font-size: 11px;
}

.review-rating span {
    color: rgba(142,137,151,.55);
    font-size: 8px;
}

.review-stars-new {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    color: var(--accent-light);
    font-size: 9px;
    letter-spacing: 3px;
    opacity: .75;
}

.review-new-text {
    position: relative;
    z-index: 2;
    flex: 1;
    margin-top: 15px;
    color: rgba(205,201,213,.76);
    font-size: 13px;
    line-height: 1.75;
}

.review-new-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 25px;
    padding-top: 16px;
    border-top: 1px solid
        rgba(255,255,255,.055);
    color: rgba(139,135,148,.54);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .3px;
}

.verified-icon {
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border: 1px solid
        rgba(103,232,165,.18);
    border-radius: 50%;
    background: rgba(103,232,165,.055);
    color: #67e8a5;
    font-size: 8px;
    box-shadow: 0 0 12px
        rgba(103,232,165,.035);
}

@media (max-width: 720px) {
    .reviews-new-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .review-new {
        min-height: 260px;
    }

    .reviews-heading {
        margin-bottom: 35px;
    }
}

/* =========================================================
   QUALITY / ACCESSIBILITY / PERFORMANCE FIXES
   ========================================================= */

:root {
    color-scheme: dark;
}

html {
    scroll-padding-top: 88px;
}

body {
    min-width: 320px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
video,
canvas {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 4px;
}

.about-section-heading {
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.about-section-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.video-modal[aria-hidden="true"] {
    visibility: hidden;
    pointer-events: none;
}

.video-modal.active[aria-hidden="false"] {
    visibility: visible;
    pointer-events: auto;
}

.project-video {
    background: #08090b;
}

@media (hover: none), (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

    html,
    body,
    body * {
        cursor: auto !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-mouse-glow,
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
}

/* Keep the global glow on the compositor instead of changing layout every frame. */
.hero-mouse-glow {
    left: 0 !important;
    top: 0 !important;
    transform:
        translate3d(var(--glow-x, 50vw), var(--glow-y, 50vh), 0)
        translate(-50%, -50%) !important;
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) and (min-width: 851px) {
    .cursor-dot,
    .cursor-ring {
        opacity: 0;
    }
}