/* =====================================================
   ROCKET.BD — Dark Neon Design System
   Deep Space Dark Theme with Neon Glows & Glassmorphism
   ===================================================== */

/* Import Responsive Styles */
@import url('responsive.css');

/* ---------- CSS Variables ---------- */
:root {
    /* Primary Neon Colors */
    --primary: #4f8df9;
    --primary-light: #7eb3ff;
    --primary-dark: #2563eb;
    --primary-glow: rgba(79, 141, 249, 0.4);

    /* Neon Accents */
    --neon-cyan: #00d4ff;
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --neon-green: #10b981;
    --neon-orange: #f97316;

    /* Background Darks */
    --bg-base: #050510;
    --bg-surface: #0d0d1f;
    --bg-card: #0f1029;
    --bg-card-hover: #141431;
    --bg-elevated: #161630;

    /* Glass Dark */
    --glass-dark: rgba(255, 255, 255, 0.04);
    --glass-dark-border: rgba(255, 255, 255, 0.08);
    --glass-dark-strong: rgba(255, 255, 255, 0.07);
    --glass-dark-border-strong: rgba(255, 255, 255, 0.14);

    /* Text */
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4f8df9 0%, #a855f7 50%, #ec4899 100%);
    --gradient-cyan-blue: linear-gradient(135deg, #00d4ff 0%, #4f8df9 100%);
    --gradient-purple-pink: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --gradient-blue-cyan: linear-gradient(135deg, #2563eb 0%, #00d4ff 100%);
    --gradient-dark-card: linear-gradient(135deg, rgba(79, 141, 249, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-neon-blue: 0 0 20px rgba(79, 141, 249, 0.3), 0 0 60px rgba(79, 141, 249, 0.1);
    --shadow-neon-purple: 0 0 20px rgba(168, 85, 247, 0.3), 0 0 60px rgba(168, 85, 247, 0.1);
    --shadow-neon-pink: 0 0 20px rgba(236, 72, 153, 0.3), 0 0 60px rgba(236, 72, 153, 0.1);
    --shadow-neon-cyan: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 60px rgba(0, 212, 255, 0.1);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(79, 141, 249, 0.15);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-base);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(79, 141, 249, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(168, 85, 247, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 80%, rgba(0, 212, 255, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 10% 70%, rgba(236, 72, 153, 0.07) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 12s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='0.8' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

@keyframes bgPulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-cyan {
    background: var(--gradient-cyan-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--space-4xl) 0;
}

.pt-0 {
    padding-top: 0 !important;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Neon label above section headings */
.section-label {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(79, 141, 249, 0.1);
    border: 1px solid rgba(79, 141, 249, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

/* ---------- Glassmorphism Dark Components ---------- */

.launch-detail-gallery {
    position: sticky;
    top: 100px;
}

.glass {
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-lg);
}

.glass-strong {
    background: var(--glass-dark-strong);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-dark-border-strong);
    border-radius: var(--radius-xl);
}

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 141, 249, 0.3);
    box-shadow: var(--shadow-card-hover);
}

/* ---------- FAQ Accordion ---------- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--glass-dark);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.accordion-item:hover {
    border-color: rgba(79, 141, 249, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.accordion-item.active {
    border-color: var(--primary);
    background: rgba(79, 141, 249, 0.05);
    box-shadow: 0 0 30px rgba(79, 141, 249, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-inner {
    overflow: hidden;
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-category-title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-category-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.faq-cta {
    padding: 3rem;
    text-align: center;
    margin-top: 5rem;
}

/* ---------- Alerts ---------- */
.alert {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.alert-error {
    color: #f87171;
    background-color: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.2);
}

.alert-success {
    color: #34d399;
    background-color: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.2);
    text-align: center;
}

.alert-success svg {
    margin: 0 auto 1rem;
    color: #34d399;
}

.alert-success h4 {
    margin-bottom: 0.5rem;
    color: #10b981;
}

.alert-success p {
    margin-bottom: 0px;
    color: #a7f3d0;
}

/* ---------- File Upload & Previews ---------- */
.form-upload-zone {
    border: 2px dashed var(--glass-dark-border-strong);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    background: var(--glass-dark);
    position: relative;
    transition: var(--transition-base);
}

.form-upload-zone:hover {
    border-color: var(--primary-glow);
    background: rgba(79, 141, 249, 0.05);
}

.form-upload-input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}

.form-upload-icon {
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
}

.form-upload-text {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.form-upload-hint {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.upload-previews-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.upload-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-dark-border-strong);
}

.upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(79, 141, 249, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 141, 249, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: var(--glass-dark-strong);
    color: var(--text-primary);
    border: 1px solid var(--glass-dark-border-strong);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(79, 141, 249, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon-cyan);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    background: var(--glass-dark);
    color: var(--text-primary);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ---------- Header & Navigation ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-sm) 0;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(5, 5, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border-bottom: 1px solid rgba(255,255,255,0.06); */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.custom-logo {
	width: 200px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: var(--shadow-neon-blue);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    padding: var(--space-sm) var(--space-md);
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover {
    color: var(--text-white);
    background: var(--glass-dark);
}

.nav-link.active {
    color: var(--neon-cyan);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-actions .btn-ghost {
    padding: 0;
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--glass-dark);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ---------- Hero Section ---------- */
.hero {
    padding-top: 140px;
    padding-bottom: var(--space-4xl);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blobFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: 20%;
    right: -80px;
    animation-delay: 2s;
}

.hero-blob-3 {
    width: 350px;
    height: 350px;
    background: var(--neon-pink);
    bottom: -50px;
    left: 30%;
    animation-delay: 4s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Hero layout: left text + right orb */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    width: 100%;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(79, 141, 249, 0.1);
    border: 1px solid rgba(79, 141, 249, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neon-cyan);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease forwards;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

/* Stats panel on right side of hero or below */
.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.stat-number.cyan {
    color: var(--neon-cyan);
}

.stat-number.pink {
    color: var(--neon-pink);
}

.stat-number.purple {
    color: var(--neon-purple);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Orb / 3D Sphere Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-orb-wrap {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-orb {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #4f8df9, #a855f7, #ec4899, #00d4ff, #4f8df9);
    animation: orbSpin 8s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 60px rgba(79, 141, 249, 0.5),
        0 0 120px rgba(168, 85, 247, 0.3),
        0 0 180px rgba(236, 72, 153, 0.2);
}

.hero-orb::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #a855f7, #050510 70%);
    z-index: 1;
}

.hero-orb::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.3) 0%, transparent 40%);
    z-index: 2;
}

@keyframes orbSpin {
    from {
        filter: hue-rotate(0deg);
    }

    to {
        filter: hue-rotate(360deg);
    }
}

/* Stats panel overlay on orb */
.orb-stats {
    position: absolute;
    inset: 0;
}

.orb-stat-badge {
    position: absolute;
    background: var(--glass-dark-strong);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.25rem;
    text-align: center;
    animation: float 5s ease-in-out infinite;
}

.orb-stat-badge:nth-child(1) {
    top: 5%;
    right: 0;
    animation-delay: 0s;
}

.orb-stat-badge:nth-child(2) {
    top: 40%;
    left: -20px;
    animation-delay: 1.5s;
}

.orb-stat-badge:nth-child(3) {
    bottom: 10%;
    right: 15%;
    animation-delay: 3s;
}

.orb-stat-badge .val {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.orb-stat-badge .lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

/* ---------- Floating Decorative Shapes ---------- */
.hero-float {
    position: absolute;
    border-radius: var(--radius-xl);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-float-1 {
    top: 15%;
    left: 2%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(79, 141, 249, 0.3), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(79, 141, 249, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.hero-float-2 {
    bottom: 15%;
    right: 3%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    animation-delay: 2s;
    transform: rotate(-20deg);
}

.hero-float-3 {
    top: 60%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(79, 141, 249, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    animation-delay: 4s;
    transform: rotate(30deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-20px) rotate(20deg);
    }
}

/* ---------- Cards ---------- */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(79, 141, 249, 0.03), transparent 60%);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 141, 249, 0.25);
    box-shadow: var(--shadow-card-hover);
}

.card-image {
    width: 100%;
    height: 275px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
}

.card-body {
    padding: var(--space-xl);
}

.card-category {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(79, 141, 249, 0.12);
    color: var(--neon-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-white);
}

.card-title a:hover {
    color: var(--neon-cyan);
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.card-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.upvote-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(79, 141, 249, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
    border: 1px solid rgba(79, 141, 249, 0.2);
}

.upvote-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-neon-blue);
}

.upvote-btn.active {
    background: var(--primary);
    color: #fff;
}

/* Featured Badge */
.launch-card {
    position: relative;
}

.launch-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    z-index: 2;
    letter-spacing: 0.05em;
}

/* ---------- Grid Layouts ---------- */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ---------- Category Pills ---------- */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.category-pill {
    padding: var(--space-sm) var(--space-lg);
    background: var(--glass-dark);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-full);
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.category-pill:hover,
.category-pill.active {
    background: rgba(79, 141, 249, 0.15);
    color: var(--neon-cyan);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--shadow-neon-cyan);
}

/* ---------- Search & Filter ---------- */
.search-filter {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--glass-dark);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-2xl);
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.search-input input {
    flex: 1;
    padding: var(--space-sm);
    font-size: 1rem;
    color: var(--text-primary);
    background: none;
}

.search-input input::placeholder {
    color: var(--text-muted);
}

.search-input svg {
    color: var(--text-muted);
}

.filter-select {
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
}

/* ---------- Forms ---------- */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md);
    background: var(--glass-dark);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(79, 141, 249, 0.5);
    box-shadow: 0 0 0 3px rgba(79, 141, 249, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

/* ---------- How It Works ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.step {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition-base);
}

.step:hover {
    border-color: rgba(79, 141, 249, 0.3);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-neon-blue);
}

.step h4 {
    color: var(--text-white);
    margin-bottom: var(--space-sm);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial {
    padding: var(--space-xl);
    transition: var(--transition-base);
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-style: italic;
    line-height: 1.7;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 0;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: var(--shadow-neon-blue);
    flex-shrink: 0;
}

.testimonial-info h5 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ---------- Newsletter ---------- */
.newsletter {
    background: linear-gradient(135deg, rgba(79, 141, 249, 0.12), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(79, 141, 249, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 141, 249, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter h3 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.newsletter p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: var(--glass-dark);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    border-color: rgba(79, 141, 249, 0.5);
    box-shadow: 0 0 0 3px rgba(79, 141, 249, 0.1);
    outline: none;
}

.newsletter-form button {
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(79, 141, 249, 0.3);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 141, 249, 0.4);
}

/* ---------- Section Divider ---------- */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 141, 249, 0.4), rgba(168, 85, 247, 0.4), transparent);
    margin: 0;
}

/* ---------- Dark Alternate Section ---------- */
.section-dark {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-3xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand>p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 280px;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--glass-dark);
    border: 1px solid var(--glass-dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: rgba(79, 141, 249, 0.15);
    border-color: rgba(79, 141, 249, 0.3);
    color: var(--neon-cyan);
    box-shadow: var(--shadow-neon-cyan);
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-white);
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: 0;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(79, 141, 249, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(79, 141, 249, 0.6), 0 0 80px rgba(168, 85, 247, 0.3);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Neon Divider ---------- */
.neon-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-cyan-blue);
    border-radius: 9999px;
    margin: 0.75rem auto 0;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* ---------- Category Icon Cards ---------- */
.cat-icon-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cat-icon-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 141, 249, 0.3);
    box-shadow: var(--shadow-card-hover);
}

