/* Inline style block 1 from index.html */
body.is-launching {
    overflow: hidden;
  }

  .launch-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background:
      radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 34%),
      linear-gradient(135deg, #001f0f 0%, #06391f 48%, #001207 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.85s ease, visibility 0.85s ease;
  }

  .launch-splash.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .launch-logo-wrap {
    display: grid;
    place-items: center;
    width: min(52vw, 380px);
    aspect-ratio: 1;
    padding: clamp(22px, 5vw, 46px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
    animation: launchLogoIn 0.9s ease both;
  }


  .launch-content {
    display: grid;
    place-items: center;
    gap: clamp(78px, 13vh, 132px);
  }

  .launch-enter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: min(54vw, 176px);
    min-height: 38px;
    padding: 9px 15px;
    border: 1px solid rgba(178, 163, 89, 0.72);
    background: rgba(5, 48, 27, 0.34);
    color: #cdbb6b;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: clamp(13px, 2.5vw, 15px);
    font-weight: 800;
    letter-spacing: 5px;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  }

  .launch-enter::after {
    content: '→';
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    transform: translateY(-1px);
  }

  .launch-enter.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .launch-enter:hover {
    border-color: #ffd640;
    background: #ffd640;
    color: #ffffff;
  }
  .launch-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.38));
  }

  @keyframes launchLogoIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (max-width: 700px) {
    .launch-logo-wrap {
      width: min(74vw, 280px);
      padding: 26px;
    }
  }
