/* ============================================================================
   PIXOCORE Dark Brand Theme
   Production override layer for the compiled Tailwind + PIXOCORE base styles.
   Brand core: #212C62 / black / deep navy.
   ========================================================================== */

:root {
    --pc-brand: #212C62;
    --pc-brand-deep: #151D48;
    --pc-brand-ink: #080B14;
    --pc-black: #020308;
    --pc-surface: rgba(10, 14, 31, 0.78);
    --pc-surface-strong: rgba(8, 11, 20, 0.94);
    --pc-surface-soft: rgba(33, 44, 98, 0.16);
    --pc-line: rgba(160, 172, 236, 0.16);
    --pc-line-strong: rgba(160, 172, 236, 0.26);
    --pc-text-main: #F7F8FC;
    --pc-text-soft: #B8C0D4;
    --pc-text-muted-dark: #8F99B4;
    --pc-brand-light: #93A0EE;
    --pc-brand-glow: rgba(74, 92, 192, 0.34);
    --mouse-x: 50vw;
    --mouse-y: 30vh;
}

html {
    background: var(--pc-black);
    color-scheme: dark;
}

body.pixocore-dark-theme {
    position: relative;
    min-height: 100vh;
    color: var(--pc-text-main);
    background:
        radial-gradient(circle at 12% 8%, rgba(33, 44, 98, 0.42), transparent 28rem),
        radial-gradient(circle at 88% 28%, rgba(21, 29, 72, 0.42), transparent 32rem),
        linear-gradient(135deg, #010207 0%, #050711 38%, #0A0F27 68%, #111843 100%);
    background-attachment: fixed;
    isolation: isolate;
}

/* Mouse-following ambient light. It is decorative and never captures input. */
body.pixocore-dark-theme::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: .82;
    background:
        radial-gradient(
            380px circle at var(--mouse-x) var(--mouse-y),
            rgba(106, 124, 236, 0.18) 0%,
            rgba(52, 67, 155, 0.10) 34%,
            transparent 72%
        );
    mix-blend-mode: screen;
}

/* Static mesh keeps the page visually rich when pointer effects are disabled. */
body.pixocore-dark-theme::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(147, 160, 238, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 160, 238, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 88%);
}

