/* Sample report — guided tour page */
body.sample-report-page main {
  padding-bottom: 2.5rem;
}

.sample-hero {
  background: linear-gradient(160deg, #071525 0%, #0b2545 55%, #0f3460 100%);
  color: #fff;
  padding: 2.5rem 0 2rem;
}

.sample-hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7ecdb8;
  margin: 0 0 0.65rem;
}

.sample-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  line-height: 1.2;
  max-width: 22ch;
}

.sample-hero-lead {
  margin: 0 0 1.25rem;
  max-width: 52ch;
  color: #c8d6e8;
  line-height: 1.6;
  font-size: 1rem;
}

.sample-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.sample-report-page .demo-results-v2 {
  padding-top: 0.5rem;
}

.sample-report-banner {
  margin-bottom: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  background: #fff8e6;
  border: 1px solid #f0d78c;
  font-size: 0.85rem;
  color: #6d4c00;
  line-height: 1.45;
}

.sample-tour {
  margin: 0 0 1.75rem;
}

.sample-tour h2 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.sample-tour-intro {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 58ch;
}

.sample-tour-steps {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 640px) {
  .sample-tour-steps {
    grid-template-columns: 1fr 1fr;
  }
}

.sample-tour-step {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: #fafbfc;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.sample-tour-step:hover {
  border-color: #b8d4cc;
  background: #f4faf7;
}

.sample-tour-step.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  background: #f0f7f4;
}

.sample-tour-step-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.sample-tour-step-title {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.sample-tour-step-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.sample-tour-target {
  scroll-margin-top: 5.5rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.dr-c-tabpanel.sample-tour-target {
  border-radius: 0 0 6px 6px;
}

@keyframes sample-tour-flash {
  0% {
    box-shadow: inset 0 0 0 0 rgba(13, 148, 136, 0);
    background-color: transparent;
  }
  14% {
    box-shadow: inset 0 0 0 4px rgba(13, 148, 136, 0.95);
    background-color: rgba(13, 148, 136, 0.16);
  }
  40% {
    box-shadow: inset 0 0 0 3px rgba(13, 148, 136, 0.75);
    background-color: rgba(13, 148, 136, 0.1);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(13, 148, 136, 0);
    background-color: transparent;
  }
}

.sample-tour-target.is-highlight {
  position: relative;
  z-index: 2;
  animation: sample-tour-flash 2.4s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .sample-tour-target.is-highlight {
    animation: none;
    box-shadow: inset 0 0 0 3px rgba(13, 148, 136, 0.85);
    background-color: rgba(13, 148, 136, 0.12);
  }
}

.sample-report-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.sample-report-cta p {
  margin: 0;
  flex: 1 1 100%;
  font-size: 0.92rem;
  color: var(--text-soft);
  max-width: 42ch;
}

@media (min-width: 640px) {
  .sample-report-cta p {
    flex: 1 1 auto;
    margin-right: 1rem;
  }
}
