.support-page {
  background-color: var(--ww-bg);
  background-image:
    radial-gradient(ellipse 58% 42% at 18% 20%, color-mix(in srgb, var(--ww-ambient-highlight) 10%, transparent), transparent 74%),
    radial-gradient(ellipse 48% 38% at 84% 78%, color-mix(in srgb, var(--ww-ambient-shadow) 4%, transparent), transparent 78%);
}

.support-page--product {
  --app-ambient-color: var(--clews-accent);
  background-color: color-mix(in srgb, var(--app-ambient-color) 1.25%, var(--ww-bg));
  background-image:
    radial-gradient(ellipse 62% 44% at 82% 12%, color-mix(in srgb, var(--app-ambient-color) 5%, transparent), transparent 74%),
    radial-gradient(ellipse 58% 40% at 10% 54%, color-mix(in srgb, var(--app-ambient-color) 2.5%, transparent), transparent 78%),
    radial-gradient(ellipse 52% 36% at 88% 92%, color-mix(in srgb, var(--app-ambient-color) 2%, transparent), transparent 80%);
}

.support-page--product :focus-visible {
  outline-color: var(--clews-interactive);
}

.support-main {
  min-height: calc(100svh - 5rem);
  padding-block: calc(var(--ww-header-height) + clamp(4rem, 9vh, 7rem)) clamp(6rem, 12vh, 10rem);
}

