/* ============================================================
   Orbit Wall - Space/Orbit Theme CSS
   Color: Deep space with electric cyan + amber accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Inter:wght@400;500;600;700&family=Syne:wght@400;600;700;800&family=Exo+2:wght@300;400;500;600;700&family=Rajdhani:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&family=Open+Sans:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600;700&family=Oswald:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
    --space-black: #03010f;
    --space-deep: #07041a;
    --space-dark: #0a0525;
    --space-navy: #0f0830;
    --space-blue: #150c3a;
    --orbit-cyan: #00e5ff;
    --orbit-cyan-dim: #00b8d4;
    --orbit-glow: rgba(0, 229, 255, 0.15);
    --orbit-pulse: rgba(0, 229, 255, 0.4);
    --amber: #b94fff;
    --amber-dim: #8a2be2;
    --amber-glow: rgba(185, 79, 255, 0.15);
    --nebula-purple: #b94fff;
    --nebula-pink: #ff4dd8;
    --star-white: #e8eaf6;
    --text-primary: #e8eaf6;
    --text-secondary: #9ca3c8;
    --text-muted: #6a6f9a;
    --border: rgba(0, 229, 255, 0.12);
    --border-bright: rgba(0, 229, 255, 0.3);
    --card-bg: rgba(7, 4, 26, 0.8);
    --card-hover: rgba(21, 12, 58, 0.9);
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #06b6d4;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-orbit: 0 0 30px rgba(0, 229, 255, 0.2), 0 0 60px rgba(0, 229, 255, 0.05);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 229, 255, 0.08);
    --shadow-hover: 0 16px 64px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 229, 255, 0.2), 0 0 30px rgba(0, 229, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Orbitron', monospace;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--space-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Stars background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 80%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 15%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 45%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 70% 25%, rgba(0, 212, 255, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 25% 55%, rgba(0, 212, 255, 0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 55% 85%, rgba(124, 58, 237, 0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--orbit-cyan);
    text-decoration: none;
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.1rem;
}

.text-cyan {
    color: var(--orbit-cyan) !important;
}

.text-amber {
    color: var(--amber) !important;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.text-center {
    text-align: center;
}

.font-mono {
    font-family: var(--font-mono);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-sm {
    padding: 50px 0;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.sidebar-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.screenshot-main {
    max-width: 100%;
    margin-bottom: 12px;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-auto-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.responsive-gap {
    gap: 80px;
    align-items: center;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.category-stats-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.category-stat-item {
    text-align: right;
}

.category-stat-item.border-left {
    border-left: 1px solid var(--border);
    padding-left: 16px;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 40px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 40px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.1em;
}


.navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    display: inline-block; /* Prevents blinking/jumping effect */
    padding-bottom: 6px;   /* Creates space for underline */
    transition: color 0.3s ease;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--orbit-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar-nav a:hover {
    color: var(--orbit-cyan);
}

.navbar-nav a:hover::after {
    transform: scaleX(1);
}

.navbar-nav a.active {
    color: var(--orbit-cyan);
}

.navbar-nav a.active::after {
    transform: scaleX(1);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: transparent;
    border: none;
    outline: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orbit-cyan);
    transition: var(--transition);
}

.nav-toggle:hover span {
    background: #fff;
    box-shadow: 0 0 8px var(--orbit-cyan);
}

/* Toggle menu active/cross animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orbit-cyan) 0%, var(--orbit-cyan-dim) 100%);
    color: var(--space-black);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    padding: 10px 60px 10px 10px;
}

.btn-primary:hover {
    color: var(--space-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-amber {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dim) 100%);
    color: var(--space-black);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-amber:hover {
    color: var(--space-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--orbit-cyan);
    border: 1px solid var(--orbit-cyan);
}

.btn-outline:hover {
    background: var(--orbit-glow);
    color: var(--orbit-cyan);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--orbit-glow);
    color: var(--orbit-cyan);
    border-color: var(--orbit-cyan);
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.72rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.85rem;
}

.btn-xl {
    padding: 18px 50px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
}

.card:hover {
    border-color: var(--border-bright);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--space-navy);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 20px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.card-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-cyan {
    background: rgba(0, 212, 255, 0.15);
    color: var(--orbit-cyan);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.badge-amber {
    background: rgba(245, 158, 11, 0.15);
    color: var(--amber);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-purple {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-free {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

/* ============================================================
   PRICE DISPLAY
   ============================================================ */
