    :root {
      --laza-blue: #0a6bf0;
      --laza-blue-2: #2aa7ff;
      --laza-sea-1: #f7fbff;
      --laza-sea-2: #e9f5ff;
      --laza-sea-3: #cfeaff;
      --card-bg: rgba(255,255,255,.86);
      --grid-color: rgba(10,107,240,.06);
    }

    html, body { height: 100%; }
    body {
      margin: 0;
      background: linear-gradient(180deg, var(--laza-sea-1) 0%, var(--laza-sea-2) 45%, var(--laza-sea-3) 100%);
      font-feature-settings: "case" 1, "ss01" 1;
    }
.logo-merch {
    bottom: 0;
    left: 0;
    background-image: url('/static/merch.webp');
    background-repeat: no-repeat;
    width: 100%;
    min-height: 292px;
    background-size: 50%;
    background-position: left;
    opacity: .6;
}
    .bg-grid::before {
      content: "";
      position: fixed; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
      background-size: 44px 44px, 44px 44px;
      mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.35) 20%, rgba(0,0,0,.5) 60%, transparent 100%);
    }

    .wave {
      position: fixed; left: 0; right: 0; bottom: -1px; height: 160px; z-index: 0;
    }

    .hero {
      position: relative; z-index: 1;
      min-height: 100dvh;
      display: grid; place-items: center; padding: 48px 16px;
    }

    .card {
      background: var(--card-bg);
      backdrop-filter: saturate(1.2) blur(8px);
      border-radius: 20px;
      box-shadow: 0 14px 40px rgba(10,107,240,.15);
      border: 1px solid rgba(10,107,240,.12);
    }

 .brand { display: flex; align-items: center; gap: 14px; justify-content: center; padding: 24px 0;  border-bottom: 1px solid rgba(10,107,240,.12); }
    .brand-mark {
      width: 100px; height: 100px; border-radius: 0px;
/*       background: linear-gradient(135deg, var(--laza-blue), var(--laza-blue-2)); */
      display: grid; place-items: center; color: #fff; font-weight: 800;
      letter-spacing: .5px;
      background-image: url('/static/logo_300.webp');
      background-size: contain;
      background-repeat: no-repeat;
    }
    .brand-name { font-weight: 800; letter-spacing: .4px; }
    .uk-text-meta.brand-desc {font-size: 1.2rem;}
    .mascot {
/*       max-width: 140px;  */
width: 17vw; height: auto; object-fit: contain;
      filter: drop-shadow(0 10px 18px rgba(10,107,240,.18));
    }

    .uk-button-primary { background-color: var(--laza-blue); }
    .uk-button-primary:hover { filter: brightness(1.05); }

    footer { color: rgba(0,0,0,.55); }
    .uk-text-meta a { color: inherit; text-decoration: underline dotted; }

    @media (max-width: 450px) {
      .brand-mark { width: 80px; height: 80px; }
      .mascot {
          position: absolute;
          z-index: 1;
          width: 34vw;
          right: 10px;
          top: 0;
      }

         position: absolute !important;
         top: 40px;
         bottom: auto;
         background-size: 100%;
         opacity: .2;

    }

@media (min-width: 450px) and (max-width: 1025px) {
   .mascot {
       max-width: 54vw;
       width: 279px;
   }
   .logo-merch {
      bottom:unset;
      background-size: 100%;
      top: 53vh;
      opacity: .5;
   }
}