body.pixocore-dark-theme main,
body.pixocore-dark-theme footer {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Full-page black + PIXOCORE brand gradient sections
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme main > section {
    position: relative;
    color: var(--pc-text-main);
    background:
        radial-gradient(circle at 78% 18%, rgba(33, 44, 98, 0.24), transparent 31rem),
        linear-gradient(135deg, rgba(2, 3, 8, 0.98), rgba(10, 14, 34, 0.96) 48%, rgba(21, 29, 72, 0.86));
    border-top: 1px solid rgba(147, 160, 238, 0.055);
}

body.pixocore-dark-theme main > section:nth-of-type(even) {
    background:
        radial-gradient(circle at 16% 72%, rgba(33, 44, 98, 0.22), transparent 30rem),
        linear-gradient(135deg, rgba(5, 7, 17, 0.98), rgba(8, 11, 20, 0.97) 48%, rgba(14, 20, 51, 0.90));
}

body.pixocore-dark-theme .hero-section {
    background:
        radial-gradient(circle at 78% 28%, rgba(74, 92, 192, 0.30), transparent 32rem),
        radial-gradient(circle at 14% 16%, rgba(33, 44, 98, 0.52), transparent 29rem),
        linear-gradient(125deg, #010207 0%, #070A19 42%, #111943 100%) !important;
}

body.pixocore-dark-theme .dark-section,
body.pixocore-dark-theme .cta-section {
    background:
        radial-gradient(circle at 83% 22%, rgba(82, 100, 211, 0.28), transparent 30rem),
        linear-gradient(125deg, #010207 0%, #080B14 48%, #151D48 100%) !important;
}

body.pixocore-dark-theme .inner-hero,
body.pixocore-dark-theme .not-found {
    background:
        radial-gradient(circle at 78% 18%, rgba(72, 89, 190, 0.25), transparent 28rem),
        linear-gradient(125deg, #010207 0%, #080B14 52%, #151D48 100%) !important;
}

/* --------------------------------------------------------------------------
   Typography and links
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme .hero-title,
body.pixocore-dark-theme .section-title,
body.pixocore-dark-theme .inner-title,
body.pixocore-dark-theme .not-found h1,
body.pixocore-dark-theme h1,
body.pixocore-dark-theme h2,
body.pixocore-dark-theme h3,
body.pixocore-dark-theme h4 {
    color: var(--pc-text-main);
}

body.pixocore-dark-theme .hero-title span,
body.pixocore-dark-theme .section-eyebrow,
body.pixocore-dark-theme .text-link,
body.pixocore-dark-theme .not-found span {
    color: var(--pc-brand-light);
}

body.pixocore-dark-theme .section-eyebrow-light,
body.pixocore-dark-theme .text-link-light {
    color: #C4CBFF;
}

body.pixocore-dark-theme .hero-lead,
body.pixocore-dark-theme .section-lead,
body.pixocore-dark-theme .inner-lead,
body.pixocore-dark-theme .body-copy,
body.pixocore-dark-theme .cta-section p:not(.section-eyebrow),
body.pixocore-dark-theme .not-found p,
body.pixocore-dark-theme .pillar-card p,
body.pixocore-dark-theme .service-bento p,
body.pixocore-dark-theme .why-card p,
body.pixocore-dark-theme .industry-card p,
body.pixocore-dark-theme .process-step p,
body.pixocore-dark-theme .portfolio-body > p,
body.pixocore-dark-theme .ecosystem p,
body.pixocore-dark-theme .faq-panel p,
body.pixocore-dark-theme .dark-feature p,
body.pixocore-dark-theme .stack-list p,
body.pixocore-dark-theme .contact-sidebar > p:not(.section-eyebrow) {
    color: var(--pc-text-soft);
}

body.pixocore-dark-theme .hero-trust,
body.pixocore-dark-theme .form-note,
body.pixocore-dark-theme .mega-title,
body.pixocore-dark-theme .portfolio-kicker {
    color: var(--pc-text-muted-dark);
}

body.pixocore-dark-theme ::selection {
    background: var(--pc-brand-light);
    color: #050711;
}

/* --------------------------------------------------------------------------
   Header, mega menu and mobile navigation
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme .site-header {
    background: rgba(2, 3, 8, 0.62);
    border-bottom-color: rgba(147, 160, 238, 0.08);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
}

body.pixocore-dark-theme .site-header.is-scrolled {
    background: rgba(3, 5, 13, 0.88);
    border-color: rgba(147, 160, 238, 0.14);
    box-shadow: 0 16px 52px rgba(0, 0, 0, 0.28);
}

body.pixocore-dark-theme .nav-link,
body.pixocore-dark-theme .mobile-services a,
body.pixocore-dark-theme .service-toc a {
    color: #C1C7D8;
}

body.pixocore-dark-theme .nav-link:hover,
body.pixocore-dark-theme .nav-link[aria-current="page"],
body.pixocore-dark-theme .mobile-services a:hover,
body.pixocore-dark-theme .service-toc a:hover {
    color: #FFFFFF;
}

body.pixocore-dark-theme .nav-link[aria-current="page"]::after {
    background: var(--pc-brand-light);
}

body.pixocore-dark-theme .mega-menu,
body.pixocore-dark-theme .mobile-drawer,
body.pixocore-dark-theme .sticky-service-nav {
    background: rgba(6, 9, 22, 0.96);
    color: var(--pc-text-main);
    border-color: var(--pc-line);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
}

body.pixocore-dark-theme .mega-menu {
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.025);
}

body.pixocore-dark-theme .mega-menu a,
body.pixocore-dark-theme .mobile-nav-link {
    color: #C3C9DB;
}

body.pixocore-dark-theme .mega-menu a:hover,
body.pixocore-dark-theme .mobile-nav-link:hover {
    color: #FFFFFF;
}

body.pixocore-dark-theme .mobile-nav-link,
body.pixocore-dark-theme .mobile-drawer-head,
body.pixocore-dark-theme .mobile-drawer .border-slate-200 {
    border-color: var(--pc-line) !important;
}

body.pixocore-dark-theme .mobile-overlay {
    background: rgba(0, 0, 0, 0.72);
}

body.pixocore-dark-theme .menu-button {
    background: rgba(33, 44, 98, 0.16);
    border-color: var(--pc-line-strong);
    color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme .btn-primary,
body.pixocore-dark-theme .floating-action,
body.pixocore-dark-theme .back-to-top {
    background: linear-gradient(135deg, #2A397B 0%, #212C62 54%, #151D48 100%);
    color: #FFFFFF;
    border: 1px solid rgba(147, 160, 238, 0.26);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(147, 160, 238, 0.04) inset;
}

body.pixocore-dark-theme .btn-primary:hover,
body.pixocore-dark-theme .floating-action:hover,
body.pixocore-dark-theme .back-to-top:hover {
    background: linear-gradient(135deg, #34458F 0%, #283774 55%, #1B2456 100%);
    border-color: rgba(147, 160, 238, 0.44);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38), 0 0 26px rgba(74, 92, 192, 0.16);
}

body.pixocore-dark-theme .btn-secondary,
body.pixocore-dark-theme .btn-outline-light {
    background: rgba(255, 255, 255, 0.035);
    color: #F6F7FC;
    border-color: var(--pc-line-strong);
}

body.pixocore-dark-theme .btn-secondary:hover,
body.pixocore-dark-theme .btn-outline-light:hover {
    color: #FFFFFF;
    background: rgba(33, 44, 98, 0.20);
    border-color: rgba(147, 160, 238, 0.50);
}

body.pixocore-dark-theme .btn-light {
    background: #F8F9FC;
    color: #151D48;
}

/* --------------------------------------------------------------------------
   Cards, panels and visual components
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme .pillar-card,
body.pixocore-dark-theme .service-bento,
body.pixocore-dark-theme .why-card,
body.pixocore-dark-theme .industry-card,
body.pixocore-dark-theme .portfolio-card,
body.pixocore-dark-theme .faq-item,
body.pixocore-dark-theme .feature-panel,
body.pixocore-dark-theme .feature-mega-grid article,
body.pixocore-dark-theme .form-panel,
body.pixocore-dark-theme .contact-form,
body.pixocore-dark-theme .contact-sidebar,
body.pixocore-dark-theme .marketing-shell,
body.pixocore-dark-theme .browser-showcase,
body.pixocore-dark-theme .code-window,
body.pixocore-dark-theme .about-main-card,
body.pixocore-dark-theme .about-small-card,
body.pixocore-dark-theme .product-stage,
body.pixocore-dark-theme .crm-shell,
body.pixocore-dark-theme .ecosystem article {
    background:
        linear-gradient(145deg, rgba(15, 20, 45, 0.88), rgba(6, 9, 20, 0.84));
    color: var(--pc-text-main);
    border-color: var(--pc-line);
    box-shadow:
        0 22px 64px rgba(0, 0, 0, 0.24),
        inset 0 1px rgba(255, 255, 255, 0.025);
}

body.pixocore-dark-theme .service-bento.service-dark,
body.pixocore-dark-theme .dark-feature {
    background:
        radial-gradient(circle at 80% 10%, rgba(94, 111, 218, 0.18), transparent 18rem),
        linear-gradient(145deg, rgba(22, 30, 75, 0.94), rgba(5, 8, 18, 0.96));
    border-color: rgba(147, 160, 238, 0.19);
}

body.pixocore-dark-theme .pillar-card,
body.pixocore-dark-theme .service-bento,
body.pixocore-dark-theme .why-card,
body.pixocore-dark-theme .industry-card,
body.pixocore-dark-theme .portfolio-card,
body.pixocore-dark-theme .feature-panel,
body.pixocore-dark-theme .feature-mega-grid article,
body.pixocore-dark-theme .ecosystem article {
    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

body.pixocore-dark-theme .pillar-card:hover,
body.pixocore-dark-theme .service-bento:hover,
body.pixocore-dark-theme .why-card:hover,
body.pixocore-dark-theme .industry-card:hover,
body.pixocore-dark-theme .portfolio-card:hover,
body.pixocore-dark-theme .feature-panel:hover,
body.pixocore-dark-theme .feature-mega-grid article:hover,
body.pixocore-dark-theme .ecosystem article:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 160, 238, 0.36);
    background: linear-gradient(145deg, rgba(24, 31, 72, 0.88), rgba(7, 10, 23, 0.90));
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34), 0 0 38px rgba(50, 65, 150, 0.08);
}

body.pixocore-dark-theme .card-icon,
body.pixocore-dark-theme .floating-icon,
body.pixocore-dark-theme .contact-info .icon,
body.pixocore-dark-theme .icon-check {
    color: var(--pc-brand-light);
}

body.pixocore-dark-theme .service-number,
body.pixocore-dark-theme .why-card > span,
body.pixocore-dark-theme .process-step > span,
body.pixocore-dark-theme .ecosystem article > span {
    color: var(--pc-brand-light);
}

/* Hero device / browser style UI */
body.pixocore-dark-theme .hero-device,
body.pixocore-dark-theme .floating-ui {
    background: rgba(7, 10, 23, 0.90);
    border-color: var(--pc-line);
    color: var(--pc-text-main);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 50px rgba(33, 44, 98, 0.10);
}

body.pixocore-dark-theme .hero-device-bar,
body.pixocore-dark-theme .browser-top,
body.pixocore-dark-theme .code-top,
body.pixocore-dark-theme .crm-top {
    background: rgba(12, 16, 36, 0.96);
    border-color: var(--pc-line);
}

body.pixocore-dark-theme .hero-workspace,
body.pixocore-dark-theme .browser-content,
body.pixocore-dark-theme .crm-main {
    background: linear-gradient(145deg, rgba(8, 11, 24, 0.98), rgba(12, 17, 42, 0.96));
}

body.pixocore-dark-theme .hero-mini-stats div,
body.pixocore-dark-theme .hero-chart,
body.pixocore-dark-theme .marketing-metric,
body.pixocore-dark-theme .marketing-chart,
body.pixocore-dark-theme .funnel,
body.pixocore-dark-theme .crm-stat-grid > div,
body.pixocore-dark-theme .crm-chart,
body.pixocore-dark-theme .crm-table {
    background: rgba(255, 255, 255, 0.025);
    border-color: var(--pc-line);
    color: var(--pc-text-main);
}

body.pixocore-dark-theme .hero-table span,
body.pixocore-dark-theme .hero-workspace-title span:last-child {
    background: rgba(147, 160, 238, 0.12);
}

body.pixocore-dark-theme .hero-workspace-title span:first-child {
    background: linear-gradient(90deg, #394B9A, #212C62);
}

body.pixocore-dark-theme .hero-chart path,
body.pixocore-dark-theme .marketing-chart path {
    stroke: var(--pc-brand-light);
}

body.pixocore-dark-theme .hero-chart path.fill,
body.pixocore-dark-theme .marketing-chart path.fill {
    fill: rgba(105, 120, 220, 0.12);
}

body.pixocore-dark-theme .floating-icon {
    background: rgba(33, 44, 98, 0.28);
}

body.pixocore-dark-theme .floating-ui small,
body.pixocore-dark-theme .hero-mini-stats small,
body.pixocore-dark-theme .hero-device-bar small,
body.pixocore-dark-theme .browser-top span,
body.pixocore-dark-theme .code-top span,
body.pixocore-dark-theme .marketing-head span,
body.pixocore-dark-theme .marketing-metric small,
body.pixocore-dark-theme .marketing-chart small,
body.pixocore-dark-theme .funnel small {
    color: var(--pc-text-muted-dark);
}

/* --------------------------------------------------------------------------
   Chips, filters and project tags
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme .chip,
body.pixocore-dark-theme .filter-btn,
body.pixocore-dark-theme .project-tags span,
body.pixocore-dark-theme .demo-badge {
    background: rgba(33, 44, 98, 0.14);
    border-color: rgba(147, 160, 238, 0.18);
    color: #CDD3E8;
}

body.pixocore-dark-theme .chip:hover,
body.pixocore-dark-theme .filter-btn:hover,
body.pixocore-dark-theme .filter-btn.is-active {
    background: rgba(48, 64, 145, 0.42);
    border-color: rgba(147, 160, 238, 0.44);
    color: #FFFFFF;
}

body.pixocore-dark-theme .project-visual {
    background: linear-gradient(145deg, #0C1026, #151D48);
}

body.pixocore-dark-theme .project-arrow {
    color: var(--pc-brand-light);
    border-color: var(--pc-line);
    background: rgba(33, 44, 98, 0.12);
}

/* --------------------------------------------------------------------------
   Timeline / ecosystem / lists
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme .process-line::before {
    background: linear-gradient(90deg, rgba(147,160,238,.10), rgba(147,160,238,.42), rgba(147,160,238,.10));
}

body.pixocore-dark-theme .stack-list article {
    background: rgba(33, 44, 98, 0.11);
    border-left-color: var(--pc-brand-light);
}

body.pixocore-dark-theme .ecosystem article,
body.pixocore-dark-theme .ecosystem article:nth-child(-n+2) {
    border-color: var(--pc-line) !important;
}

/* --------------------------------------------------------------------------
   Contact / forms
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme .contact-info > a,
body.pixocore-dark-theme .contact-info > p,
body.pixocore-dark-theme .contact-quick > a,
body.pixocore-dark-theme .contact-quick > p {
    background: rgba(9, 13, 29, 0.82);
    color: #CDD3E8;
    border-color: var(--pc-line);
}

body.pixocore-dark-theme .contact-info small,
body.pixocore-dark-theme .contact-quick small {
    color: var(--pc-text-muted-dark);
}

body.pixocore-dark-theme .contact-info b,
body.pixocore-dark-theme .contact-quick b {
    color: var(--pc-text-main);
}

body.pixocore-dark-theme .form-field label {
    color: #D9DEED;
}

body.pixocore-dark-theme .form-field input,
body.pixocore-dark-theme .form-field select,
body.pixocore-dark-theme .form-field textarea {
    background: rgba(2, 4, 10, 0.70);
    color: #F7F8FC;
    border-color: var(--pc-line-strong);
}

body.pixocore-dark-theme .form-field input::placeholder,
body.pixocore-dark-theme .form-field textarea::placeholder {
    color: #737F9D;
}

body.pixocore-dark-theme .form-field select option {
    color: #F7F8FC;
    background: #080B14;
}

body.pixocore-dark-theme .form-field input:focus,
body.pixocore-dark-theme .form-field select:focus,
body.pixocore-dark-theme .form-field textarea:focus {
    border-color: var(--pc-brand-light);
    box-shadow: 0 0 0 4px rgba(89, 106, 214, 0.13), 0 0 28px rgba(33, 44, 98, 0.12);
}

body.pixocore-dark-theme .form-status {
    color: #B7C0FF;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme .faq-button {
    color: #F6F7FC;
}

body.pixocore-dark-theme .faq-item {
    border-color: var(--pc-line);
}

body.pixocore-dark-theme .faq-item:hover {
    border-color: rgba(147, 160, 238, 0.32);
}

body.pixocore-dark-theme .faq-plus::before,
body.pixocore-dark-theme .faq-plus::after {
    background: var(--pc-brand-light);
}

/* --------------------------------------------------------------------------
   Footer / loader / skip link
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme .site-footer {
    background:
        radial-gradient(circle at 78% 10%, rgba(33, 44, 98, 0.28), transparent 26rem),
        linear-gradient(135deg, #010207 0%, #050711 46%, #0A102A 100%);
    border-top: 1px solid var(--pc-line);
}

body.pixocore-dark-theme .footer-bottom {
    border-color: var(--pc-line);
}

body.pixocore-dark-theme .page-loader {
    background:
        radial-gradient(circle at 50% 42%, rgba(33, 44, 98, 0.30), transparent 22rem),
        #020308;
}

body.pixocore-dark-theme .skip-link {
    background: #F8F9FC;
    color: #080B14;
}

/* --------------------------------------------------------------------------
   Decorative background enhancement
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme .hero-grid-pattern,
body.pixocore-dark-theme .dark-grid,
body.pixocore-dark-theme .cta-pattern {
    background-image:
        linear-gradient(rgba(147, 160, 238, 0.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 160, 238, 0.052) 1px, transparent 1px);
}

body.pixocore-dark-theme .hero-orb-one {
    background: rgba(58, 76, 170, 0.20);
    box-shadow: 0 0 110px rgba(58, 76, 170, 0.18);
}

body.pixocore-dark-theme .hero-orb-two {
    background: rgba(30, 40, 100, 0.22);
    box-shadow: 0 0 90px rgba(33, 44, 98, 0.14);
}

/* --------------------------------------------------------------------------
   Scroll progress
   -------------------------------------------------------------------------- */
body.pixocore-dark-theme .scroll-progress {
    background: rgba(255, 255, 255, 0.025);
}

body.pixocore-dark-theme .scroll-progress span {
    background: linear-gradient(90deg, #596ED0, #93A0EE, #212C62);
    box-shadow: 0 0 18px rgba(106, 124, 236, 0.42);
}

/* --------------------------------------------------------------------------
   Custom mouse point / cursor animation
   -------------------------------------------------------------------------- */
.pc-cursor-dot,
.pc-cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10050;
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%) scale(var(--cursor-scale, 1));
    transition:
        opacity .18s ease,
        width .20s ease,
        height .20s ease,
        border-color .20s ease,
        background-color .20s ease;
}

.pc-cursor-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(147, 160, 238, 0.10), 0 0 18px rgba(147, 160, 238, 0.65);
}

.pc-cursor-ring {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(167, 177, 245, 0.62);
    background: rgba(33, 44, 98, 0.045);
    box-shadow: 0 0 28px rgba(84, 103, 213, 0.16);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

html.pc-cursor-enabled,
html.pc-cursor-enabled body,
html.pc-cursor-enabled a,
html.pc-cursor-enabled button,
html.pc-cursor-enabled [role="button"],
html.pc-cursor-enabled [data-cursor="interactive"] {
    cursor: none !important;
}

/* Keep familiar editing cursors where precision matters. */
html.pc-cursor-enabled input,
html.pc-cursor-enabled textarea,
html.pc-cursor-enabled [contenteditable="true"] {
    cursor: text !important;
}

html.pc-cursor-enabled select {
    cursor: default !important;
}

html.pc-cursor-enabled.pc-cursor-native .pc-cursor-dot,
html.pc-cursor-enabled.pc-cursor-native .pc-cursor-ring {
    opacity: 0 !important;
}

html.pc-cursor-enabled.pc-cursor-visible .pc-cursor-dot,
html.pc-cursor-enabled.pc-cursor-visible .pc-cursor-ring {
    opacity: 1;
}

html.pc-cursor-enabled.pc-cursor-hover .pc-cursor-ring {
    --cursor-scale: 1.55;
    border-color: rgba(186, 195, 255, 0.80);
    background: rgba(62, 78, 173, 0.14);
}

html.pc-cursor-enabled.pc-cursor-pressed .pc-cursor-dot {
    --cursor-scale: .65;
}

html.pc-cursor-enabled.pc-cursor-pressed .pc-cursor-ring {
    --cursor-scale: .82;
}

.pc-click-pulse {
    position: fixed;
    z-index: 10040;
    pointer-events: none;
    width: 10px;
    height: 10px;
    left: 0;
    top: 0;
    border-radius: 50%;
    border: 1px solid rgba(174, 184, 255, .80);
    transform: translate(-50%, -50%) scale(.45);
    opacity: .9;
    animation: pcClickPulse .55s cubic-bezier(.16,.84,.44,1) forwards;
}

@keyframes pcClickPulse {
    to {
        transform: translate(-50%, -50%) scale(5.5);
        opacity: 0;
        border-color: rgba(84, 103, 213, 0);
    }
}

/* Slight premium glow on interactive cards near the pointer. JS updates the
   global pointer spotlight; cards stay lightweight and GPU friendly. */
body.pixocore-dark-theme .btn,
body.pixocore-dark-theme .portfolio-card,
body.pixocore-dark-theme .service-bento,
body.pixocore-dark-theme .why-card,
body.pixocore-dark-theme .industry-card {
    transform-style: preserve-3d;
}

/* Accessibility / device fallbacks */
@media (hover: none), (pointer: coarse) {
    body.pixocore-dark-theme::before {
        display: none;
    }

    .pc-cursor-dot,
    .pc-cursor-ring,
    .pc-click-pulse {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.pixocore-dark-theme::before {
        display: none;
    }

    html.pc-cursor-enabled,
    html.pc-cursor-enabled body,
    html.pc-cursor-enabled a,
    html.pc-cursor-enabled button,
    html.pc-cursor-enabled [role="button"] {
        cursor: auto !important;
    }

    .pc-cursor-dot,
    .pc-cursor-ring,
    .pc-click-pulse {
        display: none !important;
    }
}

@media (max-width: 767px) {
    body.pixocore-dark-theme {
        background-attachment: scroll;
    }

    body.pixocore-dark-theme main > section {
        background:
            radial-gradient(circle at 82% 10%, rgba(33, 44, 98, 0.19), transparent 18rem),
            linear-gradient(145deg, rgba(2, 3, 8, 0.99), rgba(10, 14, 34, 0.97));
    }
}
