@import url("./tokens.css");

:root {
  --am-slide-width: 1920px;
  --am-slide-height: 1080px;
  --am-slide-pad-x: 112px;
  --am-slide-pad-y: 96px;
  --am-scale: 1;
  --am-controls-bottom: 18px;
}

html,
.am-presentation-body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.am-presentation-body {
  min-width: 0;
  margin: 0;
  background: var(--am-color-bg-dark);
}

.am-presentation-shell {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: var(--am-color-bg-dark);
}

.am-presentation {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--am-slide-width);
  height: var(--am-slide-height);
  background: var(--am-color-bg-dark);
  transform: scale(var(--am-scale));
  transform-origin: top left;
}

.am-presentation::after {
  content: "";
  position: absolute;
  z-index: 30;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .42);
  pointer-events: none;
}

.am-presentation-controls {
  position: fixed;
  z-index: 40;
  bottom: var(--am-controls-bottom);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
  pointer-events: none;
}

.am-presentation-control {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 31px;
  height: 27px;
  padding: 0 6px;
  border: var(--am-line) solid rgba(20, 22, 26, .10);
  border-radius: 0;
  background: rgba(245, 242, 238, .20);
  color: rgba(20, 22, 26, .26);
  font-family: var(--am-font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  box-shadow: none;
  cursor: pointer;
  pointer-events: auto;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    opacity .18s ease;
}

.am-presentation-control__arrow {
  display: block;
  width: 6px;
  height: 6px;
  border-top: var(--am-line) solid currentColor;
  border-right: var(--am-line) solid currentColor;
}

.am-presentation-control__arrow--prev {
  transform: rotate(-135deg);
}

.am-presentation-control__arrow--next {
  transform: rotate(45deg);
}

.am-presentation-control__num {
  display: block;
  min-width: 12px;
  font-family: var(--am-font-body);
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.am-presentation-control:hover,
.am-presentation-control:focus-visible,
.am-presentation-restart:hover,
.am-presentation-restart:focus-visible {
  border-color: rgba(20, 22, 26, .38);
  background: rgba(245, 242, 238, .86);
  color: rgba(20, 22, 26, .78);
}

.am-presentation-control:focus-visible,
.am-presentation-restart:focus-visible {
  outline: var(--am-line) solid rgba(197, 178, 159, .74);
  outline-offset: 4px;
}

.am-presentation-control:disabled {
  cursor: default;
  opacity: .34;
}

.am-presentation-restart {
  gap: 4px;
  min-width: 37px;
  padding: 0 7px 0 6px;
  font-family: var(--am-font-body);
  letter-spacing: 0;
}

.am-presentation-restart__icon {
  display: block;
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.35;
}

.am-presentation-restart__key {
  display: block;
  color: currentColor;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.am-slide {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
  width: var(--am-slide-width);
  height: var(--am-slide-height);
  padding: var(--am-slide-pad-y) var(--am-slide-pad-x);
  background: var(--am-color-bg-light);
  color: var(--am-color-text-dark);
  isolation: isolate;
}

.am-slide.is-active,
.am-presentation:not(.am-js-ready) .am-slide:first-child {
  display: block;
}

.am-slide--dark {
  background: var(--am-color-bg-dark);
  color: var(--am-color-text);
}

.am-slide__content {
  position: relative;
  z-index: 2;
}

.am-slide__footer {
  position: absolute;
  z-index: 4;
  right: 92px;
  bottom: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.am-slide--diagonal-brand-safe .am-slide__footer {
  right: auto;
  left: 112px;
}

.am-logo-mark {
  display: block;
  width: auto;
  height: 54px;
  image-rendering: auto;
  shape-rendering: geometricPrecision;
}

.am-logo-mark--light {
  filter: none;
}

.am-logo-mark--dark {
  filter: none;
  opacity: 1;
}

.am-logo-lockup {
  position: absolute;
  z-index: 4;
  top: 84px;
  left: 112px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--am-color-text);
}

.am-logo-lockup .am-logo-mark {
  width: 68px;
}

.am-logo-lockup__name {
  color: currentColor;
  font-family: var(--am-font-heading);
  font-size: 25px;
  font-weight: 400;
  line-height: .9;
}

.am-slide__title {
  margin: 0;
  max-width: 1180px;
  font-family: var(--am-font-heading);
  font-size: 76px;
  font-weight: 500;
  line-height: .96;
  letter-spacing: 0;
}

.am-slide__title--cover {
  max-width: 900px;
  font-size: 92px;
  font-weight: 600;
  line-height: .92;
}

.am-slide__title--wide {
  max-width: 1540px;
}

.am-slide__subtitle {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--am-color-text-muted-light);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.36;
}

.am-slide--dark .am-slide__subtitle {
  color: var(--am-color-muted);
}

.am-slide__body {
  max-width: 720px;
  margin: 32px 0 0;
  color: var(--am-color-text-muted-light);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.44;
}

.am-slide--dark .am-slide__body {
  color: var(--am-color-muted);
}

.am-diagonal-pattern {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 640px;
  overflow: hidden;
  width: 1280px;
  height: var(--am-slide-height);
  pointer-events: none;
}

.am-diagonal-pattern__stripe {
  position: absolute;
  top: -210px;
  width: 102px;
  height: 1480px;
  background: rgba(255, 255, 255, .08);
  transform: rotate(-12deg);
  transform-origin: center;
}

.am-diagonal-pattern__stripe:nth-child(1) {
  left: 698px;
}

.am-diagonal-pattern__stripe:nth-child(2) {
  left: 863px;
}

.am-diagonal-pattern__stripe:nth-child(3) {
  left: 1028px;
}

.am-diagonal-pattern__stripe:nth-child(4) {
  left: 1193px;
}

.am-cover-stack {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-top: 248px;
}

.am-section-divider {
  position: relative;
  min-height: 680px;
}

.am-section-divider__rail {
  position: absolute;
  top: 82px;
  left: 0;
  width: 10px;
  height: 560px;
  background: var(--am-color-accent);
}

.am-section-divider__number {
  position: absolute;
  top: 58px;
  left: 40px;
  width: 220px;
  margin: 0;
  color: var(--am-color-text);
  font-family: var(--am-font-heading);
  font-size: 150px;
  font-weight: 500;
  line-height: .85;
}

.am-section-divider__text {
  position: absolute;
  top: 80px;
  left: 318px;
  width: 930px;
  max-width: 930px;
  margin: 0;
}

.am-section-divider .am-slide__title {
  max-width: 930px;
  font-size: 104px;
  font-weight: 600;
  line-height: .92;
}

.am-section-divider .am-slide__subtitle {
  max-width: 930px;
  margin-top: 30px;
  font-size: 30px;
  line-height: 1.28;
}

.am-slide--subsection-light {
  background: var(--am-color-bg-warm);
  color: var(--am-color-text-dark);
}

.am-section-divider--sub,
.am-section-divider--level-2 {
  min-height: 680px;
}

.am-section-divider--sub .am-section-divider__rail,
.am-section-divider--level-2 .am-section-divider__rail {
  top: 82px;
  width: 10px;
  height: 560px;
  background: var(--am-color-accent);
}

.am-section-divider--sub .am-section-divider__number,
.am-section-divider--level-2 .am-section-divider__number {
  top: 58px;
  left: 40px;
  width: 220px;
  color: var(--am-color-text-dark);
  font-size: 150px;
  font-weight: 500;
  line-height: .85;
}

.am-section-divider--sub .am-section-divider__text,
.am-section-divider--level-2 .am-section-divider__text {
  top: 80px;
  left: 318px;
  width: 1280px;
  max-width: 1280px;
}

.am-section-divider--sub .am-slide__title,
.am-section-divider--level-2 .am-slide__title {
  max-width: 1280px;
  color: var(--am-color-text-dark);
  font-size: 104px;
  font-weight: 600;
  line-height: .92;
}

.am-section-divider--sub .am-slide__subtitle,
.am-section-divider--level-2 .am-slide__subtitle {
  max-width: 930px;
  margin-top: 30px;
  color: var(--am-color-text-muted-light);
  font-size: 30px;
  line-height: 1.28;
}

.am-thesis {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 64px;
  width: min(1244px, 100%);
  margin-top: 154px;
}

.am-thesis::before {
  content: "";
  width: 3px;
  min-height: 248px;
  background: var(--am-color-accent-strong);
}

.am-thesis__title {
  margin: 0;
  max-width: 1230px;
  font-family: var(--am-font-heading);
  font-size: 74px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.am-thesis__body {
  max-width: 1020px;
  margin: 24px 0 0;
  color: var(--am-color-text-muted-light);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.36;
}

.am-slide--dark .am-thesis__body {
  color: var(--am-color-muted);
}

.am-content-zone {
  display: flex;
  min-height: 610px;
  align-items: center;
  margin-top: 48px;
}

.am-content-zone > * {
  width: 100%;
}

.am-quiet-thesis {
  display: grid;
  grid-template-columns: 3px minmax(0, 960px);
  gap: 64px;
  align-items: start;
  margin-top: 120px;
}

.am-quiet-thesis::before {
  content: "";
  width: 3px;
  min-height: 300px;
  background: var(--am-color-accent-strong);
}

.am-quiet-thesis__title {
  margin: 0;
  font-family: var(--am-font-heading);
  font-size: 76px;
  font-weight: 500;
  line-height: 1.04;
}

.am-quiet-thesis__body {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--am-color-text-muted-light);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.38;
}

.am-thesis-rows {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 760px);
  gap: 200px;
  align-items: center;
}

.am-thesis-rows__title {
  margin: 0;
  font-family: var(--am-font-heading);
  font-size: 72px;
  font-weight: 500;
  line-height: 1.04;
}

.am-thesis-rows__body {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--am-color-text-muted-light);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
}