.cat-icon-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(79, 141, 249, 0.1);
    border: 1px solid rgba(79, 141, 249, 0.2);
    margin-bottom: 0.25rem;
}

.cat-icon-card h4 {
    color: var(--text-white);
    font-size: 1rem;
}

.cat-icon-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ---------- Featured Launch Section ---------- */
.featured-launch-card {
    background: linear-gradient(135deg, rgba(79, 141, 249, 0.08), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(79, 141, 249, 0.2);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.featured-launch-card .feature-img {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    box-shadow: var(--shadow-neon-blue);
}

/* ---------- Utility Classes ---------- */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: var(--space-xl);
}

.mt-3 {
    margin-top: var(--space-2xl);
}

.mt-4 {
    margin-top: var(--space-3xl);
}

.mb-2 {
    margin-bottom: var(--space-xl);
}

/* Mobile Nav Open State */
.nav.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 16, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem;
    z-index: 99;
    gap: 0.25rem;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: rgba(79, 141, 249, 0.3);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(79, 141, 249, 0.5);
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(79, 141, 249, 0.3);
    color: var(--text-white);
}

/* ==========================================================
   LEGACY VARIABLE ALIASES
   Maps old --gray-* / --white vars used in inner pages
   to the new dark theme equivalents
   ========================================================== */
