/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
.free-tools__intro {
  max-width: 42.5rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.0625rem;
  text-wrap: pretty;
}
.free-tools__group {
  margin-bottom: 3.75rem;
}
.free-tools__group--title {
  margin-bottom: 0.25rem;
  text-wrap: balance;
}
.free-tools__group--text {
  max-width: 42.5rem;
  margin-bottom: 1.5rem;
  color: #343a40;
  font-size: 0.9375rem;
}
.free-tools__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.free-tools__card {
  display: flex;
  flex-direction: column;
  padding: 1.625rem;
  border-radius: 1.25rem;
  background: #f3f0ff;
  color: #212529;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.free-tools__card:hover, .free-tools__card:focus-visible {
  transform: translateY(-0.25rem);
  background: #e5dbff;
  box-shadow: 0 0.875rem 2rem rgba(112, 72, 232, 0.18);
}
.free-tools__card--icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.8125rem;
  background: #fff;
}
.free-tools__card--icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #7048e8;
  color: #7048e8;
}
.free-tools__card--body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.free-tools__card--tag {
  align-self: flex-start;
  margin-bottom: 0.625rem;
  padding: 0.25rem 0.75rem;
  border-radius: 6.25rem;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.8125rem;
  font-weight: 600;
}
.free-tools__card--title {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.free-tools__card--desc {
  flex: 1;
  margin-bottom: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #343a40;
}
.free-tools__card--points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.375rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
@media (min-width: 62em) {
  .free-tools__card--points {
    grid-template-columns: 1fr 1fr;
  }
}
.free-tools__card--points li {
  position: relative;
  padding-left: 1.25rem;
}
.free-tools__card--points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5625rem;
  height: 0.3125rem;
  border-left: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  transform: rotate(-45deg);
}
.free-tools__card--proof {
  margin: -0.5rem 0 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.free-tools__card--go {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #7048e8;
}
.free-tools__card--arrow {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.free-tools__card:hover .free-tools__card--arrow, .free-tools__card:focus-visible .free-tools__card--arrow {
  transform: translateX(0.3125rem);
}
.free-tools__card--featured {
  background: #7048e8;
  color: #fff;
}
@media (min-width: 62em) {
  .free-tools__card--featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 2.125rem;
  }
  .free-tools__card--featured .free-tools__card--title {
    font-size: 1.75rem;
  }
  .free-tools__card--featured .free-tools__card--desc {
    font-size: 1.125rem;
    line-height: 1.55;
    max-width: 52ch;
  }
  .free-tools__card--featured .free-tools__card--points {
    gap: 0.8125rem 1.875rem;
    font-size: 1rem;
  }
}
.free-tools__card--featured .free-tools__card--icon {
  background: rgba(255, 255, 255, 0.16);
}
.free-tools__card--featured .free-tools__card--icon svg {
  fill: #fff;
  color: #fff;
}
.free-tools__card--featured .free-tools__card--title,
.free-tools__card--featured .free-tools__card--go {
  color: #fff;
}
.free-tools__card--featured .free-tools__card--desc {
  flex: 0 0 auto;
  margin-bottom: 1.375rem;
  color: rgba(255, 255, 255, 0.88);
}
.free-tools__card--featured .free-tools__card--points {
  flex: 1;
  align-content: start;
}
.free-tools__card--featured:hover, .free-tools__card--featured:focus-visible {
  background: rgb(87.217961165, 40.2859223301, 228.0140776699);
  box-shadow: 0 1.125rem 2.5rem rgba(112, 72, 232, 0.34);
}
@media (prefers-reduced-motion: reduce) {
  .free-tools__card, .free-tools__card--arrow {
    transition: none;
  }
  .free-tools__card:hover, .free-tools__card:focus-visible {
    transform: none;
  }
  .free-tools__card:hover .free-tools__card--arrow {
    transform: none;
  }
}

.seo-tool {
  --seo-good: #40c057;
  --seo-warn: #f59f00;
  --seo-bad: #fa5252;
}
.seo-tool__intro {
  max-width: 48.75rem;
  margin: 0 auto;
  text-align: center;
}
.seo-tool__panel {
  padding: 1.875rem;
  border-radius: 1.25rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}
.seo-tool__form--label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #343a40;
}
.seo-tool__form--row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}
@media only screen and (max-width: 37.5em) {
  .seo-tool__form--row {
    flex-direction: column;
  }
}
.seo-tool__form--input {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 1.125rem;
  border: 1px solid #ced4da;
  border-radius: 0.625rem;
  background: #fff;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  color: #212529;
}
.seo-tool__form--input:focus {
  outline: none;
  border-color: #7048e8;
  box-shadow: 0 0 0 0.1875rem #e5dbff;
}
.seo-tool__form--note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #343a40;
}
.seo-tool__loading, .seo-tool__error, .seo-tool__notice, .seo-tool__empty {
  padding: 1rem 1.25rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
}
.seo-tool__loading {
  background: #f3f0ff;
  color: #7048e8;
}
.seo-tool__error {
  background: rgba(250, 82, 82, 0.12);
  color: #c92a2a;
}
.seo-tool__notice {
  margin-bottom: 1.25rem;
  background: #fff9db;
  color: #343a40;
}
.seo-tool__empty {
  background: #f8f9fa;
  color: #343a40;
}
.seo-tool__verdict {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.25rem;
  align-items: start;
  margin: 1.875rem 0;
}
.seo-tool__score {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid #e9ecef;
}
.seo-tool__score--head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media only screen and (max-width: 25em) {
  .seo-tool__score--head {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.seo-tool__score--ring {
  --seo-score: 0;
  position: relative;
  flex-shrink: 0;
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--seo-ring-color, #7048e8) calc(var(--seo-score) * 1%), #e9ecef 0);
}
.seo-tool__score--ring::after {
  content: "";
  position: absolute;
  inset: 0.625rem;
  border-radius: 50%;
  background: #fff;
}
.seo-tool__score--ring[data-grade=A] {
  --seo-ring-color: #40c057;
}
.seo-tool__score--ring[data-grade=B] {
  --seo-ring-color: #37b24d;
}
.seo-tool__score--ring[data-grade=C] {
  --seo-ring-color: #f59f00;
}
.seo-tool__score--ring[data-grade=D], .seo-tool__score--ring[data-grade=E] {
  --seo-ring-color: #fa5252;
}
.seo-tool__score--value {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #212529;
  font-variant-numeric: tabular-nums;
}
.seo-tool__score--summary {
  flex: 1;
  min-width: 0;
}
.seo-tool__score--label {
  font-size: 0.8125rem;
  color: #343a40;
  margin-bottom: 0.25rem;
}
.seo-tool__score--url {
  font-size: 0.9375rem;
  margin: 0;
  overflow-wrap: anywhere;
}
.seo-tool__score--url a {
  color: #7048e8;
}
.seo-tool__score--redirect {
  color: #343a40;
  font-size: 0.8125rem;
}
.seo-tool__score--counts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.seo-tool__bar {
  display: flex;
  gap: 2px;
  height: 0.625rem;
  border-radius: 6.25rem;
  overflow: hidden;
  background: #e9ecef;
}
.seo-tool__bar--seg {
  flex-basis: 0;
  min-width: 0.25rem;
}
.seo-tool__bar--good {
  background: var(--seo-good);
}
.seo-tool__bar--warn {
  background: var(--seo-warn);
}
.seo-tool__bar--bad {
  background: var(--seo-bad);
}
.seo-tool__count {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #343a40;
}
.seo-tool__count strong {
  font-size: 1.125rem;
  color: #212529;
  font-variant-numeric: tabular-nums;
}
.seo-tool__count--dot {
  align-self: center;
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.seo-tool__count--good .seo-tool__count--dot {
  background: var(--seo-good);
}
.seo-tool__count--warn .seo-tool__count--dot {
  background: var(--seo-warn);
}
.seo-tool__count--bad .seo-tool__count--dot {
  background: var(--seo-bad);
}
.seo-tool__count.is-zero {
  opacity: 0.45;
}
.seo-tool__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.75rem, 1fr));
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.seo-tool__stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}
.seo-tool__stat--head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.seo-tool__stat--value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #212529;
  font-variant-numeric: tabular-nums;
}
.seo-tool__stat--flag {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.seo-tool__stat--label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #212529;
}
.seo-tool__stat--unit {
  font-size: 0.8125rem;
  color: #343a40;
}
.seo-tool__stat--warn {
  background: rgba(245, 159, 0, 0.1);
  border-color: rgba(245, 159, 0, 0.4);
}
.seo-tool__stat--warn .seo-tool__stat--flag {
  background: var(--seo-warn);
}
.seo-tool__stat--bad {
  background: rgba(250, 82, 82, 0.09);
  border-color: rgba(250, 82, 82, 0.4);
}
.seo-tool__stat--bad .seo-tool__stat--flag {
  background: var(--seo-bad);
}
.seo-tool__block {
  margin-bottom: 2.5rem;
}
.seo-tool__block--title {
  margin-bottom: 0.5rem;
}
.seo-tool__block--help {
  max-width: 50rem;
  margin-bottom: 1.25rem;
  color: #343a40;
  font-size: 0.9375rem;
}
.seo-tool__serp-block {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  height: 100%;
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}
.seo-tool__serp-block--title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.seo-tool__serp-block--help {
  font-size: 0.875rem;
  color: #343a40;
  margin: 0 0 0.875rem;
}
.seo-tool__serp {
  padding: 1.25rem 1.375rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e9ecef;
}
.seo-tool__serp--url {
  font-size: 0.875rem;
  color: #5f6368;
  margin-bottom: 0.25rem;
  overflow-wrap: anywhere;
}
.seo-tool__serp--title {
  font-size: 1.25rem;
  line-height: 1.3;
  color: #1a0dab;
  margin-bottom: 0.375rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.seo-tool__serp--desc {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #4d5156;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.seo-tool__serp .is-missing {
  color: #c92a2a;
  font-style: italic;
}
.seo-tool__outline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid #e9ecef;
}
.seo-tool__outline--item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding: 0.5625rem 0 0.5625rem 1rem;
  position: relative;
}
.seo-tool__outline--item::before {
  content: "";
  position: absolute;
  left: -0.3125rem;
  top: 1.0625rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ced4da;
}
.seo-tool__outline--level-1 {
  padding-left: 1rem;
}
.seo-tool__outline--level-2 {
  padding-left: 2.5rem;
}
.seo-tool__outline--level-3 {
  padding-left: 4rem;
}
.seo-tool__outline--level-4 {
  padding-left: 5.5rem;
}
.seo-tool__outline--level-5 {
  padding-left: 7rem;
}
.seo-tool__outline--level-6 {
  padding-left: 8.5rem;
}
.seo-tool__outline--tag {
  flex-shrink: 0;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  background: #e5dbff;
  color: #7048e8;
  font-size: 0.75rem;
  font-weight: 700;
}
.seo-tool__outline--text {
  font-size: 1rem;
  color: #343a40;
}
.seo-tool__outline--text.is-missing {
  color: #fa5252;
  font-style: italic;
}
.seo-tool__outline--issues {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.seo-tool__outline--level-1 .seo-tool__outline--tag {
  background: #7048e8;
  color: #fff;
}
.seo-tool__aside {
  margin-top: 1rem;
}
.seo-tool__aside--summary {
  cursor: pointer;
  font-size: 0.875rem;
  color: #343a40;
  padding: 0.5rem 0;
  list-style: revert;
}
.seo-tool__aside--summary:hover {
  color: #7048e8;
}
.seo-tool__aside .seo-tool__outline {
  margin-top: 0.5rem;
  opacity: 0.72;
}
.seo-tool__chip {
  padding: 0.125rem 0.5rem;
  border-radius: 6.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(245, 159, 0, 0.16);
  color: #b35c00;
}
.seo-tool__chip--skipped, .seo-tool__chip--empty {
  background: rgba(250, 82, 82, 0.14);
  color: #c92a2a;
}
.seo-tool__chip--region {
  background: #e9ecef;
  color: #343a40;
  font-weight: 500;
}
.seo-tool__redacted {
  height: 1.1em;
  border-radius: 0.25rem;
  background: currentColor;
  opacity: 0.16;
  filter: blur(3px);
  margin-bottom: 0.3125rem;
}
.seo-tool__check-list.is-locked {
  user-select: none;
}
.seo-tool__check-group {
  margin-bottom: 1.5rem;
}
.seo-tool__check-group--title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: #343a40;
  margin-bottom: 0.625rem;
}
.seo-tool__check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.seo-tool__check {
  display: flex;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e9ecef;
}
.seo-tool__check--icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #ced4da;
}
.seo-tool__check--body {
  min-width: 0;
}
.seo-tool__check--label {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.125rem;
}
.seo-tool__check--detail {
  font-size: 0.9375rem;
  color: #343a40;
  word-break: break-word;
}
.seo-tool__check--good .seo-tool__check--icon {
  background: var(--seo-good);
}
.seo-tool__check--warn {
  background: rgba(245, 159, 0, 0.07);
  border-color: rgba(245, 159, 0, 0.35);
}
.seo-tool__check--warn .seo-tool__check--icon {
  background: var(--seo-warn);
}
.seo-tool__check--bad {
  background: rgba(250, 82, 82, 0.07);
  border-color: rgba(250, 82, 82, 0.35);
}
.seo-tool__check--bad .seo-tool__check--icon {
  background: var(--seo-bad);
}
.seo-tool__faq {
  padding: 1.125rem 0;
  border-bottom: 1px solid #e9ecef;
}
.seo-tool__faq--q {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}
.seo-tool__faq--a {
  color: #343a40;
  max-width: 53.125rem;
}
.seo-tool__more {
  text-align: center;
}

