/* HEADER */
header {
  background: var(--dark);
  border-bottom: 3px solid var(--gold);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--white);
}
.logo span { color: var(--gold); }

.header-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  margin-left: 8px;
}

.progress-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-text {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.progress-bar {
  width: 140px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* MAIN CONTAINER */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* SCREENS */
.screen { display: none; }
.screen.active { display: block; }

/* SECTION LABEL */
.section-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}