:root {
    --white: var(--text-white);
    --gray-100: rgba(255, 255, 255, 0.05);
    --gray-200: rgba(255, 255, 255, 0.08);
    --gray-300: rgba(255, 255, 255, 0.12);
    --gray-400: #64748b;
    --gray-500: #64748b;
    --gray-600: #94a3b8;
    --gray-700: #cbd5e1;
    --gray-800: #e2e8f0;
    --gray-900: #f1f5f9;
    --accent-green: var(--neon-green);
    --accent-cyan: var(--neon-cyan);
    --accent-purple: var(--neon-purple);
    --accent-red: #ef4444;
    --accent-orange: var(--neon-orange);
    --gradient-bg: transparent;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.6);
    --shadow-2xl: 0 24px 60px rgba(0, 0, 0, 0.7);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-bg: var(--glass-dark);
    --glass-bg-strong: var(--glass-dark-strong);
    --glass-border: var(--glass-dark-border);
    --z-sticky: 100;
}

/* ==========================================================
   UTILITY CLASSES
   ========================================================== */
.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.gap-1 {
    gap: var(--space-sm);
}

.gap-2 {
    gap: var(--space-md);
}

.gap-3 {
    gap: var(--space-lg);
}

/* Visibility Utilities */
.desktop-only {
    display: flex !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .nav.nav-open .mobile-only {
        display: block !important;
    }
}