.price-display {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.price-current {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--amber);
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-free {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--success);
    font-weight: 700;
}

/* ============================================================
   STAR RATING
   ============================================================ */
.stars {
    display: inline-flex;
    gap: 2px;
    color: var(--amber);
    font-size: 0.85rem;
}

.stars .empty {
    color: var(--text-muted);
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 70%),
        var(--space-black);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orbit-cyan);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.05);
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orbit-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--orbit-cyan);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, var(--orbit-cyan) 50%, var(--amber) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(0, 229, 255, 0.07);
    border: 1px solid rgba(0, 229, 255, 0.14);
    backdrop-filter: blur(10px);
    color: var(--text-secondary);
}

.hero-pill-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.14);
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.12);
    color: var(--orbit-cyan);
    font-size: 0.95rem;
}

.hero-pill span {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--orbit-cyan);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ============================================================
   ORBIT ANIMATION (Hero visual)
   ============================================================ */
.orbit-system {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 1100px;
    height: 1100px;
    pointer-events: none;
}

#orbit-canvas {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orbit-cyan);
    margin-bottom: 16px;
    padding: 6px 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cat-color, var(--orbit-cyan));
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--orbit-glow);
    border: 1px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orbit-cyan);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.category-name {
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.category-count {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
    cursor: pointer;
}

.product-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.product-type-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(3, 7, 18, 0.9);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--orbit-cyan);
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-excerpt {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

/* ============================================================
   PRICING TABLES
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
}

.pricing-card.popular {
    border-color: var(--orbit-cyan);
    box-shadow: 0 0 0 1px var(--orbit-cyan), var(--shadow-orbit);
    transform: scale(1.02);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orbit-cyan);
    color: var(--space-black);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-amount span {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
    color: var(--orbit-cyan);
}

.pricing-cycle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-feature::before {
    content: '✓';
    color: var(--orbit-cyan);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
}

.product-screenshots {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin: 40px 0;
}

.screenshot-main {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}

.screenshot-thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.screenshot-thumb:hover {
    border-color: var(--orbit-cyan);
}

/* Info sidebar */
.product-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 90px;
}

.product-meta-list {
    margin: 20px 0;
}

.product-meta-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.product-meta-label {
    color: var(--text-muted);
}

.product-meta-value {
    color: var(--text-primary);
    font-weight: 500;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orbit-cyan), var(--nebula-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.reviewer-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-card {
    position: relative;
    overflow: hidden;
    background: rgba(7, 12, 22, 0.96);
    border: 1px solid rgba(0,212,255,0.12);
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    padding: 28px;
    border-radius: var(--radius);
}

.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0,212,255,0.14), transparent 35%);
    pointer-events: none;
}

.review-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orbit-cyan), var(--amber));
}

.review-card-quote {
    font-size: 3.5rem;
    color: rgba(0,212,255,0.14);
    line-height: 1;
    margin-bottom: 12px;
    font-family: serif;
}

.review-stars {
    display: inline-flex;
    gap: 6px;
    margin-bottom: 18px;
    color: var(--amber);
    font-size: 0.95rem;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.testimonial-grid {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
}

@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
}


/* ============================================================
   REVIEW FORM
   ============================================================ */
.review-form {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(8, 15, 26, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--orbit-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(0, 212, 255, 0.03);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}


select.form-control {
    cursor: pointer;
    background: rgba(8, 15, 26, 0.95);
    color: var(--text-primary);
    border-color: var(--border);
}

select.form-control option {
    background: rgba(8, 15, 26, 0.98);
    color: var(--text-primary);
}

select.form-control:focus {
    border-color: var(--orbit-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Star rating input */
.star-input {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.star-input label {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.star-input input {
    display: none;
}

.star-input label:hover,
.star-input label:hover~label,
.star-input input:checked~label {
    color: var(--amber);
}

/* ============================================================
   SOCIAL SHARE
   ============================================================ */
.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--text-secondary);
    cursor: pointer;
}

.share-btn:hover {
    transform: scale(1.15);
}

.share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.share-btn.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #fff;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.share-btn.copy:hover {
    background: var(--orbit-cyan);
    border-color: var(--orbit-cyan);
    color: var(--space-black);
}

/* ============================================================
   DEMO BANNER
   ============================================================ */
.demo-banner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.demo-credentials {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.demo-credentials strong {
    color: var(--orbit-cyan);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--space-deep);
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
    margin-top: 100px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orbit-cyan), transparent);
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orbit-cyan);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orbit-cyan);
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* ============================================================
   ALERTS & NOTIFICATIONS
   ============================================================ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #fde68a;
}

