/* =============================================
   LANDING PAGE — Reichert-Ventures
   Full-viewport, no-scroll, glassmorphism design
   ============================================= */

:root {
    --grau: #708090;
    --grün: #90C226;
    --orange: #FFA500;
    --weiß: #F0F0F0;
    --dark-bg: #2E2E2E;
    /* nacht-grau */
    --glass-bg: rgba(18, 22, 36, 0.55);
    --glass-border: rgba(255, 255, 255, 0.07);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: var(--dark-bg);
    font-family: "embarcadero-mvb-pro-condense", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--weiß);
}

/* ---------- Three.js Canvas ---------- */
#landing-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
}

/* ---------- Vignette overlay ---------- */
.vignette {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(20, 20, 20, 0.7) 100%);
}

/* ---------- Content Overlay ---------- */
.landing-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 2.5vh 4vw 1.5vh;
    gap: 1.5vh;
}

/* =================== HEADER =================== */
.landing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4vh;
}

.landing-logo {
    width: clamp(60px, 10vmin, 120px);
    height: clamp(60px, 10vmin, 120px);
    animation: logoGlow 12s infinite alternate ease-in-out;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 15px rgba(144, 194, 38, 0.5));
    }

    /* Grün (klein) */
    20% {
        filter: drop-shadow(0 0 45px rgba(144, 194, 38, 0.9));
    }

    /* Grün (groß) */
    40% {
        filter: drop-shadow(0 0 15px rgba(255, 165, 0, 0.5));
    }

    /* Orange (klein) */
    60% {
        filter: drop-shadow(0 0 45px rgba(255, 165, 0, 0.9));
    }

    /* Orange (groß) */
    80% {
        filter: drop-shadow(0 0 15px rgba(112, 128, 144, 0.5));
    }

    /* Grau (klein) */
    100% {
        filter: drop-shadow(0 0 45px rgba(112, 128, 144, 0.9));
    }

    /* Grau (groß) */
}

.landing-title {
    display: none;
    /* Replaced by fader images */
}

.rv-logo-fader {
    position: relative;
    height: clamp(25px, 4vw, 45px);
    margin: 0 auto clamp(10px, 2vh, 15px) auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

.fader-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.fader-img.layer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

@keyframes fadeGreen {

    0%,
    33% {
        opacity: 0;
    }

    40%,
    60% {
        opacity: 1;
    }

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

@keyframes fadeOrange {

    0%,
    66% {
        opacity: 0;
    }

    73%,
    93% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fader-img.green {
    animation: fadeGreen 9s infinite ease-in-out;
}

.fader-img.orange {
    animation: fadeOrange 9s infinite ease-in-out;
}

.landing-subtitle {
    font-size: clamp(0.7rem, 1.1vw, 1.1rem);
    color: var(--weiß);
    letter-spacing: 0.35em;
    text-align: center;
    margin-right: -0.35em; /* Kompensiert das unsichtbare Spacing am letzten Buchstaben für perfekte optische Zentrierung */
}

.dot-green {
    color: var(--grün);
    font-size: 1.35em;
    position: relative;
    top: -0.05em;
}

.dot-orange {
    color: var(--orange);
    font-size: 1.35em;
    position: relative;
    top: -0.05em;
}

/* =================== MAIN — CARDS =================== */
.landing-main {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: stretch;
    justify-content: center;
    gap: clamp(12px, 2vw, 32px);
}

/* --- Glass Card --- */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.0) 100%);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 -1px 1px rgba(0, 0, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    border-radius: clamp(10px, 1.5vmin, 20px);
    padding: clamp(12px, 2.5vh, 32px) clamp(10px, 2vw, 28px);
    width: clamp(200px, 26vw, 360px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 1.2vh, 16px);
    text-decoration: none;
    color: var(--weiß);
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(144, 194, 38, 0.06) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    z-index: 0;
}

/* Frosted Quartz Texture */
.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    mix-blend-mode: overlay;
    border-radius: inherit;
    z-index: 0;
}

/* Ensure content stays above pseudo-elements */
.card-icon, .card-text-wrap, .card-cta {
    position: relative;
    z-index: 1;
}

.card-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(4px, 0.8vh, 10px);
    width: 100%;
}

.glass-card:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(144, 194, 38, 0.25);
    box-shadow:
        0 8px 40px rgba(144, 194, 38, 0.12),
        0 0 80px rgba(144, 194, 38, 0.04);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Disabled/Coming Soon Card Styles */
