/* ==========================================================================
   Launch-Week "Grand Opening" Intro Overlay
   index.html only. Fully inert unless assets/js/launch-intro.js adds
   `li-intro-active` to <html> (only happens when INTRO_ENABLED = true there).
   To fully remove after the launch window: delete this file, delete
   assets/js/launch-intro.js, delete the <link>/<script> includes in
   index.html, and delete the LAUNCH INTRO OVERLAY markup block.
   ========================================================================== */

.li-overlay {
  display: none; /* default / no-JS / flag-off state -- must stay the only unguarded rule */
}

html.li-intro-active {
  overflow: hidden;
}

html.li-intro-active .li-overlay {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 1000000;
  overflow: hidden;
}

.li-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--tp-theme-1);
}
.li-curtain-left {
  left: 0;
}
.li-curtain-right {
  right: 0;
}

.li-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: 24px;
}

.li-blessing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.li-blessing-photo {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--tp-brand-offwhite);
}
.li-blessing-name {
  margin: 0;
  color: var(--tp-brand-offwhite);
  opacity: 0.85;
  font-family: var(--tp-ff-body);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.li-mono {
  width: 130px;
  height: auto;
  position: relative;
}
.li-mono-stroke,
.li-mono-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.li-mono-stroke .li-shape {
  fill: none;
  stroke: var(--tp-brand-offwhite);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}
.li-mono-fill .li-shape {
  fill: var(--tp-brand-offwhite);
  stroke: none;
}
.li-mono-fill {
  opacity: 0;
}

.li-blueprint {
  width: 280px;
  height: auto;
  max-width: 60vw;
}
.li-blueprint-line {
  stroke: var(--tp-brand-offwhite);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  fill: none;
}
.li-blueprint-tick {
  stroke: var(--tp-brand-offwhite);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  opacity: 0;
}

.li-wordmark {
  width: 200px;
  height: auto;
}

.li-tagline {
  color: var(--tp-brand-offwhite);
  font-family: var(--tp-ff-body);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.li-enter-btn {
  margin-top: 8px;
  border: none;
  cursor: pointer;
}

@media (max-width: 575px) {
  .li-blessing-photo { width: 130px; height: 130px; }
  .li-mono { width: 100px; }
  .li-blueprint { width: 220px; }
  .li-wordmark { width: 160px; }
  .li-tagline { font-size: 13px; }
}