.alert-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--orbit-cyan);
}

.alert-icon {
    flex-shrink: 0;
    font-weight: 700;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--orbit-cyan);
}

.breadcrumb-sep {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-secondary);
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-chip:hover {
    border-color: var(--orbit-cyan);
    color: var(--orbit-cyan);
}

.filter-chip.active {
    border-color: var(--orbit-cyan);
    background: var(--orbit-glow);
    color: var(--orbit-cyan);
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-bar {
    position: relative;
    max-width: 500px;
}

.search-input {
    width: 100%;
    padding: 12px 20px 12px 48px;
    background: rgba(8, 15, 26, 0.8);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.search-input:focus {
    border-color: var(--orbit-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 50px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition);
    text-decoration: none;
}

.page-btn:hover {
    border-color: var(--orbit-cyan);
    color: var(--orbit-cyan);
}

.page-btn.active {
    background: var(--orbit-cyan);
    border-color: var(--orbit-cyan);
    color: var(--space-black);
    font-weight: 700;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--space-black);
}

::-webkit-scrollbar-thumb {
    background: var(--space-blue);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orbit-cyan-dim);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.sticky-top {
    position: sticky;
    top: 90px;
}

.w-full {
    width: 100%;
}

.rounded {
    border-radius: var(--radius);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   RESPONSIVE LAYOUT & MOBILE-FIRST BASE OVERRIDES
   ============================================================ */

/* ── 1. MOBILE SMALL (Base Styles: 320px - 480px) ─────────── */
/* These rules establish a true mobile-first foundation for small screens. */

/* Navigation */
.navbar {
    padding: 0 12px;
    height: 65px;
}

.navbar-brand {
    font-size: 1.1rem;
    gap: 8px;
}

.navbar-brand .orbit-logo {
    width: 30px;
    height: 30px;
}

.navbar-actions {
    gap: 10px;
}

.navbar-nav {
    display: none;
    width: 100%;
    max-width: 100vw;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px 20px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
}

.navbar-nav.open {
    display: flex;
}

.nav-toggle {
    display: flex;
    padding: 5px;
}

.navbar-actions .btn-primary {
    display: none;
}

.navbar-actions .btn-ghost {
    padding: 6px;
    font-size: 0.9rem;
}

/* Typography */
h1 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
}

h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
}

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

.section-title {
    font-size: 1.6rem;
}

p,
li {
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Layout & Containers */
.container {
    padding: 0 16px;
}

.section {
    padding: 40px 0;
}

.hero {
    padding-top: 90px;
    text-align: center;
}

.hero-content {
    margin: 0 auto;
}

.hero-stats {
    flex-direction: column;
    gap: 16px;
    border-top: none;
    padding-top: 16px;
    margin-top: 32px;
}

.hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

/* Grids & Flexbox */
.footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
}

.pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-screenshots {
    grid-template-columns: 1fr;
    gap: 8px;
}

.grid-2,
.grid-4,
.grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-results .grid-4 {
    grid-template-columns: 1fr;
}

.grid-3,
.grid-5 {
    grid-template-columns: 1fr;
    gap: 20px;
}

.responsive-gap {
    gap: 40px;
}

.sidebar-layout,
.product-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.flex-between {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}

.category-header-flex {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 20px;
}

.category-header-flex>div:first-child {
    align-items: flex-start;
}

.category-stats-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 4px;
}

.category-stat-item.border-left {
    border-left: none;
    padding-left: 0;
    text-align: left;
}

.category-stats-flex .btn-sm {
    margin-left: auto;
    width: 150px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: inline-flex;
}

.newsletter-form {
    flex-direction: column;
}

.newsletter-form .btn {
    width: 100% !important;
    border-radius: 8px !important;
}

.newsletter-form input {
    border-radius: 8px !important;
}

/* Components & Interactive */
.pricing-card.popular {
    transform: scale(1);
}

.btn-xl,
.btn-lg,
.btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    /* Touch target */
}

