:root {
  --color-brand-red: #ae3e3e;
  --color-brand-gray: #696a6c;
  --color-brand-black: #201e1e;
  --color-white: #ffffff;
  --color-border: rgb(32 30 30 / 12%);
  --color-focus: var(--color-brand-black);
  --font-interface: "Segoe UI", Arial, sans-serif;
  --content-width: 1200px;
  --page-gutter: clamp(1rem, 3vw, 2rem);
  --header-height: 5rem;
  --radius-button: 0.375rem;
  --transition-fast: 160ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color: var(--color-brand-black);
  font-family: var(--font-interface);
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  background: var(--color-white);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--color-white);
  background: var(--color-brand-black);
  border-radius: var(--radius-button);
  transform: translateY(-180%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  min-height: var(--header-height);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.site-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: clamp(10.75rem, 17vw, 13.25rem);
  min-height: 3rem;
}

.site-header__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.primary-navigation__list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--color-brand-black);
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.primary-navigation a:not(.primary-navigation__cta):hover {
  color: var(--color-brand-red);
}

.primary-navigation a[aria-current="page"] {
  color: var(--color-brand-red);
}

.primary-navigation .primary-navigation__cta {
  min-height: 2.875rem;
  padding: 0.75rem 1.15rem;
  color: var(--color-white);
  background: var(--color-brand-red);
  border-radius: var(--radius-button);
}