.glass-card.disabled-card {
    cursor: default;
}

.glass-card.disabled-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 -1px 1px rgba(0, 0, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.glass-card.disabled-card:hover::before {
    opacity: 0;
}

.glass-card.disabled-card .coming-soon-cta {
    color: var(--grau);
    border-color: rgba(112, 128, 144, 0.2);
    background-color: rgba(112, 128, 144, 0.05);
    box-shadow: none;
    cursor: default;
}

.glass-card.disabled-card:hover .coming-soon-cta {
    color: var(--grau);
    border-color: rgba(112, 128, 144, 0.2);
    background-color: rgba(112, 128, 144, 0.05);
    box-shadow: none;
}

/* Pulsing Ring for Pegel Icon */
.pegel-pulse-ring {
    position: relative;
    width: 50px; /* Reduced from 60px to visually match Pixelatelier and Bildpfade icons */
    height: 50px; /* Reduced from 60px */
    border-radius: 50%;
    border: 1.5px solid rgba(144, 194, 38, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: colorPulseRing 4.5s infinite ease-in-out;
    background: rgba(10, 12, 18, 0.1);
    transition: all 0.45s ease;
}

@keyframes colorPulseRing {
    0%, 100% {
        border-color: rgba(144, 194, 38, 0.4);
    }
    50% {
        border-color: rgba(255, 56, 56, 0.35); /* Soft, subtle red */
    }
}

.glass-card.disabled-card .pegel-pulse-ring img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(34%) saturate(1512%) hue-rotate(42deg) brightness(97%) contrast(92%) !important;
    opacity: 0.55 !important; /* Soft, slightly muted green for disabled state */
}

/* Green Ring and Color for Wallet Icon */
.wallet-pulse-ring {
    position: relative;
    width: 50px; /* Reduced from 60px to visually match Pixelatelier and Bildpfade icons */
    height: 50px; /* Reduced from 60px */
    border-radius: 50%;
    border: 1.5px solid rgba(144, 194, 38, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(10, 12, 18, 0.10);
    transition: all 0.45s ease;
}

/* No glowing shadows on hover, just a slightly clearer border highlight */
.glass-card:hover .wallet-pulse-ring {
    border-color: rgba(144, 194, 38, 0.75);
    box-shadow: none;
}

.glass-card .wallet-pulse-ring img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(34%) saturate(1512%) hue-rotate(42deg) brightness(97%) contrast(92%) !important;
    opacity: 0.85 !important; /* Vivid brand green */
    transform: translateY(-2px) !important;
    transition: all 0.45s ease !important;
}

/* Ensure the icon brightness stays consistent on hover */
.glass-card:hover .wallet-pulse-ring img {
    opacity: 1.0 !important;
}

/* Inline SVG exact color mappings */
.wallet-svg {
    width: 32px !important;
    height: 32px !important;
    fill: var(--grün) !important; /* PERFECT match to var(--grün) */
    opacity: 0.85 !important;
    transform: translateY(-2px) !important;
    transition: all 0.45s ease !important;
    position: relative !important;
    z-index: 2 !important;
}

.glass-card:hover .wallet-svg {
    opacity: 1.0 !important;
}

.pegel-svg {
    width: 32px !important;
    height: 32px !important;
    fill: var(--grün) !important; /* PERFECT match to var(--grün) */
    opacity: 0.55 !important; /* Muted green for disabled card state */
    transition: all 0.45s ease !important;
    position: relative !important;
    z-index: 2 !important;
}


.card-icon {
    font-size: clamp(1.8rem, 3.5vh, 3.5rem);
    line-height: 1;
    color: var(--grün);
    filter: drop-shadow(0 0 12px rgba(144, 194, 38, 0.25));
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-title {
    font-size: clamp(1rem, 1.8vw, 1.8rem);
    font-weight: bold;
    text-align: center;
    color: var(--grün);
    transition: color 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-desc {
    font-size: clamp(0.7rem, 0.9vw, 0.95rem);
    text-align: center;
    color: var(--weiß);
    opacity: 0.85;
    /* Softness instead of gray */
    line-height: 1.45;
}

.card-cta {
    margin-top: auto; /* Pushes the button to the bottom so they align */
    font-size: clamp(0.65rem, 0.8vw, 0.85rem);
    color: var(--grün);
    border: 1px solid rgba(112, 128, 144, 0.4);
    /* Grauer Rahmen */
    background-color: rgba(112, 128, 144, 0.15);
    /* Grauer Hintergrund */
    padding: clamp(4px, 0.5vh, 8px) clamp(12px, 1.5vw, 24px);
    border-radius: 50px;
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
}

.glass-card:hover .card-cta {
    color: var(--orange);
    border-color: rgba(112, 128, 144, 0.4);
    /* Rahmen bleibt grau */
    background-color: rgba(112, 128, 144, 0.25);
    /* Leicht intensiviertes Grau */
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.15);
}

/* =================== FOOTER =================== */
.landing-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1vw;
    width: 100%;
}

/* --- Footer Meta --- */
.footer-meta {
    grid-column: 1;
    display: flex;
    gap: clamp(8px, 1.2vw, 20px);
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-copyright {
    grid-column: 2;
    font-size: clamp(0.6rem, 0.75vw, 0.8rem);
    color: var(--weiß);
    opacity: 0.6;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.landing-footer::after {
    content: '';
    grid-column: 3;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.5vw, 8px);
    text-decoration: none;
    color: var(--grün);
    font-size: clamp(0.6rem, 0.75vw, 0.8rem);
    transition: all 0.3s ease;
}

.footer-icon {
    width: clamp(14px, 2.2vh, 20px);
    height: clamp(14px, 2.2vh, 20px);
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-link .footer-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.footer-link:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.footer-link:hover .footer-icon {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(68%) sepia(87%) saturate(1217%) hue-rotate(352deg) brightness(103%) contrast(105%);
}

/* --- Language Switch --- */
.lang-switch {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.5vw, 8px);
    padding: clamp(3px, 0.4vh, 6px) clamp(8px, 0.7vw, 14px);
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--grün);
    font-family: inherit;
    font-size: clamp(0.6rem, 0.75vw, 0.8rem);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: rgba(144, 194, 38, 0.18);
    color: var(--grün);
}

.lang-btn:hover:not(.active) {
    color: var(--orange);
    transform: scale(1.05);
}

.lang-btn:hover:not(.active) .footer-icon {
    transform: scale(1.15);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .glass-card {
        width: clamp(180px, 30vw, 320px);
    }
}

/* Mobile landscape */
@media (max-height: 500px) {
    .landing-overlay {
        padding: 1vh 4vw 0.5vh;
        gap: 0.5vh;
    }

    .landing-logo {
        width: 7vh;
        height: 7vh;
    }

    .landing-title {
        font-size: clamp(1rem, 2.5vw, 2rem);
    }

    .landing-subtitle {
        display: none;
    }

    .glass-card {
        padding: 1vh 1.5vw;
        gap: 0.3vh;
    }

    .card-desc {
        display: none;
    }
}

/* Mobile portrait */
@media (max-width: 768px) {
    .landing-overlay {
        padding: 2vh 5vw 1vh;
        gap: 1vh;
    }

    .landing-main {
        flex-direction: column;
        gap: clamp(6px, 1.2vh, 14px);
    }

    .glass-card {
        width: 88vw;
        flex-direction: row;
        padding: clamp(8px, 1.5vh, 16px) clamp(12px, 3vw, 20px);
        gap: clamp(8px, 3vw, 16px);
    }

    .card-icon {
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .card-text-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 2px;
        flex: 1;
        min-width: 0;
    }

    .card-title {
        text-align: left;
        font-size: 1.1rem;
    }

    .card-desc {
        text-align: left;
        font-size: 0.7rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-cta {
        display: inline-block;
        margin-top: 6px;
        font-size: 0.72rem;
        padding: clamp(3px, 0.4vh, 6px) clamp(10px, 1.2vw, 20px);
        align-self: flex-start;
    }

    .landing-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding-bottom: 130px; /* Provides space so the monster does not overlap buttons */
    }

    .quick-links {
        justify-content: center;
    }

    .footer-meta {
        justify-content: center;
        margin: 0;
        gap: 16px;
    }

    .footer-copyright {
        text-align: center;
        font-size: 0.75rem;
        margin-top: 4px;
        opacity: 0.8;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .landing-logo {
        width: 14vw;
        height: 14vw;
    }

    .card-desc {
        display: none;
    }
}

/* =================== EASTER EGG MONSTER =================== */
#landing-monster {
    position: fixed; 
    bottom: 0; 
    right: 2vw; 
    width: clamp(120px, 14vw, 160px); 
    height: clamp(120px, 14vw, 160px); 
    z-index: 100; 
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.12),
        inset 0 -1px 1px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(144, 194, 38, 0.03);
    border-radius: 2vw 2vw 0 0;
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

#landing-monster:hover {
    border-color: rgba(144, 194, 38, 0.3);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        0 12px 40px rgba(144, 194, 38, 0.12),
        0 0 25px rgba(144, 194, 38, 0.08);
}

