.founders {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #023755 0%, #012a42 50%, #023755 100%);
}

.founders::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 176, 0.05) 0%, rgba(139, 92, 246, 0.02) 40%, transparent 70%);
    pointer-events: none;
}

.founders::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}

.founders__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.founders__text {
    font-size: var(--text-lg);
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 36px;
}

.founders__number {
    font-size: var(--text-7xl);
    font-weight: 900;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    display: inline-block;
}

.founders__price {
    margin-bottom: 36px;
}

.founders__price-tag {
    display: inline-flex;
    flex-direction: column;
    padding: 28px 36px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 100%);
    border: 1px solid rgba(0, 229, 176, 0.18);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    position: relative;
    overflow: hidden;
}

.founders__price-tag::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: var(--accent-gradient);
}

.founders__price-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(0, 229, 176, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.founders__price-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.founders__price-amount {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 900;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
}

.founders__price-amount small {
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0;
}

.founders__price-note {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* Counter Ring — premium quality */
.founders__counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.founders__counter-ring {
    position: relative;
    width: 260px;
    height: 260px;
}

.founders__counter-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 20px rgba(0, 229, 176, 0.1));
}

.founders__counter-progress {
    transition: stroke-dashoffset 2.5s var(--ease-out-expo);
}

.founders__counter-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.founders__counter-available {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.04em;
}

.founders__counter-label {
    font-size: 11px;
    color: var(--gray-400);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1.4;
    font-weight: 600;
}

.founders__counter-of {
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 500;
}

/* Spots Grid */
.founders__counter-spots {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 6px;
    max-width: 260px;
}

.founders__spot {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.6s var(--ease-out-expo);
}

.founders__spot--taken {
    background: linear-gradient(135deg, var(--accent), var(--accent-blue));
    border-color: transparent;
    box-shadow: 0 0 12px rgba(0, 229, 176, 0.2),
                inset 0 1px 0 rgba(255,255,255,0.2);
}

.founders__counter-urgency {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 8px 20px;
    background: rgba(0, 229, 176, 0.05);
    border: 1px solid rgba(0, 229, 176, 0.08);
    border-radius: var(--radius-full);
    animation: urgency-pulse 3s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 229, 176, 0); }
    50% { opacity: 0.8; box-shadow: 0 0 20px rgba(0, 229, 176, 0.05); }
}

@media (max-width: 1024px) {
    .founders__layout {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }
    .founders__price-tag {
        align-items: center;
    }
    .founders__counter-ring {
        width: 220px;
        height: 220px;
    }
}
