@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');


:root {

    --midnight: #0d1117;
    --charcoal: #161b22;
    --slate: #21262d;
    --gold: #c9a962;
    --gold-dim: #a89056;
    --silver: #8b949e;
    --white: #f0f6fc;
    --purple-hint: #8957e5;
    --purple-glow: rgba(137, 87, 229, 0.15);


    --dark: var(--midnight);
    --darker: #070a0f;
    --dark-bg: var(--charcoal);
    --primary: var(--purple-hint);
    --accent: var(--gold);
    --danger: #e74c3c;
    --text: var(--white);
    --text-secondary: var(--silver);
    --gradient: linear-gradient(135deg, var(--gold) 0%, var(--purple-hint) 100%);
    --gradient-2: linear-gradient(135deg, var(--purple-hint) 0%, var(--gold) 100%);
    --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);


    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--midnight);
    color: var(--silver);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}


body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, var(--purple-glow), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 98, 0.08), transparent 40%);
    animation: subtle-move 30s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes subtle-move {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(3%, 3%);
    }
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    padding: 0.35rem 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;

    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}


.nav-group {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}


.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav-menu {
    margin-left: 0;
}


.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    margin-left: 0;
}


@media (min-width: 900px) {
    .navbar .container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        justify-content: stretch;
        column-gap: 1rem;
    }

    .nav-brand {
        position: static;
        justify-self: start;
    }


    .nav-group {
        display: contents;
    }

    .nav-center {
        grid-column: 2;
        justify-content: center;
    }

    .nav-actions {
        grid-column: 3;
        justify-content: flex-end;
    }


    .nav-toggle {
        display: none;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-brand img {

    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.nav-menu {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    border-radius: 999px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.16) 0, transparent 45%),
        linear-gradient(135deg, rgba(22, 27, 34, 0.9), rgba(3, 7, 18, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.58rem 1.55rem;
    border-radius: 999px;
    color: var(--silver);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    z-index: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18) 0, transparent 45%);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
}

.nav-link:hover::after {
    opacity: 0.4;
}

.nav-link.active::after {
    opacity: 1;
}

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

.premium-link {
    color: var(--gold);
    font-weight: 500;
}


.user-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.user-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    background: rgba(33, 38, 45, 0.5);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-dropdown-trigger:hover {
    border-color: var(--gold);
    background: rgba(33, 38, 45, 0.8);
}

.user-dropdown.open .user-dropdown-trigger {
    border-color: var(--gold);
    background: rgba(33, 38, 45, 0.9);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(201, 169, 98, 0.3);
}

.user-name {
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--white);
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
}

.user-name .sparkle {
    opacity: 0.9;
    margin-left: 0.25rem;
}

.user-dropdown-trigger .fa-chevron-down {
    font-size: 0.75rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.user-dropdown.open .user-dropdown-trigger .fa-chevron-down {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    min-width: 220px;
    padding: 0.75rem;
    border-radius: 12px;
    background: var(--slate);
    border: 1px solid rgba(201, 169, 98, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.open .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--silver);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.user-dropdown-item:hover {
    background: rgba(201, 169, 98, 0.1);
    color: var(--gold);
}

.user-dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.dropdown-divider {
    height: 1px;
    background: rgba(201, 169, 98, 0.2);
    margin: 0.5rem 0;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--midnight);
}

.btn-primary:hover {
    background: var(--gold-dim);
    border-color: var(--gold-dim);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(201, 169, 98, 0.1);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-premium {
    background: linear-gradient(135deg, var(--gold) 0%, var(--purple-hint) 100%);
    border: none;
    color: white;
    font-weight: 600;
}

.btn-premium:hover {
    opacity: 0.9;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-lg)) 0 var(--space-lg);
    position: relative;
}


.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(201, 169, 98, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(137, 87, 229, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(201, 169, 98, 0.4), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(137, 87, 229, 0.3), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: particle-drift 20s ease-in-out infinite;
}

@keyframes particle-drift {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--purple-hint) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--silver);
    margin-bottom: var(--space-md);
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}


