/* ============================
   MEXER — Coming Soon
   ============================ */

:root {
    /* Brand colors zyrtare nga MEXER Guideline */
    --brand-green: #9AD900;
    --brand-green-deep: #88BE00;
    --brand-green-dark: #6B9700;
    --brand-green-soft: #E5F6BC;
    --brand-green-mist: #F5FBE3;

    --brand-blue: #30318C;
    --brand-blue-deep: #25266E;
    --brand-blue-soft: #6A6BB5;

    --text-dark: #30318C;
    --text-muted: #5A5BA8;
    --text-light: #8A8BC2;

    --white: #FFFFFF;
    --light-gray: #F6F8F4;
    --border: rgba(141, 198, 63, 0.18);

    --shadow-sm: 0 2px 8px rgba(74, 139, 31, 0.06);
    --shadow-md: 0 10px 30px rgba(74, 139, 31, 0.08);
    --shadow-lg: 0 30px 80px rgba(74, 139, 31, 0.12);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 999px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    /* Helvetica është typeface-i primar i MEXER-it */
    font-family: 'Helvetica Neue', Helvetica, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    min-height: 100dvh;
    color: var(--text-dark);
    background: linear-gradient(135deg, #FFFFFF 0%, #F4FAEC 45%, #E8F5D8 100%);
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================
   Animated Background
   ============================ */
.background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    will-change: transform;
}

.shape-1 {
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(141, 198, 63, 0.45) 0%, rgba(141, 198, 63, 0) 70%);
    top: -180px;
    left: -160px;
    animation: float-1 18s ease-in-out infinite;
}

.shape-2 {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(107, 181, 45, 0.35) 0%, rgba(107, 181, 45, 0) 70%);
    bottom: -140px;
    right: -120px;
    animation: float-2 22s ease-in-out infinite;
}

.shape-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(141, 198, 63, 0.3) 0%, rgba(141, 198, 63, 0) 70%);
    top: 45%;
    right: 10%;
    animation: float-3 20s ease-in-out infinite;
}

.shape-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(168, 215, 96, 0.25) 0%, rgba(168, 215, 96, 0) 70%);
    bottom: 20%;
    left: 8%;
    animation: float-4 24s ease-in-out infinite;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(141, 198, 63, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 198, 63, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(60px, 80px) scale(1.08); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-70px, -60px) scale(1.1); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-40px, 50px) scale(1.05); }
}

@keyframes float-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(50px, -40px) scale(1.07); }
}

/* ============================
   Layout
   ============================ */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================
   Card
   ============================ */
.card {
    width: 100%;
    max-width: 720px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 72px 56px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    animation: fade-in 0.9s var(--ease) 0.1s forwards;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(141, 198, 63, 0.15));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* ============================
   Logo
   ============================ */
.logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: fade-in 0.8s var(--ease) 0.25s forwards;
}

.logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(107, 181, 45, 0.22));
}

/* ============================
   Label
   ============================ */
.label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--brand-green-dark);
    background: var(--brand-green-soft);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(12px);
    animation: fade-in 0.8s var(--ease) 0.4s forwards;
}

/* ============================
   Headline
   ============================ */
.headline {
    font-size: clamp(1.85rem, 4vw + 0.5rem, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--brand-blue);
    margin-top: 8px;
    margin-bottom: 24px;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(16px);
    animation: fade-in 0.9s var(--ease) 0.4s forwards;
}

/* ============================
   Subtext
   ============================ */
.subtext {
    font-size: clamp(0.98rem, 0.5vw + 0.85rem, 1.15rem);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 52ch;
    margin: 0 auto 44px;
    opacity: 0;
    transform: translateY(16px);
    animation: fade-in 0.9s var(--ease) 0.55s forwards;
}

/* ============================
   Badge
   ============================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-deep) 100%);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    box-shadow:
        0 10px 24px rgba(107, 181, 45, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    animation: fade-in 0.9s var(--ease) 0.7s forwards;
}

.badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shine 3.5s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

@keyframes shine {
    0%   { left: -100%; }
    50%  { left: 100%; }
    100% { left: 100%; }
}

/* ============================
   Footer
   ============================ */
.footer {
    padding: 28px 24px 32px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fade-in 0.8s var(--ease) 0.85s forwards;
}

/* ============================
   Animations
   ============================ */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 768px) {
    .container {
        padding: 32px 18px;
    }

    .card {
        padding: 52px 28px;
        border-radius: var(--radius-md);
    }

    .logo {
        max-width: 220px;
    }

    .label {
        margin-bottom: 28px;
        font-size: 10.5px;
    }

    .headline {
        margin-bottom: 20px;
    }

    .subtext {
        margin-bottom: 36px;
    }

    .shape-1, .shape-2 {
        width: 360px;
        height: 360px;
    }

    .shape-3, .shape-4 {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 44px 22px;
    }

    .logo {
        max-width: 180px;
    }

    .logo-wrap {
        margin-bottom: 22px;
    }

    .badge {
        padding: 12px 24px;
        font-size: 13px;
    }

    .footer {
        font-size: 12px;
    }
}

/* ============================
   Accessibility
   ============================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .card,
    .logo-wrap,
    .label,
    .headline,
    .subtext,
    .badge,
    .footer {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-color-scheme: dark) {
    /* Keep light brand theme even in dark mode for retail consistency */
}
