/* --- Theme Tokens --- */
:root {
    --bg: #0b090f;
    --bg-alt: #13111b;
    --surface: #1e1b29;
    --surface-2: #262235;
    --text: #f0eef5;
    --text-dim: #c8c2d4;
    --text-soft: #9f96b3;
    --accent: #bd8aff;
    --accent-strong: #dcaaff;
    --border: rgba(189, 138, 255, 0.45);
    --border-soft: rgba(255, 255, 255, 0.12);
    --noise-opacity: 0.15;
    --scanline-opacity: 0.04;
    --panel-radius: 12px 0 12px 0;
    --chip-radius: 10px 0 10px 0;
    --transition-snappy: 0.25s cubic-bezier(0.2, 0.9, 0.25, 1);
    --max-width: 1180px;
    --header-offset: 104px;
    --font-heading: 'VT323', monospace;
    --font-body: 'Space Mono', monospace;
}

html[data-theme='light'] {
    --bg: #f4f0ec;
    --bg-alt: #e8e2dc;
    --surface: #f0e9e1;
    --surface-2: #e6ddd5;
    --text: #2c2434;
    --text-dim: #56485d;
    --text-soft: #6b6170;
    --accent: #6c2bd9;
    --accent-strong: #4d1fa5;
    --border: rgba(108, 43, 217, 0.28);
    --border-soft: rgba(44, 36, 52, 0.12);
    --noise-opacity: 0.045;
    --scanline-opacity: 0.045;
}

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

html {
    scroll-behavior: auto;
    background: var(--bg);
}

body {
    min-height: 100vh;
    padding-top: var(--header-offset);
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 15%, transparent), transparent 35%),
        radial-gradient(circle at bottom right, color-mix(in srgb, var(--accent) 8%, transparent), transparent 40%),
        linear-gradient(180deg, var(--bg), var(--bg-alt));
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
    transition: color var(--transition-snappy), background var(--transition-snappy);
    cursor: none;
    /* Hide default for custom cursor */
}

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

body::before {
    opacity: var(--noise-opacity);
    mix-blend-mode: color-dodge;
    background-image:
        radial-gradient(1.5px 1.5px at 20px 30px, var(--accent-strong), rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 40px 70px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2.5px 2.5px at 160px 120px, var(--accent), rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 120px 200px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 240px 180px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 320px 40px, var(--accent-strong), rgba(0, 0, 0, 0)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
    background-size: 350px 350px, 350px 350px, 350px 350px, 350px 350px, 350px 350px, 350px 350px, 350px 350px, 220px 220px;
    transition: opacity var(--transition-snappy);
}

html[data-theme='light'] body::before {
    opacity: 0.05;
    mix-blend-mode: soft-light;
}

body::after {
    opacity: var(--scanline-opacity);
    background-image: linear-gradient(to bottom,
            transparent 0,
            transparent 48%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 52%,
            transparent 100%);
    background-size: 100% 4px;
    mix-blend-mode: overlay;
}

main,
.site-header,
.site-footer {
    position: relative;
    z-index: 1;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.section {
    scroll-margin-top: calc(var(--header-offset) + 24px);
    padding: 140px 0 60px;
    /* Massive spacing like reference */
}

.panel {
    background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 90%, transparent), var(--surface-2));
    border: 1px solid var(--border-soft);
    border-radius: var(--panel-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background var(--transition-snappy), border-color var(--transition-snappy);
}

.eyebrow {
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.section-head {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.88;
}

.section-subtitle {
    max-width: 640px;
    color: var(--text-dim);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-soft);
    background: color-mix(in srgb, var(--bg) 90%, transparent);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    border-radius: var(--panel-radius);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    background: color-mix(in srgb, var(--surface) 90%, transparent);
}

.brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-copy strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text);
}