:root {
  --ft-good: #40c057;
  --ft-warn: #f59f00;
  --ft-bad: #fa5252;
  --ft-warn-deep: #b35c00;
  --ft-bad-deep: #c92a2a;
}

.ft-intro {
  max-width: 48.75rem;
  margin: 0 auto;
  text-align: center;
}
.ft-panel {
  padding: 1.875rem;
  border-radius: 1.25rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}
@media only screen and (max-width: 37.5em) {
  .ft-panel {
    padding: 1.25rem;
  }
}
.ft-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}
.ft-field__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #343a40;
}
.ft-field__hint {
  font-size: 0.8125rem;
  color: #343a40;
  opacity: 0.75;
}
.ft-field input,
.ft-field select,
.ft-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.625rem;
  background: #fff;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  color: #212529;
}
.ft-field input:focus,
.ft-field select:focus,
.ft-field textarea:focus {
  outline: none;
  border-color: #7048e8;
  box-shadow: 0 0 0 0.1875rem #e5dbff;
}
.ft-field textarea {
  min-height: 5.625rem;
  resize: vertical;
}
.ft-field__unit {
  position: relative;
}
.ft-field__unit input {
  padding-right: 2.75rem;
}
.ft-field__unit span {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #343a40;
  font-size: 0.9375rem;
  pointer-events: none;
}
.ft-urlform {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}
@media only screen and (max-width: 37.5em) {
  .ft-urlform {
    flex-direction: column;
  }
}
.ft-urlform input {
  flex: 1;
  min-width: 0;
}
.ft-grid {
  display: grid;
  gap: 1rem 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
}
.ft-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
}
.ft-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  align-items: start;
}
.ft-loading, .ft-error, .ft-notice {
  padding: 1rem 1.25rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
}
.ft-loading {
  background: #f3f0ff;
  color: #7048e8;
}
.ft-error {
  background: rgba(250, 82, 82, 0.12);
  color: #c92a2a;
}
.ft-notice {
  background: #fff9db;
  color: #343a40;
}
.ft-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid #e9ecef;
}
.ft-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.ft-verdict {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid #e9ecef;
  background: #fff;
}
.ft-verdict__mark {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #ced4da;
}
.ft-verdict__title {
  font-size: 1.25rem;
  margin-bottom: 0.125rem;
}
.ft-verdict__text {
  font-size: 0.9375rem;
  color: #343a40;
  margin: 0;
}
.ft-verdict--good {
  background: rgba(64, 192, 87, 0.06);
  border-color: rgba(64, 192, 87, 0.35);
}
.ft-verdict--good .ft-verdict__mark {
  background: var(--ft-good);
}
.ft-verdict--warn {
  background: rgba(245, 159, 0, 0.07);
  border-color: rgba(245, 159, 0, 0.35);
}
.ft-verdict--warn .ft-verdict__mark {
  background: var(--ft-warn);
}
.ft-verdict--bad {
  background: rgba(250, 82, 82, 0.07);
  border-color: rgba(250, 82, 82, 0.35);
}
.ft-verdict--bad .ft-verdict__mark {
  background: var(--ft-bad);
}
.ft-kpi {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 1.125rem;
  border-radius: 0.75rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}
