/* ========================================
   COMING SOON - scaffolded route stubs
   Shared by /litepaper, /nfts, /studios, /roadmap
   until each route ships its real content.
======================================== */

.world-soon {
    min-height: 100vh;
}

.soon-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + 48px) 24px 96px;
}

/* Soft orange glow behind the content, echoing the Home hero orbs */
.soon-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 620px;
    height: 620px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.22) 0%, transparent 62%);
    filter: blur(100px);
    z-index: 0;
}

.soon-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    text-align: center;
}

.soon-tag {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-primary);
}

.soon-title {
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 8vw, 4.6rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.soon-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Pulsing status dot - signals the page is alive, not abandoned */
.soon-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: soon-pulse 2.4s ease-out infinite;
}

@keyframes soon-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.55); }
    70%  { box-shadow: 0 0 0 13px rgba(212, 165, 116, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 165, 116, 0); }
}

.soon-desc {
    margin: 0 auto 40px;
    max-width: 520px;
    font-size: clamp(1.05rem, 2.4vw, 1.28rem);
    line-height: 1.65;
    color: var(--text-secondary);
}

.soon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 14px 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    border: 1px solid var(--border-accent);
    border-radius: 999px;
    transition:
        color 0.4s var(--ease-out-expo),
        border-color 0.4s var(--ease-out-expo),
        background 0.4s var(--ease-out-expo);
}

.soon-link:hover {
    color: var(--text-primary);
    border-color: var(--accent-primary);
    background: rgba(255, 140, 0, 0.1);
}

.soon-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    transition:
        color 0.4s var(--ease-out-expo),
        border-color 0.4s var(--ease-out-expo);
}

.soon-back:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* ========================================
   HOME PORTAL - Coming Soon tiles
======================================== */

/* Placeholder preview for portals whose section is not built yet */
.portal-preview--placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.18) 0%, rgba(196, 149, 106, 0.05) 100%);
}

/* Faint dotted texture so the empty preview reads as intentional */
.portal-preview--placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(43, 34, 24, 0.13) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.55;
}

.portal-soon {
    position: relative;
    z-index: 1;
    padding: 9px 17px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-primary);
    background: var(--bg-elevated);
    border: 1px solid rgba(212, 165, 116, 0.45);
    border-radius: 999px;
}

@media (max-width: 768px) {
    .soon-section {
        padding: calc(var(--nav-height) + 32px) 18px 64px;
    }
}
