/* The free-proposal entry directly under each page's hero. Placed by the rl-flowstart
   injector; built only on the colour variables and classes every page already carries. */
.rl-flowstart {
  padding: 40px 0;
  background: var(--bg-section);
}
.rl-flowstart__card {
  max-width: 880px;
  margin: 0 auto;
  padding: 32px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.rl-flowstart__eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.rl-flowstart__title {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
.rl-flowstart__sub {
  margin: 0 0 20px;
  font-size: 16px;
  color: var(--text-muted);
}
.rl-flowstart__prompt {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.rl-flowstart__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rl-flowstart__option {
  display: inline-block;
  padding: 12px 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 8px;
  background: var(--bg);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.rl-flowstart__option:hover,
.rl-flowstart__option:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.rl-flowstart__start {
  margin-top: 4px;
}
@media (max-width: 640px) {
  .rl-flowstart {
    padding: 28px 0;
  }
  .rl-flowstart__card {
    padding: 24px 18px;
  }
  .rl-flowstart__options {
    flex-direction: column;
    align-items: stretch;
  }
  .rl-flowstart__option {
    display: block;
    text-align: center;
  }
  .rl-flowstart__start {
    display: block;
  }
}

/* The proposal button added to heroes that had none. It follows the hero's own text alignment
   (a centred hero gets a centred button) and uses the same red as the proposal button Connor put on
   his other heroes, because some pages style .btn-primary in navy, which disappears on a dark hero. */
.rl-hero-cta {
  display: block;
  margin-top: 28px;
  margin-bottom: 12px;
}
.rl-hero-cta .btn-primary {
  display: inline-block;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.rl-hero-cta .btn-primary:hover,
.rl-hero-cta .btn-primary:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}