.am-numbered-rows {
  display: grid;
  gap: 0;
}

.am-numbered-row {
  display: grid;
  grid-template-columns: 72px 1px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: var(--am-line) solid var(--am-color-line-light);
}

.am-numbered-row:first-child {
  border-top: var(--am-line) solid var(--am-color-line-light);
}

.am-numbered-row__num {
  color: var(--am-color-accent-strong);
  font-family: var(--am-font-heading);
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.am-numbered-row__rule {
  width: var(--am-line);
  min-height: 74px;
  background: var(--am-color-accent);
}

.am-numbered-row__title {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}

.am-numbered-row__body {
  margin: 8px 0 0;
  color: var(--am-color-text-muted-light);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.42;
}

.am-contents {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px 120px;
  align-items: start;
  margin-top: 64px;
}

.am-contents__item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
}

.am-contents__num {
  color: var(--am-color-accent-strong);
  font-family: var(--am-font-heading);
  font-size: 42px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.am-contents__title {
  margin: 0;
  font-family: var(--am-font-heading);
  font-size: 46px;
  font-weight: 500;
  line-height: 1.04;
}

.am-contents__body {
  margin: 12px 0 0;
  color: var(--am-color-text-muted-light);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.38;
}

.am-split {
  display: grid;
  grid-template-columns: 960px 960px;
  min-height: var(--am-slide-height);
  margin: calc(var(--am-slide-pad-y) * -1) calc(var(--am-slide-pad-x) * -1);
}

.am-split--reverse {
  grid-template-columns: 960px 960px;
}

.am-split__text {
  padding: 120px 96px 96px 112px;
}

.am-split--reverse .am-split__text {
  padding-left: 80px;
}

.am-split__media {
  position: relative;
  min-height: var(--am-slide-height);
  background: var(--am-color-bg-light);
  border-left: var(--am-line) solid var(--am-color-line-light);
}

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

.am-asset-slot {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: var(--am-line) solid var(--am-color-line-light);
  background: var(--am-color-bg-light);
  color: var(--am-color-text-muted-light);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.35;
  text-align: center;
}

.am-rich-block {
  color: var(--am-color-text-muted-light);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.44;
}

.am-rich-block strong {
  color: var(--am-color-text-dark);
  font-weight: 500;
}

.am-two-column,
.am-columns {
  display: grid;
  gap: 32px;
  margin-top: 58px;
}

.am-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 92px;
}

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

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

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