/* ==========================================================
   PAGE HEADER  (used by all inner pages)
   ========================================================== */
.page-header {
    padding: 140px 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79, 141, 249, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ==========================================================
   BLOG PAGE  — .blog-card, .blog-card-image, etc.
   ========================================================== */
.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-card-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--space-sm);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4;
    margin: 0;
}

.blog-card-title a {
    color: inherit;
}

.blog-card-title a:hover {
    color: var(--neon-cyan);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

.featured-blog {
    grid-column: span 3;
}

.featured-blog-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

.featured-blog .blog-card-image {
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.featured-blog .blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}


/* ==========================================================
   PRICING PAGE  — .pricing-grid, .pricing-card, etc.
   ========================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-2xl);
    position: relative;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(79, 141, 249, 0.12), rgba(168, 85, 247, 0.08));
    border-color: rgba(79, 141, 249, 0.35) !important;
    box-shadow: 0 0 40px rgba(79, 141, 249, 0.15);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.85rem;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    align-self: flex-start;
}

.pricing-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
    margin: var(--space-sm) 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-feature svg {
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.pricing-feature.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-feature.disabled svg {
    color: var(--text-muted);
}

/* ==========================================================
   AUTH PAGES — login & signup
   ========================================================== */
.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.auth-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-xl);
    background: var(--bg-base);
    position: relative;
}

.auth-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(79, 141, 249, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 80% 10%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.auth-visual {
    background:
        linear-gradient(135deg, rgba(79, 141, 249, 0.15), rgba(168, 85, 247, 0.1)),
        var(--bg-surface);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.auth-visual::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(79, 141, 249, 0.3), rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3), rgba(0, 212, 255, 0.3), rgba(79, 141, 249, 0.3));
    filter: blur(60px);
    animation: orbSpin 10s linear infinite;
    opacity: 0.5;
}

.auth-visual-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 380px;
}

.auth-visual-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.auth-visual-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.social-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.social-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--glass-dark);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.social-auth-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 141, 249, 0.3);
    color: var(--text-white);
}

/* Login & Signup Form Overrides */
.rocket-login-form form,
.rocket-signup-form form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.rocket-login-form label,
.rocket-signup-form label {
    display: block;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.rocket-login-form input[type="text"],
.rocket-login-form input[type="email"],
.rocket-login-form input[type="password"],
.rocket-signup-form input[type="text"],
.rocket-signup-form input[type="email"],
.rocket-signup-form input[type="password"] {
    width: 100%;
    padding: var(--space-md);
    background: var(--glass-dark);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.rocket-login-form input:focus,
.rocket-signup-form input:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(79, 141, 249, 0.5);
    box-shadow: 0 0 0 3px rgba(79, 141, 249, 0.1);
    outline: none;
}

/* Remember me checkbox specific */
.rocket-login-form .login-remember label,
.rocket-signup-form .login-remember label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    margin-bottom: 0;
}

