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

/* ── Shared gate wrapper ── */
.super-gate {
    text-align: center;
    padding: 40px 20px;
    max-width: 520px;
    margin: 0 auto;
}

.gate-back {
    display: block;
    margin-top: 28px;
    color: var(--text-muted, #8892b0);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.82rem;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.gate-back:hover {
    color: var(--cyan, #00ffd5);
    opacity: 1;
}

/* ═══════════════════════════════════════
   FREE TIER — Super User Exclusive gate
   ═══════════════════════════════════════ */
.gate-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, rgba(255, 215, 0, 0.04) 0%, rgba(7, 16, 40, 0.95) 40%, rgba(7, 16, 40, 0.98) 100%);
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 16px;
    padding: 44px 32px 40px;
    box-shadow:
        0 0 40px rgba(255, 215, 0, 0.06),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

/* animated scan line */
.gate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    animation: gateScan 4s ease-in-out infinite;
}

@keyframes gateScan {

    0%,
    100% {
        top: 0;
        opacity: 0;
    }

    50% {
        top: 100%;
        opacity: 1;
    }
}

.gate-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.gate-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 140, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 20px;
    padding: 5px 16px;
    margin-bottom: 22px;
}

.gate-card h2 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0 0 14px;
    letter-spacing: 0.5px;
}

.gate-card .gate-desc {
    color: var(--text-muted, #9fb3c6);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.88rem;
    line-height: 1.75;
    margin: 0 0 24px;
}

/* terminal-styled feature list */
.gate-modules {
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 0 0 28px;
}

.gate-modules-header {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    color: rgba(255, 215, 0, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gate-modules ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gate-modules li {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.84rem;
    color: var(--text-muted, #9fb3c6);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gate-modules li:last-child {
    border-bottom: none;
}

.gate-modules li::before {
    content: '▹';
    color: #ffd700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* subscribe button */
.gate-cta {
    display: inline-block;
    padding: 13px 36px;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.2);
}

.gate-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.35);
}

.gate-price {
    display: block;
    margin-top: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.76rem;
    color: var(--text-muted, #8892b0);
    opacity: 0.55;
}

/* ═══════════════════════════════════════
   SUPER USER — Coming Soon gate
   ═══════════════════════════════════════ */
.coming-soon-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, rgba(0, 255, 213, 0.04) 0%, rgba(7, 16, 40, 0.95) 40%, rgba(7, 16, 40, 0.98) 100%);
    border: 1px solid rgba(0, 255, 213, 0.18);
    border-radius: 16px;
    padding: 44px 32px 40px;
    box-shadow:
        0 0 40px rgba(0, 255, 213, 0.06),
        inset 0 1px 0 rgba(0, 255, 213, 0.1);
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 213, 0.5), transparent);
    animation: csScan 4s ease-in-out infinite;
}

@keyframes csScan {

    0%,
    100% {
        top: 0;
        opacity: 0;
    }

    50% {
        top: 100%;
        opacity: 1;
    }
}

.cs-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(0, 255, 213, 0.06);
    border: 1px solid rgba(0, 255, 213, 0.2);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 213, 0.2));
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan, #00ffd5);
    background: rgba(0, 255, 213, 0.06);
    border: 1px solid rgba(0, 255, 213, 0.25);
    border-radius: 20px;
    padding: 5px 16px;
    margin-bottom: 22px;
}

.coming-soon-card h2 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cyan, #00ffd5);
    margin: 0 0 14px;
    letter-spacing: 0.5px;
}

.coming-soon-card .cs-desc {
    color: var(--text-muted, #9fb3c6);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.88rem;
    line-height: 1.75;
    margin: 0 0 24px;
}

/* progress bar */
.cs-progress-wrap {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 213, 0.08);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 0 0 28px;
}

.cs-progress-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    color: rgba(0, 255, 213, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cs-progress-bar {
    height: 6px;
    background: rgba(0, 255, 213, 0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.cs-progress-fill {
    height: 100%;
    width: 15%;
    background: linear-gradient(90deg, var(--cyan, #00ffd5), rgba(0, 255, 213, 0.4));
    border-radius: 3px;
    animation: progressPulse 2.5s ease-in-out infinite;
}

@keyframes progressPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.cs-progress-status {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.78rem;
    color: var(--text-muted, #9fb3c6);
}

.cs-progress-status span {
    color: var(--cyan, #00ffd5);
}

/* feature list (coming soon) */
.cs-features {
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cs-features li {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.84rem;
    color: var(--text-muted, #9fb3c6);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.cs-features li::before {
    content: '◇';
    color: var(--cyan, #00ffd5);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 560px) {

    .gate-card,
    .coming-soon-card {
        padding: 32px 20px 28px;
    }

    .gate-modules {
        padding: 14px 16px;
    }

    .cs-progress-wrap {
        padding: 14px 16px;
    }
}