.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.fit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17,16,15,.14);
  background: rgba(255,255,255,.34);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}

.fit-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -100px;
  top: -110px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0;
  filter: blur(4px);
  transition: opacity .35s ease, transform .5s ease;
  pointer-events: none;
}

.fit-card:hover {
  border-color: rgba(17,16,15,.32);
  transform: translateY(-3px);
}

.fit-card button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 220px;
  padding: 28px 30px;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
}

.fit-card button small {
  color: #77716a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fit-card button strong {
  max-width: 440px;
  margin-top: 36px;
  font: 500 clamp(23px, 2.4vw, 34px) Unbounded, Manrope, sans-serif;
  letter-spacing: -.045em;
}

.fit-card button > span {
  width: 100%;
  margin-top: auto;
  padding: 32px 0 0;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #77716a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fit-card button > span::before { content: none; }

.fit-card button i {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(17,16,15,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--coral);
  font: 400 20px Manrope, sans-serif;
  transition: transform .3s ease, background .3s ease;
}

.fit-card.is-open {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  transform: none;
}

.fit-card.is-open::after { opacity: .8; transform: scale(1.1); }
.fit-card.is-open button { min-height: 180px; }
.fit-card.is-open button small,
.fit-card.is-open button > span { color: rgba(255,255,255,.52); }
.fit-card.is-open button i { transform: rotate(45deg); background: white; border-color: white; }

.fit-answer {
  position: relative;
  z-index: 1;
  padding: 0 30px 32px;
  animation: fitReveal .3s ease both;
}

.fit-answer p {
  max-width: 600px;
  margin: 0 0 25px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.75;
}

.fit-answer a { color: white; font-size: 12px; font-weight: 700; text-decoration: none; }
.fit-answer a b { color: var(--coral); margin-left: 8px; }
.fit-card button:focus-visible { outline: 2px solid var(--coral); outline-offset: -4px; }

@keyframes fitReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

@media (max-width: 700px) {
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card button { min-height: 185px; padding: 24px; }
  .fit-card button strong { margin-top: 28px; }
  .fit-answer { padding: 0 24px 28px; }
}