.primary-navigation .primary-navigation__cta:hover {
  background: var(--color-brand-black);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  color: var(--color-brand-black);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-toggle__line + .menu-toggle__line {
  margin-top: 5px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--color-white);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(26rem, 0.96fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding: clamp(3.5rem, 7vh, 5.5rem) var(--page-gutter);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 39rem;
}

.hero__title {
  max-width: 13ch;
  margin: 0;
  color: var(--color-brand-black);
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero__title span {
  color: var(--color-brand-red);
}

.hero__description {
  max-width: 37rem;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  color: var(--color-brand-gray);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.button--primary {
  color: var(--color-white);
  background: var(--color-brand-red);
}

.button--primary:hover {
  background: var(--color-brand-black);
}

.button--secondary {
  color: var(--color-brand-black);
  background: var(--color-white);
  border-color: var(--color-brand-black);
}

.button--secondary:hover {
  color: var(--color-white);
  background: var(--color-brand-black);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 31rem;
  margin: 0;
  overflow: hidden;
  background: rgb(231 231 231);
  border-radius: 0.75rem;
}

.carousel__viewport {
  position: absolute;
  inset: 0;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(1.25rem);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.carousel__slide[data-active="true"] {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 35rem;
  object-fit: contain;
}

.carousel__slide--detail img {
  object-fit: cover;
}

.carousel__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: var(--color-brand-black);
  background: rgb(255 255 255 / 92%);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  box-shadow: 0 0.25rem 1rem rgb(32 30 30 / 12%);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.carousel__arrow:hover {
  color: var(--color-white);
  background: var(--color-brand-black);
  border-color: var(--color-brand-black);
}

.carousel__arrow span {
  margin-top: -0.15em;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.carousel__arrow--previous {
  left: 0.875rem;
}

.carousel__arrow--next {
  right: 0.875rem;
}

.carousel__pagination {
  position: absolute;
  z-index: 2;
  bottom: 0.875rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 2.75rem;
  padding: 0.25rem 0.4rem;
  background: rgb(255 255 255 / 92%);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: 0 0.25rem 1rem rgb(32 30 30 / 10%);
  transform: translateX(-50%);
}

.carousel__pagination button {
  position: relative;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.carousel__pagination button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  background: var(--color-white);
  border: 1px solid var(--color-brand-gray);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), scale var(--transition-fast);
}

.carousel__pagination button:hover::before {
  border-color: var(--color-brand-red);
  scale: 1.15;
}

.carousel__pagination button[aria-pressed="true"]::before {
  background: var(--color-brand-red);
  border-color: var(--color-brand-red);
}

.audience {
  color: var(--color-white);
  background: var(--color-brand-black);
}

.audience__inner {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 8rem) var(--page-gutter);
}

.audience__header {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.audience__title {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.audience__title::before {
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  margin-bottom: 1.5rem;
  content: "";
  background: var(--color-brand-red);
}

.audience__introduction {
  max-width: 43rem;
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.65;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card {
  min-height: 15rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: rgb(255 255 255 / 4%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 0.75rem;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.audience-card:hover {
  background: rgb(255 255 255 / 7%);
  border-color: var(--color-brand-red);
}

.audience-card__number {
  display: block;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  color: var(--color-brand-red);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.audience-card h3 {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.audience-card p {
  max-width: 48ch;
  margin: 1rem 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 1rem;
  line-height: 1.65;
}

.capabilities {
  overflow: hidden;
  background: #f3f2ef;
}

.capabilities__inner {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 8rem) var(--page-gutter);
}

.capabilities__header {
  display: grid;
  grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
  gap: 0 clamp(2rem, 6vw, 6rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.capabilities__eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 1.25rem;
  color: var(--color-brand-red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.capabilities__title {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.capabilities__introduction {
  align-self: end;
  max-width: 42rem;
  margin: 0;
  color: var(--color-brand-gray);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.65;
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  box-shadow: 0 1rem 2.75rem rgb(32 30 30 / 6%);
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.capability-card:hover {
  border-color: rgb(174 62 62 / 48%);
  box-shadow: 0 1.25rem 3rem rgb(32 30 30 / 10%);
  transform: translateY(-0.25rem);
}

.capability-card__visual {
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: #282a30;
  border-bottom: 1px solid var(--color-border);
}

.capability-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-card__visual--connection img {
  object-position: center 47%;
}

.capability-card__visual--drawing img {
  object-position: center;
}

.capability-card__visual--fabrication img {
  object-position: left center;
}

.capability-card__content {
  position: relative;
  min-height: 16rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.capability-card__number {
  display: block;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-brand-red);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.capability-card h3 {
  max-width: 26ch;
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.capability-card p {
  max-width: 50ch;
  margin: 1rem 0 0;
  color: var(--color-brand-gray);
  font-size: 1rem;
  line-height: 1.65;
}

.why-tsteel {
  background: var(--color-white);
}

.why-tsteel__inner {
  display: grid;
  grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 8rem) var(--page-gutter);
}

.why-tsteel__header {
  max-width: 30rem;
}

.why-tsteel__eyebrow {
  margin: 0 0 1.5rem;
  color: var(--color-brand-red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-tsteel__title {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.why-tsteel__introduction {
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  color: var(--color-brand-gray);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.why-tsteel__reasons {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--color-border);
}

.reason {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--color-border);
}

.reason__number {
  padding-top: 0.35rem;
  color: var(--color-brand-red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.reason__content h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.reason__content p {
  max-width: 48ch;
  margin: 0.75rem 0 0;
  color: var(--color-brand-gray);
  font-size: 1rem;
  line-height: 1.65;
}

.reason--featured {
  position: relative;
  margin-inline: clamp(-1.5rem, -2vw, -1rem);
  padding-inline: clamp(1rem, 2vw, 1.5rem);
  background: rgb(174 62 62 / 7%);
  border-top-color: rgb(174 62 62 / 30%);
}

.reason--featured::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.25rem;
  content: "";
  background: var(--color-brand-red);
}

.reason--featured .reason__content h3 {
  color: var(--color-brand-red);
}

.learning {
  color: var(--color-white);
  background: var(--color-brand-black);
}

.learning__inner {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 8rem) var(--page-gutter);
}

.learning__header {
  display: grid;
  grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.learning__eyebrow,
.trial-card__label,
.training-card__label,
.support-panel__label,
.implementation-panel__label {
  margin: 0 0 1.25rem;
  color: var(--color-brand-red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.learning__title {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.learning__introduction {
  max-width: 43rem;
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.65;
}

.learning__main {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.trial-card,
.training-card {
  border-radius: 0.75rem;
}

.trial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 35rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-brand-red);
}

.learning-step__number {
  display: block;
  color: rgb(255 255 255 / 65%);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.trial-card__label {
  margin-top: auto;
  color: rgb(255 255 255 / 72%);
}

.trial-card h3,
.training-card h3,
.support-panel h3,
.implementation-panel h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}

.trial-card > p:not(.trial-card__label, .trial-card__note) {
  max-width: 34ch;
  margin: 1.25rem 0 0;
  color: rgb(255 255 255 / 84%);
  font-size: 1.05rem;
  line-height: 1.65;
}

.trial-card__note {
  max-width: 38ch;
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  color: rgb(255 255 255 / 78%);
  border-top: 1px solid rgb(255 255 255 / 28%);
  font-size: 0.9rem;
  line-height: 1.55;
}

.trial-card .trial-card__button {
  margin-top: 1.5rem;
  color: var(--color-brand-black);
  background: var(--color-white);
}

.trial-card .trial-card__button:hover {
  color: var(--color-white);
  background: var(--color-brand-black);
}

.training-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 16%);
}

.training-card__heading {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.training-card__label {
  margin-bottom: 0.75rem;
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.playlist-grid a {
  display: flex;
  flex-direction: column;
  min-height: 11rem;
  padding: 1.5rem;
  color: var(--color-white);
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.playlist-grid a:hover {
  background: rgb(255 255 255 / 9%);
  border-color: var(--color-brand-red);
  transform: translateY(-0.2rem);
}

.playlist-grid a > span {
  color: rgb(255 255 255 / 56%);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.playlist-grid strong {
  margin-top: 0.625rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.playlist-grid small {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--color-brand-red);
  font-size: 0.85rem;
  font-weight: 700;
}

.learning__support {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  margin-top: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  color: var(--color-brand-black);
  background: var(--color-white);
  border-radius: 0.75rem;
}

.support-panel {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3rem);
}

.support-panel .learning-step__number {
  padding-top: 0.35rem;
  color: var(--color-brand-red);
}

.support-panel__label,
.implementation-panel__label {
  margin-bottom: 0.75rem;
}

.support-panel__content > p:not(.support-panel__label),
.implementation-panel > p:not(.implementation-panel__label) {
  max-width: 46ch;
  margin: 1rem 0 0;
  color: var(--color-brand-gray);
  font-size: 1rem;
  line-height: 1.65;
}

.support-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
  margin-top: 1.5rem;
}

.support-panel__actions a,
.implementation-panel > a {
  color: var(--color-brand-red);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  text-underline-offset: 0.25em;
}

.support-panel__actions a:hover,
.implementation-panel > a:hover {
  color: var(--color-brand-black);
}

.implementation-panel {
  padding: clamp(2rem, 4vw, 3rem);
  background: #f3f2ef;
  border-left: 1px solid var(--color-border);
}

.implementation-panel h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}

.implementation-panel > a {
  display: inline-block;
  margin-top: 1.5rem;
}

/* Product page */
.product-section-inner,
.product-hero__inner {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.product-eyebrow {
  margin: 0 0 1rem;
  color: var(--color-brand-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-eyebrow--light {
  color: #e7a9a9;
}

.product-hero {
  overflow: hidden;
  background: #f4f3f2;
}

.product-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(4rem, 8vw, 7rem);
}

.product-hero__content h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.product-hero__content > p:last-of-type {
  max-width: 37rem;
  margin: 1.75rem 0 0;
  color: var(--color-brand-gray);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.25rem;
}

.product-hero__visual {
  display: grid;
  align-items: center;
  min-height: 32rem;
  margin: 0;
}

.product-hero__visual img {
  display: block;
  width: 112%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 2rem 2rem rgb(32 30 30 / 12%));
}

.product-flow {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  color: var(--color-white);
  background: var(--color-brand-black);
}

.product-flow__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  align-items: end;
  gap: 1.5rem clamp(3rem, 7vw, 7rem);
}

.product-flow__header .product-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.25rem;
}

.product-flow__header h2,
.product-centered-header h2,
.product-formats__header h2,
.product-scope h2,
.product-final-cta h2,
.product-feature h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 3.75rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.product-flow__header > p:last-child,
.product-formats__header > p {
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 1.08rem;
  line-height: 1.65;
}

.product-flow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(3.5rem, 7vw, 5.5rem) 0 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
  list-style: none;
}

.product-flow__list li {
  min-height: 15rem;
  padding: 1.5rem clamp(1rem, 2vw, 1.75rem) 0;
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.product-flow__list li:last-child {
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.product-flow__list span,
.product-output-card span,
.product-scope__facts span {
  color: var(--color-brand-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-flow__list h3 {
  margin: 3.5rem 0 0.75rem;
  font-size: 1.45rem;
}

.product-flow__list p {
  margin: 0;
  color: rgb(255 255 255 / 62%);
  line-height: 1.6;
}

.product-feature {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.product-feature--muted {
  background: #f4f3f2;
}

.product-feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(28rem, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.product-feature__inner--reverse .product-feature__content {
  order: 2;
}

.product-feature__content > p:not(.product-eyebrow) {
  margin: 1.5rem 0 0;
  color: var(--color-brand-gray);
  font-size: 1.08rem;
  line-height: 1.7;
}

.product-checklist {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.product-checklist li {
  position: relative;
  padding: 1rem 0 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
  line-height: 1.4;
}

.product-checklist li::before {
  position: absolute;
  top: 1.42rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--color-brand-red);
  border-radius: 50%;
  content: "";
}

.product-feature__visual {
  overflow: hidden;
  margin: 0;
  background: transparent;
  box-shadow: 0 1.5rem 4rem rgb(32 30 30 / 12%);
}

.product-feature__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.product-feature__visual--connections {
  width: min(100%, 36rem);
  justify-self: start;
}

.product-outputs {
  padding-block: clamp(5rem, 9vw, 8.5rem);
  border-top: 1px solid var(--color-border);
}

.product-centered-header {
  max-width: 49rem;
  margin-inline: auto;
  text-align: center;
}

.product-centered-header > p:last-child {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  color: var(--color-brand-gray);
  font-size: 1.08rem;
  line-height: 1.65;
}

.product-outputs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.product-outputs__grid--single {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 52rem);
  margin-inline: auto;
}

.product-output-card {
  overflow: hidden;
  background: #f4f3f2;
}

.product-output-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--color-white);
}

.product-output-card figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-output-card--drawing figure img {
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
}

.product-output-card > div {
  min-height: 17rem;
  padding: clamp(1.75rem, 4vw, 3rem);
}

.product-output-card h3 {
  max-width: 18ch;
  margin: 2rem 0 0.9rem;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.product-output-card p {
  margin: 0;
  color: var(--color-brand-gray);
  line-height: 1.65;
}

.product-formats {
  padding-block: clamp(5rem, 9vw, 8rem);
  color: var(--color-white);
  background: var(--color-brand-black);
}

.product-formats__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  align-items: end;
  gap: 2rem clamp(3rem, 7vw, 7rem);
}

.product-formats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 5rem);
  background: rgb(255 255 255 / 18%);
  border: 1px solid rgb(255 255 255 / 18%);
}

.product-formats__grid article {
  min-height: 21rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-brand-black);
}

.product-formats__grid strong {
  display: block;
  color: var(--color-brand-red);
  font-size: clamp(2.7rem, 5vw, 4.75rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.product-formats__grid strong small {
  font-size: 0.34em;
  letter-spacing: 0;
}

.product-formats__grid h3 {
  margin: 4rem 0 0.75rem;
  font-size: 1.15rem;
}

.product-formats__grid p {
  margin: 0;
  color: rgb(255 255 255 / 62%);
  line-height: 1.65;
}

.product-scope {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: #f4f3f2;
}

.product-scope__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(23rem, 0.9fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.product-scope header > p:last-child {
  max-width: 41rem;
  margin: 1.5rem 0 0;
  color: var(--color-brand-gray);
  font-size: 1.08rem;
  line-height: 1.7;
}

.product-scope__facts {
  display: grid;
  border-top: 1px solid var(--color-border);
}

.product-scope__facts article {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.product-scope__facts h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.28rem;
}

.product-scope__facts p {
  margin: 0;
  color: var(--color-brand-gray);
  line-height: 1.55;
}

.product-final-cta {
  padding-block: clamp(4rem, 7vw, 6rem);
  color: var(--color-white);
  background: var(--color-brand-red);
}

.product-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.product-final-cta h2 {
  max-width: 20ch;
}

.product-final-cta .product-eyebrow {
  color: rgb(255 255 255 / 72%);
}

.product-final-cta__button {
  flex: 0 0 auto;
  color: var(--color-brand-black);
  background: var(--color-white);
}

.product-final-cta__button:hover {
  color: var(--color-white);
  background: var(--color-brand-black);
}

/* Learn page */
.learn-section-inner {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.learn-eyebrow {
  margin: 0 0 1rem;
  color: var(--color-brand-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.learn-eyebrow--light {
  color: #e7a9a9;
}

.learn-hero {
  background: #f4f3f2;
}

.learn-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.65fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.learn-hero__content h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.learn-hero__content > p:not(.learn-eyebrow) {
  max-width: 41rem;
  margin: 1.75rem 0 2.25rem;
  color: var(--color-brand-gray);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.learn-hero__paths {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-white);
  background: var(--color-brand-black);
}

.learn-hero__paths > p {
  margin: 0 0 1.25rem;
  color: rgb(255 255 255 / 58%);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.learn-hero__paths ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 16%);
  list-style: none;
}

.learn-hero__paths a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 4.5rem;
  color: var(--color-white);
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.learn-hero__paths a:hover {
  padding-left: 0.4rem;
  color: #e7a9a9;
}

.learn-hero__paths a span {
  color: var(--color-brand-red);
  font-size: 0.75rem;
  font-weight: 800;
}

.learn-training,
.learn-content,
.learn-guides {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.learn-content {
  background: #f4f3f2;
}

.learn-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.68fr);
  align-items: end;
  gap: 2rem clamp(3rem, 8vw, 8rem);
}

.learn-section-header h2,
.learn-guides__header h2,
.learn-mentorship__content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  letter-spacing: -0.048em;
  line-height: 1.02;
  text-wrap: balance;
}

.learn-section-header > p {
  margin: 0;
  color: var(--color-brand-gray);
  font-size: 1.07rem;
  line-height: 1.65;
}

.learn-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.learn-course-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 32rem;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  color: var(--color-white);
  background: var(--color-brand-black);
}

.learn-course-card--primary {
  background: var(--color-brand-red);
}

.learn-course-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.learn-course-card__top span,
.learn-resource-card__number,
.learn-guide-card > span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.learn-course-card__top small {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.learn-course-card > div:last-child > p:first-child,
.learn-resource-card > div > p:first-child {
  margin: 0 0 0.75rem;
  color: rgb(255 255 255 / 58%);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.learn-course-card--primary > div:last-child > p:first-child {
  color: rgb(255 255 255 / 72%);
}

.learn-course-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.learn-course-card > div:last-child > p:last-of-type {
  max-width: 34rem;
  margin: 1.2rem 0 2rem;
  color: rgb(255 255 255 / 72%);
  line-height: 1.65;
}

.learn-course-card a,
.learn-resource-card a,
.learn-guide-card a {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: inherit;
  font-weight: 750;
  text-underline-offset: 0.3em;
}

.learn-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.learn-resource-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 25rem;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  background: var(--color-white);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.learn-resource-card__number {
  color: var(--color-brand-red);
}

.learn-resource-card > div {
  align-self: end;
  margin-top: 3rem;
}

.learn-resource-card > div > p:first-child {
  color: var(--color-brand-gray);
}

.learn-resource-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.035em;
}

.learn-resource-card > div > p:last-child {
  max-width: 35rem;
  margin: 1rem 0 2rem;
  color: var(--color-brand-gray);
  line-height: 1.65;
}

.learn-resource-card a {
  color: var(--color-brand-red);
}

.learn-guides {
  color: var(--color-white);
  background: var(--color-brand-black);
}

.learn-guides__header {
  max-width: 50rem;
}

.learn-guides__header > p:last-child {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: rgb(255 255 255 / 64%);
  font-size: 1.07rem;
  line-height: 1.65;
}

.learn-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 5rem);
  background: rgb(255 255 255 / 16%);
  border: 1px solid rgb(255 255 255 / 16%);
}

.learn-guide-card {
  display: flex;
  flex-direction: column;
  min-height: 25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-brand-black);
}

.learn-guide-card--featured {
  background: var(--color-brand-red);
}

.learn-guide-card > span {
  color: var(--color-brand-red);
}

.learn-guide-card--featured > span {
  color: rgb(255 255 255 / 72%);
}

.learn-guide-card h3 {
  margin: 4.5rem 0 1rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.025em;
}

.learn-guide-card p {
  margin: 0 0 2rem;
  color: rgb(255 255 255 / 64%);
  line-height: 1.65;
}

.learn-guide-card--featured p {
  color: rgb(255 255 255 / 78%);
}

.learn-guide-card a {
  margin-top: auto;
}

.learn-mentorship {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-white);
  background: #111;
}

.learn-mentorship__background {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../assets/images/home/abertura-modelo-industrial.png") center / cover no-repeat;
  filter: saturate(0.72) contrast(1.05);
  transform: scale(1.02);
}

.learn-mentorship::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(12 12 13 / 97%) 0%, rgb(12 12 13 / 88%) 52%, rgb(12 12 13 / 62%) 100%);
  content: "";
}

.learn-mentorship__inner {
  padding-block: clamp(5.5rem, 11vw, 10rem);
}

.learn-mentorship__content {
  max-width: 55rem;
}

.learn-mentorship__content h2 {
  max-width: 17ch;
  font-size: clamp(2.75rem, 5.8vw, 5.25rem);
}

.learn-mentorship__content > p:last-child {
  max-width: 42rem;
  margin: 1.75rem 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.learn-mentorship__pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 62rem;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 24%);
  border-left: 1px solid rgb(255 255 255 / 24%);
  list-style: none;
}

.learn-mentorship__pillars li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 11rem;
  padding: 1.25rem;
  border-right: 1px solid rgb(255 255 255 / 24%);
  border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.learn-mentorship__pillars span {
  color: #e7a9a9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.learn-mentorship__pillars strong {
  max-width: 13ch;
  font-size: 1rem;
  line-height: 1.3;
}

.learn-mentorship__offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2.5rem 5rem;
  max-width: 62rem;
  margin-top: 2rem;
}

.learn-mentorship__offer > p {
  margin: 0;
  color: rgb(255 255 255 / 68%);
  line-height: 1.65;
}

.learn-mentorship__offer > div {
  display: grid;
  gap: 0.8rem;
}

.learn-mentorship__offer > div > span {
  color: rgb(255 255 255 / 52%);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learn-mentorship__button {
  color: var(--color-white);
  background: var(--color-brand-red);
}

.learn-mentorship__button:hover {
  color: var(--color-brand-black);
  background: var(--color-white);
}

/* Pricing page */
.pricing-section-inner {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.pricing-eyebrow {
  margin: 0 0 1rem;
  color: var(--color-brand-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pricing-eyebrow--light {
  color: #e7a9a9;
}

.pricing-hero {
  color: var(--color-white);
  background: var(--color-brand-black);
}

.pricing-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(34rem, 75svh, 48rem);
  padding-block: clamp(5rem, 10vw, 9rem);
  text-align: center;
}

.pricing-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.pricing-hero__inner > p:not(.pricing-eyebrow) {
  max-width: 45rem;
  margin: 1.75rem auto 2.25rem;
  color: rgb(255 255 255 / 68%);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.pricing-hero__button {
  color: var(--color-brand-black);
  background: var(--color-white);
}

.pricing-hero__button:hover {
  color: var(--color-white);
  background: var(--color-brand-red);
}

.pricing-plans,
.pricing-comparison,
.pricing-purchase {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.pricing-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.68fr);
  align-items: end;
  gap: 2rem clamp(3rem, 8vw, 8rem);
}

.pricing-section-header h2,
.pricing-viewer h2,
.pricing-license h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  letter-spacing: -0.048em;
  line-height: 1.02;
  text-wrap: balance;
}

.pricing-section-header > p {
  margin: 0;
  color: var(--color-brand-gray);
  font-size: 1.07rem;
  line-height: 1.65;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.pricing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 35rem;
  padding: clamp(1.5rem, 2.8vw, 2.5rem);
  background: var(--color-white);
}

.pricing-plan-card--trial {
  background: #f4f3f2;
}

.pricing-plan-card--featured {
  color: var(--color-white);
  background: var(--color-brand-black);
}

.pricing-plan-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.55rem 0.75rem;
  color: var(--color-white);
  background: var(--color-brand-red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-plan-card__heading > span {
  display: block;
  min-height: 2.5rem;
  color: var(--color-brand-gray);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pricing-plan-card--featured .pricing-plan-card__heading > span {
  color: rgb(255 255 255 / 54%);
}

.pricing-plan-card h3 {
  min-height: 4rem;
  margin: 1.25rem 0 2.5rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.pricing-plan-card__price {
  margin: 0;
  color: var(--color-brand-red);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1;
}

.pricing-plan-card__price small {
  font-size: 0.38em;
  letter-spacing: 0;
}

.pricing-plan-card__period {
  min-height: 2.6rem;
  margin: 0.75rem 0 0;
  color: var(--color-brand-gray);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.4;
}

.pricing-plan-card--featured .pricing-plan-card__period {
  color: rgb(255 255 255 / 56%);
}

.pricing-plan-card > p {
  margin: 3rem 0 2rem;
  color: var(--color-brand-gray);
  line-height: 1.65;
}

.pricing-plan-card--featured > p {
  color: rgb(255 255 255 / 66%);
}

.pricing-plan-card__button {
  width: 100%;
  margin-top: auto;
  color: var(--color-white);
  background: var(--color-brand-red);
}

.pricing-plan-card__button:hover {
  color: var(--color-white);
  background: var(--color-brand-black);
}

.pricing-plan-card--featured .pricing-plan-card__button {
  color: var(--color-brand-black);
  background: var(--color-white);
}

.pricing-plan-card--featured .pricing-plan-card__button:hover {
  color: var(--color-white);
  background: var(--color-brand-red);
}

.pricing-plans__payment-note,
.pricing-table-note {
  margin: 1.25rem 0 0;
  color: var(--color-brand-gray);
  font-size: 0.83rem;
  line-height: 1.5;
  text-align: center;
}

.pricing-viewer {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  color: var(--color-white);
  background: var(--color-brand-red);
}

.pricing-viewer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  align-items: end;
  gap: 2.5rem clamp(4rem, 9vw, 9rem);
}

.pricing-viewer__copy strong {
  display: block;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.pricing-viewer__copy p {
  margin: 0;
  color: rgb(255 255 255 / 76%);
  line-height: 1.65;
}

.pricing-comparison {
  background: #f4f3f2;
}

.pricing-table-shell {
  margin-top: clamp(3rem, 6vw, 5rem);
  overflow-x: auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overscroll-behavior-inline: contain;
}

.pricing-table-shell:focus-visible {
  outline: 3px solid var(--color-brand-red);
  outline-offset: 4px;
}

.pricing-table {
  width: 100%;
  min-width: 62rem;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricing-table th,
.pricing-table td {
  height: 3.5rem;
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  border-right: 0;
}

.pricing-table thead th {
  height: 5.5rem;
  color: var(--color-white);
  background: var(--color-brand-black);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
}

.pricing-table thead th:first-child {
  min-width: 20rem;
  text-align: left;
}

.pricing-table tbody th {
  color: var(--color-brand-black);
  background: var(--color-white);
  font-weight: 650;
  text-align: left;
}

.pricing-table tbody td {
  color: #8a8a8a;
  text-align: center;
}

.pricing-table .is-yes {
  color: var(--color-brand-black);
  font-weight: 750;
}

.pricing-table .pricing-table__featured {
  background: rgb(174 62 62 / 8%);
}

.pricing-table thead .pricing-table__featured {
  background: var(--color-brand-red);
}

.pricing-license {
  padding-block: clamp(5rem, 9vw, 8.5rem);
  color: var(--color-white);
  background: var(--color-brand-black);
}

.pricing-license__header {
  max-width: 56rem;
}

.pricing-license__grid,
.pricing-purchase__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(3.5rem, 7vw, 5.5rem) 0 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.pricing-license__grid article,
.pricing-purchase__steps li {
  min-height: 16rem;
  padding: 1.5rem;
  border-right: 1px solid rgb(255 255 255 / 18%);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.pricing-license__grid span,
.pricing-purchase__steps span {
  color: var(--color-brand-red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pricing-license__grid h3,
.pricing-purchase__steps h3 {
  margin: 3.5rem 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.pricing-license__grid p,
.pricing-purchase__steps p {
  margin: 0;
  color: rgb(255 255 255 / 60%);
  line-height: 1.6;
}

.pricing-license__note {
  margin: 1.25rem 0 0;
  color: rgb(255 255 255 / 48%);
  font-size: 0.82rem;
  text-align: right;
}

.pricing-purchase__steps {
  border-color: var(--color-border);
  list-style: none;
}

.pricing-purchase__steps li {
  border-color: var(--color-border);
}

.pricing-purchase__steps h3 {
  color: var(--color-brand-black);
}

.pricing-purchase__steps p {
  color: var(--color-brand-gray);
}

.pricing-included {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.pricing-included > div {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 14rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f4f3f2;
}

.pricing-included span {
  color: var(--color-brand-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-included strong {
  max-width: 30rem;
  font-size: 1.25rem;
  line-height: 1.4;
}

.pricing-included a {
  align-self: end;
  margin-top: auto;
  color: var(--color-brand-red);
  font-weight: 750;
  text-underline-offset: 0.3em;
}

/* Trial page */
.trial-section-inner {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.trial-eyebrow {
  margin: 0 0 1rem;
  color: var(--color-brand-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.trial-eyebrow--light {
  color: #e7a9a9;
}

.trial-hero {
  overflow: hidden;
  background: #f4f3f2;
}

.trial-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(27rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.trial-hero__content h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.trial-hero__content > p:not(.trial-eyebrow) {
  max-width: 39rem;
  margin: 1.75rem 0 0;
  color: var(--color-brand-gray);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.65;
}

.trial-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.25rem;
}

.trial-hero__visual {
  margin: 0;
  box-shadow: 0 2rem 4rem rgb(32 30 30 / 16%);
}

.trial-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.trial-process,
.trial-requirements {
  padding-block: clamp(5rem, 9vw, 8.5rem);
  color: var(--color-white);
  background: var(--color-brand-black);
}

.trial-process__header,
.trial-requirements__header {
  max-width: 55rem;
}

.trial-process__header h2,
.trial-renewal h2,
.trial-capabilities h2,
.trial-requirements h2,
.trial-download h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
  text-wrap: balance;
}

.trial-process__header > p:last-child,
.trial-requirements__header > p:last-child {
  max-width: 45rem;
  margin: 1.5rem 0 0;
  color: rgb(255 255 255 / 64%);
  font-size: 1.07rem;
  line-height: 1.65;
}

.trial-process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(3.5rem, 7vw, 5.5rem) 0 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
  border-left: 1px solid rgb(255 255 255 / 18%);
  list-style: none;
}

.trial-process__steps li {
  min-height: 17rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-right: 1px solid rgb(255 255 255 / 18%);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.trial-process__steps span,
.trial-download__content ol span {
  color: var(--color-brand-red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trial-process__steps h3 {
  margin: 4rem 0 0.85rem;
  font-size: 1.35rem;
}

.trial-process__steps p {
  margin: 0;
  color: rgb(255 255 255 / 60%);
  line-height: 1.65;
}

.trial-renewal {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  color: var(--color-white);
  background: var(--color-brand-red);
}

.trial-renewal__inner,
.trial-capabilities__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.75fr);
  align-items: end;
  gap: 2.5rem clamp(4rem, 9vw, 9rem);
}

.trial-renewal__inner > p {
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 1.08rem;
  line-height: 1.7;
}

.trial-capabilities {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.trial-capabilities__inner > div:last-child > p {
  margin: 0;
  color: var(--color-brand-gray);
  font-size: 1.07rem;
  line-height: 1.7;
}

.trial-capabilities__inner .trial-capabilities__note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-brand-black);
  font-weight: 700;
}

.trial-capabilities__inner a {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--color-brand-red);
  font-weight: 750;
  text-underline-offset: 0.3em;
}

.trial-requirements__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(3.5rem, 7vw, 5.5rem) 0 0;
  padding: 0;
  background: rgb(255 255 255 / 16%);
  border: 1px solid rgb(255 255 255 / 16%);
  list-style: none;
}

.trial-requirements__grid li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 11rem;
  padding: 1.5rem;
  background: var(--color-brand-black);
}

.trial-requirements__grid span {
  color: #e7a9a9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trial-requirements__grid strong {
  max-width: 23ch;
  line-height: 1.45;
}

.trial-download {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: #f4f3f2;
}

.trial-download__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(31rem, 1.22fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.trial-download__content {
  position: sticky;
  top: 2rem;
}

.trial-download__content > p:not(.trial-eyebrow) {
  margin: 1.5rem 0 0;
  color: var(--color-brand-gray);
  font-size: 1.07rem;
  line-height: 1.7;
}

.trial-download__content ol {
  display: grid;
  gap: 0;
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.trial-download__content li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 650;
  line-height: 1.4;
}

.trial-form-card {
  min-height: 42rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--color-white);
  box-shadow: 0 1.5rem 4rem rgb(32 30 30 / 10%);
}

.trial-form__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trial-form__heading p {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.trial-form__heading span {
  color: var(--color-brand-gray);
  font-size: 0.72rem;
}

.trial-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}

.trial-field--full {
  grid-column: 1 / -1;
}

.trial-field label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
  font-weight: 650;
}

.trial-field label span {
  color: var(--color-brand-red);
}

.trial-field input {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.75rem 0.9rem;
  color: var(--color-brand-black);
  background: var(--color-white);
  border: 1px solid rgb(32 30 30 / 34%);
  border-radius: 0;
  font: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.trial-field input:focus {
  border-color: var(--color-brand-red);
  box-shadow: 0 0 0 3px rgb(174 62 62 / 14%);
  outline: 0;
}

.trial-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin-top: 1.75rem;
  color: var(--color-brand-gray);
  font-size: 0.82rem;
  line-height: 1.55;
}

.trial-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--color-brand-red);
}

.trial-consent a {
  color: var(--color-brand-black);
  text-underline-offset: 0.2em;
}

.trial-form__submit {
  width: 100%;
  margin-top: 2rem;
  color: var(--color-white);
  background: var(--color-brand-red);
  border: 0;
  cursor: pointer;
}

.trial-form__submit:hover {
  background: var(--color-brand-black);
}

.trial-form__submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.trial-form__website {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.trial-form__status {
  min-height: 1.5em;
  margin: 1rem 0 0;
  color: var(--color-brand-gray);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.trial-form__status--error {
  color: #9f2828;
  font-weight: 650;
}

.request-received {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background:
    linear-gradient(90deg, #f4f3f2 0, #f4f3f2 50%, var(--color-white) 50%);
}

.request-received__inner,
.request-received__resources-inner {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.request-received__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 8vw, 8rem);
}

.request-received__message {
  padding-right: clamp(0rem, 3vw, 2rem);
}

.request-received__check {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 2.25rem;
  color: var(--color-white);
  background: var(--color-brand-red);
  border-radius: 50%;
  font-size: 1.85rem;
  font-weight: 800;
}

.request-received h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.request-received__lead {
  max-width: 35rem;
  margin: 1.75rem 0 0;
  color: var(--color-brand-gray);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.request-received__notice {
  max-width: 35rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.request-received__notice strong {
  font-size: 0.92rem;
}

.request-received__notice p {
  margin: 0.45rem 0 0;
  color: var(--color-brand-gray);
  line-height: 1.6;
}

.request-received__next {
  align-self: center;
}

.request-received__label {
  margin: 0 0 1.75rem;
  color: var(--color-brand-red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-received__next ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-received__next li {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
}

.request-received__next li:last-child {
  border-bottom: 1px solid var(--color-border);
}

.request-received__next li > span {
  padding-top: 0.2rem;
  color: var(--color-brand-red);
  font-size: 0.78rem;
  font-weight: 800;
}

.request-received__next h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.request-received__next li p {
  margin: 0.5rem 0 0;
  color: var(--color-brand-gray);
  line-height: 1.6;
}

.request-received__resources {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  color: var(--color-white);
  background: var(--color-brand-black);
}

.request-received__resources-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2.5rem 5rem;
}

.request-received__resources h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.request-received__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(13rem, 1fr));
  gap: 0.85rem;
  width: min(100%, 35rem);
}

.request-received__training-button {
  color: var(--color-white);
  background: transparent;
  border-color: rgb(255 255 255 / 60%);
}

.request-received__training-button:hover {
  color: var(--color-brand-black);
  background: var(--color-white);
  border-color: var(--color-white);
}

.request-received__home-link {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 0.5rem;
  color: rgb(255 255 255 / 72%);
  font-size: 0.86rem;
  text-underline-offset: 0.25em;
}

.request-received__home-link:hover {
  color: var(--color-white);
}

.private-download-inner {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.private-download-hero {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: #f4f3f2;
}

.private-download-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(26rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.private-download-hero__content {
  max-width: 43rem;
}

.private-download-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.private-download-hero__content > p:last-child {
  max-width: 37rem;
  margin: 1.75rem 0 0;
  color: var(--color-brand-gray);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.private-download-card {
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-white);
  background: var(--color-brand-black);
  box-shadow: 0 2rem 5rem rgb(32 30 30 / 18%);
}

.private-download-card__label {
  display: block;
  color: #e7a9a9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.private-download-card__file {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-block: 1.75rem;
  border-block: 1px solid rgb(255 255 255 / 18%);
}

.private-download-card__file > span {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4.5rem;
  color: var(--color-white);
  background: var(--color-brand-red);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.private-download-card__file strong {
  display: block;
  font-size: 1.2rem;
}

.private-download-card__file p {
  margin: 0.5rem 0 0;
  color: rgb(255 255 255 / 64%);
  font-size: 0.86rem;
  line-height: 1.5;
}

.private-download-card__button {
  width: 100%;
  margin-top: 2rem;
  color: var(--color-white);
  background: var(--color-brand-red);
}

.private-download-card__button:hover {
  background: #8f3232;
}

.private-download-card__status {
  margin: 1rem 0 0;
  color: rgb(255 255 255 / 58%);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.private-download-steps {
  padding-block: clamp(5rem, 9vw, 8rem);
  color: var(--color-white);
  background: var(--color-brand-red);
}

.private-download-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.55fr);
  align-items: end;
  gap: 2rem 5rem;
}

.private-download-section-header .trial-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.75rem;
}

.private-download-section-header h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.private-download-section-header > p:last-child {
  margin: 0;
  color: rgb(255 255 255 / 74%);
  font-size: 1.05rem;
  line-height: 1.65;
}

.private-download-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(3.5rem, 7vw, 5.5rem) 0 0;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 24%);
  list-style: none;
}

.private-download-steps__grid li {
  min-height: 20rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.private-download-steps__grid li + li {
  border-left: 1px solid rgb(255 255 255 / 24%);
}

.private-download-steps__grid li > span {
  color: rgb(255 255 255 / 56%);
  font-size: 0.8rem;
  font-weight: 800;
}

.private-download-steps__grid li > div {
  margin-top: clamp(4rem, 7vw, 7rem);
}

.private-download-steps__grid h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.private-download-steps__grid p {
  margin: 0.8rem 0 0;
  color: rgb(255 255 255 / 76%);
  line-height: 1.65;
}

.private-download-steps__grid code {
  color: var(--color-white);
  font-weight: 800;
}

.private-download-license {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--color-white);
}

.private-download-license__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.62fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.private-download-license__content h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.private-download-license__content > p:not(.trial-eyebrow) {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--color-brand-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.private-download-license__content .button {
  margin-top: 2rem;
}

.private-download-license__note {
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-white);
  background: var(--color-brand-black);
}

.private-download-license__note span {
  color: #e7a9a9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.private-download-license__note strong {
  display: block;
  margin-top: 2.5rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.private-download-license__note p {
  margin: 1.25rem 0 0;
  color: rgb(255 255 255 / 68%);
  line-height: 1.65;
}

.private-download-learning {
  padding-block: clamp(5rem, 9vw, 8rem);
  color: var(--color-white);
  background: var(--color-brand-black);
}

.private-download-section-header--dark > p:last-child {
  color: rgb(255 255 255 / 65%);
}

.private-download-learning__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  background: rgb(255 255 255 / 18%);
  border: 1px solid rgb(255 255 255 / 18%);
}

.private-download-learning__grid article {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1.25rem;
  min-height: 23rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--color-brand-black);
}

.private-download-learning__grid article > span {
  color: #e7a9a9;
  font-size: 0.78rem;
  font-weight: 800;
}

.private-download-learning__grid article > div {
  display: flex;
  flex-direction: column;
}

.private-download-learning__grid article div > p:first-child {
  margin: 0;
  color: rgb(255 255 255 / 48%);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.private-download-learning__grid h3 {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.private-download-learning__grid h3 + p {
  margin: 1.25rem 0 0;
  color: rgb(255 255 255 / 68%);
  line-height: 1.65;
}

.private-download-learning__grid a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 2rem;
  color: var(--color-white);
  font-weight: 750;
  text-underline-offset: 0.25em;
}

.private-download-learning__grid a:hover {
  color: #e7a9a9;
}

.checkout-page,
.payment-return-page {
  background: #f4f3f2;
}

.checkout-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.checkout-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  min-height: var(--header-height);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.checkout-header__inner > a {
  display: inline-flex;
  width: clamp(10.75rem, 17vw, 13.25rem);
}

.checkout-header img {
  display: block;
  width: 100%;
  height: auto;
}

.checkout-header__inner > span {
  color: var(--color-brand-gray);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.checkout__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(30rem, 0.72fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 9rem);
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.checkout__introduction {
  max-width: 43rem;
  padding-top: 1rem;
}

.checkout__back {
  display: inline-flex;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
  color: var(--color-brand-gray);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.checkout__back:hover {
  color: var(--color-brand-red);
}

.checkout h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.checkout__introduction > p:not(.pricing-eyebrow) {
  max-width: 38rem;
  margin: 1.75rem 0 0;
  color: var(--color-brand-gray);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.checkout-security {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  max-width: 40rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.checkout-security__mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--color-white);
  background: var(--color-brand-red);
  border-radius: 50%;
  font-weight: 850;
}

.checkout-security strong {
  display: block;
  font-size: 0.95rem;
}

.checkout-security p {
  margin: 0.5rem 0 0;
  color: var(--color-brand-gray);
  font-size: 0.86rem;
  line-height: 1.6;
}

.checkout-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
  padding-left: 3.75rem;
}

.checkout-payment-methods span {
  padding: 0.5rem 0.7rem;
  color: var(--color-brand-gray);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.72rem;
  font-weight: 700;
}

.checkout-card {
  padding: clamp(1.5rem, 4vw, 3.25rem);
  background: var(--color-white);
  box-shadow: 0 1.5rem 4rem rgb(32 30 30 / 10%);
}

.checkout-card__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
}

.checkout-card__heading span {
  color: var(--color-brand-red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-card__heading h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.checkout-card__heading a {
  color: var(--color-brand-gray);
  font-size: 0.8rem;
  font-weight: 650;
  text-underline-offset: 0.25em;
}

.checkout-card__heading a:hover {
  color: var(--color-brand-red);
}

.checkout-card__period {
  margin: 0.75rem 0 0;
  color: var(--color-brand-gray);
  font-size: 0.86rem;
}

.checkout-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-block: 1.5rem;
  border-block: 1px solid var(--color-border);
}

.checkout-quantity label {
  font-size: 0.92rem;
  font-weight: 750;
}

.checkout-quantity p {
  margin: 0.4rem 0 0;
  color: var(--color-brand-gray);
  font-size: 0.76rem;
}

.checkout-quantity__control {
  display: grid;
  grid-template-columns: 2.75rem 3.75rem 2.75rem;
  flex: 0 0 auto;
}

.checkout-quantity__control button,
.checkout-quantity__control input {
  width: 100%;
  min-height: 2.9rem;
  color: var(--color-brand-black);
  background: var(--color-white);
  border: 1px solid rgb(32 30 30 / 25%);
  font: inherit;
  text-align: center;
}

.checkout-quantity__control button {
  font-size: 1.2rem;
  cursor: pointer;
}

.checkout-quantity__control button:hover:not(:disabled) {
  color: var(--color-white);
  background: var(--color-brand-black);
}

.checkout-quantity__control button:disabled {
  color: rgb(32 30 30 / 25%);
  cursor: not-allowed;
}

.checkout-quantity__control input {
  border-inline: 0;
  -moz-appearance: textfield;
}

.checkout-quantity__control input::-webkit-inner-spin-button,
.checkout-quantity__control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.checkout-summary {
  margin: 0;
  padding: 1.5rem 0 0;
}

.checkout-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.55rem;
}

.checkout-summary dt {
  color: var(--color-brand-gray);
  font-size: 0.82rem;
}

.checkout-summary dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.checkout-summary .checkout-summary__total {
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.checkout-summary__total dt {
  color: var(--color-brand-black);
  font-size: 1rem;
  font-weight: 750;
}

.checkout-summary__total dd {
  color: var(--color-brand-red);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
}

.checkout-email-note {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: #f4f3f2;
}

.checkout-email-note strong {
  font-size: 0.8rem;
}

.checkout-email-note p {
  margin: 0.55rem 0 0;
  color: var(--color-brand-gray);
  font-size: 0.78rem;
  line-height: 1.55;
}

.checkout-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  color: var(--color-brand-gray);
  font-size: 0.8rem;
  line-height: 1.55;
}

.checkout-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--color-brand-red);
}

.checkout-consent a {
  color: var(--color-brand-black);
  text-underline-offset: 0.2em;
}

.checkout-card__submit {
  width: 100%;
  margin-top: 1.75rem;
  color: var(--color-white);
  background: var(--color-brand-red);
  border: 0;
  cursor: pointer;
}

.checkout-card__submit:hover {
  background: var(--color-brand-black);
}

.checkout-card__demo {
  margin: 0.9rem 0 0;
  color: var(--color-brand-gray);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

.checkout-card__demo--error {
  color: #9f2828;
  font-weight: 650;
}

.checkout-card__submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.checkout-footer {
  color: var(--color-brand-gray);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.checkout-footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  min-height: 6rem;
  margin-inline: auto;
  padding: 1.5rem var(--page-gutter);
}

.checkout-footer p {
  margin: 0;
  font-size: 0.78rem;
}

.checkout-footer nav {
  display: flex;
  gap: 1.5rem;
}

.checkout-footer a {
  color: var(--color-brand-gray);
  font-size: 0.78rem;
  text-underline-offset: 0.25em;
}

.checkout-footer a:hover {
  color: var(--color-brand-red);
}

.payment-return {
  display: grid;
  place-items: center;
  min-height: calc(100svh - var(--header-height) - 6rem);
  padding-block: clamp(4rem, 9vw, 8rem);
}

.payment-return__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.payment-return__message {
  max-width: 43rem;
}

.payment-return__icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  color: var(--color-white);
  background: var(--color-brand-red);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 850;
}

.payment-return__eyebrow {
  margin: 2.25rem 0 1rem;
  color: var(--color-brand-red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-return h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.4rem);
  letter-spacing: -0.06em;
  line-height: 0.97;
  text-wrap: balance;
}

.payment-return__lead {
  max-width: 40rem;
  margin: 1.75rem 0 0;
  color: var(--color-brand-gray);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.payment-return__button {
  margin-top: 2.25rem;
  color: var(--color-white);
  background: var(--color-brand-red);
}

.payment-return__button:hover {
  background: var(--color-brand-black);
}

.payment-return__details {
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-white);
  background: var(--color-brand-black);
}

.payment-return__status {
  display: inline-flex;
  padding: 0.5rem 0.7rem;
  color: #e7a9a9;
  border: 1px solid rgb(231 169 169 / 45%);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-return__details h2 {
  margin: 2rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.payment-return__details > p {
  margin: 1.25rem 0 0;
  color: rgb(255 255 255 / 68%);
  line-height: 1.65;
}

.payment-return__details dl {
  margin: 2.25rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 17%);
}

.payment-return__details dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
}

.payment-return__details dt {
  color: rgb(255 255 255 / 48%);
  font-size: 0.76rem;
}

.payment-return__details dd {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: right;
}

.payment-return-page[data-payment-status="processando"] .payment-return__icon {
  background: var(--color-brand-gray);
}

.payment-return-page[data-payment-status="processando"] .payment-return__eyebrow {
  color: var(--color-brand-gray);
}

.payment-return-page[data-payment-status="processando"] .payment-return__status {
  color: var(--color-white);
  border-color: rgb(255 255 255 / 30%);
}

.payment-return-page[data-payment-status="nao-concluido"] .payment-return__icon {
  color: var(--color-brand-black);
  background: var(--color-white);
  border: 2px solid var(--color-brand-black);
}

.payment-return-page[data-payment-status="nao-concluido"] .payment-return__details {
  background: #4b4949;
}

.payment-return-page[data-payment-status="nao-concluido"] .payment-return__eyebrow {
  color: var(--color-brand-black);
}

.legal-inner {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.legal-hero {
  padding-block: clamp(5rem, 10vw, 9rem);
  color: var(--color-white);
  background: var(--color-brand-black);
}

.legal-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.58fr);
  align-items: end;
  gap: 3rem clamp(4rem, 10vw, 10rem);
}

.legal-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 5.7rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.legal-hero__summary > p {
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-hero__summary dl {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.legal-hero__summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.45rem;
}

.legal-hero__summary dt {
  color: rgb(255 255 255 / 46%);
  font-size: 0.74rem;
}

.legal-hero__summary dd {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
}

.legal-document {
  padding-block: clamp(4rem, 9vw, 8rem);
  background: #f4f3f2;
}

.legal-document__inner {
  display: grid;
  grid-template-columns: minmax(14rem, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.legal-navigation {
  position: sticky;
  top: 2rem;
}

.legal-navigation > p {
  margin: 0 0 1.25rem;
  color: var(--color-brand-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-navigation ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.legal-navigation li {
  border-bottom: 1px solid var(--color-border);
}

.legal-navigation a {
  display: block;
  padding: 0.7rem 0;
  color: var(--color-brand-gray);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.legal-navigation a:hover {
  color: var(--color-brand-red);
}

.legal-content {
  min-width: 0;
  padding: clamp(1.5rem, 5vw, 4.5rem);
  background: var(--color-white);
  box-shadow: 0 1.5rem 4rem rgb(32 30 30 / 8%);
}

.legal-notice {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-white);
  background: var(--color-brand-red);
}

.legal-notice strong {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  letter-spacing: -0.02em;
}

.legal-notice p {
  margin: 1rem 0 0;
  color: rgb(255 255 255 / 82%);
  line-height: 1.7;
}

.legal-content > section {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  scroll-margin-top: 1.5rem;
}

.legal-content > section + section {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid var(--color-border);
}

.legal-content > section > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-brand-red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.legal-content h2 {
  max-width: 20ch;
  margin: 0 0 2rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.legal-content p,
.legal-content li,
.legal-definitions dd {
  color: #4f4e4e;
  font-size: 0.97rem;
  line-height: 1.8;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p,
.legal-content p + ul,
.legal-content p + ol,
.legal-content ul + p,
.legal-content ol + p {
  margin-top: 1.25rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 0;
  padding-left: 1.35rem;
}

.legal-content li + li {
  margin-top: 0.75rem;
}

.legal-content strong {
  color: var(--color-brand-black);
}

.legal-content a {
  color: var(--color-brand-red);
  font-weight: 700;
  text-underline-offset: 0.25em;
}

.legal-definitions {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.legal-definitions > div {
  display: grid;
  grid-template-columns: minmax(9rem, 0.28fr) minmax(0, 1fr);
  gap: 1rem 2rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-definitions dt {
  font-size: 0.85rem;
  font-weight: 800;
}

.legal-definitions dd {
  margin: 0;
}

.legal-content address {
  display: grid;
  justify-items: start;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #f4f3f2;
  font-style: normal;
}

.legal-content address strong {
  margin-bottom: 0.25rem;
}

.not-found {
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-brand-black);
}

.not-found__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(26rem, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  min-height: clamp(38rem, 78svh, 52rem);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 7rem) var(--page-gutter);
}

.not-found__content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.not-found__code {
  margin: 0 0 1.25rem;
  color: #e7a9a9;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.not-found h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.not-found__content > p:last-of-type {
  max-width: 36rem;
  margin: 1.75rem 0 0;
  color: rgb(255 255 255 / 66%);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.not-found__primary-button {
  color: var(--color-white);
  background: var(--color-brand-red);
}

.not-found__primary-button:hover {
  color: var(--color-brand-black);
  background: var(--color-white);
}

.not-found__secondary-button {
  color: var(--color-white);
  background: transparent;
  border-color: rgb(255 255 255 / 55%);
}

.not-found__secondary-button:hover {
  color: var(--color-brand-black);
  background: var(--color-white);
  border-color: var(--color-white);
}

.not-found__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: rgb(255 255 255 / 6%);
  font-size: clamp(8rem, 19vw, 17rem);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.75;
  user-select: none;
}

.not-found__zero {
  position: relative;
  flex: 0 0 auto;
  width: clamp(7rem, 17vw, 14rem);
  aspect-ratio: 0.76;
  margin-inline: -0.04em 0.04em;
  border: clamp(1rem, 2.4vw, 2rem) solid var(--color-brand-red);
  border-radius: 50%;
  transform: rotate(13deg);
}

.not-found__zero::before,
.not-found__zero::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 118%;
  height: 2px;
  content: "";
  background: rgb(255 255 255 / 30%);
  transform-origin: center;
}

.not-found__zero::before {
  transform: translate(-50%, -50%) rotate(35deg);
}

.not-found__zero::after {
  transform: translate(-50%, -50%) rotate(-35deg);
}

.not-found__zero i {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--color-white);
  border-radius: 50%;
}

.not-found__zero i:nth-child(1) {
  top: 16%;
  left: 16%;
}

.not-found__zero i:nth-child(2) {
  top: 16%;
  right: 16%;
}

.not-found__zero i:nth-child(3) {
  right: 16%;
  bottom: 16%;
}

.not-found__zero i:nth-child(4) {
  bottom: 16%;
  left: 16%;
}

.not-found-links {
  background: var(--color-brand-red);
}

.not-found-links__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.not-found-links a {
  display: grid;
  min-height: 12rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-white);
  border-inline: 1px solid rgb(255 255 255 / 20%);
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.not-found-links a + a {
  border-left: 0;
}

.not-found-links a:hover {
  color: var(--color-brand-black);
  background: var(--color-white);
}

.not-found-links span {
  align-self: start;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.55;
}

.not-found-links strong {
  align-self: end;
  margin-top: 2rem;
  font-size: 1.3rem;
}

.not-found-links small {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  line-height: 1.45;
  opacity: 0.7;
}

.site-footer {
  color: var(--color-brand-black);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.site-footer__inner {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--page-gutter) 2rem;
}

.site-footer__content {
  display: grid;
  grid-template-columns: minmax(17rem, 1.4fr) repeat(3, minmax(9rem, 0.7fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.site-footer__brand > a {
  display: inline-flex;
  width: min(100%, 12.5rem);
}

.site-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__brand p {
  max-width: 31ch;
  margin: 1.5rem 0 0;
  color: var(--color-brand-gray);
  font-size: 1rem;
  line-height: 1.65;
}

.site-footer h2 {
  margin: 0 0 1.25rem;
  color: var(--color-brand-black);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__navigation li + li,
.site-footer__contact li + li,
.site-footer__social li + li {
  margin-top: 0.75rem;
}

.site-footer__navigation a,
.site-footer__contact a,
.site-footer__social a,
.site-footer__bottom a {
  color: var(--color-brand-gray);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer__navigation a:hover,
.site-footer__contact a:hover,
.site-footer__social a:hover,
.site-footer__bottom a:hover {
  color: var(--color-brand-red);
}

.site-footer__social a span {
  color: var(--color-brand-red);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.site-footer__bottom p {
  margin: 0;
  color: var(--color-brand-gray);
  font-size: 0.875rem;
  line-height: 1.5;
}

.site-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.site-footer__bottom a {
  font-size: 0.875rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 51.25rem) {
  :root {
    --header-height: 4.5rem;
  }

  .site-header__brand {
    width: 10.75rem;
  }

  .menu-toggle {
    display: block;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0 var(--page-gutter) 1.25rem;
    visibility: hidden;
    opacity: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-0.5rem);
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  }

  .site-header[data-menu-open="true"] .primary-navigation {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-navigation__list {
    display: grid;
    gap: 0;
    width: min(100%, var(--content-width));
    margin-inline: auto;
    padding-top: 0.5rem;
  }

  .primary-navigation a {
    width: 100%;
    min-height: 3.25rem;
    border-bottom: 1px solid var(--color-border);
  }

  .primary-navigation .primary-navigation__cta {
    justify-content: center;
    margin-top: 0.875rem;
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    padding-block: clamp(2.75rem, 8vw, 4rem);
  }

  .hero__content {
    max-width: 42rem;
  }

  .hero__title {
    max-width: 15ch;
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .hero__description {
    max-width: 40rem;
  }

  .hero__visual {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .carousel__slide img {
    max-height: none;
  }

  .carousel__arrow--previous {
    left: 0.625rem;
  }

  .carousel__arrow--next {
    right: 0.625rem;
  }

  .audience__header {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1.75rem;
  }

  .audience__title {
    max-width: 12ch;
  }

  .audience__introduction {
    max-width: 42rem;
  }

  .capabilities__header {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .capabilities__eyebrow {
    margin-bottom: -0.5rem;
  }

  .capabilities__title {
    max-width: 13ch;
  }

  .capabilities__introduction {
    max-width: 42rem;
  }

  .why-tsteel__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(2.5rem, 7vw, 4rem);
  }

  .why-tsteel__header {
    max-width: 42rem;
  }

  .why-tsteel__title {
    max-width: 13ch;
  }

  .why-tsteel__introduction {
    max-width: 40rem;
  }

  .learning__header,
  .learning__main,
  .learning__support {
    grid-template-columns: minmax(0, 1fr);
  }

  .learning__header {
    align-items: start;
    gap: 1.75rem;
  }

  .learning__title {
    max-width: 13ch;
  }

  .learning__introduction {
    max-width: 42rem;
  }

  .trial-card {
    min-height: 30rem;
  }

  .implementation-panel {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .product-hero__inner,
  .product-feature__inner,
  .product-flow__header,
  .product-formats__header,
  .product-scope__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-hero__inner {
    min-height: 0;
  }

  .product-hero__content {
    max-width: 42rem;
  }

  .product-hero__visual {
    min-height: 0;
  }

  .product-hero__visual img {
    width: 100%;
  }

  .product-flow__list,
  .product-formats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-flow__list li:nth-child(3) {
    border-top: 1px solid rgb(255 255 255 / 18%);
  }

  .product-flow__list li:last-child {
    border-top: 1px solid rgb(255 255 255 / 18%);
  }

  .product-feature__inner--reverse .product-feature__content {
    order: initial;
  }

  .product-feature__content {
    max-width: 42rem;
  }

  .product-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .learn-hero__inner,
  .learn-section-header,
  .learn-mentorship__offer {
    grid-template-columns: minmax(0, 1fr);
  }

  .learn-hero__inner {
    min-height: 0;
  }

  .learn-hero__content {
    max-width: 44rem;
  }

  .learn-hero__paths {
    max-width: 42rem;
  }

  .learn-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .learn-guide-card--featured {
    grid-column: 1 / -1;
  }

  .learn-mentorship__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .learn-mentorship__offer {
    align-items: start;
    max-width: 42rem;
  }

  .learn-mentorship__offer > div {
    justify-items: start;
  }

  .pricing-section-header,
  .pricing-viewer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-license__grid,
  .pricing-purchase__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trial-hero__inner,
  .trial-renewal__inner,
  .trial-capabilities__inner,
  .trial-download__inner,
  .request-received__resources-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .request-received {
    background: #f4f3f2;
  }

  .request-received__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .request-received__message {
    max-width: 43rem;
    padding-right: 0;
  }

  .request-received__next {
    max-width: 43rem;
    padding: clamp(1.5rem, 5vw, 3rem);
    background: var(--color-white);
  }

  .private-download-hero__inner,
  .private-download-license__inner,
  .private-download-section-header {
    grid-template-columns: minmax(0, 1fr);
  }

  .private-download-hero__content {
    max-width: 44rem;
  }

  .private-download-card {
    max-width: 44rem;
  }

  .private-download-section-header > p:last-child {
    max-width: 40rem;
  }

  .private-download-steps__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .private-download-steps__grid li {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1.25rem;
    min-height: 0;
  }

  .private-download-steps__grid li + li {
    border-top: 1px solid rgb(255 255 255 / 24%);
    border-left: 0;
  }

  .private-download-steps__grid li > div {
    margin-top: 0;
  }

  .checkout__inner,
  .payment-return__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout__introduction {
    max-width: 44rem;
  }

  .checkout-card {
    max-width: 44rem;
  }

  .payment-return__message {
    max-width: 44rem;
  }

  .payment-return__details {
    max-width: 44rem;
  }

  .legal-hero__inner,
  .legal-document__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-hero__summary {
    max-width: 42rem;
  }

  .legal-navigation {
    position: static;
  }

  .legal-navigation ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--color-border);
  }

  .legal-navigation li {
    border-right: 1px solid var(--color-border);
  }

  .legal-navigation a {
    height: 100%;
    padding: 0.8rem;
  }

  .not-found__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .not-found__visual {
    justify-content: flex-start;
    font-size: clamp(8rem, 28vw, 14rem);
  }

  .not-found__zero {
    width: clamp(7rem, 24vw, 11rem);
  }

  .trial-hero__content {
    max-width: 43rem;
  }

  .trial-hero__visual {
    max-width: 44rem;
  }

  .trial-requirements__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trial-download__content {
    position: static;
    max-width: 43rem;
  }

  .site-footer__content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    padding-bottom: 1rem;
  }

  .site-footer__brand p {
    max-width: 38ch;
  }
}

@media (max-width: 31.25rem) {
  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-hero__actions {
    display: grid;
  }

  .product-flow__list,
  .product-outputs__grid,
  .product-formats__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-flow__list li,
  .product-flow__list li:nth-child(3),
  .product-flow__list li:last-child {
    min-height: 13rem;
    border-top: 1px solid rgb(255 255 255 / 18%);
    border-right: 1px solid rgb(255 255 255 / 18%);
  }

  .product-flow__list li:first-child {
    border-top: 0;
  }

  .product-output-card > div {
    min-height: 0;
  }

  .learn-course-grid,
  .learn-resource-grid,
  .learn-guide-grid,
  .learn-mentorship__pillars {
    grid-template-columns: minmax(0, 1fr);
  }

  .learn-course-card {
    min-height: 27rem;
  }

  .learn-resource-card,
  .learn-guide-card {
    min-height: 21rem;
  }

  .learn-guide-card--featured {
    grid-column: auto;
  }

  .learn-mentorship::after {
    background: rgb(12 12 13 / 90%);
  }

  .learn-mentorship__button {
    width: 100%;
  }

  .pricing-plan-grid,
  .pricing-license__grid,
  .pricing-purchase__steps,
  .pricing-included {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-plan-card {
    min-height: 31rem;
  }

  .pricing-license__grid article,
  .pricing-purchase__steps li {
    min-height: 13rem;
  }

  .pricing-license__note {
    text-align: left;
  }

  .trial-hero__actions {
    display: grid;
  }

  .request-received__actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .request-received__home-link {
    grid-column: auto;
  }

  .private-download-learning__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .private-download-learning__grid article {
    min-height: 20rem;
  }

  .checkout-header__inner > span {
    font-size: 0.68rem;
  }

  .checkout__back {
    margin-bottom: 2.5rem;
  }

  .checkout-quantity {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-payment-methods {
    padding-left: 0;
  }

  .checkout-footer > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-return__button {
    width: 100%;
  }

  .legal-navigation ol {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-definitions > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .not-found__actions {
    display: grid;
  }

  .not-found-links__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .not-found-links a {
    min-height: 9rem;
  }

  .not-found-links a + a {
    border-top: 0;
    border-left: 1px solid rgb(255 255 255 / 20%);
  }

  .trial-process__steps,
  .trial-requirements__grid,
  .trial-form__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .trial-field--full {
    grid-column: auto;
  }

  .trial-process__steps li {
    min-height: 14rem;
  }

  .trial-form-card {
    min-height: 0;
  }

  .trial-form__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .audience__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .audience-card {
    min-height: 0;
  }

  .capabilities__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .capability-card__content {
    min-height: 0;
  }

  .reason {
    grid-template-columns: 2.25rem minmax(0, 1fr);
  }

  .reason--featured {
    margin-inline: -0.75rem;
    padding-inline: 0.75rem;
  }

  .trial-card {
    min-height: 27rem;
  }

  .playlist-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .playlist-grid a {
    min-height: 9.5rem;
  }

  .training-card__heading,
  .support-panel {
    grid-template-columns: 2.25rem minmax(0, 1fr);
  }

  .site-footer__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .site-footer__brand {
    grid-column: auto;
    padding-bottom: 0.5rem;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