.brand-copy small {
    color: var(--text-soft);
    font-size: 0.78rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.nav-link {
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: var(--chip-radius);
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color var(--transition-snappy), border-color var(--transition-snappy), background-color var(--transition-snappy);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--accent-strong);
    border-color: var(--border);
    background: color-mix(in srgb, var(--surface) 84%, transparent);
    box-shadow: 0 0 10px color-mix(in srgb, var(--accent) 30%, transparent);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.chip-button,
.icon-button,
.button,
.tag,
.contact-card {
    transition: border-color var(--transition-snappy), color var(--transition-snappy), background-color var(--transition-snappy), transform var(--transition-snappy), filter var(--transition-snappy);
}

.chip-button,
.icon-button,
.button {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
}

.chip-button,
.icon-button {
    display: inline-grid;
    place-items: center;
    min-height: 42px;
    min-width: 42px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: var(--chip-radius);
    background: color-mix(in srgb, var(--surface) 90%, transparent);
    color: var(--text);
    cursor: pointer;
}

.chip-button:hover,
.icon-button:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.icon-button svg {
    width: 18px;
    height: 18px;
}

.hero-section {
    padding: 42px 0 10px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
    gap: 18px;
    align-items: start;
}

.hero-copy,
.status-panel,
.text-panel,
.project-card,
.contact-card,
.media-card {
    padding: 22px;
}

.hero-copy h1 {
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: clamp(1.7rem, 3.2vw, 2.7rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    max-width: 20ch;
}

.lead {
    margin-top: 16px;
    max-width: 62ch;
    color: var(--text-dim);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--border);
    border-radius: var(--chip-radius);
    cursor: pointer;
}

.button.primary {
    background: var(--accent);
    color: #110c18;
}

.button.primary:hover {
    background: color-mix(in srgb, var(--accent-strong) 92%, white);
    border-color: var(--accent-strong);
    box-shadow: 0 0 15px color-mix(in srgb, var(--accent) 60%, transparent);
}

.button.secondary {
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    color: var(--text);
}

.button.secondary:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.status-panel {
    display: grid;
    gap: 10px;
}

@media (min-width: 981px) {
    .status-panel {
        position: sticky;
        top: 92px;
        align-self: start;
        max-height: calc(100vh - 110px);
        overflow: auto;
    }
}

.status-card {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid var(--border-soft);
    border-radius: var(--chip-radius);
    background: color-mix(in srgb, var(--bg) 12%, var(--surface));
}

.status-card strong {
    font-size: 0.9rem;
    line-height: 1.2;
}

.status-card span,
.status-note,
.contact-label,
.media-copy p,
.project-tag {
    color: var(--text-soft);
}

.status-card strong {
    color: var(--text);
    font-weight: 700;
    text-align: right;
}

.status-note {
    padding-top: 4px;
}

.status-panel {
    align-content: start;
}

.status-card strong,
.hero-copy h1,
.section-head h2,
.media-copy h3,
.project-copy h3 {
    text-wrap: balance;
}

@media (max-width: 980px) {
    .status-panel {
        position: static;
        max-height: none;
        overflow: visible;
    }
}

.content-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-panel {
    color: var(--text-dim);
}

.text-panel p+p {
    margin-top: 14px;
}

.card-grid {
    display: grid;
    gap: 16px;
}

.models-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.media-card {
    display: grid;
    gap: 14px;
    will-change: transform;
}

.media-card:nth-child(2n) {
    animation-delay: -3s;
}

.media-card:nth-child(3n) {
    animation-delay: -1.5s;
}

.media-frame,
.project-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--panel-radius);
    background: var(--bg-alt);
    animation: floating 6s ease-in-out infinite;
}

.media-card:nth-child(2n) .media-frame,
.media-card:nth-child(2n) .project-frame {
    animation-delay: -3s;
}

.media-card:nth-child(3n) .media-frame,
.media-card:nth-child(3n) .project-frame {
    animation-delay: -1.5s;
}

.media-frame::before,
.project-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 55%);
    opacity: 0.22;
    z-index: 2;
}

