/* GoalPlate web-to-app funnel */
.funnel-progress {
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}

.funnel-progress span {
  display: block;
  height: 100%;
  background: var(--accent);
  transition: width 0.25s ease;
}

.funnel-step-label {
  color: var(--dim);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quiz-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  margin-bottom: 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.quiz-option:hover,
.quiz-option.on {
  border-color: var(--accent);
  background: rgba(0, 255, 133, 0.08);
  color: var(--accent);
}

.quiz-fields {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.quiz-fields label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.quiz-fields input,
.quiz-fields select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.quiz-nav .btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.result-hero {
  background: linear-gradient(165deg, rgba(0, 255, 133, 0.1), rgba(26, 26, 26, 0.95));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

@media (max-width: 560px) {
  .result-grid {
    grid-template-columns: 1fr;
  }
}

.result-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.result-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.result-stat span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.result-callout {
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  margin: 20px 0;
  background: rgba(0, 255, 133, 0.06);
  border-radius: 0 12px 12px 0;
}

.result-callout p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.reality-banner {
  text-align: center;
  padding: 48px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 40px 0;
}

.reality-banner h2 {
  max-width: 20ch;
  margin: 0 auto 12px;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.problem-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}

.problem-list li::before {
  content: '→';
  color: var(--accent);
  margin-right: 10px;
  font-weight: 900;
}

.funnel-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.funnel-cta-stack .hint {
  color: var(--dim);
  font-size: 0.85rem;
  text-align: center;
}

.download-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.download-steps {
  text-align: left;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.download-steps li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--muted);
}

.download-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

a.guide-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.guide-card:hover {
  border-color: var(--accent);
}

a.guide-card .eyebrow {
  margin-bottom: 8px;
}

.advertorial {
  max-width: 680px;
  margin: 0 auto;
}

.advertorial-kicker {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.advertorial h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.advertorial-dek {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 12px;
}

.advertorial-byline {
  color: var(--dim);
  font-size: 0.85rem;
  margin-bottom: 28px;
}

.advertorial-section {
  margin: 0 0 28px;
}

.advertorial-section h2 {
  font-size: 1.25rem;
  margin: 0 0 8px;
}

.advertorial-section p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

.advertorial-end {
  margin-top: 8px;
  padding-top: 8px;
}