.ft-kpi__value {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.1;
  color: #212529;
  font-variant-numeric: tabular-nums;
}
.ft-kpi__label {
  font-size: 0.875rem;
  color: #343a40;
}
.ft-kpi__hint {
  font-size: 0.8125rem;
  color: #343a40;
  opacity: 0.75;
}
.ft-kpi--hero {
  background: linear-gradient(-130deg, rgb(184, 162, 255) 0%, rgb(133, 101, 236) 100%);
  border-color: transparent;
  color: #fff;
}
.ft-kpi--hero .ft-kpi__value,
.ft-kpi--hero .ft-kpi__label,
.ft-kpi--hero .ft-kpi__hint {
  color: #fff;
}
.ft-kpi--bad .ft-kpi__value {
  color: var(--ft-bad);
}
.ft-kpi--warn .ft-kpi__value {
  color: var(--ft-warn);
}
.ft-checks {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ft-check {
  display: flex;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e9ecef;
}
.ft-check__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--ft-good);
}
.ft-check__label {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.125rem;
}
.ft-check__detail {
  font-size: 0.9375rem;
  color: #343a40;
  overflow-wrap: anywhere;
}
.ft-check--warn {
  background: rgba(245, 159, 0, 0.07);
  border-color: rgba(245, 159, 0, 0.35);
}
.ft-check--warn .ft-check__icon {
  background: var(--ft-warn);
}
.ft-check--bad {
  background: rgba(250, 82, 82, 0.07);
  border-color: rgba(250, 82, 82, 0.35);
}
.ft-check--bad .ft-check__icon {
  background: var(--ft-bad);
}
.ft-output {
  position: relative;
}
.ft-output__box {
  width: 100%;
  min-height: 15rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e9ecef;
  background: #f8f9fa;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #212529;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.ft-output__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.75rem;
}
.ft-output__inline {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.625rem;
  border: 1px solid #e9ecef;
  background: #f8f9fa;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.875rem;
  color: #212529;
  overflow-wrap: anywhere;
}
.ft-locked {
  position: relative;
  padding: 1.25rem 1.375rem 0;
  border-radius: 0.75rem 0.75rem 0 0;
  background: #fff;
  border: 1px solid #e9ecef;
  border-bottom: none;
  user-select: none;
  pointer-events: none;
}
.ft-locked__rows {
  mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
  padding-bottom: 0.625rem;
}
.ft-locked__row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  margin-bottom: 0.625rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e9ecef;
}
.ft-locked__row--warn {
  background: rgba(245, 159, 0, 0.09);
  border-color: rgba(245, 159, 0, 0.4);
}
.ft-locked__row--warn .ft-locked__icon {
  background: var(--ft-warn);
}
.ft-locked__row--bad {
  background: rgba(250, 82, 82, 0.09);
  border-color: rgba(250, 82, 82, 0.4);
}
.ft-locked__row--bad .ft-locked__icon {
  background: var(--ft-bad);
}
.ft-locked__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--ft-good);
}
.ft-locked__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.1875rem;
}
.ft-locked__bar {
  display: block;
  height: 0.625rem;
  border-radius: 0.3125rem;
  background: #e9ecef;
  filter: blur(2px);
}
.ft-locked__bar--title {
  height: 0.8125rem;
  background: #ced4da;
}
.ft-lock {
  margin-bottom: 1rem;
  padding: 0.875rem 1.125rem;
  border-radius: 0.625rem;
  background: #f3f0ff;
  color: #7048e8;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.ft-capture {
  padding: 1.875rem;
  border-radius: 1.25rem;
  background: #f3f0ff;
  border: 2px solid #d0bfff;
}
@media only screen and (max-width: 37.5em) {
  .ft-capture {
    padding: 1.25rem;
  }
}
.ft-locked + .ft-capture {
  margin-top: 0;
  border-top: none;
  border-radius: 0 0 1.25rem 1.25rem;
}
.ft-capture__title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.ft-capture__intro {
  font-size: 0.9375rem;
  color: #343a40;
  margin-bottom: 0.75rem;
}
.ft-capture__hook {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.375rem 0.875rem;
  border-radius: 6.25rem;
  background: #7048e8;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}
.ft-capture__hook--warn {
  background: var(--ft-warn-deep);
}
.ft-capture__hook--bad {
  background: var(--ft-bad-deep);
}
.ft-capture__optin {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #343a40;
  cursor: pointer;
}
.ft-capture__optin input {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.0625rem;
  accent-color: #7048e8;
  cursor: pointer;
}
.ft-capture__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
}
.ft-capture__privacy {
  flex: 1;
  min-width: 15rem;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #343a40;
  opacity: 0.8;
}
.ft-capture__feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  background: rgba(64, 192, 87, 0.12);
  color: #2b8a3e;
}
.ft-capture__feedback.is-error {
  background: rgba(250, 82, 82, 0.12);
  color: #c92a2a;
}
.ft-required {
  margin-left: 0.1875rem;
  color: #fa5252;
  font-weight: 700;
}
.ft-legend {
  font-size: 0.8125rem;
  color: #343a40;
  opacity: 0.8;
}