.rocket-login-form input[type="checkbox"],
.rocket-signup-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.rocket-login-form .login-submit input[type="submit"],
.rocket-signup-form .signup-submit input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(79, 141, 249, 0.4);
    transition: var(--transition-base);
    position: relative;
    border: none;
    cursor: pointer;
    margin-top: var(--space-sm);
}

.rocket-login-form .login-submit input[type="submit"]:hover,
.rocket-signup-form .signup-submit input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 141, 249, 0.5);
}

.rocket-login-form p,
.rocket-signup-form p {
    margin-bottom: 0;
}

/* ==========================================================
   LAUNCHES PAGE  — search + filter, sort bar etc.
   ========================================================== */
.launches-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.sort-bar {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.sort-btn {
    padding: var(--space-sm) var(--space-md);
    background: var(--glass-dark);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.sort-btn:hover,
.sort-btn.active {
    background: rgba(79, 141, 249, 0.12);
    border-color: rgba(79, 141, 249, 0.3);
    color: var(--neon-cyan);
}

/* ==========================================================
   LAUNCH DETAIL PAGE
   ========================================================== */
.launch-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
    margin-bottom: var(--space-2xl);
}

.launch-main-image {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-xl);
    object-fit: cover;
}

.launch-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.launch-tag {
    padding: var(--space-xs) var(--space-md);
    background: var(--glass-dark);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================================
   CONTACT & ABOUT PAGES  — generic with glass panels
   ========================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(79, 141, 249, 0.12);
    border: 1px solid rgba(79, 141, 249, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h5 {
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.contact-info-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* ==========================================================
   SUBMIT PAGE — multi-step form
   ========================================================== */
.submit-form-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    max-width: 760px;
    margin: 0 auto;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.image-upload-area {
    width: 100%;
    min-height: 160px;
    background: var(--glass-dark);
    border: 2px dashed rgba(79, 141, 249, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    cursor: pointer;
    transition: var(--transition-base);
    color: var(--text-muted);
    padding: var(--space-xl);
    text-align: center;
}

.image-upload-area:hover {
    border-color: rgba(79, 141, 249, 0.5);
    background: rgba(79, 141, 249, 0.05);
}

/* ==========================================================
   TRENDING PAGE  — trending badge, rank items
   ========================================================== */
.trending-rank {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    cursor: pointer;
}

.trending-rank:hover {
    border-color: rgba(79, 141, 249, 0.25);
    box-shadow: var(--shadow-card-hover);
    transform: translateX(4px);
}

.rank-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-muted);
    width: 40px;
    flex-shrink: 0;
    text-align: center;
}

.rank-number.top {
    color: var(--neon-cyan);
}

.trending-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--neon-orange);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
}

/* ==========================================================
   CATEGORIES PAGE
   ========================================================== */
.category-hero-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    transition: var(--transition-base);
}

.category-hero-card:hover {
    border-color: rgba(79, 141, 249, 0.25);
    box-shadow: var(--shadow-card-hover);
}

/* ==========================================================
   404 PAGE
   ========================================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-md);
}

/* ==========================================================
   PRIVACY & TERMS PAGES
   ========================================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin: var(--space-xl) 0 var(--space-sm);
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: var(--space-md);
}


/* ==========================================================
   IMAGE ELEMENTS - Hero, Category, Step, Testimonial
   ========================================================== */
.hero-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(79, 141, 249, 0.3), 0 0 120px rgba(168, 85, 247, 0.15), 0 32px 80px rgba(0, 0, 0, 0.6);
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-2xl);
    transition: transform 0.8s ease;
}

.hero-img-container:hover .hero-main-img {
    transform: scale(1.04);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 141, 249, 0.25) 0%, rgba(168, 85, 247, 0.15) 50%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: var(--radius-2xl);
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-orb-wrap {
    position: relative;
    width: 100%;
    height: 440px;
}

