.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #257957, #15513a);
  box-shadow: 0 7px 18px rgba(31, 107, 75, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-wordmark {
  font-weight: 820;
  letter-spacing: -0.035em;
}

.brand-tld {
  color: var(--green);
  font-weight: 760;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 18px;
  color: #526158;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--green);
}

.support-form textarea,
.support-form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cad5cd;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.support-form textarea {
  min-height: 150px;
  resize: vertical;
}

.support-form .cf-turnstile {
  min-height: 65px;
}

.nav-account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 5px 9px 5px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8faf8;
  color: #526158;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-account-avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 850;
}

.nav-account-email {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-inline {
  display: block;
  margin-top: 7px;
  color: #526158;
  font-size: 0.9rem;
}

.account-inline strong {
  color: var(--ink);
}

.feature {
  position: relative;
  min-height: 214px;
  padding: 30px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature::after {
  content: "";
  position: absolute;
  top: -52px;
  right: -52px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 241, 234, 0.82), rgba(230, 241, 234, 0));
  pointer-events: none;
}

.feature > * {
  position: relative;
  z-index: 1;
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  border: 1px solid #d3e4d8;
  border-radius: 19px;
  color: var(--green-dark);
  background: linear-gradient(145deg, #f7fbf8, var(--green-soft));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 9px 22px rgba(31, 107, 75, 0.08);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3,
.feature-pricing h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.feature > p {
  max-width: 36rem;
  line-height: 1.65;
}

.feature-pricing {
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.feature-pricing .feature-head {
  margin-bottom: 18px;
}

.feature-pricing .feature-icon {
  color: var(--green);
  background: linear-gradient(145deg, #f7fbf8, #edf6f0);
}

.feature-price {
  margin-bottom: 6px !important;
}

.feature-price strong {
  color: #52635a;
  font-size: 1.02rem;
}

.feature-pricing .check-list {
  margin-bottom: 22px;
}

.feature-pricing .button {
  align-self: flex-start;
  margin-top: auto;
}

@media (hover: hover) and (pointer: fine) {
  .feature:hover {
    transform: translateY(-3px);
    border-color: #cbded1;
    box-shadow: 0 18px 42px rgba(31, 52, 40, 0.08);
  }
}

@media (max-width: 900px) {
  .nav-account-email {
    max-width: 170px;
  }

  .feature {
    min-height: auto;
    padding: 28px 24px;
    text-align: center;
  }

  .feature-head {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .feature-icon {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
    margin: 0 auto;
    border-radius: 20px;
  }

  .feature-icon svg {
    width: 32px;
    height: 32px;
  }

  .feature h3,
  .feature-pricing h3 {
    font-size: 1.45rem;
  }

  .feature > p {
    margin-inline: auto;
  }

  .feature-pricing .check-list {
    width: min(100%, 360px);
    margin-inline: auto;
    text-align: left;
  }

  .feature-pricing .button {
    align-self: center;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 36px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .nav-account {
    padding: 5px 7px;
  }

  .nav-account-avatar {
    display: none;
  }

  .nav-account-email {
    max-width: 105px;
  }
}

@media (max-width: 420px) {
  .nav-account-email {
    max-width: 72px;
  }
}
