/* —— Home: hero em duas colunas —— */

.homeHero {
  position: relative;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding: clamp(0.25rem, 2vw, 1rem) 0;
}

.homeHero::before {
  content: "";
  position: absolute;
  inset: -8% -6% auto -6%;
  height: 70%;
  background: radial-gradient(
      ellipse 90% 80% at 100% 20%,
      rgba(234, 140, 85, 0.09),
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 60% at 0% 40%,
      rgba(45, 212, 191, 0.08),
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.homeHero__content,
.homeHero__visual,
.homeHero__matrix {
  position: relative;
  z-index: 1;
}

.homeHero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.homeHero__appShot {
  width: 100%;
  max-width: min(100%, 540px);
  height: auto;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (min-width: 960px) {
  .homeHero {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .homeHero__appShot {
    max-width: 100%;
  }
}

.homeHero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1.1rem;
  max-width: 22ch;
}

.homeHero__gradient {
  background: linear-gradient(
    105deg,
    var(--home-teal),
    var(--home-coral)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.homeHero__lead {
  margin: 0 0 1.35rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38rem;
}

.homeHero__lead strong {
  color: var(--text);
  font-weight: 600;
}

.homeFeatures {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.homeFeatures__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(232, 238, 244, 0.88);
}

.homeFeatures__icon {
  flex: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.btn--primary.btn--hero {
  margin-top: 0.25rem;
  padding: 1rem 1.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(
    125deg,
    #14b8a6,
    var(--home-orange)
  );
  box-shadow:
    0 12px 36px rgba(234, 140, 85, 0.22),
    0 8px 28px rgba(20, 184, 166, 0.18);
}

.btn--hero:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 44px rgba(234, 140, 85, 0.28),
    0 10px 32px rgba(20, 184, 166, 0.22);
}

.homeHero__matrix {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
      165deg,
      rgba(26, 34, 45, 0.92),
      rgba(15, 20, 25, 0.55)
    ),
    radial-gradient(
      120% 80% at 80% 0%,
      rgba(45, 212, 191, 0.07),
      transparent 55%
    );
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1.1rem 1.35rem;
}

.homeMatrix__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

.homeMatrix__lead {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 960px) {
  .homeMatrix__title,
  .homeMatrix__lead {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .homeMatrix__lead {
    max-width: none;
  }
}

.homeHero__matrixChart {
  margin: 0 -0.15rem;
}

.homeHero__matrixChart .pmc {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.homeHero__matrixChart .pmc__grid {
  grid-template-rows: repeat(3, minmax(5rem, 1fr));
  padding: 0.4rem 0.35rem 0.3rem 0.25rem;
}

.homeHero__matrixChart .pmc__cell {
  padding: 0.45rem 0.25rem;
}

.homeHero__matrixChart .pmc__cellEmoji {
  font-size: 1.4rem;
}

.homeHero__matrixChart .pmc__cellName {
  font-size: 0.78rem;
}

.homeHero__matrixChart .pmc__cellConcept {
  font-size: 0.52rem;
}

@media (min-width: 520px) {
  .homeHero__matrixChart .pmc__cellEmoji {
    font-size: 1.55rem;
  }

  .homeHero__matrixChart .pmc__cellName {
    font-size: 0.82rem;
  }

  .homeHero__matrixChart .pmc__cellConcept {
    font-size: 0.56rem;
  }
}

.homeHero__matrixChart .pmc__cellMystery {
  font-size: 1.85rem;
}

@media (min-width: 520px) {
  .homeHero__matrixChart .pmc__cellMystery {
    font-size: 2.05rem;
  }
}

.homeProse {
  margin-top: 0.5rem;
}

.homeFootnote {
  margin: 2.5rem 0 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(154, 168, 182, 0.75);
}

.cardGrid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .cardGrid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.infoCard {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}

.infoCard--accent {
  background: linear-gradient(
    145deg,
    var(--surface),
    rgba(61, 156, 245, 0.06)
  );
}

.infoCard__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
}

.infoCard__text {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.infoCard__text.muted {
  font-style: italic;
}

.metaRow {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.metaRow:last-child {
  margin-bottom: 0;
}

.metaBadge {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-strong);
}

.metaValue {
  color: var(--text);
  font-weight: 500;
}

/* —— Sales: dor, ponte, outcomes, CTA —— */

.salesPain {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: center;
  margin: clamp(2rem, 5vw, 3rem) 0;
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.5rem);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .salesPain {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    gap: clamp(1.5rem, 3vw, 2.25rem);
  }
}

.salesPain__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.salesPain__img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (min-width: 768px) {
  .salesPain__img {
    max-width: 100%;
  }
}

.salesPain__body {
  min-width: 0;
}

.salesPain__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 1.1rem;
  line-height: 1.25;
}

.painList {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.painList__item {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(232, 238, 244, 0.92);
}

.painList__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-coral);
  opacity: 0.85;
}

.salesPain__close {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.salesPain__close strong {
  color: var(--text);
  font-weight: 600;
}

.salesBridge {
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 clamp(2rem, 5vw, 2.75rem);
  padding: clamp(1.35rem, 3vw, 1.65rem) clamp(1.25rem, 3vw, 1.5rem);
  max-width: none;
  background: linear-gradient(
      135deg,
      rgba(26, 34, 45, 0.95),
      rgba(35, 45, 58, 0.88)
    ),
    radial-gradient(
      90% 70% at 0% 50%,
      rgba(45, 212, 191, 0.07),
      transparent 55%
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--home-teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.salesBridge__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--home-teal);
}

.salesBridge__content p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(232, 238, 244, 0.92);
}

.salesBridge__highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 0.9rem;
  background: rgba(45, 212, 191, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: var(--radius-sm);
}

.salesBridge__check {
  flex: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.salesBridge__highlight p {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.salesBridge__content strong {
  color: var(--text);
  font-weight: 600;
}

/* —— Como funciona: texto + matriz —— */

/* —— Prova social —— */

.socialProof {
  margin: clamp(2rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 3.5rem);
}

.socialProof__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-teal);
}

.socialProof__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 1.25rem;
  line-height: 1.25;
}

.socialProof__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 56rem) {
  .socialProof__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.testimonialCard {
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 1.5rem);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    165deg,
    rgba(35, 45, 58, 0.9),
    rgba(20, 26, 34, 0.75)
  );
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.testimonialCard:hover {
  border-color: rgba(45, 212, 191, 0.22);
  transform: translateY(-2px);
}

.testimonialCard--featured {
  background: linear-gradient(
    165deg,
    rgba(45, 212, 191, 0.1),
    rgba(234, 140, 85, 0.06) 55%,
    rgba(20, 26, 34, 0.8)
  );
  border-color: rgba(45, 212, 191, 0.2);
}

.testimonialCard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.testimonialCard__stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
}