.media-frame::after,
.project-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(to bottom,
            rgba(255, 255, 255, 0.18) 0,
            rgba(255, 255, 255, 0.18) 1px,
            transparent 1px,
            transparent 4px);
    opacity: 0.15;
    mix-blend-mode: screen;
    z-index: 3;
}

.media-frame img,
.project-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-snappy);
    position: relative;
    z-index: 1;
}

.media-frame img {
    aspect-ratio: 1 / 1;
}

.project-frame img {
    aspect-ratio: 1 / 1;
}

.media-frame.is-zoomable {
    cursor: zoom-in;
}

.media-card:hover,
.project-card:hover,
.contact-card:hover {
    border-color: var(--accent);
}

.media-card:hover .media-frame img,
.project-card:hover .project-frame img {
    transform: scale(1.05);
}

.lightbox {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(10, 8, 14, 0.82);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-snappy);
    z-index: 2000;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-panel {
    width: min(92vw, 980px);
    max-height: 90vh;
    display: grid;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--panel-radius);
    background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 94%, transparent), var(--surface-2));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-image-wrap {
    min-height: 0;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: var(--panel-radius);
    background: var(--bg-alt);
}

.lightbox-image {
    width: 100%;
    max-height: 76vh;
    object-fit: contain;
    background: var(--bg-alt);
}

.lightbox-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-dim);
    font-size: 0.92rem;
}

.lightbox-close {
    display: inline-grid;
    place-items: center;
    min-width: 40px;
    min-height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--chip-radius);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    color: var(--text);
    cursor: pointer;
}

.lightbox-close:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

body.has-lightbox-open {
    overflow: hidden;
}

.media-copy,
.project-copy {
    display: grid;
    gap: 8px;
}

.media-index {
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.media-copy h3,
.project-copy h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 400;
    line-height: 0.95;
}

.project-card {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 18px;
    align-items: center;
}

.project-copy {
    align-content: start;
}

.project-tag,
.tag,
.contact-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 10px;
    border: 1px solid var(--border-soft);
    border-radius: var(--chip-radius);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 8px;
}

.social-links-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.social-circle {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    background: color-mix(in srgb, var(--bg) 60%, transparent);
    color: var(--text-dim);
    transition: color var(--transition-snappy), border-color var(--transition-snappy), background var(--transition-snappy), transform var(--transition-snappy);
}

.social-circle svg {
    width: 28px;
    height: 28px;
}

.social-circle:hover {
    color: var(--accent-strong);
    border-color: var(--accent);
    background: color-mix(in srgb, var(--surface) 90%, transparent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 20%, transparent);
}

.site-footer {
    padding: 22px 0 34px;
}

.footer-inner {
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
    color: var(--text-soft);
    font-size: 0.9rem;
}

/* Motion, but mechanical */
.button:hover,
.chip-button:hover,
.icon-button:hover,
.nav-link:hover,
.media-card:hover,
.project-card:hover,
.contact-card:hover {
    transform: translateY(-2px);
}

@keyframes holo-flicker {
    0% {
        opacity: 0.8;
        filter: sepia(70%) hue-rotate(230deg) saturate(285%) opacity(0.76) contrast(1.06);
    }

    25% {
        opacity: 0.9;
        filter: sepia(70%) hue-rotate(240deg) saturate(320%) opacity(0.9) contrast(1.14);
    }

    50% {
        opacity: 0.74;
        filter: sepia(70%) hue-rotate(235deg) saturate(300%) opacity(0.72) contrast(1.08);
    }

    75% {
        opacity: 0.86;
        filter: sepia(70%) hue-rotate(245deg) saturate(310%) opacity(0.84) contrast(1.12);
    }

    100% {
        opacity: 0.8;
        filter: sepia(70%) hue-rotate(230deg) saturate(300%) opacity(0.8) contrast(1.1);
    }
}

/* Modals */
.all-models-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(10, 8, 14, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-snappy);
}

