/* ============================================================
   cover.css — Full-screen cover / intro panel
   Client-forward layout: client logo/name prominent,
   broker branding at bottom
   ============================================================ */

.cover {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.cover--dismissed {
  opacity: 0;
  pointer-events: none;
}

.cover__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.65);
}

.cover__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 92, 0.82),
    rgba(26, 58, 92, 0.55)
  );
}

.cover__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 640px;
  padding: 40px 24px;
}

/* --- Client logo (large, prominent at top) --- */
.cover__client-logo-wrap {
  margin-bottom: 16px;
}

.cover__client-logo {
  height: 70px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

/* --- Client name (large text, primary focus) --- */
.cover__client-name {
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 20px;
}

/* --- Divider line --- */
.cover__divider {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 auto 20px;
}

/* --- Title --- */
.cover__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

/* --- Subtitle --- */
.cover__subtitle {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* --- Meta info (date, prepared by) --- */
.cover__meta {
  font-size: 13px;
  opacity: 0.65;
  margin-bottom: 28px;
  line-height: 1.8;
}

/* --- CTA button --- */
.cover__cta {
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.15s;
  font-family: var(--font-family);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.cover__cta:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.8);
}

.cover__cta:active {
  transform: scale(0.96);
}

/* --- Footer: "Presented by" broker branding --- */
.cover__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0.55;
  transition: opacity 0.3s;
}

.cover__footer:hover {
  opacity: 0.8;
}

.cover__presented-by {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cover__broker-logo {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.cover__broker-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .cover__content {
    padding: 24px 16px;
  }

  .cover__client-logo {
    height: 50px;
  }

  .cover__broker-logo {
    height: 22px;
  }

  .cover__cta {
    padding: 12px 28px;
    font-size: 14px;
  }
}