.testimonialCard__star {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  background: #e8b84a;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.testimonialCard--featured .testimonialCard__star {
  background: #f0c96a;
}

.testimonialCard__quote {
  margin: 0;
  flex: 1;
}

.testimonialCard__quote p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(232, 238, 244, 0.92);
}

.testimonialCard__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonialCard__avatar {
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  color: var(--muted);
}

.testimonialCard__avatar svg {
  width: 1.35rem;
  height: 1.35rem;
  opacity: 0.75;
}

.testimonialCard__info {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.testimonialCard__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.testimonialCard__profile {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--home-teal);
}

.homeHow {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  margin: clamp(2.5rem, 6vw, 3.5rem) 0;
  padding-top: clamp(2rem, 5vw, 2.75rem);
  border-top: 1px solid var(--border);
}

@media (min-width: 960px) {
  .homeHow {
    grid-template-columns: minmax(0, 38%) minmax(0, 62%);
    align-items: start;
    gap: clamp(2rem, 4vw, 3rem);
  }
}

.homeHow__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.homeHow__text {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

.homeHow__text:last-child {
  margin-bottom: 0;
}

.homeHow__text strong {
  color: var(--text);
  font-weight: 600;
}

.homeHow__cta {
  margin-top: 1.1rem;
}

.offerCard__cta {
  margin-top: 1.15rem;
  align-self: flex-start;
}

.homeHow .homeHero__matrix {
  margin: 0;
}

.outcomeList {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.outcomeList li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.outcomeList li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--home-teal);
  font-weight: 700;
  font-size: 0.85rem;
}

