:root {
    --brand1: #10b981;
    --brand2: #14b8a6;
}

/* Brand helpers */
.bg-brand {
    background: linear-gradient(90deg, var(--brand1), var(--brand2));
}

.bg-brand-diag {
    background: linear-gradient(135deg, var(--brand1), var(--brand2));
}

.text-gradient {
    background: linear-gradient(90deg, var(--brand1), var(--brand2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.border-brand {
    border-color: var(--brand1);
    box-shadow: 0 0 0 1px var(--brand2);
}

.button-brand-hover {
    box-shadow: 4px 3px 9px 0 rgba(16, 185, 129, 0), -5px 3px 9px 0 rgba(20, 184, 166, 0);
}
.button-brand-hover:hover {
    box-shadow: 4px 3px 9px 0 rgba(16, 185, 129, 0.2), -5px 3px 9px 0 rgba(20, 184, 166, 0.2);
}

/* Glass & motion */
.shadow-glass {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.hover-lift {
    transition: transform .18s ease, box-shadow .18s ease;
}


.btn-press {
    transition: transform .05s ease, box-shadow .1s ease, background .08s ease;
}

.btn-press:active {
    transform: translateY(1px) scale(.99);
}

/* Reveal-on-view */
.reveal {
    opacity: 0;
    transform: translateY(12px);
}

.reveal.in {
    animation: fadeUp .6s cubic-bezier(.2, .65, .25, 1) forwards;
}

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

/* Dynamic background blobs */
.bg-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    filter: blur(60px);
    opacity: .45;
    will-change: transform;
    transform: translateZ(0);
}

.blob {
    position: absolute;
    left: 0;
    top: 0;
    will-change: transform;
    transform: translateZ(0);
    width: var(--size, 24rem);
    height: var(--size, 24rem);
    border-radius: 9999px;
    background: radial-gradient(circle at 50% 50%, hsla(var(--h, 165), 72%, 58%, .35) 0%, transparent 60%);
    mix-blend-mode: screen;
}

/* Sandbox shells */
.msg-shell {
    max-width: min(90%, 720px);
}

/* How it works step dot */
.step-dot {
    position: absolute;
    left: 0;
    top: 0;
    height: 2rem;
    width: 2rem;
    border-radius: 9999px;
    background: rgba(16, 185, 129, .15);
    border: 1px solid rgba(52, 211, 153, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86efac;
    font-weight: 700;
}

/* Social proof cards */
.card-ghost {
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.25rem;
}

.card-ghost p {
    color: #fff;
}

.card-ghost .quote-author {
    margin-top: .5rem;
    font-size: .875rem;
    color: #a3a3a3;
}


/* Discord */

.discord-link {
    background: rgba(88, 101, 242, 0.8);
    color: #fff;
    text-decoration: none;
    border: none;
    box-shadow: 0 1px 10px rgba(88, 101, 242, 0.25);
}

.discord-link:hover {
    background: rgba(88, 101, 242, 0.85);
    box-shadow: 0 1px 10px rgba(88, 101, 242, 0.45);
}


/* FAQ */
.faq-item {
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(34, 34, 34, 1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: .75rem;
}

.faq-item > summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-item > div {
    padding-top: .5rem;
    color: #d4d4d4;
    font-size: .9375rem;
}