.filter-bar {
    padding: 12px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.orbit-system {
    display: none;
}

.product-hero {
    text-align: center;
}

.product-hero .flex-between {
    align-items: stretch;
}

.category-card {
    padding: 20px 12px;
}

.category-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem !important;
}

.category-name {
    font-size: 0.8rem;
}

/* Forms & Tables */
input,
select,
textarea {
    /* width: 100%; */
    min-height: 44px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Fluid Media */
img,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ── 2. MOBILE LARGE (min-width: 481px) ────────────────────── */
@media (min-width: 481px) {

    /* Navigation */
    .navbar {
        padding: 0 20px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    /* Typography */
    h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

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

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

    /* Layout */
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    /* Interactive */
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .btn-xl,
    .btn-lg,
    .btn {
        width: auto;
    }
}


/* ── 3. TABLET BREAKPOINT (min-width: 768px) ───────────────── */
@media (min-width: 768px) {

    /* Navigation - NOTE: Hamburger menu stays active on Tablet to prevent overflow! */
    .navbar {
        padding: 0 32px;
        height: 70px;
    }

    .navbar-nav {
        top: 70px;
    }

    .navbar-brand {
        font-size: 1.3rem;
        gap: 12px;
    }

    .navbar-brand .orbit-logo {
        width: 40px;
        height: 40px;
    }

    .navbar-actions {
        gap: 12px;
    }

    /* Typography */
    h1 {
        font-size: clamp(2.5rem, 5vw, 3.2rem);
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    p,
    li {
        font-size: 1rem;
    }

    /* Layout & Containers */
    .section {
        padding: 80px 0;
    }

    .hero {
        text-align: left;
        padding-top: 80px;
    }

    .hero-content {
        margin: 0;
    }

    .hero-stats {
        flex-direction: row;
        gap: 32px;
        border-top: 1px solid var(--border);
        padding-top: 32px;
        margin-top: 48px;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    /* Grids & Flexbox */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .product-screenshots {
        grid-template-columns: 1fr 1fr;
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .product-results .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .flex-between {
        flex-direction: row;
        align-items: center;
    }

    /* Components & Interactive */
    .pricing-card.popular {
        transform: scale(1.02);
    }

    .filter-bar {
        flex-direction: row;
        align-items: center;
    }

    .products-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 20px;
        align-items: start;
    }

    .products-layout > * {
        min-width: 0;
    }

    .product-filter-sidebar {
        position: sticky;
        top: 90px;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .product-card {
        display: flex;
        flex-direction: column;
    }

    .product-card .card-body {
        flex: 1;
    }

    .product-card .card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        border-top: 1px solid var(--border);
        background: rgba(255,255,255,0.04);
        transition: background 0.3s ease;
    }

    .product-card-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .product-card-meta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        color: var(--text-muted);
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .product-card-actions .btn-sm {
        min-width: 110px;
        padding: 0.6rem 1rem;
        border-radius: 999px;
        font-weight: 600;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        width: auto;
        flex-shrink: 0;
    }

    .product-card-actions .btn-sm:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .product-hero {
        text-align: left;
    }
}


/* ── 4. DESKTOP BREAKPOINT (min-width: 1025px) ─────────────── */
@media (min-width: 1025px) {

    /* Navigation - Expand Hamburger to Full Row */
    .navbar {
        padding: 0 40px;
    }

    .navbar-nav {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border: none;
    }

    .nav-toggle {
        display: none;
    }

    .navbar-actions .btn-primary {
        display: inline-flex;
    }

    /* Typography */
    h1 {
        font-size: clamp(3rem, 5vw, 4rem);
    }

    .hero-title {
        font-size: 4rem;
    }

    /* Grids & Layouts */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
    }

    .product-screenshots {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .product-results .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-results .product-card .card-img {
        aspect-ratio: 16 / 12;
    }

    .products-layout {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 32px;
    }

    .product-card .card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        border-top: 1px solid var(--border);
        background: rgba(255,255,255,0.04);
        transition: background 0.3s ease;
    }

    .product-card-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .product-card-meta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        color: var(--text-muted);
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .product-card-actions .btn-sm {
        min-width: 110px;
        padding: 0.6rem 1rem;
        border-radius: 999px;
        font-weight: 600;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        width: auto;
        flex-shrink: 0;
    }

    .product-card-actions .btn-sm:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    /* Visuals */
    .orbit-system {
        display: block;
    }
}

.arch-card {
    background: linear-gradient(145deg, rgba(7, 4, 26, 0.9), rgba(15, 8, 48, 0.6));
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: var(--radius);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 229, 255, 0.03);
    height: 100%;
    position: relative;
    overflow: hidden;
    gap: 10px;
}

/* Animated shimmer line */
.arch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
    transition: all 0.6s ease;
    transform: skewX(-25deg);
    z-index: 1;
}

.arch-card:hover::before {
    left: 150%;
}

.arch-card:hover {
    background: linear-gradient(145deg, rgba(7, 4, 26, 0.95), rgba(21, 12, 58, 0.8));
    border-color: var(--orbit-cyan);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 229, 255, 0.25), inset 0 0 30px rgba(0, 229, 255, 0.1);
}