.ft-social__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(21.25rem, 1fr));
  align-items: start;
}
.ft-social__net--name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.0375rem;
}
.ft-social__card {
  border: 1px solid #dadde1;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
  max-width: 32.5rem;
}
.ft-social__card--img {
  display: block;
  width: 100%;
  aspect-ratio: 1.91/1;
  object-fit: cover;
  background: #e9ecef;
  border-bottom: 1px solid #dadde1;
}
.ft-social__card--empty {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.91/1;
  background: #e9ecef;
  color: #343a40;
  font-size: 0.875rem;
  text-align: center;
  padding: 1.25rem;
  border-bottom: 1px solid #dadde1;
}
.ft-social__card--body {
  padding: 0.625rem 0.75rem;
}
.ft-social__card--domain {
  font-size: 0.75rem;
  color: #606770;
  text-transform: uppercase;
  margin-bottom: 0.1875rem;
}
.ft-social__card--title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1d2129;
  margin-bottom: 0.1875rem;
}
.ft-social__card--desc {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #606770;
  margin: 0;
}
.ft-social__card--facebook .ft-social__card--body {
  background: #f2f3f5;
}
.ft-social__card--linkedin {
  border-color: rgba(0, 0, 0, 0.15);
  border-radius: 0.125rem;
}
.ft-social__card--x {
  border-radius: 1rem;
  border-color: #cfd9de;
}
.ft-social__card--x .ft-social__card--title {
  font-size: 0.9375rem;
  font-weight: 400;
}
.ft-social__card--summary {
  display: flex;
  align-items: stretch;
}
.ft-social__card--summary .ft-social__card--img,
.ft-social__card--summary .ft-social__card--empty {
  width: 7.5rem;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-bottom: none;
  border-right: 1px solid #cfd9de;
}
.ft-social__card--summary .ft-social__card--body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ft-social__card--whatsapp {
  border: none;
  border-radius: 0.5rem;
  background: #d9fdd3;
  padding: 0.3125rem;
  max-width: 23.75rem;
}
.ft-social__card--whatsapp .ft-social__card--img,
.ft-social__card--whatsapp .ft-social__card--empty {
  border-radius: 0.375rem;
  border-bottom: none;
}
.ft-social__card--whatsapp .ft-social__card--body {
  padding: 0.5rem 0.25rem 0.125rem;
}
.ft-social__source {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #343a40;
  opacity: 0.85;
}
.ft-social__source code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: #e9ecef;
  border-radius: 0.25rem;
  padding: 0.0625rem 0.25rem;
}
.ft-social__truncated {
  color: #b35c00;
}
.ft-social__tags {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.ft-social__tags th,
.ft-social__tags td {
  text-align: left;
  padding: 0.5rem 0.625rem;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
  overflow-wrap: anywhere;
}
.ft-social__tags th {
  width: 11.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #343a40;
}
.ft-social__tags td.is-missing {
  color: #fa5252;
  font-style: italic;
}

.ft-robots__raw {
  max-height: 20rem;
  overflow: auto;
  padding: 1rem;
  border-radius: 0.625rem;
  background: #212529;
  color: #e9ecef;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8125rem;
  line-height: 1.6;
  white-space: pre;
}
.ft-robots__sitemap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.375rem 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}
.ft-robots__sitemap--url {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8125rem;
  overflow-wrap: anywhere;
}
.ft-robots__sitemap--meta {
  font-size: 0.8125rem;
  color: #343a40;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--v4-gutter);
  padding-block: 56px 0;
  min-width: 0;
}

