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

        :root {
            --font-display: 'Space Grotesk', sans-serif;
            --font-mono: 'Roboto Mono', monospace;
        }

        body {
            font-family: var(--font-display);
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: #000;
            border-bottom: 4px solid #fff;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        }

        nav a {
            padding: 2rem;
            text-align: center;
            color: #fff;
            text-decoration: none;
            font-weight: 900;
            font-size: 1.2rem;
            letter-spacing: 2px;
            border-right: 4px solid #fff;
            transition: all 0.2s;
            background: #000;
        }

        nav a:last-child {
            border-right: none;
        }

        nav a:hover {
            background: #fff;
            color: #000;
        }

        /* Hero Section with 3D */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 4px solid #fff;
            margin-top: 80px;
        }

        .hero-left {
            padding: 6rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 4px solid #fff;
            background: #000;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 900;
            line-height: 0.85;
            letter-spacing: -4px;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }

        .hero-title span {
            display: block;
        }

        .hero-meta {
            font-family: var(--font-mono);
            font-size: 0.9rem;
            letter-spacing: 3px;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 2px solid #fff;
        }

        .hero-meta p {
            margin-bottom: 0.5rem;
        }

        .hero-right {
            position: relative;
            background: #000;
        }
        .hero-right2 {
    position: relative;
    background: #000;
    width: 100%;
    height: 100vh; /* Add this - or whatever height you need */
}

        #canvas-rotate {
            width: 100%;
            height: 100%;
        }

        #canvas-circle {
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
a {
    color: #fff;
    text-decoration: none;
}

a:visited {
    color: #fff;
}

.grid-cell-small a,
.project-block:nth-child(even) a {
    color: #000;
}

.grid-cell-small a:visited,
.project-block:nth-child(even) a:visited {
    color: #000;
}

        .canvas-overlay {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            right: 2rem;
            padding: 2rem;
            background: #fff;
            color: #000;
            font-weight: 900;
            font-size: 1.2rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 4px solid #000;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-bottom: 4px solid #fff;
        }

        .stat-box {
            padding: 4rem;
            text-align: center;
            border-right: 4px solid #fff;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.3s;
        }

        .stat-box:last-child {
            border-right: none;
        }

        .stat-box:hover {
            background: #fff;
            color: #000;
        }

        .stat-number {
            font-size: 6rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .stat-label {
            font-size: 0.9rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* About Grid */
        .grid-section {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            border-bottom: 4px solid #fff;
        }

        .grid-cell {
            border-right: 4px solid #fff;
            padding: 4rem;
            min-height: 400px;
        }

        .grid-cell:last-child {
            border-right: none;
        }

        .grid-cell-large {
            grid-column: span 8;
        }

        .grid-cell-small {
            grid-column: span 4;
            background: #fff;
            color: #000;
        }

        .cell-number {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            opacity: 0.5;
        }

        .cell-title {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: -2px;
            text-transform: uppercase;
            line-height: 0.9;
            margin-bottom: 2rem;
        }

        .cell-content {
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 300;
        }

        /* Projects */
        .project-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 4px solid #fff;
        }

        .project-block {
            border-right: 4px solid #fff;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .project-block:nth-child(even) {
            border-right: none;
        }

        .project-block:hover {
            transform: scale(0.98);
        }

        .project-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            filter: grayscale(100%) contrast(1.2);
            border-bottom: 4px solid #fff;
            display: block;
        }

        .project-content {
            padding: 3rem;
            flex-grow: 1;
            position: relative;
        }

        .project-block:nth-child(even) .project-content {
            background: #fff;
            color: #000;
        }

        .project-number {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 8rem;
            font-weight: 900;
            opacity: 0.05;
            line-height: 1;
        }

        .project-title {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: -3px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            position: relative;
            z-index: 2;
        }

        .project-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }

/* Make video fill parent perfectly */
.project-block video {
position:relative;
    filter: grayscale(100%) contrast(1.2);
    border-bottom: 4px solid #fff;

}
        .project-tech {
            font-family: var(--font-mono);
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            z-index: 2;
        }

        /* More CTA Section */
        .more-cta {
            border-bottom: 4px solid #fff;
            background: #000;
        }

        .more-cta-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 4rem;
            text-decoration: none;
            color: #fff;
            font-weight: 900;
            font-size: 3rem;
            letter-spacing: -2px;
            text-transform: uppercase;
            transition: all 0.3s;
            border: 4px solid #fff;
            margin: 0;
        }

        .more-cta-link:hover {
            background: #fff;
            color: #000;
            padding-left: 6rem;
        }

        .more-cta-text {
            flex-grow: 1;
        }

        .more-cta-arrow {
            font-size: 4rem;
            transition: transform 0.3s;
        }

        .more-cta-link:hover .more-cta-arrow {
            transform: translateX(1rem);
        }
        /* ARTICLES SECTION - NEW */
        .articles-section {
            border-bottom: 4px solid #fff;
            padding: 8rem 4rem;
        }

        .articles-header {
            margin-bottom: 6rem;
            padding-bottom: 3rem;
            border-bottom: 4px solid #fff;
        }

        .articles-title {
            font-size: 6rem;
            font-weight: 900;
            letter-spacing: -4px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .articles-subtitle {
            font-family: var(--font-mono);
            font-size: 1rem;
            letter-spacing: 2px;
            opacity: 0.7;
        }

        /* Article Types Grid */
        .article-types {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 6rem;
        }

        .article-type-box {
            border: 4px solid #fff;
            padding: 3rem;
            background: #000;
            position: relative;
            min-height: 300px;
        }

        .article-type-box.external {
            background: #fff;
            color: #000;
        }

        .type-badge {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            padding: 0.5rem 1rem;
            border: 2px solid #fff;
            background: #000;
            color: #fff;
            letter-spacing: 1px;
        }

        .article-type-box.external .type-badge {
            background: #fff;
            color: #000;
            border-color: #000;
        }

        .type-icon {
            font-size: 4rem;
            margin-bottom: 2rem;
        }

        .type-title {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .type-description {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            opacity: 0.8;
        }

        .type-link {
            display: inline-block;
            padding: 1rem 2rem;
            background: #fff;
            color: #000;
            border: 4px solid #000;
            text-decoration: none;
            font-weight: 900;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .article-type-box.external .type-link {
            background: #000;
            color: #fff;
            border-color: #fff;
        }

        .type-link:hover {
            transform: translateY(-4px);
        }

        /* Articles List */
        .articles-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            border: 4px solid #fff;
        }

        .article-item {
            display: grid;
            grid-template-columns: 100px 1fr 200px 150px;
            align-items: center;
            padding: 2rem;
            border-bottom: 4px solid #fff;
            background: #000;
            transition: all 0.3s;
            text-decoration: none;
            color: #fff;
        }

        .article-item:last-child {
            border-bottom: none;
        }

        .article-item:hover {
            background: #fff;
            color: #000;
            transform: scale(0.99);
        }

        .article-item.external {
            background: #fff;
            color: #000;
        }

        .article-item.external:hover {
            background: #000;
            color: #fff;
        }

        .article-number {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 900;
        }

        .article-info h3 {
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .article-excerpt {
            font-size: 0.9rem;
            opacity: 0.7;
            line-height: 1.5;
        }

        .article-meta {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            letter-spacing: 1px;
            opacity: 0.6;
        }

        .article-badge {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            padding: 0.5rem 1rem;
            border: 2px solid #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }

        .article-item.external .article-badge {
            border-color: #000;
        }

        .article-item:hover .article-badge {
            border-color: #000;
        }

        .article-item.external:hover .article-badge {
            border-color: #fff;
        }

        /* 3D Canvas Section */
        .canvas-section {
            height: 80vh;
            position: relative;
            border-bottom: 4px solid #fff;
            background: #000;
        }

        .canvas-section canvas {
            width: 100%;
            height: 100%;
        }

        .canvas-info {
            position: absolute;
            top: 2rem;
            left: 2rem;
            background: #fff;
            color: #000;
            padding: 2rem;
            max-width: 400px;
            border: 4px solid #000;
        }

        .canvas-info h3 {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .canvas-instructions {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            background: #000;
            color: #fff;
            padding: 1.5rem;
            border: 4px solid #fff;
            font-family: var(--font-mono);
            font-size: 0.85rem;
        }
          .morearticles {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            background: #000;
            color: #fff;
            padding: 1.5rem;
            border: 4px solid #fff;
            font-family: var(--font-mono);
            font-size: 0.85rem;
        }

        /* Typography Section */
        .type-section {
            padding: 8rem;
            border-bottom: 4px solid #fff;
        }

        .type-massive {
            font-size: clamp(4rem, 15vw, 15rem);
            font-weight: 900;
            line-height: 0.85;
            letter-spacing: -8px;
            text-transform: uppercase;
            margin-bottom: 4rem;
        }

        .type-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 4px;
            background: #fff;
            padding: 4px;
        }

        .type-cell {
            background: #000;
            padding: 3rem;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 900;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .type-cell:hover {
            background: #fff;
            color: #000;
        }

        /* Contact Block */
        .contact-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 80vh;
        }

        .contact-left {
            background: #fff;
            color: #000;
            padding: 6rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 4px solid #000;
        }

        .contact-title {
            font-size: 5rem;
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -3px;
            text-transform: uppercase;
            margin-bottom: 3rem;
        }

        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .contact-link {
            padding: 2rem 0;
            font-size: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #000;
            text-decoration: none;
            border-top: 2px solid #000;
            transition: all 0.2s;
        }

         .contact-link:visited {
            color: #000 !important;
        }

        .contact-link:hover {
            padding-left: 2rem;
            color: #000 !important;
        }

        .contact-right {
            background: #000;
            padding: 6rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .form-group {
            border-top: 2px solid #fff;
            padding: 2rem 0;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.2rem;
            font-family: var(--font-display);
            font-weight: 300;
            outline: none;
        }

        .form-group textarea {
            resize: none;
            min-height: 150px;
        }

        .form-submit {
            background: #fff;
            color: #000;
            border: none;
            padding: 2rem;
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 2rem;
        }

        .form-submit:hover {
            background: #000;
            color: #fff;
            border: 4px solid #fff;
        }

        /* Chat */
        .chat-box {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 400px;
            height: 500px;
            background: #000;
            border: 4px solid #fff;
            display: flex;
            flex-direction: column;
            z-index: 999;
            box-shadow: 0 0 0 4px #000;
        }

        .chat-box.minimized {
            height: 60px;
            overflow: hidden;
        }

        .chat-header {
            background: #fff;
            color: #000;
            padding: 1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            border-bottom: 4px solid #000;
        }

        .chat-toggle {
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
        }

        .chat-messages {
            flex-grow: 1;
            padding: 1rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .chat-message {
            padding: 1rem;
            background: #fff;
            color: #000;
            border: 2px solid #000;
            font-size: 0.9rem;
            line-height: 1.4;
            max-width: 80%;
        }

        .chat-message.user {
            align-self: flex-end;
            background: #000;
            color: #fff;
            border-color: #fff;
        }

        .chat-input-area {
            border-top: 4px solid #fff;
            display: flex;
        }

        .chat-input {
            flex-grow: 1;
            background: transparent;
            border: none;
            color: #fff;
            padding: 1rem;
            font-family: var(--font-mono);
            font-size: 0.9rem;
            outline: none;
        }

        .chat-send {
            background: #fff;
            color: #000;
            border: none;
            padding: 1rem 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            cursor: pointer;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border-left: 4px solid #000;
            transition: all 0.2s;
        }

        .chat-send:hover {
            background: #000;
            color: #fff;
            border-left-color: #fff;
        }

        /* Footer */
        footer {
            padding: 4rem;
            text-align: center;
            background: #fff;
            color: #000;
            border-top: 4px solid #000;
        }

        footer p {
            font-size: 0.9rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            nav {
                grid-template-columns: 1fr 1fr;
            }

            nav a:nth-child(2),
            nav a:nth-child(4) {
                border-right: none;
            }

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

            .hero-left {
                border-right: none;
                border-bottom: 4px solid #fff;
            }

            .grid-cell-large,
            .grid-cell-small {
                grid-column: span 12;
            }

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

            .stat-box:nth-child(2),
            .stat-box:nth-child(4) {
                border-right: none;
            }

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

            .project-block:nth-child(even) {
                border-right: 4px solid #fff;
                border-bottom: 4px solid #fff;
            }

            .article-types {
                grid-template-columns: 1fr;
            }

            .article-item {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

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

            .contact-left {
                border-right: none;
                border-bottom: 4px solid #000;
            }

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

            .chat-box {
                width: calc(100% - 2rem);
                right: 1rem;
                bottom: 1rem;
            }
        }
    /* ------------------------------------------- */
/*  MOBILE & SMALL DEVICES RESPONSIVENESS      */
/* ------------------------------------------- */

@media (max-width: 768px) {

    /* General resets for better scaling */
    body {
        font-size: 16px;
        line-height: 1.5;
    }

    nav {
        grid-template-columns: 1fr;
        text-align: center;
        border-bottom: 3px solid #fff;
    }

    nav a {
        padding: 1.2rem;
        border-right: none;
        border-bottom: 2px solid #fff;
        font-size: 1rem;
    }

    nav a:last-child {
        border-bottom: none;
    }

    .hero {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .hero-left {
        padding: 3rem 2rem;
        border-right: none;
        border-bottom: 4px solid #fff;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-meta {
        margin-top: 2rem;
        padding-top: 2rem;
        font-size: 0.8rem;
    }

    .hero-right,
    .hero-right2 {
        height: 60vh;
    }

    /* Stats grid */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 2rem;
        border-right: none;
        border-bottom: 4px solid #fff;
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    /* Generic grid sections */
    .grid-section {
        grid-template-columns: 1fr;
    }

    .grid-cell {
        padding: 2rem;
        border-right: none;
        border-bottom: 4px solid #fff;
    }

    .grid-cell:last-child {
        border-bottom: none;
    }

    /* Project grid */
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-block {
        border-right: none !important;
        border-bottom: 4px solid #fff;
    }

    .project-image,
    .project-block video {
        height: 250px;
    }

    .project-title {
        font-size: 2rem;
    }

    .project-content {
        padding: 2rem;
    }

    /* Articles */
    .articles-section {
        padding: 4rem 2rem;
    }

    .articles-title {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .article-item {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1rem;
    }

    .article-item * {
        text-align: left;
    }

    /* CTA section */
    .more-cta-link {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        font-size: 2rem;
    }

    .more-cta-arrow {
        font-size: 3rem;
        margin-top: 1rem;
    }

    /* Type section */
    .type-section {
        padding: 4rem 2rem;
    }

    .type-massive {
        font-size: clamp(3rem, 12vw, 6rem);
        letter-spacing: -3px;
    }

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

    /* Contact */
    .contact-block {
        grid-template-columns: 1fr;
    }

    .contact-left,
    .contact-right {
        padding: 3rem 2rem;
    }

    .contact-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .contact-link {
        font-size: 1.2rem;
        padding: 1.2rem 0;
    }

    .form-submit {
        font-size: 1.2rem;
        padding: 1.5rem;
    }

    /* Chat box */
    .chat-box {
        width: 100%;
        right: 0;
        bottom: 0;
        height: 60vh;
        border-width: 3px;
    }

    .chat-box.minimized {
        height: 50px;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
        font-size: 0.8rem;
    }
}

/* ------------------------------------------- */
/*  EXTRA SMALL SCREENS (Phones <480px)        */
/* ------------------------------------------- */
@media (max-width: 480px) {

    nav a {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .project-title {
        font-size: 1.8rem;
    }

    .more-cta-link {
        font-size: 1.8rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .chat-box {
        height: 50vh;
    }
}
/* ------------------------------------------------------ */
/*  HAMBURGER MENU for EXISTING NAV STRUCTURE             */
/* ------------------------------------------------------ */

/* The hamburger icon (hidden by default) */
.hamburger {
    display: none;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 200;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* When hamburger is active (animated into an “X”) */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile nav behavior */
@media (max-width: 1024px) {
    nav {
        grid-template-columns: 1fr;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }

    nav.open {
        max-height: 500px; /* enough for all links */
    }

    nav a {
        display: block;
        border-right: none;
        border-bottom: 2px solid #fff;
        padding: 1.2rem;
        font-size: 1rem;
    }

    nav a:last-child {
        border-bottom: none;
    }

    /* Show the hamburger */
    .hamburger {
        display: flex;
    }
}
/* Re-enable pointer events on desktop if you add camera control back */
@media (min-width: 1024px) {
    #canvas-rotate,
    #canvas-circle {
        pointer-events: auto;
    }
}