/* ---------- Solar System Orbit Animation ---------- */
.orbit-scene {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    /* background: radial-gradient(ellipse at center, #0d1b3e 0%, #1a0a2e 50%, #0a0a1a 100%);
    box-shadow: 0 0 80px rgba(0,100,255,0.2), 0 0 150px rgba(150,50,255,0.1), inset 0 0 100px rgba(0,0,0,0.5); */
}

/* Central Earth */
.solar-earth {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
}

.earth-glow-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.3) 0%, rgba(0, 100, 255, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    animation: earthGlow 4s ease-in-out infinite;
}

@keyframes earthGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.earth-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 30%, #0d47a1 60%, #1565c0 100%);
    box-shadow: inset -15px -15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(33, 150, 243, 0.5);
    overflow: hidden;
}

.earth-land {
    position: absolute;
    background: rgba(76, 175, 80, 0.7);
    border-radius: 50%;
}

.land-1 {
    top: 20%;
    left: 15%;
    width: 25px;
    height: 20px;
    transform: rotate(-20deg);
}

.land-2 {
    top: 50%;
    left: 55%;
    width: 20px;
    height: 15px;
    transform: rotate(10deg);
}

.land-3 {
    top: 70%;
    left: 25%;
    width: 18px;
    height: 18px;
    transform: rotate(-10deg);
}

.atmosphere-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid rgba(135, 206, 250, 0.3);
    animation: atmosphereSpin 60s linear infinite;
}

@keyframes atmosphereSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Orbit paths */
.orbit-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(100, 150, 255, 0.35);
    border-radius: 50%;
}

.orbit-1 {
    width: 200px;
    height: 200px;
}

.orbit-2 {
    width: 300px;
    height: 300px;
}

.orbit-3 {
    width: 400px;
    height: 400px;
}

/* Orbit containers - rotate around Earth */
.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
}

.orbit-container-1 {
    width: 164px;
    height: 164px;
    margin-left: -82px;
    margin-top: -82px;
    animation: orbitRotate 6s linear infinite;
}

.orbit-container-2 {
    width: 300px;
    height: 300px;
    margin-left: -150px;
    margin-top: -150px;
    animation: orbitRotate 12s linear infinite reverse;
}

.orbit-container-3 {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    animation: orbitRotate 20s linear infinite;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Orbiting Rocket */
.orbiting-rocket {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 65px;
    filter: drop-shadow(0 0 10px rgba(255, 100, 50, 0.5));
}

.orbiting-rocket svg {
    width: 100%;
    height: 100%;
    transform: rotate(90deg);
}

/* Orbiting Moon */
.orbiting-moon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
}

.moon-body {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 50%, #9e9e9e 100%);
    box-shadow: inset -5px -5px 10px rgba(0, 0, 0, 0.2), 0 0 15px rgba(200, 200, 200, 0.3);
}

.moon-crater {
    position: absolute;
    top: 20%;
    left: 25%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
}

.moon-crater::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 60%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

/* Orbiting Satellite */
.orbiting-satellite {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
}

.satellite-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: linear-gradient(135deg, #607d8b, #455a64);
    box-shadow: 0 0 8px rgba(100, 150, 200, 0.5);
}

.satellite-panel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 20px;
    background: linear-gradient(180deg, #1976d2, #0d47a1);
    border-radius: 1px;
}

.satellite-panel:first-of-type {
    left: -12px;
}

.satellite-panel:last-of-type {
    right: -12px;
}

/* Stars in orbit scene */
.orbit-scene .stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.orbit-scene .star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.orbit-scene .s1 {
    top: 8%;
    left: 12%;
    width: 3px;
    height: 3px;
    animation-delay: 0s;
}

.orbit-scene .s2 {
    top: 15%;
    left: 75%;
    width: 2px;
    height: 2px;
    animation-delay: 0.5s;
}

.orbit-scene .s3 {
    top: 25%;
    left: 20%;
    width: 2px;
    height: 2px;
    animation-delay: 1s;
}

.orbit-scene .s4 {
    top: 12%;
    left: 50%;
    width: 3px;
    height: 3px;
    animation-delay: 1.5s;
}

.orbit-scene .s5 {
    top: 70%;
    left: 85%;
    width: 2px;
    height: 2px;
    animation-delay: 0.3s;
}

.orbit-scene .s6 {
    top: 80%;
    left: 15%;
    width: 2px;
    height: 2px;
    animation-delay: 0.8s;
}