.all-models-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.all-models-modal-content {
    background: linear-gradient(180deg, var(--surface) 20%, var(--bg) 100%);
    border: 1px solid var(--border);
    border-radius: var(--panel-radius);
    width: min(90vw, 1100px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 60px color-mix(in srgb, var(--accent) 15%, transparent);
}

.all-models-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-soft);
}

.all-models-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    margin: 0;
    line-height: 1;
}

.all-models-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.all-models-modal-close {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1.5rem;
    transition: color var(--transition-snappy);
}

.all-models-modal-close:hover {
    color: var(--accent-strong);
}

.models-show-more {
    text-align: center;
    margin: 60px auto 20px;
}

.models-show-more .button {
    font-size: 1.1rem;
    padding: 0 32px;
}


@media (max-width: 980px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .hero-grid,
    .project-card {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 18ch;
    }
}

@media (max-width: 720px) {
    :root {
        --header-offset: 0px;
    }

    body {
        padding-top: 0;
    }

    .site-header {
        position: static;
    }

    .container {
        width: min(calc(100% - 16px), var(--max-width));
    }

    .section {
        scroll-margin-top: 12px;
        padding: 22px 0 6px;
    }

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

    .section-head {
        gap: 8px;
        margin-bottom: 16px;
    }

    .section-head h2 {
        font-size: clamp(1.85rem, 9vw, 2.7rem);
    }

    .section-subtitle {
        max-width: 42ch;
    }

    .hero-grid,
    .project-card,
    .contact-grid,
    .models-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 16px;
    }

    .header-inner {
        min-height: 60px;
        padding-block: 8px;
        gap: 10px;
    }

    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .brand-copy strong {
        font-size: 0.88rem;
    }

    .brand-copy small {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .header-actions {
        gap: 8px;
    }

    .chip-button,
    .icon-button {
        min-height: 36px;
        min-width: 36px;
        padding: 0 10px;
    }

    .hero-copy,
    .status-panel,
    .text-panel,
    .project-card,
    .contact-card,
    .media-card {
        padding: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(1.9rem, 8vw, 2.45rem);
        max-width: none;
    }

    .lead {
        margin-top: 12px;
        max-width: none;
        font-size: 0.95rem;
    }

    .button {
        min-height: 44px;
        padding: 0 18px;
    }

    .button-row {
        margin-top: 16px;
    }

    .tag-row {
        gap: 10px;
    }

    .status-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 14px;
    }

    .status-card strong {
        text-align: left;
    }

    .media-copy h3,
    .project-copy h3 {
        font-size: 1.6rem;
    }

    .project-card {
        gap: 16px;
    }

    .media-frame img,
    .project-frame img {
        aspect-ratio: 16 / 10;
    }

    .media-copy,
    .project-copy {
        gap: 8px;
    }

    .media-index {
        font-size: 0.76rem;
    }

    .contact-card strong {
        font-size: 0.95rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

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

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

/* Scroll Reveal Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Custom Cursor */
.custom-cursor-dot,
.custom-cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #fff;
    box-shadow: 0 0 10px #fff;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-glow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent) 0%, transparent 70%);
    box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 40%, transparent);
    transition: width 0.3s, height 0.3s, transform 0.15s ease-out, background 0.3s;
}

body:hover .custom-cursor-dot,
body:hover .custom-cursor-glow {
    opacity: 1;
}

.cursor-hover .custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--accent-strong);
}

.cursor-hover .custom-cursor-glow {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-strong) 40%, transparent) 0%, transparent 60%);
    box-shadow: 0 0 30px color-mix(in srgb, var(--accent-strong) 60%, transparent);
}

a:hover,
button:hover,
.is-zoomable:hover,
.social-circle:hover,
.nav-link:hover {
    cursor: none;
}


/* Ref Animations and Canvas */
canvas#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.subtitle {
    animation: fadeInDown 1s ease-out;
}

.title {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.title .highlight {
    color: var(--neon-purple);
    text-shadow: 0 0 20px var(--neon-purple);
}

.tagline {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.action-fade {
    animation: fadeIn 1s ease-out 0.9s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}