.monster-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.candy-stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(144, 194, 38, 0.03) 10px, rgba(144, 194, 38, 0.03) 20px);
    pointer-events: none;
    z-index: 5;
}

.corner-decoration {
    position: absolute;
    width: 7%;
    height: 7%;
    background: var(--grün);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(144, 194, 38, 0.4);
    transform: rotate(45deg);
    opacity: 0.7;
    transition: all 0.45s ease;
}

#landing-monster:hover .corner-decoration {
    background: var(--grün);
    box-shadow: 0 0 10px rgba(144, 194, 38, 0.7);
    opacity: 0.9;
}

.corner-decoration.top-left { top: 6%; left: 6%; }
.corner-decoration.top-right { top: 6%; right: 6%; }
.corner-decoration.bottom-left { bottom: 12%; left: 6%; }
.corner-decoration.bottom-right { bottom: 12%; right: 6%; }

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 18;
}

.sparkle {
    position: absolute;
    color: white;
    font-size: 1.2vmin;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: twinkle 2.5s ease-in-out infinite;
}

.sparkle.s1 { top: 10%; left: 17%; }
.sparkle.s2 { top: 20%; right: 13%; animation-delay: 0.6s; }
.sparkle.s3 { bottom: 23%; left: 20%; animation-delay: 1.2s; }
.sparkle.s4 { bottom: 13%; right: 23%; animation-delay: 1.8s; }

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
}