.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.stat-item {
    text-align: center;
    padding: var(--space-sm);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(201, 169, 98, 0.05);
}

.stat-item i {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.floating-card {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 30% 30%, rgba(201, 169, 98, 0.15), rgba(137, 87, 229, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.2);
    position: relative;
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {

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

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

.floating-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--purple-hint));
    opacity: 0.2;
    z-index: -1;
    filter: blur(20px);
}

.floating-card i {
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.9;
}


.features {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: var(--space-sm);
}

.section-description {
    font-size: 1.1rem;
    color: var(--silver);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    padding: var(--space-md);
    background: rgba(33, 38, 45, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--gold);
}

.feature-card h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--silver);
}


.how-to-start {
    padding: var(--space-xl) 0;
    background: rgba(33, 38, 45, 0.3);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: var(--space-md);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--silver);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.5;
}


.premium-preview {
    padding: clamp(48px, 6vw, 90px) 0;
}

.premium-preview .premium-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(18px, 3vw, 30px);
    border-radius: 22px;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(201, 169, 98, 0.22);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    position: relative;
    overflow: hidden;
}

.premium-preview .premium-content::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 30% 10%, rgba(201, 169, 98, 0.22), transparent 55%);
    pointer-events: none;
}

.premium-preview .premium-content::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 70% 90%, rgba(155, 89, 182, 0.20), transparent 55%);
    pointer-events: none;
}

.premium-preview .premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;

    background: linear-gradient(135deg, rgba(201, 169, 98, 0.95), rgba(155, 89, 182, 0.65));
    border: 1px solid rgba(255, 255, 255, 0.18);

    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.35),
        0 0 0 6px rgba(201, 169, 98, 0.06);

    margin-bottom: 14px;
}

.premium-preview .premium-content h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    margin: 0 0 10px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.premium-preview .premium-content p {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgba(226, 232, 240, 0.82);
    margin: 0 auto 16px;
    max-width: 65ch;
    line-height: 1.75;
}


.soon-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.5rem;
    margin-left: 0.5rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}


.nav-link.premium-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.25) 0%, rgba(137, 87, 229, 0.35) 100%);
    border: 1px solid rgba(201, 169, 98, 0.35);
}

.nav-link.premium-link::after {
    display: none;
}

.nav-link.premium-link:hover {
    color: var(--white);
    border-color: rgba(201, 169, 98, 0.6);
    filter: brightness(1.05);
}


.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    margin-top: 6rem;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 17, 23, 0.5) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text span {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    line-height: 1.2;
}

.footer-logo-text small {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.footer-brand p {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 350px;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column a {
    display: block;
    color: var(--silver);
    text-decoration: none;
    margin-bottom: 0.65rem;
    transition: all 0.3s;
    font-size: 0.95rem;
    position: relative;
    width: fit-content;
}

.footer-column a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.footer-bottom p {
    color: var(--silver);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.65rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 8px;
    color: var(--gold);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--midnight);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 98, 0.3);
}


@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

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

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-md);
        transition: right 0.3s ease;
        border-left: 1px solid rgba(201, 169, 98, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(201, 169, 98, 0.15);
        max-width: 100%;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
    }

    .footer-column {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


* {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}


::selection {
    background: var(--gold);
    color: var(--midnight);
}


.soon-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.5rem;
    margin-left: 0.5rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}


.nav-link.premium-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.25) 0%, rgba(137, 87, 229, 0.35) 100%);
    border: 1px solid rgba(201, 169, 98, 0.35);
}

.nav-link.premium-link::after {
    display: none;
}

.nav-link.premium-link:hover {
    color: var(--white);
    border-color: rgba(201, 169, 98, 0.6);
    filter: brightness(1.05);
}


.step {
    background: rgba(33, 38, 45, 0.35);
    border: 1px solid rgba(201, 169, 98, 0.18);
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
}

.step-number {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
}

