:root {
    --bg-color: #050508;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-1: #3b82f6; /* Blue */
    --accent-2: #8b5cf6; /* Purple */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.06);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 18% 14%, rgba(20, 92, 255, 0.2), transparent 20%),
        radial-gradient(circle at 84% 10%, rgba(255, 79, 184, 0.18), transparent 18%),
        radial-gradient(circle at 50% 120%, rgba(20, 92, 255, 0.14), transparent 38%),
        linear-gradient(180deg, #030712 0%, #071225 38%, #0a1730 100%);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -5;
}

body::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
        radial-gradient(circle at 72% 14%, rgba(255, 255, 255, 0.72) 0 1.2px, transparent 1.2px),
        radial-gradient(circle at 58% 62%, rgba(255, 255, 255, 0.66) 0 1px, transparent 1px),
        radial-gradient(circle at 24% 72%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px),
        radial-gradient(circle at 86% 74%, rgba(255, 255, 255, 0.5) 0 1.1px, transparent 1.1px);
    background-size: 340px 340px, 420px 420px, 360px 360px, 320px 320px, 460px 460px;
    opacity: 0.45;
}

body::after {
    background:
        radial-gradient(circle at 20% 22%, rgba(20, 92, 255, 0.12), transparent 24%),
        radial-gradient(circle at 76% 18%, rgba(255, 79, 184, 0.1), transparent 26%);
    filter: blur(36px);
    opacity: 0.9;
}

/* Background Animated Blobs */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, rgba(5,5,8,0) 70%);
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(139,92,246,0.25) 0%, rgba(5,5,8,0) 70%);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 15%) scale(1.1); }
}

/* Topbar — full width */
.hub-topbar-shell {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.hub-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 16px 5%;
    position: relative;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: rgba(8, 17, 31, 0.72);
    backdrop-filter: blur(24px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.hub-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.hub-mark {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #145cff, #ff4fb8);
    box-shadow: 0 18px 40px rgba(20, 92, 255, 0.24);
    font-family: 'Space Grotesk', sans-serif;
}

.hub-brand-copy {
    display: flex;
    flex-direction: column;
}

.hub-brand-copy strong {
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    font-size: 1rem;
    line-height: 1.1;
    color: #fff;
}

.hub-brand-copy span {
    display: block;
    margin-top: 4px;
    color: rgba(217, 232, 255, 0.7);
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-right: 18px;
}

.nav-links a {
    color: rgba(217, 232, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .card-title, .logo {
    font-family: 'Space Grotesk', sans-serif;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(139, 92, 246, 0.4);
}

.btn-primary-small {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: white;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-hover);
    transform: translateY(-2px);
}

/* Layout */
main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 5%;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

/* Orbit Grid */
.orbits-section {
    padding: 5rem 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.card-desc {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Page Content (Text) */
.page-content {
    max-width: 800px;
    margin: 4rem auto;
    line-height: 1.8;
    color: var(--text-muted);
}

.page-content h1, .page-content h2, .page-content h3 {
    color: var(--text-main);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    margin-bottom: 1.5rem;
}

/* Footer — full width */
.hub-footer-shell {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hub-footer {
    width: 100%;
    min-height: 64px;
    padding: 16px 5%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    background: rgba(8, 17, 31, 0.72);
    color: #dbeafe;
    backdrop-filter: blur(18px);
}

.hub-footer-section {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 6px 10px;
    color: rgba(217, 232, 255, 0.84);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}

.hub-footer-section a,
.hub-footer-section strong {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

.hub-footer-section--left {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hub-footer-section--center {
    justify-content: center;
    gap: 18px;
}

.hub-footer-section--right {
    justify-content: flex-end;
}

.hub-footer-text-link,
.hub-footer-cta {
    border: none;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    cursor: pointer;
}

.hub-footer-text-link {
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 4px !important;
}

.hub-footer-text-link:hover,
.hub-footer-cta:hover {
    color: #fff;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* Responsive */
@media (max-width: 860px) {
    .nav-links {
        display: none; /* simple mobile fallback */
    }
    
    .hub-footer {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        gap: 16px;
        padding: 20px 22px;
        text-align: center;
    }
    
    .hub-footer-section {
        justify-content: center;
    }
}
/* Decorative Orbit Background */
/* Decorative Orbit Background (Canvas) */
.decorative-orbit-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    pointer-events: none;
    opacity: 0.8;
}

.decorative-orbit-container canvas {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 1000px) {
    .decorative-orbit-container {
        width: 600px;
        height: 600px;
        right: -30%;
        opacity: 0.3;
    }
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: rgba(217, 232, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 500px; /* Adjust as needed */
    padding-bottom: 1.5rem;
}

.cta-container {
    text-align: center;
    margin-top: 4rem;
}

.hub-btn-primary {
    background: linear-gradient(135deg, #145cff, #ff4fb8);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(20, 92, 255, 0.3);
}

.hub-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(20, 92, 255, 0.4);
    filter: brightness(1.1);
}
/* Modal / Layer Styles */
.hub-layer {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    padding: 24px;
    pointer-events: none;
}

.hub-layer[hidden], .hub-layer.is-hidden {
    display: none !important;
}

.hub-layer > * {
    pointer-events: auto;
}

.hub-layer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 17, 31, 0.48);
    backdrop-filter: blur(10px);
}

.hub-layer-dialog {
    position: relative;
    z-index: 1;
    width: min(1240px, 100%);
    max-height: calc(100vh - 42px);
    padding: 22px;
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background: rgba(8, 17, 31, 0.94);
    backdrop-filter: blur(24px);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.hub-layer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.hub-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.hub-layer-close {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    color: #dbeafe;
    cursor: pointer;
}

.hub-layer-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    fill: none;
}

.hub-layer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
    gap: 24px;
}

.hub-form-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.hub-form-copy {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.hub-form-copy h3 {
    margin-top: 0;
    color: #fff;
}

.hub-form-copy p {
    color: rgba(217, 232, 255, 0.7);
    line-height: 1.6;
}

.hub-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hub-field {
    display: grid;
    gap: 8px;
}

.hub-field.is-span-2 {
    grid-column: span 2;
}

.hub-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(217, 232, 255, 0.8);
}

.hub-field input,
.hub-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(8, 17, 31, 0.4);
    color: #fff;
    font: inherit;
}

.hub-field textarea {
    min-height: 120px;
    resize: vertical;
}

.hub-form-actions {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.hub-form-submit {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #145cff, #ff4fb8);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}

.hub-form-submit:hover {
    transform: translateY(-2px);
}

@media (max-width: 860px) {
    .hub-layer-grid {
        grid-template-columns: 1fr;
    }
    .hub-form-grid {
        grid-template-columns: 1fr;
    }
    .hub-field.is-span-2 {
        grid-column: span 1;
    }
}
