/* ============================================================
   STAGE SCREEN
   ============================================================ */
.screen--stage.active {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  min-height: 100vh;
  height: 100vh;
  padding: var(--nav-h) 2rem 0;
  position: relative;
  overflow: hidden;
}

.stage-bg-num {
  position: absolute;
  right: -1.5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 14vw, 200px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,194,23,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -6px;
  z-index: 0;
}

.stage-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem 5rem 0;
  position: relative;
  z-index: 1;
}

.stage-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.35s var(--ease-out) 0.05s forwards;
}

.stage-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.4s var(--ease-out) 0.1s forwards;
}

.stage-headline__line1 { color: var(--white); display: block; }
.stage-headline__line2 {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.22);
  display: block;
}
.stage-headline__line3 { color: var(--yellow); display: block; }

.stage-subline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.35s var(--ease-out) 0.15s forwards;
}

.stage-input-wrap {
  display: flex;
  max-width: 520px;
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.stage-input-field {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  height: 52px;
  padding: 0 1rem;
  font-size: 13px;
  font-family: var(--font-body);
  color: #fff;
  caret-color: var(--yellow);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  min-width: 0;
}

.stage-input-field::placeholder {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.28);
  font-family: var(--font-body);
}

.stage-input-field:hover { border-color: rgba(255,255,255,0.3); }
.stage-input-field:focus { border-color: rgba(255,255,255,0.4); }

.stage-btn {
  height: 52px;
  background: var(--yellow);
  border: none;
  padding: 0 1.5rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  position: relative;
  z-index: 3;
  opacity: 1;
}

.stage-btn:hover { background: var(--white); }

.stage-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeIn 0.35s var(--ease-out) 0.3s forwards;
}

.stage-pill-label {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.pill {
  background: none;
  border: 0.5px solid rgba(255,255,255,0.15);
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.15s;
}

.pill:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* SIDEBAR */
.stage-sidebar {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 2rem 0 5rem 1rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 0.4s var(--ease-out) 0.25s forwards;
}

.stage-clients {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 1rem;
}

.stage-clients__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.6rem;
}

.stage-clients__names {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.client-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.client-name--hi { color: var(--white); }
.client-name--dim { color: rgba(255,255,255,0.25); font-size: 12px; }

.stage-stats {
  display: flex;
  gap: 0;
  padding-top: 0.75rem;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  margin-top: 0.5rem;
}

.stage-stat {
  flex: 1;
  text-align: center;
}

.stage-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stage-stat__label {
  display: block;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.stage-award {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 0.875rem 1rem;
}

.stage-award__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}

.stage-award__text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.stage-award__highlight { color: var(--yellow); }


/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .stage-headline { font-size: clamp(36px, 6vw, 56px); }
  .stage-sidebar { width: 220px; }
}

@media (max-width: 900px) {
  .screen--stage.active {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding-bottom: 2rem;
  }
  .stage-sidebar { display: none; }
  .stage-content { max-width: 100%; padding-right: 0; padding-bottom: 2rem; }
}

@media (max-width: 600px) {
  .screen--stage.active { padding: var(--nav-h) 1.25rem 0; }
  .stage-headline { font-size: clamp(34px, 9vw, 48px); }
  .stage-input-wrap { max-width: 100%; }
}
