/* Nästan ingen stil alls — svart text, vit botten, en centrerad spalt. */
body {
  margin: 0 auto;
  padding: 3rem 1.25rem 6rem;
  max-width: 42rem;
}
h1,
h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}
.brand {
  margin-bottom: 4rem;
}
.muted {
  font-size: 0.9em;
}

/* Valen: ren text med understrykning, i en kolumn. */
#choices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 2rem;
}
.choice {
  font: inherit;
  font-size: 1.25rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--fg);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.choice:hover {
  text-decoration-thickness: 2px;
}

/* Efter val: frågan och de andra valen försvinner, valet blir rubrik i mitten. */
.picked #ask h1 {
  display: none;
}
.picked .choice:not(.selected) {
  display: none;
}
.picked #choices {
  align-items: center;
  margin-top: 0;
}
.selected {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: default;
}

#pitch-text {
  white-space: pre-line;
  margin-top: 2rem;
}

#cta {
  opacity: 0;
  transition: opacity 0.6s ease;
}
#cta.visible {
  opacity: 1;
}
#cta h2 {
  margin-top: 2.5rem;
}
.phone {
  font-size: 1.5rem;
  font-weight: 600;
}

.linklike {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

@media (prefers-reduced-motion: reduce) {
  #cta {
    transition: none;
  }
}
