/* ============================================================
   GLOBAL LAUNCH BAR + RESPONSIVE SAFETY NET
   Loaded by every page. The previous preview lock has been
   removed: buttons, links, and forms are no longer disabled.
   ============================================================ */

:root {
  --launch-bar-height: 48px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body.launch-announcement-active {
  padding-top: var(--launch-bar-height);
}

body.launch-announcement-active .navbar {
  top: var(--launch-bar-height) !important;
}

.launch-announcement {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000000;
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 8px 20px;
  background:
    linear-gradient(90deg, rgba(196, 154, 60, 0.18), transparent 28%, transparent 72%, rgba(196, 154, 60, 0.18)),
    #171310;
  color: #fffaf2;
  border-bottom: 1px solid rgba(196, 154, 60, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  font-family: 'Montserrat', system-ui, sans-serif;
}

.launch-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.launch-announcement__eyebrow {
  color: #d8b65e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-announcement__message {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.93rem;
  line-height: 1.25;
}

.launch-announcement__message strong {
  color: #f2d486;
  font-weight: 600;
}

.launch-announcement__countdown {
  color: rgba(255, 250, 242, .72);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.launch-announcement__cta {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 13px;
  color: #171310;
  background: #d5ad4d;
  border: 1px solid #edcf83;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.launch-announcement__cta:hover,
.launch-announcement__cta:focus-visible {
  color: #171310;
  background: #f0d27f;
  box-shadow: 0 6px 16px rgba(196, 154, 60, 0.24);
  transform: translateY(-1px);
}

.launch-announcement__cta:focus-visible {
  outline: 2px solid #fffaf2;
  outline-offset: 2px;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

p,
li,
blockquote,
h1,
h2,
h3,
h4 {
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  .launch-announcement {
    padding: 8px 12px;
  }

  .launch-announcement__inner {
    gap: 5px 9px;
  }

  .launch-announcement__eyebrow {
    width: 100%;
    font-size: 0.6rem;
  }

  .launch-announcement__message {
    font-size: 0.78rem;
  }

  .launch-announcement__countdown { width: 100%; font-size: .6rem; }

  .launch-announcement__cta {
    min-height: 28px;
    padding: 5px 10px;
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-announcement__cta {
    transition: none;
  }
}