.star {
    position: absolute;
    color: rgba(144, 194, 38, 0.4);
    font-size: 1.4vmin;
    text-shadow: 0 0 5px rgba(144, 194, 38, 0.3);
    transition: all 0.45s ease;
}

#landing-monster:hover .star {
    color: rgba(144, 194, 38, 0.7);
    text-shadow: 0 0 8px rgba(144, 194, 38, 0.6);
}

.star.st1 { top: 13%; left: 10%; }
.star.st2 { top: 17%; right: 10%; }
.star.st3 { bottom: 13%; left: 13%; }
.star.st4 { bottom: 17%; right: 13%; }

.monster-box .label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 16, 28, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 6px 0;
    font-weight: bold;
    color: var(--grün);
    font-size: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
    z-index: 20;
    text-align: center;
    line-height: 1.3;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.02em;
    transition: all 0.45s ease;
}

#landing-monster:hover .label {
    color: var(--grün);
    background: rgba(12, 16, 28, 0.85);
    border-top-color: rgba(144, 194, 38, 0.15);
}

.inner-box {
    width: 60%;
    height: 60%;
    background: rgba(10, 12, 18, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    overflow: hidden;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.8), 0 0 15px rgba(144, 194, 38, 0.05);
    position: relative;
    transform: translateY(-12px);
    transition: all 0.45s ease;
}

#landing-monster:hover .inner-box {
    border-color: rgba(144, 194, 38, 0.2);
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.8), 0 0 20px rgba(144, 194, 38, 0.15);
}

.monster-silhouette {
    position: absolute;
    width: 71%;
    height: 73%;
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.head-hint {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 84%;
    height: 48%;
    background: rgba(144, 194, 38, 0.15);
    border-radius: 50%;
    border: 1.5px solid rgba(144, 194, 38, 0.35);
    filter: blur(1.5px);
    box-shadow: 0 0 6px rgba(144, 194, 38, 0.3), 0 0 12px rgba(144, 194, 38, 0.2);
    transition: all 0.45s ease;
}

#landing-monster:hover .head-hint {
    background: rgba(144, 194, 38, 0.2);
    border-color: rgba(144, 194, 38, 0.45);
    box-shadow: 0 0 10px rgba(144, 194, 38, 0.4), 0 0 18px rgba(144, 194, 38, 0.3);
}

.shoulder-left {
    position: absolute;
    bottom: 58%;
    left: 0%;
    width: 31%;
    height: 24%;
    background: rgba(144, 194, 38, 0.15);
    border: 1.5px solid rgba(144, 194, 38, 0.3);
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 6px rgba(144, 194, 38, 0.25);
    transition: all 0.45s ease;
}

