/* A short "How it works" block, shared by every free-tool landing page.
 * Its own file rather than a tm.css addition, so it needs no site-wide cache
 * version bump: the five tool pages link it directly at howto.css?v=1.
 * Uses tm.css's palette variables (--coral, --muted, --border, --card, --text),
 * which are already defined on :root by the time this loads. */

.howto {
  max-width: 62rem;
  margin: 2.2rem auto 1rem;
}
.howto > h2 {
  font-size: 1.15rem;
  margin: 0 0 1.1rem;
}

.howto-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 40rem) {
  .howto-steps { grid-template-columns: 1fr; gap: .7rem; }
}

.howto-steps > li {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: .7rem;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.05rem;
}

/* The numbered coin. The one spot of colour, because the order is the point. */
.howto-n {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font: 800 .95rem/1 'Nunito', sans-serif;
}

.howto-step b {
  display: block;
  font-size: .95rem;
  margin-bottom: .25rem;
}
.howto-step p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.55;
  color: var(--muted);
}

/* A quiet one-line footnote under the steps, for the "free, with an account"
 * kind of caveat that belongs here and nowhere louder. */
.howto-note {
  margin: .9rem 0 0;
  font-size: .84rem;
  color: var(--muted);
}

/* --- partner-firm trust strip --------------------------------------------- */
/* Shown under the sign-up panel on the novelty landing. Loaded via the same
 * howto.css the tool landings already pull in, so no extra request. */
.partners-strip {
  max-width: 62rem;
  margin: 1.6rem auto 0;
  text-align: center;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.partners-strip > h2 {
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .3rem;
}
.partners-strip > p {
  font-size: .87rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.4rem 2.2rem;
}
.partners-logos a {
  display: inline-block;
  line-height: 0;
  opacity: .85;
  transition: opacity .15s ease;
}
.partners-logos a:hover { opacity: 1; }
.partners-logos img {
  height: 62px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  border-radius: 8px;
}
