:root {
            --black: #0A0A0B;
            --dark: #111113;
            --card: #18181B;
            --card-hover: #1E1E22;
            --border: #27272A;
            --text: #FAFAFA;
            --text-muted: #A1A1AA;
            --text-dim: #71717A;
            --orange: #E8722A;
            --orange-glow: rgba(232, 114, 42, 0.15);
            --blue: #3B7BF6;
            --blue-dim: #2E5090;
            --gradient-ring: linear-gradient(135deg, #E8722A 0%, #E8722A 40%, #3B7BF6 100%);
        }

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

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--border) var(--black);
        }

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

        ::selection { background: var(--orange); color: var(--black); }

        /* ── NAV ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 1rem 2rem;
            display: flex; align-items: center; justify-content: space-between;
            background: rgba(10, 10, 11, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s;
        }
        nav.scrolled { border-bottom-color: var(--border); }
        .nav-brand {
            display: flex; align-items: center; gap: 0.6rem;
            text-decoration: none; color: var(--text);
        }
        .nav-brand-text {
            font-size: 1rem; font-weight: 600; letter-spacing: 0.08em;
            white-space: nowrap;
        }
        .nav-logo { height: 36px; }
        .nav-links {
            display: flex; gap: 2rem; list-style: none; align-items: center;
        }
        .nav-links a {
            color: var(--text-muted); text-decoration: none;
            font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--text); }
        .nav-cta {
            background: var(--orange) !important; color: var(--black) !important;
            padding: 0.5rem 1.25rem; border-radius: 6px;
            font-weight: 600 !important; transition: opacity 0.2s !important;
        }
        .nav-cta:hover { opacity: 0.85; }
        .mobile-toggle {
            display: none; background: none; border: none;
            color: var(--text); font-size: 1.5rem; cursor: pointer;
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh; display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden; padding: 6rem 2rem 4rem;
        }
        .hero-bg {
            position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 50% 40%, rgba(232, 114, 42, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 70% 60%, rgba(59, 123, 246, 0.04) 0%, transparent 50%);
        }
        .hero-grid {
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }
        .hero-content { position: relative; text-align: center; max-width: 800px; }
        .hero-logo { width: 120px; margin-bottom: 2rem; animation: fadeUp 0.8s ease-out; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.4rem 1rem; border: 1px solid var(--border); border-radius: 100px;
            font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem;
            animation: fadeUp 0.8s ease-out 0.1s both;
            font-family: 'JetBrains Mono', monospace;
        }
        .hero-badge .dot {
            width: 6px; height: 6px; background: var(--orange);
            border-radius: 50%; animation: pulse 2s infinite;
        }
		h1 {
			font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700;
			line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.25rem;
		}
		.hero h1 {
			animation: fadeUp 0.8s ease-out 0.2s both;
		}
        h1 .accent {
            background: var(--gradient-ring);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .hero-sub {
            font-size: 1.125rem; color: var(--text-muted); max-width: 560px;
            margin: 0 auto 2.5rem; font-weight: 300;
            animation: fadeUp 0.8s ease-out 0.3s both;
        }
        .hero-actions {
            display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
            animation: fadeUp 0.8s ease-out 0.4s both;
        }
        .btn {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.75rem 1.75rem; border-radius: 8px;
            font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600;
            text-decoration: none; transition: all 0.2s; cursor: pointer; border: none;
        }
        .btn-primary { background: var(--orange); color: var(--black); }
        .btn-primary:hover { box-shadow: 0 0 30px var(--orange-glow); transform: translateY(-1px); }
        .btn-secondary { background: var(--card); color: var(--text); border: 1px solid var(--border); }
        .btn-secondary:hover { border-color: var(--text-dim); background: var(--card-hover); }
        .hero-stats {
            display: flex; justify-content: center; gap: 3rem; margin-top: 4rem;
            animation: fadeUp 0.8s ease-out 0.5s both;
        }
        .stat { text-align: center; }
        .stat-num {
            font-size: 1.75rem; font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
            background: var(--gradient-ring);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .stat-label {
            font-size: 0.75rem; color: var(--text-dim);
            text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem;
        }

        /* ── SECTIONS ── */
        section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
        .section-header { margin-bottom: 3.5rem; }
        .section-label {
            font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
            color: var(--orange); text-transform: uppercase; letter-spacing: 0.12em;
            margin-bottom: 0.75rem;
        }
        .section-title {
            font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700;
            letter-spacing: -0.02em; line-height: 1.2;
        }
        .section-desc {
            color: var(--text-muted); font-size: 1rem; max-width: 600px;
            margin-top: 0.75rem; font-weight: 300;
        }
        .divider {
            width: 100%; max-width: 1200px; margin: 0 auto;
            height: 1px; background: var(--border);
        }

        /* ── ABOUT ── */
        .about-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
        }
        .about-image {
            aspect-ratio: 4/3; background: var(--card); border: 1px solid var(--border);
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
            overflow: hidden; position: relative;
        }
        .about-image img { width: 100%; height: 100%; object-fit: contain; }
        .placeholder-text {
            font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
            color: var(--text-dim); opacity: 0.5;
        }
        .exp-list { display: flex; flex-direction: column; gap: 1.25rem; }
        .exp-item { display: flex; gap: 1rem; align-items: flex-start; }
        .exp-icon {
            flex-shrink: 0; width: 40px; height: 40px; background: var(--card);
            border: 1px solid var(--border); border-radius: 10px;
            display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
        }
        .exp-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; }
        .exp-text p { font-size: 0.825rem; color: var(--text-muted); font-weight: 300; }

        /* ── SERVICES ── */
        .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
        .service-card {
            background: var(--card); border: 1px solid var(--border); border-radius: 12px;
            padding: 1.75rem; transition: all 0.25s; position: relative; overflow: hidden;
        }
        .service-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: var(--gradient-ring); opacity: 0; transition: opacity 0.25s;
        }
        .service-card:hover {
            border-color: var(--text-dim); background: var(--card-hover); transform: translateY(-2px);
        }
        .service-card:hover::before { opacity: 1; }
        .service-icon {
            width: 44px; height: 44px; background: var(--orange-glow); border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem; margin-bottom: 1rem;
        }
        .service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
        .service-card p { font-size: 0.825rem; color: var(--text-muted); font-weight: 300; line-height: 1.5; }

        /* ── PRODUCTS ── */
        .products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
		.product-card::before {
			content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
			background: var(--gradient-ring); opacity: 0; transition: opacity 0.25s;
		}
		.product-card:hover::before { opacity: 1; }
		.product-card a {
			display: block; color: inherit; text-decoration: none;
		}
        .product-card {
            background: var(--card); border: 1px solid var(--border); border-radius: 12px;
            overflow: hidden; transition: all 0.25s; position: relative;
        }
        .product-card:hover { border-color: var(--text-dim); transform: translateY(-2px); }
        .product-image {
            aspect-ratio: 16/9; background: var(--dark);
            display: flex; align-items: center; justify-content: center;
            color: var(--text-dim); font-size: 0.8rem;
            font-family: 'JetBrains Mono', monospace; overflow: hidden;
        }
        .product-image img { width: 100%; height: 100%; object-fit: contain; }
        .product-info { padding: 1.25rem 1.5rem; }
        .product-tag {
            font-family: 'JetBrains Mono', monospace; font-size: 0.65rem;
            color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em;
            margin-bottom: 0.35rem;
        }
        .product-info h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.35rem; }
        .product-info p { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; }

        /* ── GALLERY ── */
        .gallery-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
        .gallery-item {
            aspect-ratio: 16/10; background: var(--card); border: 1px solid var(--border);
            border-radius: 10px; overflow: hidden;
            display: flex; align-items: center; justify-content: center;
            color: var(--text-dim); font-size: 0.75rem;
            font-family: 'JetBrains Mono', monospace; transition: all 0.3s; 
        }
        .gallery-item:hover { border-color: var(--orange); transform: scale(1.02); }
        .gallery-item img { width: 100%; height: 100%; object-fit: contain; }

        /* ── CONNECT ── */
        .connect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
        .social-card {
            background: var(--card); border: 1px solid var(--border); border-radius: 12px;
            padding: 1.75rem; text-align: center; text-decoration: none; color: var(--text);
            transition: all 0.25s; display: flex; flex-direction: column;
            align-items: center; gap: 0.75rem;
        }
        .social-card:hover {
            border-color: var(--orange); background: var(--card-hover); transform: translateY(-3px);
        }
        .social-icon {
            width: 48px; height: 48px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
        }
        .social-icon.yt { background: rgba(255, 0, 0, 0.12); }
        .social-icon.ig { background: rgba(225, 48, 108, 0.12); }
        .social-icon.pa { background: rgba(232, 114, 42, 0.12); }
        .social-icon.gh { background: rgba(255, 255, 255, 0.08); }
        .social-card h3 { font-size: 0.95rem; font-weight: 600; }
        .social-card p { font-size: 0.75rem; color: var(--text-dim); }

        /* ── FOOTER ── */
        footer { border-top: 1px solid var(--border); padding: 3rem 2rem; }
        .footer-inner {
            max-width: 1200px; margin: 0 auto;
            display: flex; align-items: center; justify-content: space-between;
        }
        .footer-logo { height: 28px; opacity: 0.6; }
        footer p { font-size: 0.75rem; color: var(--text-dim); }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }
        .reveal {
            opacity: 0; transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        noscript .reveal, .no-js .reveal { opacity: 1; transform: none; }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .connect-grid { grid-template-columns: repeat(2, 1fr); }
            .about-grid { grid-template-columns: 1fr; }
            .hero-stats { gap: 2rem; }
        }
        @media (max-width: 640px) {
            nav { padding: 0.75rem 1.25rem; }
            .nav-links {
                display: none; position: absolute; top: 100%; left: 0; right: 0;
                background: var(--dark); border-bottom: 1px solid var(--border);
                flex-direction: column; padding: 1.5rem; gap: 1rem;
            }
            .nav-links.open { display: flex; }
            .mobile-toggle { display: block; }
            .services-grid { grid-template-columns: 1fr; }
            .products-grid { grid-template-columns: 1fr; }
            .connect-grid { grid-template-columns: 1fr; }
            .gallery-row { grid-template-columns: 1fr 1fr; }
            .hero-stats { flex-direction: column; gap: 1rem; }
            section { padding: 4rem 1.25rem; }
            .footer-inner { flex-direction: column; gap: 1rem; }
        }
		
		@keyframes wipe {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.rainbow-word {
  background: linear-gradient(90deg,
    #ff6a00 0%, #0066ff 40%, #0066ff 60%, #ff6a00 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wipe 3s linear infinite;
}
/* ── PAGE HEADER (for sub-pages) ── */
.page-header {
    padding: 8rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}
.page-header-content {
    position: relative; z-index: 1;
    max-width: 800px;
    animation: fadeUp 0.8s ease-out;
}
.page-header-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.page-header-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ── TOOL PAGE STYLES ── */
.tool-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.tool-placeholder {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}
.tool-placeholder .tool-icon { font-size: 3rem; }
.tool-placeholder p { font-size: 0.9rem; }
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: color 0.2s;
}
.back-link:hover { color: var(--orange); }