.arch-card-icon {
    font-size: 2rem;
    color: var(--orbit-cyan);
    margin-bottom: 4px;
    transition: transform 0.3s ease;
    z-index: 2;
}

.arch-card:hover .arch-card-icon {
    transform: scale(1.15) rotate(5deg);
    color: #fff;
    text-shadow: 0 0 15px var(--orbit-cyan);
}

.arch-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    font-weight: 700;
    transition: color 0.3s ease;
    z-index: 2;
    text-transform: uppercase;
}

.arch-card:hover .arch-card-title {
    color: var(--orbit-cyan);
}

.arch-card-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    z-index: 2;
}

/* Responsive Constraints */
@media (max-width: 992px) {
    .arch-section-wrapper {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
}

@media (max-width: 768px) {
    .arch-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {
    .product-card {
        display: flex;
        flex-direction: column;
    }

    .product-card .card-body {
        flex: 1;
    }

    .product-card .card-footer {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        border-top: 1px solid var(--border);
        background: rgba(255,255,255,0.04);
        transition: background 0.3s ease;
    }

    .product-card-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .product-card-meta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        color: var(--text-muted);
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .product-card-actions .btn-sm {
        min-width: 110px;
        padding: 0.6rem 1rem;
        border-radius: 999px;
        font-weight: 600;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        width: auto;
        flex-shrink: 0;
    }

    .product-card-actions .btn-sm:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .product-hero {
        padding: 82px 0 36px;
        text-align: left;
    }

    .product-detail-layout {
        gap: 28px;
    }

    .product-screenshots {
        margin: 24px 0;
    }

    .product-sidebar {
        position: static;
        padding: 20px 16px;
        border-radius: var(--radius);
    }

    .product-meta-item {
        align-items: flex-start;
        gap: 12px;
    }

    .product-meta-value {
        min-width: 0;
        text-align: right;
        overflow-wrap: anywhere;
    }

    .tab-btn {
        flex: 1 0 50%;
        padding: 10px 8px !important;
        font-size: 0.65rem !important;
        white-space: nowrap;
    }

    .product-detail-layout div:has(> .tab-btn) {
        flex-wrap: wrap;
    }

    .tab-content {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .tab-content img,
    .tab-content table,
    .tab-content iframe {
        max-width: 100%;
    }

    .tab-content ul,
    .review-form form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .demo-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .review-card {
        padding: 18px 14px;
    }

    .review-header {
        align-items: flex-start;
        gap: 12px;
    }

    .review-header .stars {
        margin-left: 0 !important;
        width: 100%;
    }

    /* Mobile Search Bar Button & Navbar Actions Button Override */
    .search-bar .btn,
    .navbar-actions .btn {
        width: auto !important;
    }

    /* Mobile Footer Layout: 2 Columns & Centered */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px 16px !important;
        text-align: center !important;
    }
    .footer-grid > div:first-child {
        grid-column: span 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .footer-grid > div:first-child .footer-desc {
        max-width: 100% !important;
    }
    .footer-grid > div:nth-child(4) {
        grid-column: span 2 !important;
    }
    .footer-brand {
        display: flex !important;
        justify-content: center !important;
    }
    .footer-links {
        align-items: center !important;
    }
    .footer-socials {
        justify-content: center !important;
    }
}

/* 5/19/2024, 11:45:00 PM GMT-7 */
.hero-anim-tag{
    font-size: 1.5rem !important;
}

/* Make hero-pills span full row width on mobile and tablet screens (<=1024px) */
@media (max-width: 1024px) {
    .hero-icons {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
    }
    .hero-pill {
        display: flex !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}