/* Guide details stay deliberately simple.
   The official shell comes from local-revamp.css. This file only owns the
   outcome list and the copyable prompt surface. */

.guide-page .guide-hero .lead {
  margin-bottom: 0;
}

.guide-outcomes {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.guide-outcomes li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 15px 0 15px 28px;
  font-size: 18px;
  line-height: 1.3;
}

.guide-outcomes li:last-child {
  border-bottom: 1px solid var(--line);
}

.guide-outcomes li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.guide-prompt .section-intro {
  margin-bottom: 22px;
}

.prompt-block {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #0a0a0a;
  color: #f4f4ed;
}

.prompt-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #333333;
  padding: 12px 14px;
}

.prompt-tag,
.copy-btn {
  font-family: var(--mono);
  font-size: 12px;
}

.prompt-tag {
  color: #9a9a94;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copy-btn {
  min-height: 38px;
  cursor: pointer;
  border: 1px solid #6c6c66;
  border-radius: 7px;
  background: transparent;
  color: var(--accent);
  padding: 0 12px;
}

.copy-btn:hover,
.copy-btn:focus-visible {
  border-color: var(--accent);
}

.copy-btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.copy-btn.copied {
  border-color: var(--accent);
  background: var(--accent);
  color: #08130c;
}

.prompt-block pre {
  max-height: min(70vh, 720px);
  margin: 0;
  overflow: auto;
  padding: 18px;
  scrollbar-color: #555555 #0a0a0a;
}

.prompt-block code {
  display: block;
  min-width: max-content;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  white-space: pre;
}

.guide-cta h2 {
  margin-bottom: 14px;
}

.guide-cta .actions {
  margin-top: 24px;
  margin-bottom: 0;
}

@media (max-width: 380px) {
  .guide-outcomes li {
    font-size: 17px;
  }

  .prompt-block code {
    font-size: 12px;
  }
}

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