.heading {
  text-align: center;
}

.heading-primary,
.heading-secondary {
  margin-inline: auto;
  max-width: 24ch;
  font-size: var(--v4-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.heading-sub {
  font-size: var(--v4-h3);
  font-weight: 600;
}

.mb-xs {
  margin-bottom: 10px;
}

.mb-sm {
  margin-bottom: 16px;
}

.mb-md {
  margin-bottom: 30px;
}

.mb-lg {
  margin-bottom: 40px;
}

.mb-hg {
  margin-bottom: 70px;
}

.mt-xs {
  margin-top: 10px;
}

.mt-sm {
  margin-top: 20px;
}

.mt-md {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--v4-brand);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms var(--v4-ease), border-color 200ms var(--v4-ease), color 200ms var(--v4-ease), transform 200ms var(--v4-ease);
}
.btn:hover {
  background: var(--v4-brand-deep);
  transform: translateY(-1px);
}
.btn--group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.btn--little {
  padding: 9px 15px;
  font-size: 14px;
}
.btn--white, .btn--secondary {
  background: var(--v4-surface);
  border-color: var(--v4-line);
  color: var(--v4-ink);
}
.btn--white:hover, .btn--secondary:hover {
  background: var(--v4-surface);
  border-color: var(--v4-brand);
  color: var(--v4-brand);
}
.btn--text {
  padding: 4px 0;
  border: 0;
  background: none;
  color: var(--v4-brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn--text:hover {
  background: none;
  color: var(--v4-brand-deep);
  transform: none;
}
.btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ftSpin 0.6s linear infinite;
}

@keyframes ftSpin {
  to {
    transform: rotate(360deg);
  }
}