.support-main__content {
  width: min(100%, 78rem);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.support-intro {
  text-align: center;
}

.support-intro__title,
.support-product__name,
.clews-support-main__title {
  font-family: var(--ww-display-font);
}

.support-intro__title {
  margin: 0;
  font-size: clamp(3.75rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.support-intro__lead {
  margin: clamp(1.75rem, 4vh, 2.75rem) 0 0;
  color: var(--ww-text-secondary);
  font-family: var(--ww-support-font);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.5;
}

.support-products {
  display: grid;
  margin-top: clamp(6rem, 14vh, 11rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(3rem, 8vw, 8rem);
}

.support-product {
  --ww-app-lockup-word-offset: var(--clews-lockup-word-offset);
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support-product--dots {
  --ww-app-lockup-word-offset: var(--dots-lockup-word-offset);
}

.support-product--glints {
  --ww-app-lockup-word-offset: var(--glints-lockup-word-offset);
}

.support-product__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ww-app-lockup-gap);
}

.support-product__logo {
  display: block;
  width: var(--forest-clews-logo-width);
  flex: 0 0 auto;
  height: auto;
  object-fit: contain;
}

.support-product--dots .support-product__logo {
  width: var(--forest-dots-logo-width);
}

.support-product--glints .support-product__logo {
  width: var(--forest-glints-logo-width);
}

.support-product__name {
  margin: 0 0 0 var(--ww-app-lockup-word-offset);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.support-product__description,
.support-product__status,
.support-product__action {
  font-family: var(--ww-support-font);
}

.support-product__description {
  max-width: 17rem;
  min-height: 3.2em;
  margin: 1.5rem 0 0;
  color: var(--ww-text-secondary);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.6;
}

.support-product__status,
.support-product__action {
  margin: clamp(2.25rem, 5vh, 3.5rem) 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.support-product__status {
  color: var(--ww-text-muted);
}

.support-product__action {
  color: var(--clews-interactive);
  text-decoration: none;
  text-underline-offset: 0.35em;
}

.support-product__action span {
  display: inline-block;
  margin-left: 0.2em;
  transition: transform var(--ww-transition);
}

.support-product__action:hover,
.support-product__action:focus-visible {
  text-decoration: underline;
}

.support-product__action:hover span,
.support-product__action:focus-visible span {
  transform: translateX(0.18rem);
}

.support-footer {
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.support-footer__inner {
  display: flex;
  width: min(100%, 78rem);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0;
}

.has-js [data-support-reveal] {
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 520ms ease-out, transform 520ms ease-out;
}

.has-js .support-main.is-visible [data-support-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.has-js .support-main.is-visible [data-support-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.has-js .support-main.is-visible .support-product:nth-child(1) {
  transition-delay: 150ms;
}

.has-js .support-main.is-visible .support-product:nth-child(2) {
  transition-delay: 220ms;
}

.has-js .support-main.is-visible .support-product:nth-child(3) {
  transition-delay: 290ms;
}

.clews-support-main {
  padding-block: calc(var(--ww-header-height) + clamp(3.5rem, 7vh, 5.5rem)) clamp(6rem, 10vh, 8rem);
}

.clews-support-main__content {
  width: min(100%, 68rem);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.clews-support-intro {
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}

.clews-support-main__brand {
  --ww-app-lockup-word-offset: var(--clews-lockup-word-offset);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ww-app-lockup-gap);
}

.clews-support-main__logo {
  display: block;
  width: clamp(4.75rem, 7vw, 6rem);
  flex: 0 0 auto;
  height: auto;
}

.clews-support-main__title {
  display: flex;
  min-width: 0;
  flex: 0 1 auto;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin: 0 0 0 var(--ww-app-lockup-word-offset);
  font-family: var(--ww-display-font);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.clews-support-main__product {
  color: var(--ww-title-primary);
  font-weight: 600;
}

.clews-support-main__title .clews-support-main__qualifier {
  color: var(--ww-title-qualifier, var(--ww-text-muted));
  font-family: var(--ww-display-font);
  font-size: 1em;
  font-weight: 500;
  letter-spacing: inherit;
  line-height: inherit;
}

.clews-support-intro__lead {
  margin: clamp(1.5rem, 3vh, 2.25rem) 0 0;
  color: var(--ww-text-secondary);
  font-family: var(--ww-support-font);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.5;
}

.clews-help-header .site-header__inner {
  width: min(100%, 88rem);
}

.clews-help-header__navigation {
  display: flex;
  min-width: 0;
  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-left: auto;
}

.clews-help-header__parent {
  flex: 0 0 auto;
  color: var(--ww-text-muted);
}

.clews-support-nav {
  min-width: 0;
  flex: 0 1 auto;
  overflow: hidden;
}

.clews-support-nav__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: clamp(0.9rem, 1.8vw, 1.6rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.clews-support-nav__list::-webkit-scrollbar {
  display: none;
}

.clews-support-nav a {
  display: inline-flex;
  min-height: var(--ww-header-height);
  flex: 0 0 auto;
  align-items: center;
  color: var(--ww-text-secondary);
  font-family: var(--ww-support-font);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.clews-support-nav a:hover,
.clews-support-nav a:focus-visible,
.clews-support-nav a[aria-current="location"] {
  color: var(--clews-interactive);
  text-decoration: underline;
}

.clews-support-nav a[aria-current="location"] {
  font-weight: 600;
  text-decoration-thickness: 0.08em;
}

.clews-support-document {
  width: min(100%, 52rem);
  margin-top: clamp(5rem, 9vh, 7rem);
}

.clews-support-section {
  scroll-margin-top: calc(var(--ww-header-height) + 2rem);
}

.clews-support-section + .clews-support-section {
  margin-top: clamp(5.5rem, 10vh, 7.5rem);
  padding-top: clamp(5.5rem, 10vh, 7.5rem);
  border-top: 1px solid color-mix(in srgb, var(--ww-border) 75%, transparent);
}

.clews-support-section h2 {
  margin: 0;
  font-family: var(--ww-display-font);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.clews-support-section p,
.clews-support-section li,
.clews-support-section dd {
  color: var(--ww-text-secondary);
  font-family: var(--ww-support-font);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.78;
}

.clews-support-section h2 + p,
.clews-support-section h2 + ol,
.clews-support-section h2 + ul,
.clews-support-section h2 + dl,
.clews-support-section h2 + .clews-support-troubleshooting {
  margin-top: clamp(2.25rem, 4vh, 3rem);
}

.clews-support-section p {
  max-width: 68ch;
  margin-bottom: 0;
}

.clews-support-section p + p,
.clews-support-section ul + p {
  margin-top: 2rem;
}

.clews-support-section ol,
.clews-support-section ul {
  max-width: 68ch;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.clews-support-section li + li {
  margin-top: 0.95rem;
}

.clews-support-section code {
  color: inherit;
  font-size: 0.92em;
}

.clews-support-definitions {
  display: grid;
  margin-bottom: 0;
  gap: 2.75rem;
}

.clews-support-definitions div {
  display: grid;
  grid-template-columns: minmax(5.5rem, 0.28fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
}

.clews-support-definitions dt {
  color: var(--ww-text);
  font-family: var(--ww-display-font);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.clews-support-definitions dd {
  margin: 0;
}

.clews-support-definitions--formats dt {
  color: var(--clews-interactive);
}

.clews-support-troubleshooting {
  display: grid;
  gap: 3rem;
}

.clews-support-troubleshooting h3 {
  margin: 0;
  color: var(--ww-text);
  font-family: var(--ww-support-font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.clews-support-troubleshooting p {
  margin-top: 0.9rem;
}

.clews-support-section .clews-support-contact__prompt {
  color: var(--ww-text);
  font-family: var(--ww-display-font);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.clews-support-section .clews-support-contact__pending {
  color: var(--ww-text-muted);
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .support-main {
    padding-block: calc(var(--ww-header-height) + 3.5rem) 7rem;
  }

  .support-products {
    margin-top: 6.5rem;
    grid-template-columns: 1fr;
    row-gap: 7rem;
  }

  .support-product__logo,
  .support-product--dots .support-product__logo,
  .support-product--glints .support-product__logo {
    width: var(--forest-mobile-logo-width);
  }

  .support-product__description {
    min-height: 0;
    margin-top: 1.25rem;
  }

  .support-product__status,
  .support-product__action {
    margin-top: 2rem;
  }

  .support-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .clews-support-main__logo {
    width: var(--forest-mobile-logo-width);
  }

  .clews-support-main__title {
    gap: 0.2rem 0.65rem;
    font-size: clamp(2.75rem, 13vw, 3.75rem);
  }

  .clews-support-nav__list {
    gap: 1.2rem;
    justify-content: flex-start;
  }

  .clews-support-nav a {
    min-height: var(--ww-header-height);
    font-size: 0.875rem;
  }

  .clews-support-document {
    margin-top: 5rem;
  }

  .clews-support-section + .clews-support-section {
    margin-top: 4.75rem;
    padding-top: 4.75rem;
  }

  .clews-support-definitions div {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .support-products {
    column-gap: clamp(2rem, 5vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js [data-support-reveal],
  .has-js .support-main.is-visible [data-support-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .support-product__action span {
    transition: none;
  }
}