.orbit-scene .s7 {
    top: 45%;
    left: 8%;
    width: 3px;
    height: 3px;
    animation-delay: 1.2s;
}

.orbit-scene .s8 {
    top: 35%;
    left: 90%;
    width: 2px;
    height: 2px;
    animation-delay: 1.8s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Sun glow in corner */
.sun-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.15) 0%, rgba(255, 150, 50, 0.05) 30%, transparent 60%);
    border-radius: 50%;
}

.cat-icon-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.cat-icon-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 141, 249, 0.3);
    box-shadow: var(--shadow-card-hover);
}

.cat-img-wrap {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cat-icon-card:hover .cat-img {
    transform: scale(1.08);
}

.cat-img-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    mix-blend-mode: multiply;
}

.cat-img-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.cat-icon-card h4 {
    padding: var(--space-md) var(--space-lg) var(--space-sm);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.cat-icon-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.step {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 141, 249, 0.25);
    box-shadow: var(--shadow-card-hover);
}

.step-img-wrap {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.step:hover .step-img {
    transform: scale(1.05);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
    margin: 0 auto var(--space-lg);
    box-shadow: 0 0 20px rgba(79, 141, 249, 0.4);
}

.step h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-sm);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.testimonial-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(79, 141, 249, 0.3);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: rgba(79, 141, 249, 0.15);
    border-color: rgba(79, 141, 249, 0.3);
    color: var(--neon-cyan);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-base);
}

.newsletter-form input:focus {
    border-color: rgba(79, 141, 249, 0.5);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.featured-launch-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
}

/* Blog Featured Post */
.featured-blog {
    grid-column: span 3;
}

.featured-blog-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-blog .blog-card-image {
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.featured-blog .blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

/* Single Blog Post Page */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-post-category {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.blog-post-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-post-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.blog-post-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-post-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-author-info {
    text-align: left;
}

.blog-post-author-name {
    display: block;
    font-weight: 600;
}

.blog-post-author-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-post-image {
    margin-bottom: 3rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
}

.blog-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
}

.blog-post-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-quote {
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    background: rgba(79, 141, 249, 0.1);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 2rem 0;
    font-style: italic;
}

.blog-post-author-bio {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-bio-content h4 {
    margin-bottom: 0.5rem;
}

.author-bio-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.author-bio-content a {
    color: var(--primary);
}

.blog-related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-related>h3 {
    margin-bottom: 2rem;
}

/* Gallery Thumbnail Styles */
.thumbnail {
    transition: all 0.3s ease;
}

.thumbnail:hover {
    opacity: 0.8 !important;
}

.thumbnail.active {
    border-color: var(--primary) !important;
    opacity: 1 !important;
}

/* Lightbox Popup */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* ==========================================================
   TRENDING PAGE
   ========================================================== */
.trending-header {
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.trending-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.leaderboard-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.leaderboard-card {
    padding: 1.5rem;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.leaderboard-rank {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.leaderboard-rank-1 {
    background: var(--gradient-primary);
}

.leaderboard-rank-2 {
    background: var(--gradient-secondary);
}

.leaderboard-rank-3 {
    background: var(--gradient-warm);
}

.leaderboard-rank-other {
    background: var(--gray-300);
    color: var(--gray-600);
}

.leaderboard-info {
    flex: 1;
}

.leaderboard-title {
    margin-bottom: 0.25rem;
}

.leaderboard-stats {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.leaderboard-trophy {
    font-size: 1.5rem;
}



.tabs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: white;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Comments & Forms ---------- */

.post-comments-wrapper {
    padding: 2rem;
    margin-top: 3rem;
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.comment-list .comment {
    margin-bottom: 2rem;
    background: var(--glass-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-dark-border);
}

.comment-list .children {
    margin-left: 2rem;
    margin-top: 1.5rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author img {
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.comment-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comment-content {
    color: var(--text-secondary);
}

.reply {
    margin-top: 1rem;
}

.reply a {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.form-group,
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 1.5rem;
}

.form-group label,
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-control,
.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    transition: var(--transition-base);
    font-family: inherit;
    font-size: 1rem;
}

.comment-form-comment textarea {
    min-height: 150px;
    resize: vertical;
}

.form-control:focus,
.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 141, 249, 0.2);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}