/* ==========================================================================
   Nebula & Co. — Design System
   ========================================================================== */

:root {
    --bg: #060608;
    --bg-section: #080a0f;
    --bg-card: #0c0e15;
    --border: rgba(255, 255, 255, 0.055);
    --border-hover: rgba(124, 77, 255, 0.35);

    --white: #ffffff;
    --grey-1: #e2e8f0;
    --grey-2: #94a3b8;
    --grey-3: #4a5568;

    --purple: #7c4dff;
    --purple-dim: rgba(124, 77, 255, 0.12);
    --purple-glow: rgba(124, 77, 255, 0.22);

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Plus Jakarta Sans', system-ui, sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
    color: var(--white);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

::-webkit-scrollbar {
    width: 5px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple);
}

/* ── Layout Utility ─────────────────────────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* ── Space Canvas ────────────────────────────────────────────────────────── */
#space-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: -120px;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 5vw;
    background: rgba(6, 6, 8, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transition: top 0.55s var(--ease), opacity 0.55s var(--ease);
}

.nav.visible {
    top: 0;
    opacity: 1;
}



.nav-logo {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: opacity 0.3s;
    position: relative;
    z-index: 1000;
}

.nav-logo span {
    color: var(--purple);
}

.nav-logo:hover {
    opacity: 0.75;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-2);
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--purple);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1000;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: transform 0.4s var(--ease), opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    z-index: 10;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5vw;
    text-align: center;
    overflow: hidden;
}

.hero-body {
    max-width: 900px;
    padding-top: 8rem;
}

.hero-eyebrow {
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--purple);
    opacity: 0;
    animation: rise 1s var(--ease) 0.2s forwards;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: rise 1.1s var(--ease) 0.4s forwards;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: rise 1s var(--ease) 0.65s forwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.25rem;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.45s var(--ease);
}

.btn-primary {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--purple);
    box-shadow: 0 0 35px var(--purple-glow);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--grey-1);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

/* Scroll line */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: rise 1s var(--ease) 1s forwards;
}

.scroll-line {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, var(--grey-3), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--purple);
    animation: scrollDrop 2.5s infinite var(--ease);
}

@keyframes scrollDrop {
    0% {
        transform: translateY(-100%);
    }

    80%,
    100% {
        transform: translateY(200%);
    }
}

.introducing {
    position: relative;
    z-index: 10;
    background: #f4f3f0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10rem 0 7rem;
    color: #0a0a0e;
    text-align: center;
}

.introducing .intro-heading {
    color: #0a0a0e;
    margin-left: auto;
    margin-right: auto;
}

.introducing .intro-lead {
    color: #1a1a22;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.introducing .intro-text {
    color: #3a3a4a;
    margin-left: auto;
    margin-right: auto;
}

.introducing .intro-quote {
    color: #0a0a0e;
    border-left: none;
    padding-left: 0;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    line-height: 1.5;
    font-style: italic;
}

.intro-inner {
    display: block;
    margin-bottom: 7rem;
}

.intro-label {
    padding-top: 0.5rem;
}

.label-tag {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-3);
    position: sticky;
    top: 7rem;
    display: inline-block;
}

.label-light {
    color: rgba(255, 255, 255, 0.3);
}

.intro-heading {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
}

.intro-lead {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2vw, 1.85rem);
    font-weight: 300;
    line-height: 1.45;
    color: var(--grey-1);
    margin-bottom: 2.5rem;
}

.intro-divider {
    width: 48px;
    height: 1px;
    background: var(--purple);
    margin-bottom: 2.5rem;
    opacity: 0.6;
}

.intro-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--grey-2);
    margin-bottom: 1.6rem;
    max-width: 680px;
}

.intro-quote {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    border-left: 2px solid var(--purple);
    padding-left: 1.75rem;
    margin-top: 3rem;
    line-height: 1.5;
    max-width: 620px;
    opacity: 0.9;
}

/* ── Journey Section ─────────────────────────────────────────────────────── */
.journey {
    position: relative;
    z-index: 10;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 12rem 0 12rem;
    text-align: center;
    overflow: hidden;
}

.journey-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(124, 77, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.journey-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.journey-inner .label-tag {
    margin-bottom: 2.5rem;
}

.journey-heading {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 2.25rem;
}

.journey-subtext {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--grey-2);
    max-width: 560px;
    margin: 0 auto 4rem;
}