.step-arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.18);
    background: rgba(33, 38, 45, 0.25);
    opacity: 0.8;
}

.btn.disabled,
.disabled {
    opacity: 0.65;
    pointer-events: none;
    filter: saturate(0.9);
}


.is-hidden {
    display: none !important;
}


.step {
    background: rgba(33, 38, 45, 0.35);
    border: 1px solid rgba(201, 169, 98, 0.18);
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
}

.step-number {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
}

.step-arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.18);
    background: rgba(33, 38, 45, 0.25);
    opacity: 0.8;
}


.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;

    color: var(--silver) !important;
    text-decoration: none !important;

    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.user-dropdown-menu a:hover {
    background: rgba(201, 169, 98, 0.1);
    color: var(--gold) !important;
}

.user-dropdown-menu a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: rgba(201, 169, 98, 0.95);
}


.user-dropdown-menu a.active {
    background: rgba(201, 169, 98, 0.12);
    color: var(--gold) !important;
}


.user-dropdown-menu a.premium,
.user-dropdown-menu a.premium-link {
    color: var(--gold) !important;
}

.user-dropdown-menu a.premium i,
.user-dropdown-menu a.premium-link i {
    color: var(--gold) !important;
}

.floating-card.floating-logo {
    overflow: hidden;
    padding: 0 !important;
}

.hero-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.floating-card.floating-logo::after {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.28);
    pointer-events: none;
}


.footer-bottom.footer-bottom-center {
    justify-content: center;
    text-align: center;
}

.footer-bottom.footer-bottom-center p {
    margin: 0 0.35rem;
}



.navbar .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}



.navbar .container {

    justify-content: flex-start;
    gap: 0.7rem;
}


.nav-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-menu {

    margin: 0;
    flex: 0 1 auto;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex: 0 0 auto;

    margin-left: 0.45rem;
}

.nav-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-profile-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-profile-name {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.nav-add-bot {
    margin-left: var(--space-xs);
}


.nav-link.active {
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.25);
}



.nav-link.nav-add-bot-pill {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: #1a1308;
    font-weight: 600;
    padding-inline: 1.75rem;
}

.nav-link.nav-add-bot-pill::after {
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.35) 0, transparent 50%);
    opacity: 0.9;
}

.nav-link.nav-add-bot-pill:hover {
    transform: translateY(-1px);
}


.nav-user-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.16) 0, transparent 50%),
        linear-gradient(135deg, rgba(22, 27, 34, 0.78), rgba(3, 7, 18, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-user-pill::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18) 0, transparent 55%);
    opacity: 0.35;
    pointer-events: none;
}

.nav-user-pill:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.24);
}

.nav-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-user-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-arrow {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-left: 0.25rem;
}


.nav-login-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    border-radius: 50px;
    color: white !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-login-pill:hover {
    background: linear-gradient(135deg, #4752c4, #3c45a5);
    transform: translateY(-1px);
}


/* =========================
   Navbar User Search
   ========================= */
.nav-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0;
}

.nav-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition: transform .15s ease, background .2s ease;
}

.nav-search-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.06);
}

.nav-menu .nav-search-btn {
    margin-left: 6px;
}

.nav-search-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(420px, calc(100vw - 28px));
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(14, 14, 18, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 60;
}

.nav-search.open .nav-search-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.nav-search-input {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.95);
    outline: none;
}

.nav-search-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.nav-search-results {
    margin-top: 10px;
    display: grid;
    gap: 8px;
    max-height: 320px;
    overflow: auto;
    padding-right: 2px;
}

.nav-search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: transform .12s ease, background .15s ease, border-color .15s ease;
    text-decoration: none;
}

.nav-search-item:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.nav-search-item .avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-search-item .meta {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.nav-search-item .meta .name {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-search-item .meta .id {
    margin-top: 2px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.60);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-search-empty {
    padding: 10px 10px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 700px) {
    .nav-search-panel {
        right: -6px;
    }
}