.am-column-copy {
  position: relative;
}

.am-column-copy__number {
  display: block;
  margin-bottom: 12px;
  color: var(--am-color-accent-strong);
  font-family: var(--am-font-heading);
  font-size: 46px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.am-column-copy__title {
  margin: 0 0 14px;
  color: var(--am-color-text-dark);
  font-family: var(--am-font-heading);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.04;
}

.am-columns--4 .am-column-copy__title,
.am-columns--5 .am-column-copy__title {
  min-height: 70px;
  font-size: 32px;
  line-height: 1.08;
}

.am-column-copy p {
  margin: 0;
  color: var(--am-color-text-muted-light);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.36;
}

.am-columns {
  align-items: stretch;
}

.am-columns .am-column-copy {
  min-height: 190px;
  padding-left: 16px;
  border-left: 2px solid var(--am-color-accent-strong);
}

.am-columns--5 .am-column-copy {
  min-height: 253px;
}

.am-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 86px;
  margin-top: 58px;
}

.am-process-step {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  padding: 0 0 32px;
  border-bottom: var(--am-line) solid var(--am-color-line-light);
}

.am-process-step__number {
  color: var(--am-color-accent-strong);
  font-family: var(--am-font-heading);
  font-size: 42px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.am-process-step__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.am-process-step__body {
  margin: 0;
  color: var(--am-color-text-muted-light);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
}

.am-evidence-layout {
  display: grid;
  grid-template-columns: 720px 640px;
  gap: 190px;
  align-items: start;
  margin-top: 72px;
}

.am-evidence-stack,
.am-card-grid,
.am-symptom-grid,
.am-stage-detail-grid {
  display: grid;
  gap: 18px;
}

.am-evidence-grid,
.am-card-grid,
.am-symptom-grid,
.am-stage-detail-grid,
.am-people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 56px;
}