#journey {
    background: #060608;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#journey .journey-heading {
    color: var(--white);
}

#journey .journey-subtext {
    color: var(--grey-2);
}

.journey-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Social Buttons */
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.15rem 2.75rem;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.45s var(--ease);
    min-width: 200px;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-btn--linkedin {
    background: rgba(10, 102, 194, 0.15);
    border-color: rgba(10, 102, 194, 0.35);
    color: #e2e8f0;
}

.social-btn--linkedin .social-icon {
    color: #0077b5;
    transition: color 0.45s var(--ease);
}

.social-btn--linkedin:hover {
    background: rgba(10, 102, 194, 0.28);
    border-color: rgba(10, 102, 194, 0.7);
    box-shadow: 0 0 35px rgba(10, 102, 194, 0.18);
    color: #fff;
    transform: translateY(-2px);
}

.social-btn--linkedin:hover .social-icon {
    color: #00a0dc;
}

.social-btn--instagram {
    background: rgba(188, 42, 141, 0.1);
    border-color: rgba(188, 42, 141, 0.3);
    color: #e2e8f0;
}

.social-btn--instagram .social-icon {
    opacity: 0.85;
    transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.social-btn--instagram:hover {
    background: rgba(188, 42, 141, 0.22);
    border-color: rgba(188, 42, 141, 0.6);
    box-shadow: 0 0 35px rgba(188, 42, 141, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.social-btn--instagram:hover .social-icon {
    opacity: 1;
    transform: scale(1.1);
}

.social-btn--reddit {
    background: rgba(255, 87, 34, 0.1);
    border-color: rgba(255, 87, 34, 0.3);
    color: #e2e8f0;
}

.social-btn--reddit .social-icon {
    color: #ff4500;
    transition: color 0.45s var(--ease), transform 0.45s var(--ease);
}

.social-btn--reddit:hover {
    background: rgba(255, 87, 34, 0.22);
    border-color: rgba(255, 87, 34, 0.6);
    box-shadow: 0 0 35px rgba(255, 87, 34, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.social-btn--reddit:hover .social-icon {
    color: #ff5722;
    transform: scale(1.1);
}

/* ── Community Section (Light Theme) ─────────────────────────────────────── */
#community {
    background: #f4f3f0;
    color: #0a0a0e;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

#community .orbit-heading {
    color: #0a0a0e;
}

#community .orbit-subtext {
    color: #3a3a4a;
}



/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
    position: relative;
    z-index: 10;
    background: #050507;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4.5rem 0 3rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-statement {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.footer-trust {
    font-size: 0.72rem;
    font-family: var(--sans);
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-legal {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 540px;
    text-align: right;
}

/* ── Scroll Reveal ───────────────────────────────────────────────────────── */
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.42s;
}

/* ── Floating CTA ────────────────────────────────────────────────────────── */
.floating-cta {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    z-index: 1000;
    opacity: 0;
    transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
    pointer-events: none;
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-cta-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0.75rem 0.75rem 0.75rem 2.25rem;
    background: rgba(6, 6, 8, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    cursor: grab;
    will-change: transform;
    user-select: none;
}

.floating-cta-content:active {
    cursor: grabbing;
}

.floating-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.floating-cta-eyebrow {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--grey-2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.floating-cta-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.floating-btn {
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-size: 0.78rem;
    white-space: nowrap;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .intro-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .label-tag {
        position: static;
    }

}

@media (max-width: 768px) {
    .nav.open {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom-color: transparent;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(6, 6, 8, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.45s var(--ease), visibility 0.45s var(--ease);
        z-index: 800;
    }

    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-link {
        font-size: 1.25rem;
        letter-spacing: 0.16em;
    }

    .nav-toggle {
        display: flex;
    }

    .introducing {
        padding: 7rem 0 5rem;
    }

    .journey {
        padding: 8rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        text-align: left;
        max-width: 100%;
    }

    .social-btn {
        min-width: 160px;
    }

    .floating-cta {
        bottom: 1.5rem;
        width: calc(100% - 3rem);
    }

    .floating-cta-content {
        padding: 1rem 1.25rem;
        gap: 1.5rem;
        justify-content: space-between;
    }

    .floating-cta-title {
        font-size: 1.1rem;
    }

    .floating-btn {
        padding: 0.8rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .journey-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .social-btn {
        width: 100%;
        max-width: 320px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        gap: 1.5rem;
    }

    .floating-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
        border-radius: 20px;
        padding: 1.5rem;
    }

    .floating-cta-title {
        white-space: normal;
    }

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

/* ==========================================================================
   Invitation Request Modal Styling
   ========================================================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0.4s var(--ease), opacity 0.4s var(--ease);
}

.modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 6, 0.76);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1;
}

.modal-container {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    width: calc(100% - 2.5rem);
    max-width: 540px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 50px rgba(124, 77, 255, 0.05);
    transform: scale(0.92) translateY(12px);
    transition: transform 0.45s var(--ease);
    overflow-y: auto;
    max-height: calc(100vh - 3rem);
}

.modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--grey-2);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
    padding: 0.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2.25rem;
    text-align: left;
}

.modal-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--grey-2);
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    text-align: left;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-2);
}

.form-group label .required {
    color: var(--purple);
    margin-left: 2px;
}

.form-group label .optional {
    color: var(--grey-3);
    font-size: 0.68rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #0c0e15;
    color: var(--white);
}

.form-group select option:disabled {
    color: var(--grey-3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--grey-3);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    background: rgba(124, 77, 255, 0.02);
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.15);
}

.form-note {
    font-size: 0.75rem;
    color: var(--grey-3);
    text-align: center;
    margin-top: 0.65rem;
    font-family: var(--sans);
    font-weight: 300;
}

.submit-btn {
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
    position: relative;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-spinner {
    display: block;
}

.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    top: calc(50% - 9px);
    left: calc(50% - 9px);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.modal-success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 0;
    animation: fadeInModal 0.4s var(--ease);
}

.success-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.25rem;
}

.success-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(124, 77, 255, 0.08);
    border: 1px solid rgba(124, 77, 255, 0.2);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.success-check-icon {
    width: 22px;
    height: 22px;
}

.success-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 2.75rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.success-subtitle {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--purple);
}

.success-intro {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--grey-2);
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 2rem;
}

/* Stepper */
.stepper-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 460px;
    margin-bottom: 2.25rem;
    padding: 0 0.5rem;
}

.stepper-track {
    position: absolute;
    top: 14px;
    left: 2.5rem;
    right: 2.5rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.stepper-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
}

.step-node {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.step-node svg {
    width: 14px;
    height: 14px;
    color: var(--purple);
}

.step-completed .step-node {
    border-color: var(--purple);
    background: rgba(124, 77, 255, 0.12);
}

.step-active .step-node {
    border-color: var(--purple);
    box-shadow: 0 0 12px rgba(124, 77, 255, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple);
    animation: pulse 1.8s infinite var(--ease);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.85);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.step-label {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--grey-3);
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.step-completed .step-label,
.step-active .step-label {
    color: var(--white);
}

/* Sections */
.success-sections {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
    text-align: left;
}

.success-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1.5rem;
}

.card-heading {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.success-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.success-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--grey-2);
    font-weight: 300;
}

.bullet-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--purple);
    margin-top: 0.55rem;
    flex-shrink: 0;
}

.card-body-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--grey-2);
    font-weight: 300;
}

