:root {
            --background: #000000;
            --orange: #C87814;
            --cyan: #00BCD4;
            --panel: #0A0A0A;
            --muted: #A8A8A8;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-height: 100vh;
            background: var(--background);
            color: var(--orange);
            font-family: Arial, Helvetica, sans-serif;
        }

        /* ---------- Top navigation ---------- */

        .top-bar {
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: center;
            gap: 14px;
            padding: 18px;
            background: rgba(0, 0, 0, 0.96);
            border-bottom: 2px solid var(--orange);
        }

        .nav-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 130px;
            padding: 12px 20px;
            background: var(--background);
            color: var(--orange);
            border: 2px solid var(--orange);
            border-radius: 4px;
            font-size: 1rem;
            font-weight: bold;
            letter-spacing: 0.06rem;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            transition:
                color 0.2s ease,
                border-color 0.2s ease,
                background 0.2s ease;
        }

        .nav-button:hover,
        .nav-button:focus-visible {
            color: var(--cyan);
            border-color: var(--cyan);
            background: #071114;
            outline: none;
        }

        /* ---------- Main content ---------- */

        main {
            min-height: calc(100vh - 82px);
        }

        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: calc(100vh - 82px);
            padding: 40px 24px 90px;
            text-align: center;
        }

        .logo {
            display: block;
            width: min(360px, 74vw);
            height: auto;
            margin-bottom: 34px;
        }

        .company-name {
            margin: 0;
            color: var(--orange);
            font-size: clamp(2.2rem, 6vw, 4.5rem);
            letter-spacing: 0.12rem;
        }

        .divider {
            width: min(520px, 80vw);
            margin: 38px 0 26px;
            border: 0;
            border-top: 2px solid var(--cyan);
        }

        .company-blurb {
            max-width: 760px;
            margin: 0;
            color: var(--cyan);
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.7;
        }


        /* ---------- Apps page ---------- */

        .apps-page {
            padding: 64px 24px 90px;
        }

        .apps-header {
            max-width: 900px;
            margin: 0 auto 48px;
            text-align: center;
        }

        .apps-title {
            margin: 0;
            color: var(--orange);
            font-size: clamp(2.2rem, 6vw, 4rem);
            letter-spacing: 0.12rem;
        }

        .apps-intro {
            max-width: 760px;
            margin: 24px auto 0;
            color: var(--cyan);
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.7;
        }

        .app-feature {
            max-width: 1100px;
            margin: 0 auto;
            padding: 34px;
            background: var(--panel);
            border: 2px solid var(--orange);
            box-shadow: 0 0 0 2px var(--cyan);
        }

        .app-status {
            display: inline-block;
            margin: 0 0 18px;
            padding: 6px 10px;
            color: var(--cyan);
            border: 1px solid var(--cyan);
            font-size: 0.85rem;
            font-weight: bold;
            letter-spacing: 0.08rem;
        }

        .app-feature h2 {
            margin: 0 0 20px;
            color: var(--orange);
            font-size: clamp(2rem, 5vw, 3.2rem);
            letter-spacing: 0.08rem;
        }

        .app-copy {
            color: var(--cyan);
            font-size: 1.05rem;
            line-height: 1.75;
        }

        .app-copy p {
            margin: 0 0 18px;
        }

        .app-gallery {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .app-gallery figure {
            margin: 0;
        }

        .app-gallery img {
            display: block;
            width: 100%;
            height: auto;
            border: 2px solid var(--orange);
        }

        .app-gallery figcaption {
            margin-top: 10px;
            color: var(--cyan);
            font-size: 0.9rem;
            text-align: center;
        }

        .more-apps {
            max-width: 1100px;
            margin: 32px auto 0;
            color: var(--muted);
            text-align: center;
        }
		
		.page-logo-link {
		display: inline-block;
		margin-bottom: 24px;
		}

		.page-logo {
			display: block;
			width: min(140px, 32vw);
			height: auto;
			margin: 0 auto;
			transition: transform 0.2s ease;
		}

		.page-logo:hover {
			transform: scale(1.04);
		}

        /* ---------- Contact/footer ---------- */

        .contact-section {
            padding: 60px 24px 40px;
            text-align: center;
            background: var(--panel);
            border-top: 2px solid var(--orange);
        }

        .contact-section h2 {
            margin-top: 0;
            color: var(--orange);
            font-size: 2rem;
            letter-spacing: 0.1rem;
        }

        .contact-tagline {
            margin: 0 auto 28px;
            max-width: 720px;
            color: var(--cyan);
            line-height: 1.6;
        }

        .contact-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }

        .contact-link {
            padding: 10px 18px;
            color: var(--orange);
            border: 1px solid var(--orange);
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition:
                color 0.2s ease,
                border-color 0.2s ease,
                background 0.2s ease;
        }

        .contact-link:hover,
        .contact-link:focus-visible {
            color: var(--cyan);
            border-color: var(--cyan);
            background: #071114;
            outline: none;
        }

        .copyright {
            margin-top: 36px;
            color: var(--muted);
            font-size: 0.85rem;
        }

        /* ---------- Coming soon popup ---------- */

        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: rgba(0, 0, 0, 0.82);
        }

        .modal-overlay.open {
            display: flex;
        }

        .modal {
            width: min(420px, 100%);
            padding: 32px;
            background: var(--panel);
            border: 2px solid var(--orange);
            box-shadow: 0 0 0 2px var(--cyan);
            text-align: center;
        }

        .modal h2 {
            margin-top: 0;
            color: var(--orange);
        }

        .modal p {
            color: var(--cyan);
            line-height: 1.5;
        }

        .modal-close {
            margin-top: 16px;
            padding: 10px 22px;
            background: var(--background);
            color: var(--orange);
            border: 2px solid var(--orange);
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
        }

        .modal-close:hover,
        .modal-close:focus-visible {
            color: var(--cyan);
            border-color: var(--cyan);
            outline: none;
        }

        /* ---------- Mobile layout ---------- */

        @media (max-width: 650px) {
            .top-bar {
                flex-wrap: wrap;
                gap: 10px;
                padding: 12px;
            }

            .nav-button {
                min-width: calc(50% - 10px);
                padding: 10px 12px;
            }

            .hero {
                min-height: auto;
                padding-top: 72px;
                padding-bottom: 100px;
            }

            .logo {
                width: min(380px, 78vw);
                margin-bottom: 36px;
            }

            .divider {
                margin-top: 30px;
            }

            .apps-page {
                padding-top: 44px;
            }

            .app-feature {
                padding: 24px 18px;
            }

            .app-gallery {
                grid-template-columns: 1fr;
            }
        }
