        :root {
            --black: #0a0a0a;
            --dark: #111111;
            --dark-gray: #1a1a1a;
            --mid-gray: #2a2a2a;
            --light-gray: #888888;
            --off-white: #e8e4df;
            --white: #f5f3f0;
            --amber: #d4a853;
            --amber-glow: #e8c078;
            --amber-dark: #a67c3d;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--black);
            color: var(--off-white);
            line-height: 1.7;
            font-weight: 300;
            overflow-x: hidden;
        }

        /* Noise overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 9999;
        }

        /* Typography */
        h1, h2, h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            letter-spacing: 0.02em;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, var(--black) 0%, transparent 100%);
            transition: background 0.4s ease;
        }

        nav.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 400;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 0.15em;
        }

        .logo span {
            color: var(--amber);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--light-gray);
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--amber);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 6rem 4rem;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212, 168, 83, 0.04) 0%, transparent 40%);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            animation: fadeUp 1.2s ease-out;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-label {
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--amber);
            margin-bottom: 2rem;
            animation: fadeUp 1.2s ease-out 0.2s both;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--amber) 0%, var(--amber-glow) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--light-gray);
            max-width: 600px;
            margin: 0 auto 3rem;
            animation: fadeUp 1.2s ease-out 0.4s both;
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            animation: fadeUp 1.2s ease-out 0.6s both;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
            color: var(--black);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(212, 168, 83, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 1px solid var(--mid-gray);
        }

        .btn-secondary:hover {
            border-color: var(--amber);
            color: var(--amber);
        }

        /* Sections */
        section {
            padding: 8rem 4rem;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-label {
            font-size: 0.7rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--amber);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--white);
        }

        /* About Section */
        .about {
            background: var(--dark);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .about-visual {
            position: relative;
            height: 500px;
        }

        .about-frame {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            border: 1px solid var(--mid-gray);
        }

        .about-frame::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 1px solid var(--amber);
            opacity: 0.5;
        }

        .about-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            color: var(--amber);
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .about-text p {
            color: var(--light-gray);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--mid-gray);
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--amber);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--light-gray);
            margin-top: 0.5rem;
        }

        /* Services Section */
        .services {
            background: var(--black);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--dark);
            padding: 3rem 2rem;
            border: 1px solid var(--dark-gray);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--amber), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            border-color: var(--mid-gray);
            transform: translateY(-5px);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .service-card p {
            color: var(--light-gray);
            font-size: 0.95rem;
        }

        /* Portfolio Section */
        .portfolio {
            background: var(--dark);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .portfolio-item {
            position: relative;
            background: var(--dark-gray);
            padding: 3rem;
            border: 1px solid var(--mid-gray);
            transition: all 0.4s ease;
            text-decoration: none;
            display: block;
            overflow: hidden;
        }

        .portfolio-item::after {
            content: '→';
            position: absolute;
            top: 2rem;
            right: 2rem;
            color: var(--amber);
            font-size: 1.5rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .portfolio-item:hover {
            border-color: var(--amber);
            background: var(--mid-gray);
        }

        .portfolio-item:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

        .portfolio-label {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--amber);
            margin-bottom: 0.75rem;
        }

        .portfolio-item h3 {
            font-size: 1.75rem;
            color: var(--white);
            margin-bottom: 0.75rem;
        }

        .portfolio-item p {
            color: var(--light-gray);
            font-size: 0.95rem;
        }

        /* Courses & Training */
        .courses {
            background: var(--black);
        }

        .courses-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .course-item {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 2rem;
            align-items: center;
            padding: 2rem 0;
            border-bottom: 1px solid var(--dark-gray);
            transition: all 0.3s ease;
        }

        .course-item:hover {
            padding-left: 1rem;
        }

        .course-type {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--amber);
            writing-mode: vertical-rl;
            transform: rotate(180deg);
        }

        .course-info h3 {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .course-info p {
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        .course-meta {
            text-align: right;
            color: var(--light-gray);
            font-size: 0.85rem;
        }

        /* Books Section */
        .books {
            background: var(--dark);
        }

        /* Gallery Section */
        .gallery {
            background: var(--black);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            border: 1px solid var(--dark-gray);
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            border-color: var(--amber);
            transform: scale(1.02);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item .caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: var(--white);
            font-size: 0.85rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .caption {
            transform: translateY(0);
        }

        .gallery-placeholder {
            grid-column: 1 / -1;
            text-align: center;
            padding: 4rem;
            color: var(--light-gray);
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .lightbox-close:hover {
            color: var(--amber);
        }

        .books-showcase {
            display: flex;
            gap: 4rem;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }

        .book-item {
            text-align: center;
            max-width: 280px;
        }

        .book-cover {
            width: 200px;
            height: 280px;
            background: linear-gradient(145deg, var(--mid-gray), var(--dark-gray));
            border: 1px solid var(--mid-gray);
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.4);
            transition: all 0.4s ease;
        }

        .book-cover:hover {
            transform: translateY(-5px);
            box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.5);
        }

        .book-cover::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10%;
            bottom: 10%;
            width: 3px;
            background: linear-gradient(to bottom, var(--amber), var(--amber-dark));
        }

        .book-cover span {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: var(--white);
            padding: 2rem;
            text-align: center;
            line-height: 1.4;
        }

        .book-item h3 {
            font-size: 1.25rem;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .book-item p {
            color: var(--light-gray);
            font-size: 0.85rem;
        }

        /* Contact Section */
        .contact {
            background: var(--black);
            text-align: center;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .contact p {
            color: var(--light-gray);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .contact-email {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--amber);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }

        .contact-email:hover {
            border-color: var(--amber);
        }

        /* Footer */
        footer {
            background: var(--dark);
            padding: 4rem;
            border-top: 1px solid var(--dark-gray);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.25rem;
            color: var(--white);
            letter-spacing: 0.15em;
        }

        .footer-logo span {
            color: var(--amber);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--amber);
        }

        .footer-copyright {
            color: var(--light-gray);
            font-size: 0.8rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-visual {
                height: 300px;
            }

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

        @media (max-width: 768px) {
            nav {
                padding: 1rem 2rem;
            }

            .nav-links {
                display: none;
            }

            section {
                padding: 4rem 2rem;
            }

            .hero {
                padding: 4rem 2rem;
            }

            .cta-group {
                flex-direction: column;
                align-items: center;
            }

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

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

            .course-type {
                writing-mode: horizontal-tb;
                transform: none;
            }

            .course-meta {
                text-align: left;
            }

            .footer-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

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

        /* ── Support form ────────────────────────────────────── */
        .support-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--black);
            padding: 10rem 2rem 6rem;
        }

        .support-card {
            width: 100%;
            max-width: 640px;
        }

        .support-card h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--white);
            margin-bottom: 1rem;
        }

        .support-intro {
            color: var(--light-gray);
            margin-bottom: 2.5rem;
        }

        .support-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .support-form label {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--amber);
        }

        .support-form input,
        .support-form textarea {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 300;
            color: var(--off-white);
            background: var(--dark);
            border: 1px solid var(--mid-gray);
            padding: 0.9rem 1rem;
            transition: border-color 0.3s ease;
            resize: vertical;
        }

        .support-form input:focus,
        .support-form textarea:focus {
            outline: none;
            border-color: var(--amber);
        }

        .support-form .btn {
            align-self: flex-start;
            cursor: pointer;
        }

        .form-error {
            background: rgba(139, 0, 0, 0.15);
            border: 1px solid #8B0000;
            color: var(--off-white);
            padding: 1rem 1.25rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        /* ── App landing pages ───────────────────────────────── */
        .app-hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding: 10rem 2rem 5rem;
            overflow: hidden;
        }

        .app-hero-content {
            max-width: 760px;
        }

        .app-hero-logo {
            display: block;
            width: clamp(256px, 40vw, 1024px);
            aspect-ratio: 1 / 1;
            height: auto;
            object-fit: cover;
            border-radius: 22%;
            margin: 0 auto 2rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }

        .app-hero h1 {
            font-size: clamp(2.75rem, 7vw, 5rem);
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .app-lead {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--light-gray);
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        .app-badges {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .app-soon {
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--amber);
            border: 1px solid var(--mid-gray);
            padding: 0.85rem 2rem;
        }

        .app-body {
            background: var(--dark);
            padding: 5rem 2rem;
        }

        .app-body-content {
            max-width: 760px;
            margin: 0 auto;
            color: var(--off-white);
        }

        .app-body-content h2 {
            font-size: 2rem;
            color: var(--white);
            margin: 2.5rem 0 1rem;
        }

        .app-body-content p,
        .app-body-content li {
            color: var(--light-gray);
            margin-bottom: 1rem;
        }

        .app-body-content ul {
            padding-left: 1.25rem;
        }

        .app-links {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--mid-gray);
            font-size: 0.9rem;
        }

        .app-links a {
            color: var(--amber);
            text-decoration: none;
        }

        .app-links a:hover {
            text-decoration: underline;
        }

        /* ── Legal / support pages ───────────────────────────── */
        .legal {
            padding: 10rem 2rem 6rem;
            background: var(--black);
        }

        .legal-content {
            max-width: 760px;
            margin: 0 auto;
        }

        .legal-content h1 {
            font-size: clamp(2.25rem, 5vw, 3.25rem);
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .legal-updated {
            color: var(--light-gray);
            font-size: 0.85rem;
            margin-bottom: 3rem;
        }

        .legal-body {
            color: var(--off-white);
        }

        .legal-body h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            color: var(--white);
            margin: 2.5rem 0 1rem;
        }

        .legal-body p,
        .legal-body li {
            color: var(--light-gray);
            margin-bottom: 1rem;
        }

        .legal-body ul {
            padding-left: 1.25rem;
        }

        .legal-body a {
            color: var(--amber);
            text-decoration: none;
        }

        .legal-body a:hover {
            text-decoration: underline;
        }

        .legal-body blockquote {
            border-left: 2px solid var(--amber);
            background: var(--dark-gray);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            color: var(--off-white);
            font-size: 0.95rem;
        }

        .legal-back {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--mid-gray);
            font-size: 0.9rem;
        }

        .legal-back a {
            color: var(--amber);
            text-decoration: none;
        }

        .legal-back a:hover {
            text-decoration: underline;
        }

        /* ── Apps & Sites cards ──────────────────────────────── */
        /* Each card: featured image panel, then title, then description.
           Per-card accent color is supplied inline as --card-theme. */
        .catalog-card {
            display: flex;
            flex-direction: column;
            background: var(--dark-gray);
            border: 1px solid var(--mid-gray);
            text-decoration: none;
            overflow: hidden;
            transition: transform 0.4s ease, border-color 0.4s ease;
        }

        .catalog-card:hover {
            border-color: var(--card-theme, var(--amber));
            transform: translateY(-6px);
        }

        .catalog-media {
            aspect-ratio: 3 / 2;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.75rem;
            border-bottom: 1px solid var(--mid-gray);
            background:
                radial-gradient(circle at 50% 35%,
                    color-mix(in srgb, var(--card-theme, var(--amber)) 22%, transparent),
                    transparent 70%),
                var(--dark);
        }

        /* Fit any source image (square icon or wide screenshot) inside the
           panel without distortion. object-fit: contain preserves aspect ratio;
           the panel's themed glow fills any leftover space. */
        .catalog-img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 14px;
        }

        /* Cover mode: image fills the 3:2 panel edge-to-edge, center-cropped. */
        .catalog-card.cover .catalog-media {
            padding: 0;
        }

        .catalog-card.cover .catalog-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 0;
        }

        .catalog-body {
            padding: 1.75rem 2rem 2rem;
        }

        .catalog-category {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--card-theme, var(--amber));
            margin-bottom: 0.6rem;
        }

        .catalog-name {
            font-size: 1.6rem;
            color: var(--white);
            margin-bottom: 0.6rem;
        }

        .catalog-desc {
            color: var(--light-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ── App screenshot carousel ─────────────────────────── */
        .carousel {
            position: relative;
            max-width: 1100px;
            margin: 2.5rem auto 0;
        }

        .carousel-track {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 0.75rem;
        }

        .carousel-track::-webkit-scrollbar {
            height: 6px;
        }

        .carousel-track::-webkit-scrollbar-thumb {
            background: var(--mid-gray);
            border-radius: 3px;
        }

        .carousel-track img {
            flex: 0 0 auto;
            height: 420px;
            width: auto;
            scroll-snap-align: center;
            border: 1px solid var(--mid-gray);
            border-radius: 14px;
            cursor: pointer;
            transition: border-color 0.3s ease;
        }

        .carousel-track img:hover {
            border-color: var(--amber);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--mid-gray);
            background: rgba(10, 10, 10, 0.7);
            color: var(--white);
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            transition: border-color 0.3s ease, color 0.3s ease;
        }

        .carousel-nav:hover {
            border-color: var(--amber);
            color: var(--amber);
        }

        .carousel-nav.prev {
            left: -10px;
        }

        .carousel-nav.next {
            right: -10px;
        }

        @media (max-width: 768px) {
            .carousel-track img {
                height: 300px;
            }
            .carousel-nav {
                display: none;
            }
        }