/* Actions */
.success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 460px;
    margin-bottom: 1.75rem;
}

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

.success-actions .follow-btn {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--grey-2);
}

.success-actions .follow-btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

.success-footer-note {
    font-size: 0.76rem;
    color: var(--grey-3);
    font-weight: 300;
}

.success-footer-note a {
    color: var(--grey-2);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s var(--ease);
}

.success-footer-note a:hover {
    color: var(--purple);
}

@keyframes fadeInModal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

@media (max-width: 580px) {
    .modal-container {
        padding: 2.5rem 1.75rem;
        max-height: calc(100vh - 2rem);
    }

    .modal-header {
        margin-bottom: 1.75rem;
    }
}

/* ==========================================================================
   Nebula Orbit Section Styling
   ========================================================================== */
.orbit-section {
    position: relative;
    z-index: 10;
    background: #060608;
}

.orbit-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.orbit-label {
    color: var(--purple);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: inline-block;
}

.orbit-heading {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1.75rem;
    max-width: 780px;
}

.orbit-subtext {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--grey-2);
    max-width: 780px;
    margin: 0 auto;
}

.orbit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
    text-align: left;
}

.orbit-card {
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 20px;
    padding: 3rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.orbit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(124, 77, 255, 0.04) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
    z-index: 1;
}

