/* Zeta Jurist launch screen — gold headline/logo; always dark regardless of global data-theme */
.wf-launch {
  /* Local tokens override inherited light theme from :root */
  --wf-color-bg: #070604;
  --wf-color-text: #ded4c6;
  --wf-color-text-muted: rgba(222, 212, 198, 0.72);
  --wf-color-heading: #c0a574;
  --wf-body-gradient-end: #100e0c;
  --wf-launch-glow-1: rgba(192, 165, 116, 0.1);
  --wf-launch-glow-2: rgba(171, 149, 110, 0.1);
  --wf-launch-cta-border: rgba(192, 165, 116, 0.45);
  --wf-network-stroke: rgba(192, 165, 116, 0.32);
  --wf-network-node: #c0a574;
  --wf-network-halo: rgba(192, 165, 116, 0.14);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--wf-color-bg, #070604);
  color: var(--wf-color-text, #ded4c6);
}

.wf-launch-bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, var(--wf-launch-glow-1, rgba(192, 165, 116, 0.1)) 0%, transparent 32%),
    radial-gradient(circle at 80% 70%, var(--wf-launch-glow-2, rgba(171, 149, 110, 0.1)) 0%, transparent 28%),
    linear-gradient(to bottom, var(--wf-color-bg, #070604), var(--wf-body-gradient-end, #100e0c));
}

.wf-launch-svg-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

.wf-launch-svg-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wf-launch-lines line {
  stroke: var(--wf-network-stroke, rgba(192, 165, 116, 0.28));
  stroke-opacity: 0.9;
  stroke-width: 1.2;
}

/* Halo (odd), node dot (even) in DOM order */
.wf-launch-nodes circle:nth-child(odd) {
  fill: var(--wf-network-halo, rgba(192, 165, 116, 0.14));
  opacity: 0.85;
}

.wf-launch-nodes circle:nth-child(even) {
  fill: var(--wf-network-node, #c0a574);
  opacity: 1;
}

.wf-launch-veil {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.wf-launch-inner {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}

.wf-launch-brand {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wf-launch-brand-mark {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #c0a574;
}

.wf-launch-brand-name {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #c0a574;
}

.wf-launch-headline {
  max-width: 56rem;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #c0a574;
}

.wf-launch-sub {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(222, 212, 198, 0.78);
}

.wf-launch-rule {
  margin-top: 2.5rem;
  height: 4px;
  width: 8rem;
  border-radius: 9999px;
  background: linear-gradient(to right, transparent, #c0a574, transparent);
  opacity: 0.8;
}

.wf-launch-cta {
  margin-top: 2rem;
  padding: 14px 28px;
  border-radius: 9999px;
  border: 1px solid var(--wf-launch-cta-border, rgba(192, 165, 116, 0.45));
  background: rgba(192, 165, 116, 0.12);
  color: #c0a574;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.wf-launch-cta:hover {
  background: rgba(192, 165, 116, 0.22);
  border-color: color-mix(in srgb, var(--wf-firm-accent, #c0a574) 40%, rgba(192, 165, 116, 0.65));
}

.wf-launch-cta:focus-visible {
  outline: 2px solid #c0a574;
  outline-offset: 3px;
}

#wf-app.is-behind-launch {
  display: none;
}