.am-card-grid--6,
.am-symptom-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.am-evidence-card,
.am-card,
.am-symptom-card,
.am-stage-detail-card {
  padding: 28px 30px;
  border: var(--am-line) solid var(--am-color-line-light);
  background: var(--am-color-bg-light);
}

.am-evidence-card {
  min-height: 188px;
}

.am-evidence-card__label,
.am-card__label,
.am-factoid__label {
  color: var(--am-color-accent-strong);
  font-size: 14px;
  font-weight: 500;
}

.am-evidence-card__value,
.am-factoid__value {
  margin: 18px 0 0;
  font-family: var(--am-font-heading);
  font-size: 56px;
  font-weight: 500;
  line-height: .95;
}

.am-evidence-card__note,
.am-card p,
.am-symptom-card p,
.am-stage-detail-card p,
.am-factoid__note {
  margin: 12px 0 0;
  color: var(--am-color-text-muted-light);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
}

.am-card__title,
.am-symptom-card__title,
.am-stage-detail-card__title {
  margin: 14px 0 0;
  font-family: var(--am-font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.05;
}

.am-quote-panel {
  width: 1296px;
  min-height: 430px;
  margin-top: 138px;
  padding: 72px 96px 66px;
  border: var(--am-line) solid var(--am-color-line-dark);
  background: var(--am-color-bg-panel);
}

.am-quote-panel__mark {
  color: var(--am-color-accent);
  font-family: var(--am-font-heading);
  font-size: 86px;
  font-weight: 600;
  line-height: .46;
}

.am-quote-panel__body {
  max-width: 940px;
  margin: 72px 0 0;
  font-family: var(--am-font-heading);
  font-size: 58px;
  font-weight: 600;
  line-height: 1.06;
}

.am-quote-panel__source {
  margin-top: 38px;
  color: var(--am-color-accent);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.am-axis-map {
  position: relative;
  width: 1700px;
  height: 620px;
  margin-top: 60px;
  border: var(--am-line) solid var(--am-color-line-light);
  background: var(--am-color-bg-light);
}

.am-axis-map::before,
.am-axis-map::after {
  content: "";
  position: absolute;
  background: var(--am-color-line-light);
}

.am-axis-map::before {
  top: 50%;
  left: 48px;
  right: 48px;
  height: var(--am-line);
}

.am-axis-map::after {
  top: 48px;
  bottom: 48px;
  left: 50%;
  width: var(--am-line);
}

.am-axis-map__label {
  position: absolute;
  color: var(--am-color-text-muted-light);
  font-size: 18px;
  font-weight: 300;
}

.am-axis-map__label--top {
  top: 24px;
  left: calc(50% + 12px);
}

.am-axis-map__label--bottom {
  bottom: 24px;
  left: calc(50% + 12px);
}

.am-axis-map__label--left {
  top: calc(50% + 10px);
  left: 24px;
}

.am-axis-map__label--right {
  top: calc(50% + 17px);
  right: 24px;
  text-align: right;
}

.am-map-card {
  position: absolute;
  width: 320px;
  padding: 20px 22px;
  border: var(--am-line) solid var(--am-color-line-light);
  background: var(--am-color-bg-light);
}

.am-map-card h3 {
  margin: 0 0 8px;
  font-family: var(--am-font-heading);
  font-size: 28px;
  font-weight: 500;
}

.am-map-card p {
  margin: 0;
  color: var(--am-color-text-muted-light);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
}

.am-gantt {
  display: grid;
  gap: 24px;
  margin-top: 62px;
}

.am-gantt-lane {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 32px;
}

.am-gantt-lane__title {
  font-size: 18px;
  font-weight: 500;
}

.am-gantt-lane__track {
  position: relative;
  height: 72px;
  border-top: var(--am-line) solid var(--am-color-line-light);
}

.am-gantt-lane__bar {
  position: absolute;
  top: 22px;
  height: 18px;
  background: var(--am-color-accent);
}

.am-people-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.am-person-card {
  border: var(--am-line) solid var(--am-color-line-light);
  background: var(--am-color-bg-light);
}

.am-person-card__photo {
  height: 250px;
  border-bottom: var(--am-line) solid var(--am-color-line-light);
  background: var(--am-color-bg-light);
}

.am-person-card__body {
  padding: 24px;
}

.am-person-card__name {
  margin: 0;
  font-family: var(--am-font-heading);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.am-person-card__role {
  margin: 12px 0 0;
  color: var(--am-color-text-muted-light);
  font-size: 16px;
  font-weight: 300;
}

.am-factoid-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.am-factoid {
  padding: 26px;
  border: var(--am-line) solid var(--am-color-line-light);
  background: var(--am-color-bg-light);
}

.am-journey-map {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 48px;
}

.am-journey-stage {
  min-height: 92px;
  padding: 16px 14px;
  border: var(--am-line) solid var(--am-color-line-light);
  background: var(--am-color-bg-light);
}

.am-journey-stage.is-selected {
  border-color: var(--am-color-accent-strong);
  background: var(--am-color-bg-light);
}

.am-journey-stage__num {
  display: block;
  color: var(--am-color-accent-strong);
  font-family: var(--am-font-heading);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
}

.am-journey-stage__title {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.am-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
  margin-top: 56px;
}

.am-comparison__side {
  padding: 34px 38px;
  border: var(--am-line) solid var(--am-color-line-light);
  background: var(--am-color-bg-light);
}

.am-comparison__side--warm {
  border-color: var(--am-color-accent-strong);
  background: var(--am-color-bg-light);
}

.am-comparison__title {
  margin: 0 0 28px;
  font-family: var(--am-font-heading);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.am-comparison__list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.am-comparison__list li {
  position: relative;
  padding-left: 30px;
  color: var(--am-color-text-muted-light);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.35;
}

.am-comparison__list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 2px;
  width: 10px;
  height: 10px;
  border: var(--am-line) solid var(--am-color-accent-strong);
  transform: rotate(45deg);
}

.am-equal-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: stretch;
  height: 548px;
  margin-top: 96px;
}

.am-equal-panel {
  box-sizing: border-box;
  height: 100%;
  padding: 50px 46px;
}

.am-equal-panel--list {
  border: var(--am-line) solid var(--am-color-line-light);
  background: var(--am-color-bg-light);
}

.am-equal-panel--accent {
  background: var(--am-color-accent-strong);
  color: var(--am-color-text);
}

.am-equal-panel__title {
  margin: 0;
  font-family: var(--am-font-heading);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.12;
}

.am-equal-panel__list {
  display: grid;
  gap: 17px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.am-equal-panel__list--cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 16px;
}

.am-equal-panel__list li {
  position: relative;
  padding-left: 34px;
  color: var(--am-color-text-muted-light);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.28;
}

.am-equal-panel__list li::before {
  content: "";
  position: absolute;
  top: .46em;
  left: 2px;
  width: 10px;
  height: 10px;
  border: var(--am-line) solid var(--am-color-accent-strong);
  transform: rotate(45deg);
}

.am-equal-panel--accent .am-equal-panel__title {
  color: var(--am-color-text);
}

.am-equal-panel__body {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.am-equal-panel__body p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.36;
}

.am-data-table {
  width: 100%;
  margin-top: 54px;
  border-collapse: collapse;
  color: var(--am-color-text-dark);
}

.am-data-table th,
.am-data-table td {
  padding: 20px 18px;
  border-top: var(--am-line) solid var(--am-color-line-light);
  text-align: left;
  vertical-align: top;
}

.am-data-table th {
  color: var(--am-color-accent-strong);
  font-size: 14px;
  font-weight: 500;
}

.am-data-table td {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.35;
}

.am-data-table strong {
  font-family: var(--am-font-heading);
  font-size: 36px;
  font-weight: 500;
}

.am-appendix-list {
  display: grid;
  gap: 0;
  max-width: 1180px;
  margin-top: 52px;
  padding: 0;
  list-style: none;
}

.am-appendix-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 38px;
  padding: 22px 0;
  border-top: var(--am-line) solid var(--am-color-line-light);
  color: var(--am-color-text-muted-light);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.35;
}

.am-appendix-list li:last-child {
  border-bottom: var(--am-line) solid var(--am-color-line-light);
}

.am-appendix-list span {
  color: var(--am-color-accent-strong);
  font-family: var(--am-font-heading);
  font-style: italic;
  font-weight: 500;
}

@media print {
  html,
  .am-presentation-body {
    width: auto;
    height: auto;
    overflow: visible;
    background: var(--am-color-bg-light);
  }

  .am-presentation-shell {
    position: static;
    display: block;
    overflow: visible;
  }

  .am-presentation {
    display: block;
    position: static;
    transform: none;
  }

  .am-slide,
  .am-slide.is-active,
  .am-presentation:not(.am-js-ready) .am-slide:first-child {
    position: relative;
    display: block;
    break-after: page;
  }

}