.orbit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 77, 255, 0.28);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 35px rgba(124, 77, 255, 0.05);
}

.orbit-card:hover::after {
    opacity: 1;
}

.orbit-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(124, 77, 255, 0.06);
    border: 1px solid rgba(124, 77, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    z-index: 2;
    flex-shrink: 0;
}

.orbit-card:hover .orbit-icon-wrapper {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.35);
}

.orbit-icon {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.orbit-card-title {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--white);
    z-index: 2;
    letter-spacing: 0.01em;
}

.orbit-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--grey-2);
    z-index: 2;
    font-weight: 300;
}

/* ── Orbit Audience Layout ("Who You'll Find in Orbit") ─────────────────── */
.orbit-audience-simple {
    text-align: left;
    margin-top: 5.5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
}

.audience-simple-title {
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 300;
    color: #0a0a0e;
    margin-bottom: 2.75rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.audience-simple-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 3rem;
    padding: 0;
    width: 100%;
}

.audience-simple-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.audience-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(124, 77, 255, 0.06);
    color: var(--purple);
    border: 1px solid rgba(124, 77, 255, 0.12);
    flex-shrink: 0;
}

.audience-icon-wrapper .item-icon {
    width: 18px;
    height: 18px;
}

.audience-name {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: #0a0a0e;
    letter-spacing: 0.01em;
}

@media (max-width: 960px) {
    .orbit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .orbit-header {
        margin-bottom: 3.5rem;
    }

    .audience-simple-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .audience-simple-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ── Orbit Experience Header ────────────────────────────────────────────── */
.experience-header {
    text-align: left;
    margin-top: 5.5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
}

.experience-title {
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 300;
    color: #0a0a0e;
    margin-bottom: 2.75rem;
    text-align: center;
    letter-spacing: -0.01em;
}

/* ── Orbit Pillars Typography Styles ──────────────────────────────────────── */
.orbit-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin: 0 auto 5.5rem;
    max-width: 1000px;
    text-align: center;
}

.pillar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
    background: none;
    border: none;
    border-radius: 0;
}

.pillar-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 300;
    color: #0a0a0e;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.experience-pillar-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(124, 77, 255, 0.06);
    color: var(--purple);
    border: 1px solid rgba(124, 77, 255, 0.12);
    margin-bottom: 1.5rem;
}

.experience-pillar-icon svg {
    width: 22px;
    height: 22px;
}

.pillar-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4a5568;
    font-weight: 300;
}

@media (max-width: 960px) {
    .orbit-pillars {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin: 0 auto 4rem;
    }
}

/* ── Orbit Culmination Invitation Block ───────────────────────────────────── */
.orbit-invitation {
    text-align: center;
    max-width: 700px;
    margin: 6.5rem auto 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 5rem;
}

.orbit-invitation .btn-primary:hover {
    background: var(--purple) !important;
    color: var(--white) !important;
    border-color: var(--purple) !important;
    box-shadow: none !important;
}

.invitation-heading {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.35rem);
    font-weight: 300;
    color: #0a0a0e;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.invitation-subtext {
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto;
}

/* ── FAQ Section ──────────────────────────────────────────────────────────── */
.faq-section {
    position: relative;
    z-index: 10;
    padding: 9rem 0;
    background: #060608;
    border-top: 1px solid var(--border);
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.faq-label {
    color: var(--purple);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    display: inline-block;
}

.faq-heading {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--white);
}

.faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.012);
    overflow: hidden;
    transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(124, 77, 255, 0.3);
    background: rgba(255, 255, 255, 0.025);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--white);
    transition: color 0.3s var(--ease);
}

.faq-question:hover {
    color: var(--grey-1);
}

.faq-icon {
    font-family: var(--sans);
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--purple);
    transition: transform 0.4s var(--ease);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s var(--ease);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 2rem 1.75rem;
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--grey-2);
    font-weight: 300;
}