/* =========================================================
   FOOTER (UNIFIED + GLOW)
   ========================================================= */

.site-footer {
    margin-top: var(--space-2xl);
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-muted);
    position: relative;
    padding: 2.5rem 1rem 1.5rem;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%,
            var(--glow-soft),
            transparent 60%);
    opacity: 0;
    animation: footerGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.footer-quote {
    font-style: italic;
    background: linear-gradient(90deg, var(--color-mauve), #e6bcbc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-brand {
    font-weight: 600;
    background: linear-gradient(90deg,
            var(--color-mauve),
            var(--color-mauve-soft));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.footer-badges {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-badges img {
    width: 90px;
    opacity: 0.9;
}

/* =========================================================
   EXTRAS — CREATIVE & FUN
   ========================================================= */

.extras-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.extra-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(206, 156, 156, 0.16);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    animation: floatIn 0.6s ease both;
}

.extra-item:nth-child(1) {
    transform: rotate(-2deg);
}

.extra-item:nth-child(2) {
    transform: rotate(1.5deg);
}

.extra-item:nth-child(3) {
    transform: rotate(-1deg);
}

.extra-item:nth-child(4) {
    transform: rotate(2deg);
}

.extra-item:hover {
    animation: wobble 0.4s ease;
    box-shadow: 0 12px 28px var(--glow-soft);
    background: rgba(206, 156, 156, 0.22);
}

.emoji {
    display: inline-block;
    animation: emojiBounce 2.8s ease-in-out infinite;
}

.extra-item:nth-child(2) .emoji {
    animation-delay: 0.3s;
}

.extra-item:nth-child(3) .emoji {
    animation-delay: 0.6s;
}

.extra-item:nth-child(4) .emoji {
    animation-delay: 0.9s;
}

/* =========================================================
   SHARED LANDING SECTION SYSTEM
   ========================================================= */

.landing-section {
    position: relative;
    padding: var(--space-lg) 0;
}

.landing-section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.landing-sub {
    color: var(--color-muted);
    max-width: 520px;
    line-height: 1.6;
}

/* =========================================================
   GEEK OUT SECTION
   ========================================================= */

.geek-header {
    margin-bottom: 3.5rem;
}

.geek-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Stagger animation */
.geek-grid .card-glass:nth-child(1) {
    animation-delay: 0.05s;
}

.geek-grid .card-glass:nth-child(2) {
    animation-delay: 0.1s;
}

.geek-grid .card-glass:nth-child(3) {
    animation-delay: 0.15s;
}

.geek-grid .card-glass:nth-child(4) {
    animation-delay: 0.2s;
}

.geek-grid .card-glass:nth-child(5) {
    animation-delay: 0.25s;
}

.geek-grid .card-glass:nth-child(6) {
    animation-delay: 0.3s;
}

/* =========================================================
   CARD SYSTEM (SHARED)
   ========================================================= */

.card-glass {
    position: relative;
    padding: 1.8rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(6px);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.card-glass:hover {
    transform: translateY(-6px);
    border-color: var(--glow-soft);
    box-shadow: 0 10px 35px var(--glow-faint);
}

.card-glass p {
    line-height: 1.65;
    max-width: 38ch;
}

.geek-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: var(--glow-faint);
    color: var(--color-text);
}

/* =========================================================
   CURRENTLY EXPLORING
   ========================================================= */

.exploring-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Card Content */

.exploring-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.exploring-desc {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.exploring-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Optional Stagger Animation */

.exploring-grid .card-glass:nth-child(1) {
    animation-delay: 0.05s;
}

.exploring-grid .card-glass:nth-child(2) {
    animation-delay: 0.15s;
}

.exploring-grid .card-glass:nth-child(3) {
    animation-delay: 0.25s;
}

.exploring-grid .card-glass:nth-child(4) {
    animation-delay: 0.35s;
}

/* =========================================================
   LET'S CONNECT
   ========================================================= */

.connect {
    text-align: center;
    margin-top: 3rem;
}

.connect-links {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 1.75rem;
}

.connect-links a {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.connect-links a:hover {
    transform: translateY(-4px);
    border-color: var(--color-mauve);
    background: var(--color-mauve-soft);
}

.connect-links svg {
    width: 22px;
    height: 22px;
    fill: var(--color-text);
    transition: fill 0.25s ease;
}

.connect-links a:hover svg {
    fill: var(--color-mauve);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
    .exploring-grid {
        grid-template-columns: 1fr;
    }
}