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

        :root {
            --bg: #060609;
            --surface: #0c0c14;
            --card: #10101a;
            --border: rgba(255,255,255,0.06);
            --border-hover: rgba(255,77,77,0.2);
            --text: #e8e8ed;
            --text-dim: #6b6b7b;
            --text-muted: #3a3a4a;
            --red: #ff4d4d;
            --red-glow: rgba(255,77,77,0.12);
            --orange: #ff8c4d;
            --blue: #4d79ff;
            --purple: #a855f7;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ── Background ── */
        .bg-grid {
            position: fixed; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none; z-index: 0;
        }
        .bg-orb { position: fixed; border-radius: 50%; filter: blur(140px); pointer-events: none; z-index: 0; }
        .bg-orb-1 { width: 700px; height: 700px; top: -250px; right: -150px; background: radial-gradient(circle, var(--red) 0%, transparent 70%); opacity: 0.25; }
        .bg-orb-2 { width: 500px; height: 500px; bottom: 20%; left: -200px; background: radial-gradient(circle, var(--blue) 0%, transparent 70%); opacity: 0.12; }
        .bg-orb-3 { width: 400px; height: 400px; bottom: -100px; right: 20%; background: radial-gradient(circle, var(--purple) 0%, transparent 70%); opacity: 0.1; }

        /* ── Layout ── */
        .container { position: relative; z-index: 1; max-width: 1190px; margin: 0 auto; padding: 0 2rem; width: 100%; }
        section { padding: 3rem 0; }

        /* ── Nav ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(6,6,9,0.8); backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }
        .nav-inner {
            max-width: 1100px; margin: 0 auto; padding: 1rem 2rem;
            display: flex; align-items: center; justify-content: space-between;
        }
        .logo { font-family: 'JetBrains Mono', monospace; font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); text-decoration: none; }
        .logo span { color: var(--red); }
        .nav-links { display: flex; gap: 2rem; list-style: none; }
        .nav-links a {
            font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-dim);
            text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--red); }
        .nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; padding: 0.25rem; }

        /* ── Hero ── */
        .hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 5rem; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.35rem 1rem; border-radius: 100px;
            background: var(--red-glow); border: 1px solid rgba(255,77,77,0.2);
            font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--red);
            width: fit-content; margin-bottom: 2rem; letter-spacing: 0.03em;
        }
        .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 2s ease-in-out infinite; }
        @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
        @keyframes glow { 0%,100% { box-shadow: 0 0 8px rgba(255,77,77,0.15); } 50% { box-shadow: 0 0 20px rgba(255,77,77,0.3); } }
        .hero-badge { animation: glow 3s ease-in-out infinite; }
        h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 1.5rem; }
        .gradient-text { background: linear-gradient(135deg, var(--red), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-desc { font-size: 1.15rem; color: var(--text-dim); line-height: 1.7; max-width: 560px; margin-bottom: 3rem; }
        .hero-links { display: flex; gap: 1rem; flex-wrap: wrap; }
        .hero-link {
            font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; padding: 0.7rem 1.6rem;
            border-radius: 8px; text-decoration: none; transition: all 0.25s;
            display: inline-flex; align-items: center; gap: 0.5rem;
        }
        .hero-link.primary { background: var(--red); color: #fff; border: 1px solid var(--red); }
        .hero-link.primary:hover { background: transparent; color: var(--red); box-shadow: 0 0 20px var(--red-glow); }
        .hero-link.secondary { background: transparent; color: var(--text-dim); border: 1px solid var(--border); }
        .hero-link.secondary:hover { border-color: var(--text-dim); color: var(--text); }

        /* ── Section Headers ── */
        .section-label {
            font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--red);
            text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.8rem;
        }
        .section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1rem; }
        .section-desc { font-size: 1rem; color: var(--text-dim); max-width: 600px; line-height: 1.7; margin-bottom: 3rem; }

        /* ── Direction Cards ── */
        .directions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
        .dir-card {
            background: var(--card); border: 1px solid var(--border); border-radius: 16px;
            padding: 1.6rem 1.6rem; transition: all 0.3s ease; position: relative; overflow: hidden; cursor: default;
        }
        .dir-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--red), transparent); opacity: 0; transition: opacity 0.3s;
        }
        .dir-card:hover::before { opacity: 1; }
        .dir-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,77,77,0.06); }
        .dir-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
        .dir-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
        .dir-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 1.2rem; }
        .dir-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
        .dir-card a:hover { background: rgba(255,77,77,0.08); border-color: var(--red); }
        .dir-tag {
            font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; padding: 0.2rem 0.6rem;
            border-radius: 4px; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
            color: var(--text-muted); letter-spacing: 0.02em;
        }

        /* ── Studio Section ── */
        .studio-section { border-top: 1px solid var(--border); }
        .studio-photo-wrapper {
            width: 100%; margin-bottom: 3rem; border-radius: 16px; overflow: hidden;
            border: 1px solid var(--border); position: relative;
        }
        .studio-photo-wrapper img {
            width: 100%; height: auto; display: block;
        }
        .studio-photo-overlay {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 1.5rem 2rem;
            background: linear-gradient(transparent, rgba(6,6,9,0.9));
            font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-dim);
        }
        .studio-photo-overlay span { color: var(--red); }

        /* Gallery */
        .studio-gallery-row {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
        }
        .gallery-thumb { aspect-ratio: 16/10; }
        .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .studio-photo-wrapper img { transition: transform 0.6s ease, filter 0.6s ease; }
        .studio-photo-wrapper:hover img { transform: scale(1.05); filter: brightness(1.15); }
        .studio-photo-wrapper::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(255,77,77,0.08) 0%, transparent 60%);
            opacity: 0; transition: opacity 0.4s; pointer-events: none;
        }
        .studio-photo-wrapper:hover::after { opacity: 1; }
        @media (max-width: 768px) {
            .studio-gallery-row { grid-template-columns: 1fr; }
        }

        /* Equipment */
        .equip-categories { display: flex; flex-direction: column; gap: 2rem; }
        .equip-category h3 {
            font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; font-weight: 600;
            color: var(--red); text-transform: uppercase; letter-spacing: 0.08em;
            margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
            display: flex; align-items: center; gap: 0.6rem;
        }
        .equip-category h3 i { font-size: 0.85rem; opacity: 0.7; }
        .equip-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
        .equip-pill {
            font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
            padding: 0.4rem 0.9rem; border-radius: 6px;
            background: var(--card); border: 1px solid var(--border);
            color: var(--text-dim); transition: all 0.2s; cursor: default;
        }
        .equip-pill:hover { border-color: var(--border-hover); color: var(--text); background: rgba(255,77,77,0.05); box-shadow: 0 0 12px rgba(255,77,77,0.1); transform: translateY(-2px); }
        .equip-pill { transition: all 0.25s ease; }

        /* ── Shop ── */
        .shop-section { border-top: 1px solid var(--border); }
        .shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
        .shop-card {
            background: var(--card); border: 1px solid var(--border); border-radius: 12px;
            overflow: hidden; transition: all 0.3s;
        }
        .shop-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
        .shop-card-visual {
            aspect-ratio: 1; position: relative; overflow: hidden;
            border-bottom: 1px solid var(--border);
        }
        .shop-card-visual svg { width: 100%; height: 100%; }
        .shop-card-badge {
            position: absolute; top: 0.8rem; right: 0.8rem;
            font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; font-weight: 700;
            padding: 0.3rem 0.7rem; border-radius: 4px;
            background: rgba(0,0,0,0.75); border: 1px solid rgba(255,77,77,0.6);
            color: #fff; letter-spacing: 0.06em;
            backdrop-filter: blur(4px); text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }
        .shop-card-body { padding: 1.2rem; }
        .shop-card-type {
            font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; color: var(--red);
            text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem;
        }
        .shop-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
        .shop-card p { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 0.8rem; }
        .shop-card-price {
            font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; font-weight: 600;
            color: var(--text);
        }
        .shop-card-price span { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; margin-left: 0.3rem; }
        .shop-card-meta { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.03em; margin-bottom: 0.6rem; opacity: 0.7; }
        .shop-buy-btn {
            display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem;
            font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; font-weight: 600;
            padding: 0.65rem 1.4rem; border-radius: 8px; border: 1px solid var(--red);
            background: var(--red); color: #fff; cursor: pointer; transition: all 0.25s; width: 100%; justify-content: center;
        }
        .shop-buy-btn:hover { background: transparent; color: var(--red); box-shadow: 0 0 20px var(--red-glow); }

        /* ── Purchase Modal ── */
        .sr-modal-overlay {
            display: none; position: fixed; inset: 0; z-index: 1000;
            background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
            align-items: center; justify-content: center; padding: 1rem;
            opacity: 0; transition: opacity 0.3s ease;
        }
        .sr-modal-overlay.active { display: flex; opacity: 1; }
        .sr-modal {
            background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
            max-width: 440px; width: 100%; padding: 2rem; position: relative;
            transform: translateY(20px); transition: transform 0.3s ease;
            max-height: 90vh; overflow-y: auto;
        }
        .sr-modal-overlay.active .sr-modal { transform: translateY(0); }
        .sr-modal-close {
            position: absolute; top: 1rem; right: 1rem; background: none; border: none;
            color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: color 0.2s; line-height: 1;
        }
        .sr-modal-close:hover { color: var(--red); }
        .sr-modal h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.3rem; }
        .sr-modal .modal-price { font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; color: var(--red); margin-bottom: 1.5rem; }
        .sr-modal label { font-size: 0.8rem; color: var(--text-dim); display: block; margin-bottom: 0.4rem; }
        .sr-modal input[type=email] {
            width: 100%; padding: 0.7rem 1rem; font-family: 'Inter', sans-serif; font-size: 0.85rem;
            background: var(--card); border: 1px solid var(--border); color: var(--text);
            border-radius: 8px; outline: none; transition: border-color 0.2s; margin-bottom: 1rem;
        }
        .sr-modal input[type=email]:focus { border-color: rgba(255,77,77,0.4); }
        .sr-modal input[type=email]::placeholder { color: var(--text-muted); }
        .sr-modal .checkbox-row {
            display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1.5rem; font-size: 0.75rem; color: var(--text-dim);
        }
        .sr-modal .checkbox-row input[type=checkbox] { margin-top: 2px; accent-color: var(--red); }
        .sr-modal .checkbox-row a { color: var(--red); text-decoration: none; }
        .sr-modal .checkbox-row a:hover { text-decoration: underline; }
        .sr-modal .modal-btn {
            width: 100%; padding: 0.75rem; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; font-weight: 600;
            background: var(--red); color: #fff; border: 1px solid var(--red); border-radius: 8px;
            cursor: pointer; transition: all 0.25s;
        }
        .sr-modal .modal-btn:hover { background: transparent; color: var(--red); }
        .sr-modal .modal-btn:disabled { opacity: 0.4; cursor: not-allowed; }
        .sr-modal .qr-container { text-align: center; margin: 1rem 0; }
        .sr-modal .qr-container canvas { border-radius: 8px; }
        .sr-modal .payment-info { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--text-dim); line-height: 1.8; margin: 1rem 0; }
        .sr-modal .payment-info strong { color: var(--text); }
        .sr-modal .step-indicator { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
        .sr-modal .success-msg { text-align: center; padding: 1rem 0; }
        .sr-modal .success-msg .icon { font-size: 2.5rem; margin-bottom: 1rem; }
        .sr-modal .success-msg p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

        /* ── Contact ── */
        .contact-section { border-top: 1px solid var(--border); }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
        .contact-info h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; }
        .contact-info p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 1.5rem; }
        .contact-links { display: flex; flex-direction: column; gap: 0.6rem; }
        .contact-link {
            display: flex; align-items: center; gap: 0.8rem;
            font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--text-dim);
            text-decoration: none; transition: color 0.2s;
        }
        .contact-link:hover { color: var(--red); }
        .contact-link-icon {
            width: 36px; height: 36px; border-radius: 8px;
            background: var(--card); border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
        }
        .contact-form { display: flex; flex-direction: column; gap: 1rem; }
        .form-field input, .form-field textarea {
            width: 100%; padding: 0.8rem 1rem;
            font-family: 'Inter', sans-serif; font-size: 0.85rem;
            background: var(--card); border: 1px solid var(--border);
            color: var(--text); border-radius: 8px; outline: none; transition: border-color 0.2s;
        }
        .form-field input:focus, .form-field textarea:focus { border-color: rgba(255,77,77,0.4); }
        .form-field textarea { resize: vertical; min-height: 120px; }
        .form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
        .form-submit {
            font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; padding: 0.8rem 2rem;
            background: var(--red); color: #fff; border: 1px solid var(--red); border-radius: 8px;
            cursor: pointer; transition: all 0.25s; width: fit-content;
        }
        .form-submit:hover { background: transparent; color: var(--red); }

        /* ── Footer ── */
        footer { position: relative; z-index: 1; padding: 3rem 0; border-top: 1px solid var(--border); }
        .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
        .footer-copy { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--text-muted); }
        .footer-copy span { color: var(--red); }
        .footer-links { display: flex; gap: 1.5rem; }
        .footer-links a {
            font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--text-muted);
            text-decoration: none; transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--text-dim); }

        /* ── Scroll Animations ── */
        .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .container { padding: 0 1.25rem; }
            section { padding: 4rem 0; }
            .nav-links { display: none; }
            .nav-toggle { display: block; }
            .nav-links.open {
                display: flex; flex-direction: column;
                position: absolute; top: 100%; left: 0; right: 0;
                background: rgba(6,6,9,0.95); backdrop-filter: blur(20px);
                padding: 1.5rem 2rem; gap: 1rem;
                border-bottom: 1px solid var(--border);
            }
            .directions { grid-template-columns: 1fr; }
            .shop-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .hero { min-height: auto; padding: 8rem 0 4rem; }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .directions { grid-template-columns: repeat(2, 1fr); }
            .shop-grid { grid-template-columns: repeat(2, 1fr); }
        }
        :focus-visible { outline-color: #ff4d4d; }
        @keyframes successPop {
            0% { transform: scale(0); opacity: 0; }
            60% { transform: scale(1.15); opacity: 1; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* ── Lightbox ── */
        .lightbox-trigger, img[data-full] { cursor: pointer; }
        .lightbox-overlay {
            position: fixed; inset: 0; z-index: 2000;
            background: rgba(0,0,0,0.85); backdrop-filter: blur(12px);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
            padding: 2rem;
        }
        .lightbox-overlay.active { opacity: 1; visibility: visible; }
        .lightbox-overlay img {
            max-width: 90vw; max-height: 90vh; border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.6);
            transform: scale(0.9); transition: transform 0.3s ease;
            object-fit: contain;
        }
        .lightbox-overlay.active img { transform: scale(1); }
        .lightbox-close {
            position: absolute; top: 1.5rem; right: 1.5rem;
            width: 44px; height: 44px; border-radius: 50%;
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
            color: #fff; font-size: 1.5rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s; line-height: 1; backdrop-filter: blur(4px);
        }
        .lightbox-close:hover { background: var(--red); border-color: var(--red); }