.infoCard__loss {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--muted);
}

.ctaBlock {
  text-align: center;
  margin: 0 0 1rem;
  padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 1.5rem);
  background: linear-gradient(
      165deg,
      rgba(26, 34, 45, 0.95),
      rgba(15, 20, 25, 0.6)
    ),
    radial-gradient(
      100% 80% at 50% 0%,
      rgba(45, 212, 191, 0.08),
      transparent 55%
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

.ctaBlock__lead {
  margin: 0 auto 1.35rem;
  max-width: min(42rem, 92vw);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  text-wrap: balance;
}

.ctaHint {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.homeHero__ctaHint {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 26rem;
}

/* —— Oferta: grátis vs relatório —— */

.offerClarity {
  margin: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.offerClarity__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.offerClarity__lead {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 40rem;
}

.offerGrid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .offerGrid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}

.offerCard {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.25rem 1.35rem 1.35rem;
  box-shadow: var(--shadow);
}

.offerCard--free {
  background: var(--bg-elevated);
}

.offerCard--paid {
  background: linear-gradient(
    145deg,
    var(--surface),
    rgba(61, 156, 245, 0.06)
  );
}

.offerCard__badge {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offerCard--free .offerCard__badge {
  color: var(--home-teal);
}

.offerCard--free .offerCard__priceValue {
  color: var(--home-teal);
}

.offerCard--paid .offerCard__badge {
  color: var(--accent-strong);
}

.offerCard__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  line-height: 1.25;
}

.offerCard__price {
  margin: -0.25rem 0 0.85rem;
}

.offerCard__priceValue {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.offerCard__priceNote {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.offerCard__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.offerCard__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(232, 238, 244, 0.9);
}

.offerCard--free .offerCard__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--home-teal);
  font-weight: 700;
  font-size: 0.8rem;
}

.offerCard--paid .offerCard__list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.offerCard__footnote {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  line-height: 1.45;
  font-style: italic;
  color: var(--muted);
}

/* —— FAQ —— */

.faq {
  margin: clamp(2rem, 5vw, 3rem) 0 clamp(1.5rem, 4vw, 2rem);
  padding-top: clamp(2rem, 5vw, 2.75rem);
  border-top: 1px solid var(--border);
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 1.25rem;
  line-height: 1.25;
  text-align: center;
}

.faq__list {
  max-width: 40rem;
  margin: 0 auto;
}

.faq__item {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  padding: 1rem 2rem 1rem 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1;
}

.faq__item[open] .faq__question {
  color: var(--home-teal);
}

.faq__item[open] .faq__question::after {
  content: "−";
  color: var(--home-teal);
}

.faq__answer {
  margin: 0 0 1rem;
  padding: 0 0 0.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

/* —— Rodapé —— */

.siteFooter {
  margin-top: auto;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem)
    clamp(1.75rem, 4vw, 2.25rem);
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.siteFooter__inner {
  max-width: var(--home-max, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .siteFooter__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    text-align: left;
  }

  .siteFooter__brand {
    grid-column: 1;
    grid-row: 1;
  }

  .siteFooter__nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .siteFooter__copy {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
  }
}

.siteFooter__logoLink {
  display: inline-block;
  line-height: 0;
}

.siteFooter__logo {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
}

.siteFooter__tagline {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(154, 168, 182, 0.85);
}

.siteFooter__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

@media (min-width: 640px) {
  .siteFooter__nav {
    justify-content: flex-end;
  }
}

.siteFooter__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.siteFooter__nav a:hover {
  color: var(--text);
}

.siteFooter__copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(154, 168, 182, 0.7);
}
