/* /assets/css/pages/home.css */



/* ---- Home Hero ---- */
.home-hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 6rem 2rem 3rem;
}

/* ---- Centered Layout (no hero) ---- */
.home-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 2rem;
}

.home-hero h1 {
    font-family: var(--font-sans);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;

    /* Holographic shimmer */
    background: linear-gradient(135deg,
            var(--text-high) 0%,
            rgba(255, 255, 255, 0.4) 25%,
            var(--text-high) 50%,
            rgba(255, 255, 255, 0.5) 75%,
            var(--text-high) 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroShimmer 6s ease-in-out infinite;
}

@keyframes heroShimmer {

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

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

.home-hero .tagline {
    font-size: 1.05rem;
    color: var(--text-low);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.home-hero .cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.home-hero .cta-primary {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-strong);
    color: var(--text-high);
    text-decoration: none;
    border-radius: 6px;
    transition: all var(--transition-smooth);
}

.home-hero .cta-primary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.home-hero .cta-secondary {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-med);
    text-decoration: none;
    border-radius: 6px;
    transition: all var(--transition-smooth);
}

.home-hero .cta-secondary:hover {
    border-color: var(--border-strong);
    color: var(--text-high);
}

/* ---- Elegant Glass Cards ---- */
.home-features {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 2.5rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100px;
    height: 95px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.04),
        0 4px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-icon {
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
}

.feature-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.35s ease;
}

.feature-card:hover .feature-label {
    color: rgba(255, 255, 255, 0.85);
}

/* ---- Home Search Section ---- */
.home-search-section {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

/* ---- Layout: Home Content (legacy) ---- */
.home-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.statement {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-high);
    margin-bottom: var(--step);
}

.axiom {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: calc(var(--step) * 4);
}

/* ---- Home Search Bar ---- */
.metaverse-entry-zone {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.secondary-nav-row {
    display: flex;
    gap: calc(var(--step) * 2);
    margin-top: calc(var(--step) * 2);
}

.secondary-nav-btn {
    font-size: 0.75rem !important;
    padding: 8px 24px !important;
    background: var(--bg-surface) !important;
    color: var(--text-high) !important;
    border: 1px solid var(--border-strong) !important;
}

.secondary-nav-btn:hover {
    background: var(--text-high) !important;
    color: var(--bg-base) !important;
    border-color: var(--text-high) !important;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.search-input-group {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin-bottom: calc(var(--step) * 2);
}

.main-search-bar {
    width: 100%;
    height: 56px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 0 140px 0 28px;
    color: var(--text-high);
    font-size: 1.1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.main-search-bar:focus {
    border-color: var(--border-strong);
    background: var(--bg-elevated);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.search-btn-inset {
    position: absolute;
    right: 8px;
    top: 8px;
    height: 40px;
    padding: 0 24px;
    border-radius: var(--radius-pill);
    background: var(--text-high);
    color: var(--bg-base);
    border: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-btn-inset:hover {
    transform: scale(1.05);
}

.search-hint {
    font-size: 0.9rem;
    color: var(--text-low);
    max-width: 480px;
    margin-top: calc(var(--step) * 2);
}

@media (max-width: 640px) {
    .main-search-bar {
        font-size: 1rem;
    }
}