.shoulder-right {
    position: absolute;
    bottom: 58%;
    right: 0%;
    width: 31%;
    height: 24%;
    background: rgba(144, 194, 38, 0.15);
    border: 1.5px solid rgba(144, 194, 38, 0.3);
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 6px rgba(144, 194, 38, 0.25);
    transition: all 0.45s ease;
}

#landing-monster:hover .shoulder-left,
#landing-monster:hover .shoulder-right {
    background: rgba(144, 194, 38, 0.2);
    border-color: rgba(144, 194, 38, 0.4);
    box-shadow: 0 0 8px rgba(144, 194, 38, 0.3);
}

.body-shape {
    position: absolute;
    width: 88%;
    height: 70%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(144, 194, 38, 0.2);
    border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
    border: 2px solid rgba(144, 194, 38, 0.35);
    filter: blur(1.5px);
    transition: all 0.45s ease;
}

#landing-monster:hover .body-shape {
    background: rgba(144, 194, 38, 0.25);
    border-color: rgba(144, 194, 38, 0.45);
}

.fuzzy-edge {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: 0 0 10px rgba(144, 194, 38, 0.35), 0 0 15px rgba(144, 194, 38, 0.25), inset 0 0 8px rgba(144, 194, 38, 0.2);
}

#landing-monster:hover .fuzzy-edge {
    box-shadow: 0 0 14px rgba(144, 194, 38, 0.45), 0 0 20px rgba(144, 194, 38, 0.35), inset 0 0 10px rgba(144, 194, 38, 0.25);
}

.glass-reflection {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 33%;
    height: 44%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 60%);
    border-radius: 50% 30% 40% 50%;
    pointer-events: none;
    z-index: 10;
}

.frost {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 33%;
    height: 33%;
    background: radial-gradient(circle at 80% 80%, rgba(255,255,255,0.2) 0%, transparent 50%);
    border-radius: 0 0 50% 0;
    pointer-events: none;
    z-index: 10;
    filter: blur(1px);
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 25%, transparent 50%, rgba(255,255,255,0.05) 75%, rgba(255,255,255,0.15) 100%);
    pointer-events: none;
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
    z-index: 9;
}

.eyes-container {
    position: relative;
    width: 51%;
    height: 31%;
    z-index: 5;
    animation: breathe 2s ease-in-out infinite;
}

.pupil {
    transition: all 0.1s ease-out;
    z-index: 2;
}

.highlight {
    width: 43%;
    height: 43%;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 25%;
}

@media (max-width: 768px) {
    #landing-monster {
        transform-origin: bottom right;
        transform: scale(0.85);
    }
}
@keyframes breathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3%); }
}
@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.shoulder-left, .shoulder-right {
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#landing-monster.eating .shoulder-left {
    transform: translate(40%, -80%) scale(1.4);
}
#landing-monster.eating .shoulder-right {
    transform: translate(-40%, -80%) scale(1.4);
}

/* Medium height viewports (e.g. MacBook 13/14" viewports with browser chromes) */
@media (max-height: 780px) {
    /* Reduce layout padding & gaps */
    .landing-overlay {
        padding: 1.8vh 4vw 1.2vh;
        gap: 1vh;
    }
    
    /* Scale down top logo margin and size */
    .landing-logo {
        margin-bottom: clamp(6px, 1.2vh, 12px) !important;
        height: clamp(50px, 8vmin, 90px) !important;
    }
    
    /* Scale down logo fader margin and size */
    .rv-logo-fader {
        margin: 0 auto clamp(6px, 1.2vh, 10px) auto;
        height: clamp(20px, 3vw, 35px);
    }
    
    /* Scale down glass card vertical footprint */
    .glass-card {
        padding: clamp(10px, 1.8vh, 22px) clamp(10px, 2vw, 24px);
        gap: clamp(4px, 0.8vh, 10px);
    }
    
    /* Scale down card icons */
    .card-icon {
        font-size: clamp(1.5rem, 2.8vh, 2.8rem);
    }
    .pegel-pulse-ring,
    .wallet-pulse-ring {
        width: 42px;
        height: 42px;
    }
    .pegel-svg,
    .wallet-svg {
        width: 26px !important;
        height: 26px !important;
    }
    
    /* Slightly compress card text line-height */
    .card-desc {
        font-size: clamp(0.68rem, 0.85vw, 0.88rem);
        line-height: 1.35;
    }
    
    /* Scale down CTA buttons padding */
    .card-cta {
        padding: clamp(3px, 0.4vh, 6px) clamp(10px, 1.2vw, 20px);
    }
}